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
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {createComponentRef, detectChanges, getHostElement, markDirty, renderComponent} from './component';
|
2018-01-27 13:07:03 -08:00
|
|
|
import {NgOnChangesFeature, PublicFeature, defineComponent, defineDirective, definePipe} from './definition';
|
2018-01-17 09:45:40 -08:00
|
|
|
import {InjectFlags} from './di';
|
2018-01-09 18:38:17 -08:00
|
|
|
import {ComponentDef, ComponentTemplate, ComponentType, DirectiveDef, DirectiveDefFlags, DirectiveType} from './interfaces/definition';
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2018-01-17 09:45:40 -08:00
|
|
|
export {InjectFlags, QUERY_READ_CONTAINER_REF, QUERY_READ_ELEMENT_REF, QUERY_READ_FROM_NODE, QUERY_READ_TEMPLATE_REF, inject, injectElementRef, injectTemplateRef, injectViewContainerRef} from './di';
|
|
|
|
|
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
|
|
|
|
2017-12-14 16:26:28 -08:00
|
|
|
componentRefresh as r,
|
|
|
|
|
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
|
|
|
|
|
|
|
elementAttribute as a,
|
|
|
|
elementClass as k,
|
|
|
|
elementEnd as e,
|
|
|
|
elementProperty as p,
|
2017-12-14 16:26:28 -08:00
|
|
|
elementStart as E,
|
2017-12-01 14:23:03 -08:00
|
|
|
elementStyle as s,
|
|
|
|
|
2017-12-14 16:26:28 -08:00
|
|
|
listener as L,
|
2017-12-01 14:23:03 -08:00
|
|
|
memory as m,
|
|
|
|
|
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-02-06 17:27:16 -08:00
|
|
|
embeddedViewStart as V,
|
|
|
|
embeddedViewEnd as v,
|
2017-12-01 14:23:03 -08:00
|
|
|
} from './instructions';
|
2018-01-17 09:45:40 -08:00
|
|
|
|
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,
|
2018-01-22 17:43:52 -08:00
|
|
|
|
2018-01-17 09:45:40 -08:00
|
|
|
query as Q,
|
|
|
|
queryRefresh as qR,
|
|
|
|
} from './query';
|
2018-02-01 12:13:23 -08:00
|
|
|
export {
|
|
|
|
objectLiteral1 as o1,
|
|
|
|
objectLiteral2 as o2,
|
|
|
|
objectLiteral3 as o3,
|
|
|
|
objectLiteral4 as o4,
|
|
|
|
objectLiteral5 as o5,
|
|
|
|
objectLiteral6 as o6,
|
|
|
|
objectLiteral7 as o7,
|
|
|
|
objectLiteral8 as o8,
|
2018-02-13 10:24:41 -08:00
|
|
|
objectLiteralV as oV,
|
2018-02-01 12:13:23 -08:00
|
|
|
} from './object_literal';
|
|
|
|
|
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 {
|
|
|
|
ComponentDef,
|
|
|
|
ComponentTemplate,
|
|
|
|
ComponentType,
|
|
|
|
DirectiveDef,
|
|
|
|
DirectiveDefFlags,
|
2017-12-19 16:51:42 +01:00
|
|
|
DirectiveType,
|
2017-12-01 14:23:03 -08:00
|
|
|
NgOnChangesFeature,
|
|
|
|
PublicFeature,
|
|
|
|
defineComponent,
|
|
|
|
defineDirective,
|
2018-01-27 13:07:03 -08:00
|
|
|
definePipe,
|
2017-12-01 14:23:03 -08:00
|
|
|
};
|
|
|
|
export {createComponentRef, detectChanges, getHostElement, markDirty, renderComponent};
|
2018-01-18 13:27:01 -08:00
|
|
|
export {CssSelector} from './interfaces/projection';
|