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';
|
2017-12-20 10:47:22 -08:00
|
|
|
import {NgOnChangesFeature, PublicFeature, defineComponent, defineDirective} from './definition';
|
2017-12-19 16:51:42 +01:00
|
|
|
import {ComponentDef, ComponentTemplate, ComponentType, DirectiveDef, DirectiveDefFlags, DirectiveType} from './definition_interfaces';
|
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
|
|
|
inject, injectElementRef, injectTemplateRef, injectViewContainerRef,
|
|
|
|
|
2017-12-14 16:26:28 -08:00
|
|
|
LifecycleHook,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
|
|
|
NO_CHANGE as NC,
|
|
|
|
|
|
|
|
bind as b,
|
|
|
|
bind1 as b1,
|
|
|
|
bind2 as b2,
|
|
|
|
bind3 as b3,
|
|
|
|
bind4 as b4,
|
|
|
|
bind5 as b5,
|
|
|
|
bind6 as b6,
|
|
|
|
bind7 as b7,
|
|
|
|
bind8 as b8,
|
|
|
|
bindV as bV,
|
|
|
|
|
2017-12-14 16:26:28 -08:00
|
|
|
componentRefresh as r,
|
|
|
|
|
|
|
|
containerStart as C,
|
2017-12-01 14:23:03 -08:00
|
|
|
containerEnd as c,
|
2017-12-14 16:26:28 -08:00
|
|
|
containerRefreshStart as cR,
|
|
|
|
containerRefreshEnd as cr,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2017-12-14 16:26:28 -08:00
|
|
|
directive as D,
|
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
|
|
|
lifecycle as l,
|
|
|
|
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,
|
|
|
|
|
|
|
|
query as Q,
|
|
|
|
queryRefresh as qR,
|
|
|
|
|
|
|
|
text as T,
|
|
|
|
textBinding as t,
|
2017-12-01 14:23:03 -08:00
|
|
|
|
2017-12-14 16:26:28 -08:00
|
|
|
viewStart as V,
|
2017-12-01 14:23:03 -08:00
|
|
|
viewEnd as v,
|
|
|
|
} from './instructions';
|
|
|
|
// clang-format on
|
|
|
|
export {QueryList} from './query';
|
|
|
|
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,
|
|
|
|
};
|
|
|
|
export {createComponentRef, detectChanges, getHostElement, markDirty, renderComponent};
|