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-06-18 08:05:06 -07:00
|
|
|
import {defineComponent, defineDirective, defineNgModule, definePipe} from './definition';
|
|
|
|
import {InheritDefinitionFeature} from './features/inherit_definition_feature';
|
|
|
|
import {NgOnChangesFeature} from './features/ng_onchanges_feature';
|
|
|
|
import {PublicFeature} from './features/public_feature';
|
2018-06-18 16:55:43 +02:00
|
|
|
import {I18nExpInstruction, I18nInstruction, i18nExpMapping, i18nInterpolation, i18nInterpolationV} from './i18n';
|
2018-06-26 10:37:45 -07:00
|
|
|
import {ComponentDef, ComponentDefInternal, ComponentTemplate, ComponentType, DirectiveDef, DirectiveDefFlags, DirectiveDefInternal, DirectiveType, PipeDef} from './interfaces/definition';
|
2018-06-18 08:05:06 -07:00
|
|
|
|
2018-05-09 16:49:39 -07:00
|
|
|
export {ComponentFactory, ComponentFactoryResolver, ComponentRef} from './component_ref';
|
2018-04-12 12:30:21 -07:00
|
|
|
export {QUERY_READ_CONTAINER_REF, QUERY_READ_ELEMENT_REF, QUERY_READ_FROM_NODE, QUERY_READ_TEMPLATE_REF, directiveInject, injectAttribute, injectChangeDetectorRef, 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
|
|
|
|
2018-01-17 09:45:40 -08:00
|
|
|
|
2018-05-31 15:50:02 -07:00
|
|
|
|
2017-12-01 14:23:03 -08:00
|
|
|
// Naming scheme:
|
|
|
|
// - Capital letters are for creating things: T(Text), E(Element), D(Directive), V(View),
|
|
|
|
// C(Container), L(Listener)
|
|
|
|
// - lower case letters are for binding: b(bind)
|
|
|
|
// - lower case letters are for binding target: p(property), a(attribute), k(class), s(style),
|
|
|
|
// i(input)
|
|
|
|
// - lower case letters for guarding life cycle hooks: l(lifeCycle)
|
|
|
|
// - lower case for closing: c(containerEnd), e(elementEnd), v(viewEnd)
|
|
|
|
// clang-format off
|
|
|
|
export {
|
2017-12-15 14:59:17 +01:00
|
|
|
|
2017-12-01 14:23:03 -08:00
|
|
|
NO_CHANGE as NC,
|
|
|
|
|
|
|
|
bind as b,
|
2018-02-14 11:22:14 -08:00
|
|
|
interpolation1 as i1,
|
|
|
|
interpolation2 as i2,
|
|
|
|
interpolation3 as i3,
|
|
|
|
interpolation4 as i4,
|
|
|
|
interpolation5 as i5,
|
|
|
|
interpolation6 as i6,
|
|
|
|
interpolation7 as i7,
|
|
|
|
interpolation8 as i8,
|
|
|
|
interpolationV as iV,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-01-09 13:32:24 -08:00
|
|
|
container as C,
|
2017-12-14 16:26:28 -08:00
|
|
|
containerRefreshStart as cR,
|
|
|
|
containerRefreshEnd as cr,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-06-08 10:48:27 -07:00
|
|
|
element as Ee,
|
2017-12-01 14:23:03 -08:00
|
|
|
elementAttribute as a,
|
2018-07-11 09:56:47 -07:00
|
|
|
elementClassProp as cp,
|
2017-12-01 14:23:03 -08:00
|
|
|
elementEnd as e,
|
|
|
|
elementProperty as p,
|
2017-12-14 16:26:28 -08:00
|
|
|
elementStart as E,
|
2018-06-19 12:45:00 -07:00
|
|
|
|
|
|
|
elementStyling as s,
|
2018-07-11 09:56:47 -07:00
|
|
|
elementStylingMap as sm,
|
2018-06-19 12:45:00 -07:00
|
|
|
elementStyleProp as sp,
|
|
|
|
elementStylingApply as sa,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2017-12-14 16:26:28 -08:00
|
|
|
listener as L,
|
2018-02-16 16:58:07 -08:00
|
|
|
store as st,
|
|
|
|
load as ld,
|
2018-03-21 15:10:34 -07:00
|
|
|
loadDirective as d,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-06-08 09:00:01 -07:00
|
|
|
namespaceHTML as NH,
|
|
|
|
namespaceMathML as NM,
|
|
|
|
namespaceSVG as NS,
|
|
|
|
|
2017-12-14 16:26:28 -08:00
|
|
|
projection as P,
|
|
|
|
projectionDef as pD,
|
|
|
|
|
|
|
|
text as T,
|
|
|
|
textBinding as t,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-05-21 15:59:25 -07:00
|
|
|
reserveSlots as rS,
|
|
|
|
|
2018-02-06 17:27:16 -08:00
|
|
|
embeddedViewStart as V,
|
|
|
|
embeddedViewEnd as v,
|
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 {
|
|
|
|
i18nApply as iA,
|
|
|
|
i18nMapping as iM,
|
|
|
|
i18nInterpolation as iI,
|
|
|
|
i18nInterpolationV as iIV,
|
|
|
|
i18nExpMapping as iEM,
|
|
|
|
I18nInstruction,
|
|
|
|
I18nExpInstruction
|
|
|
|
} from './i18n';
|
|
|
|
|
2018-05-09 16:49:39 -07:00
|
|
|
export {NgModuleDef, NgModuleFactory, NgModuleRef, NgModuleType} from './ng_module_ref';
|
|
|
|
|
2018-05-04 15:58:42 +02:00
|
|
|
export {
|
|
|
|
AttributeMarker
|
|
|
|
} from './interfaces/node';
|
|
|
|
|
2018-01-27 13:07:03 -08:00
|
|
|
export {
|
|
|
|
pipe as Pp,
|
|
|
|
pipeBind1 as pb1,
|
|
|
|
pipeBind2 as pb2,
|
|
|
|
pipeBind3 as pb3,
|
|
|
|
pipeBind4 as pb4,
|
|
|
|
pipeBindV as pbV,
|
|
|
|
} from './pipe';
|
|
|
|
|
2018-01-17 09:45:40 -08:00
|
|
|
export {
|
|
|
|
QueryList,
|
|
|
|
query as Q,
|
|
|
|
queryRefresh as qR,
|
|
|
|
} from './query';
|
2018-07-10 10:43:07 +02:00
|
|
|
export {
|
|
|
|
registerContentQuery as Qr,
|
|
|
|
loadQueryList as ql,
|
|
|
|
} from './instructions';
|
|
|
|
|
2018-02-01 12:13:23 -08:00
|
|
|
export {
|
2018-02-14 13:37:54 -08:00
|
|
|
pureFunction0 as f0,
|
2018-02-13 18:56:52 -08:00
|
|
|
pureFunction1 as f1,
|
|
|
|
pureFunction2 as f2,
|
|
|
|
pureFunction3 as f3,
|
|
|
|
pureFunction4 as f4,
|
|
|
|
pureFunction5 as f5,
|
|
|
|
pureFunction6 as f6,
|
|
|
|
pureFunction7 as f7,
|
|
|
|
pureFunction8 as f8,
|
|
|
|
pureFunctionV as fV,
|
|
|
|
} 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-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-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
|
|
|
};
|