@angular/compiler 20.0.0-next.5 → 20.0.0-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/compiler.mjs +1006 -307
- package/fesm2022/compiler.mjs.map +1 -1
- package/index.d.ts +83 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.0.0-next.
|
|
2
|
+
* @license Angular v20.0.0-next.7
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -525,7 +525,15 @@ declare const enum TokenType$1 {
|
|
|
525
525
|
LET_VALUE = 30,
|
|
526
526
|
LET_END = 31,
|
|
527
527
|
INCOMPLETE_LET = 32,
|
|
528
|
-
|
|
528
|
+
COMPONENT_OPEN_START = 33,
|
|
529
|
+
COMPONENT_OPEN_END = 34,
|
|
530
|
+
COMPONENT_OPEN_END_VOID = 35,
|
|
531
|
+
COMPONENT_CLOSE = 36,
|
|
532
|
+
INCOMPLETE_COMPONENT_OPEN = 37,
|
|
533
|
+
DIRECTIVE_NAME = 38,
|
|
534
|
+
DIRECTIVE_OPEN = 39,
|
|
535
|
+
DIRECTIVE_CLOSE = 40,
|
|
536
|
+
EOF = 41
|
|
529
537
|
}
|
|
530
538
|
type InterpolatedTextToken = TextToken | InterpolationToken | EncodedEntityToken;
|
|
531
539
|
type InterpolatedAttributeToken = AttributeValueTextToken | AttributeValueInterpolationToken | EncodedEntityToken;
|
|
@@ -559,7 +567,7 @@ interface BaseNode {
|
|
|
559
567
|
sourceSpan: ParseSourceSpan;
|
|
560
568
|
visit(visitor: Visitor$1, context: any): any;
|
|
561
569
|
}
|
|
562
|
-
type Node$1 = Attribute | Comment$1 | Element$1 | Expansion | ExpansionCase | Text$1 | Block | BlockParameter;
|
|
570
|
+
type Node$1 = Attribute | Comment$1 | Element$1 | Expansion | ExpansionCase | Text$1 | Block | BlockParameter | Component$1 | Directive$1;
|
|
563
571
|
declare abstract class NodeWithI18n implements BaseNode {
|
|
564
572
|
sourceSpan: ParseSourceSpan;
|
|
565
573
|
i18n?: I18nMeta$1 | undefined;
|
|
@@ -601,10 +609,11 @@ declare class Attribute extends NodeWithI18n {
|
|
|
601
609
|
declare class Element$1 extends NodeWithI18n {
|
|
602
610
|
name: string;
|
|
603
611
|
attrs: Attribute[];
|
|
612
|
+
readonly directives: Directive$1[];
|
|
604
613
|
children: Node$1[];
|
|
605
614
|
startSourceSpan: ParseSourceSpan;
|
|
606
615
|
endSourceSpan: ParseSourceSpan | null;
|
|
607
|
-
constructor(name: string, attrs: Attribute[], children: Node$1[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan?: ParseSourceSpan | null, i18n?: I18nMeta$1);
|
|
616
|
+
constructor(name: string, attrs: Attribute[], directives: Directive$1[], children: Node$1[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan?: ParseSourceSpan | null, i18n?: I18nMeta$1);
|
|
608
617
|
visit(visitor: Visitor$1, context: any): any;
|
|
609
618
|
}
|
|
610
619
|
declare class Comment$1 implements BaseNode {
|
|
@@ -623,6 +632,27 @@ declare class Block extends NodeWithI18n {
|
|
|
623
632
|
constructor(name: string, parameters: BlockParameter[], children: Node$1[], sourceSpan: ParseSourceSpan, nameSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan?: ParseSourceSpan | null, i18n?: I18nMeta$1);
|
|
624
633
|
visit(visitor: Visitor$1, context: any): any;
|
|
625
634
|
}
|
|
635
|
+
declare class Component$1 extends NodeWithI18n {
|
|
636
|
+
readonly componentName: string;
|
|
637
|
+
readonly tagName: string | null;
|
|
638
|
+
readonly fullName: string;
|
|
639
|
+
attrs: Attribute[];
|
|
640
|
+
readonly directives: Directive$1[];
|
|
641
|
+
readonly children: Node$1[];
|
|
642
|
+
readonly startSourceSpan: ParseSourceSpan;
|
|
643
|
+
endSourceSpan: ParseSourceSpan | null;
|
|
644
|
+
constructor(componentName: string, tagName: string | null, fullName: string, attrs: Attribute[], directives: Directive$1[], children: Node$1[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan?: ParseSourceSpan | null, i18n?: I18nMeta$1);
|
|
645
|
+
visit(visitor: Visitor$1, context: any): any;
|
|
646
|
+
}
|
|
647
|
+
declare class Directive$1 implements BaseNode {
|
|
648
|
+
readonly name: string;
|
|
649
|
+
readonly attrs: Attribute[];
|
|
650
|
+
readonly sourceSpan: ParseSourceSpan;
|
|
651
|
+
readonly startSourceSpan: ParseSourceSpan;
|
|
652
|
+
readonly endSourceSpan: ParseSourceSpan | null;
|
|
653
|
+
constructor(name: string, attrs: Attribute[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan?: ParseSourceSpan | null);
|
|
654
|
+
visit(visitor: Visitor$1, context: any): any;
|
|
655
|
+
}
|
|
626
656
|
declare class BlockParameter implements BaseNode {
|
|
627
657
|
expression: string;
|
|
628
658
|
sourceSpan: ParseSourceSpan;
|
|
@@ -649,6 +679,8 @@ interface Visitor$1 {
|
|
|
649
679
|
visitBlock(block: Block, context: any): any;
|
|
650
680
|
visitBlockParameter(parameter: BlockParameter, context: any): any;
|
|
651
681
|
visitLetDeclaration(decl: LetDeclaration$1, context: any): any;
|
|
682
|
+
visitComponent(component: Component$1, context: any): any;
|
|
683
|
+
visitDirective(directive: Directive$1, context: any): any;
|
|
652
684
|
}
|
|
653
685
|
declare function visitAll$1(visitor: Visitor$1, nodes: Node$1[], context?: any): any[];
|
|
654
686
|
declare class RecursiveVisitor$1 implements Visitor$1 {
|
|
@@ -662,6 +694,8 @@ declare class RecursiveVisitor$1 implements Visitor$1 {
|
|
|
662
694
|
visitBlock(block: Block, context: any): any;
|
|
663
695
|
visitBlockParameter(ast: BlockParameter, context: any): any;
|
|
664
696
|
visitLetDeclaration(decl: LetDeclaration$1, context: any): void;
|
|
697
|
+
visitComponent(component: Component$1, context: any): void;
|
|
698
|
+
visitDirective(directive: Directive$1, context: any): void;
|
|
665
699
|
private visitChildren;
|
|
666
700
|
}
|
|
667
701
|
|
|
@@ -768,6 +802,8 @@ interface TokenizeOptions {
|
|
|
768
802
|
* text or an incomplete block, depending on whether `tokenizeBlocks` is enabled.
|
|
769
803
|
*/
|
|
770
804
|
tokenizeLet?: boolean;
|
|
805
|
+
/** Whether the selectorless syntax is enabled. */
|
|
806
|
+
selectorlessEnabled?: boolean;
|
|
771
807
|
}
|
|
772
808
|
|
|
773
809
|
declare class TreeError extends ParseError {
|
|
@@ -3223,13 +3259,14 @@ declare class Element implements Node {
|
|
|
3223
3259
|
attributes: TextAttribute[];
|
|
3224
3260
|
inputs: BoundAttribute[];
|
|
3225
3261
|
outputs: BoundEvent[];
|
|
3262
|
+
directives: Directive[];
|
|
3226
3263
|
children: Node[];
|
|
3227
3264
|
references: Reference[];
|
|
3228
3265
|
sourceSpan: ParseSourceSpan;
|
|
3229
3266
|
startSourceSpan: ParseSourceSpan;
|
|
3230
3267
|
endSourceSpan: ParseSourceSpan | null;
|
|
3231
3268
|
i18n?: I18nMeta$1 | undefined;
|
|
3232
|
-
constructor(name: string, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], children: Node[], references: Reference[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null, i18n?: I18nMeta$1 | undefined);
|
|
3269
|
+
constructor(name: string, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], directives: Directive[], children: Node[], references: Reference[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null, i18n?: I18nMeta$1 | undefined);
|
|
3233
3270
|
visit<Result>(visitor: Visitor<Result>): Result;
|
|
3234
3271
|
}
|
|
3235
3272
|
declare abstract class DeferredTrigger implements Node {
|
|
@@ -3394,11 +3431,42 @@ declare class LetDeclaration implements Node {
|
|
|
3394
3431
|
constructor(name: string, value: AST, sourceSpan: ParseSourceSpan, nameSpan: ParseSourceSpan, valueSpan: ParseSourceSpan);
|
|
3395
3432
|
visit<Result>(visitor: Visitor<Result>): Result;
|
|
3396
3433
|
}
|
|
3434
|
+
declare class Component implements Node {
|
|
3435
|
+
componentName: string;
|
|
3436
|
+
tagName: string | null;
|
|
3437
|
+
fullName: string;
|
|
3438
|
+
attributes: TextAttribute[];
|
|
3439
|
+
inputs: BoundAttribute[];
|
|
3440
|
+
outputs: BoundEvent[];
|
|
3441
|
+
directives: Directive[];
|
|
3442
|
+
children: Node[];
|
|
3443
|
+
references: Reference[];
|
|
3444
|
+
sourceSpan: ParseSourceSpan;
|
|
3445
|
+
startSourceSpan: ParseSourceSpan;
|
|
3446
|
+
endSourceSpan: ParseSourceSpan | null;
|
|
3447
|
+
i18n?: I18nMeta$1 | undefined;
|
|
3448
|
+
constructor(componentName: string, tagName: string | null, fullName: string, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], directives: Directive[], children: Node[], references: Reference[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null, i18n?: I18nMeta$1 | undefined);
|
|
3449
|
+
visit<Result>(visitor: Visitor<Result>): Result;
|
|
3450
|
+
}
|
|
3451
|
+
declare class Directive implements Node {
|
|
3452
|
+
name: string;
|
|
3453
|
+
attributes: TextAttribute[];
|
|
3454
|
+
inputs: BoundAttribute[];
|
|
3455
|
+
outputs: BoundEvent[];
|
|
3456
|
+
references: Reference[];
|
|
3457
|
+
sourceSpan: ParseSourceSpan;
|
|
3458
|
+
startSourceSpan: ParseSourceSpan;
|
|
3459
|
+
endSourceSpan: ParseSourceSpan | null;
|
|
3460
|
+
i18n?: I18nMeta$1 | undefined;
|
|
3461
|
+
constructor(name: string, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], references: Reference[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null, i18n?: I18nMeta$1 | undefined);
|
|
3462
|
+
visit<Result>(visitor: Visitor<Result>): Result;
|
|
3463
|
+
}
|
|
3397
3464
|
declare class Template implements Node {
|
|
3398
3465
|
tagName: string | null;
|
|
3399
3466
|
attributes: TextAttribute[];
|
|
3400
3467
|
inputs: BoundAttribute[];
|
|
3401
3468
|
outputs: BoundEvent[];
|
|
3469
|
+
directives: Directive[];
|
|
3402
3470
|
templateAttrs: (BoundAttribute | TextAttribute)[];
|
|
3403
3471
|
children: Node[];
|
|
3404
3472
|
references: Reference[];
|
|
@@ -3407,7 +3475,7 @@ declare class Template implements Node {
|
|
|
3407
3475
|
startSourceSpan: ParseSourceSpan;
|
|
3408
3476
|
endSourceSpan: ParseSourceSpan | null;
|
|
3409
3477
|
i18n?: I18nMeta$1 | undefined;
|
|
3410
|
-
constructor(tagName: string | null, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], templateAttrs: (BoundAttribute | TextAttribute)[], children: Node[], references: Reference[], variables: Variable[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null, i18n?: I18nMeta$1 | undefined);
|
|
3478
|
+
constructor(tagName: string | null, attributes: TextAttribute[], inputs: BoundAttribute[], outputs: BoundEvent[], directives: Directive[], templateAttrs: (BoundAttribute | TextAttribute)[], children: Node[], references: Reference[], variables: Variable[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null, i18n?: I18nMeta$1 | undefined);
|
|
3411
3479
|
visit<Result>(visitor: Visitor<Result>): Result;
|
|
3412
3480
|
}
|
|
3413
3481
|
declare class Content implements Node {
|
|
@@ -3415,9 +3483,11 @@ declare class Content implements Node {
|
|
|
3415
3483
|
attributes: TextAttribute[];
|
|
3416
3484
|
children: Node[];
|
|
3417
3485
|
sourceSpan: ParseSourceSpan;
|
|
3486
|
+
startSourceSpan: ParseSourceSpan;
|
|
3487
|
+
endSourceSpan: ParseSourceSpan | null;
|
|
3418
3488
|
i18n?: I18nMeta$1 | undefined;
|
|
3419
3489
|
readonly name = "ng-content";
|
|
3420
|
-
constructor(selector: string, attributes: TextAttribute[], children: Node[], sourceSpan: ParseSourceSpan, i18n?: I18nMeta$1 | undefined);
|
|
3490
|
+
constructor(selector: string, attributes: TextAttribute[], children: Node[], sourceSpan: ParseSourceSpan, startSourceSpan: ParseSourceSpan, endSourceSpan: ParseSourceSpan | null, i18n?: I18nMeta$1 | undefined);
|
|
3421
3491
|
visit<Result>(visitor: Visitor<Result>): Result;
|
|
3422
3492
|
}
|
|
3423
3493
|
declare class Variable implements Node {
|
|
@@ -3492,6 +3562,8 @@ interface Visitor<Result = any> {
|
|
|
3492
3562
|
visitIfBlockBranch(block: IfBlockBranch): Result;
|
|
3493
3563
|
visitUnknownBlock(block: UnknownBlock): Result;
|
|
3494
3564
|
visitLetDeclaration(decl: LetDeclaration): Result;
|
|
3565
|
+
visitComponent(component: Component): Result;
|
|
3566
|
+
visitDirective(directive: Directive): Result;
|
|
3495
3567
|
}
|
|
3496
3568
|
declare class RecursiveVisitor implements Visitor<void> {
|
|
3497
3569
|
visitElement(element: Element): void;
|
|
@@ -3507,6 +3579,8 @@ declare class RecursiveVisitor implements Visitor<void> {
|
|
|
3507
3579
|
visitIfBlock(block: IfBlock): void;
|
|
3508
3580
|
visitIfBlockBranch(block: IfBlockBranch): void;
|
|
3509
3581
|
visitContent(content: Content): void;
|
|
3582
|
+
visitComponent(component: Component): void;
|
|
3583
|
+
visitDirective(directive: Directive): void;
|
|
3510
3584
|
visitVariable(variable: Variable): void;
|
|
3511
3585
|
visitReference(reference: Reference): void;
|
|
3512
3586
|
visitTextAttribute(attribute: TextAttribute): void;
|
|
@@ -4141,7 +4215,7 @@ declare class BindingParser {
|
|
|
4141
4215
|
private _parsePropertyAst;
|
|
4142
4216
|
private _parseAnimation;
|
|
4143
4217
|
parseBinding(value: string, isHostBinding: boolean, sourceSpan: ParseSourceSpan, absoluteOffset: number): ASTWithSource;
|
|
4144
|
-
createBoundElementProperty(elementSelector: string, boundProp: ParsedProperty, skipValidation?: boolean, mapPropertyName?: boolean): BoundElementProperty;
|
|
4218
|
+
createBoundElementProperty(elementSelector: string | null, boundProp: ParsedProperty, skipValidation?: boolean, mapPropertyName?: boolean): BoundElementProperty;
|
|
4145
4219
|
parseEvent(name: string, expression: string, isAssignmentEvent: boolean, sourceSpan: ParseSourceSpan, handlerSpan: ParseSourceSpan, targetMatchableAttrs: string[][], targetEvents: ParsedEvent[], keySpan: ParseSourceSpan): void;
|
|
4146
4220
|
calcPossibleSecurityContexts(selector: string, propName: string, isAttribute: boolean): SecurityContext[];
|
|
4147
4221
|
parseEventListenerName(rawName: string): {
|
|
@@ -5304,5 +5378,5 @@ declare class DomElementSchemaRegistry extends ElementSchemaRegistry {
|
|
|
5304
5378
|
|
|
5305
5379
|
declare const VERSION: Version;
|
|
5306
5380
|
|
|
5307
|
-
export { AST, ASTWithName, ASTWithSource, AbsoluteSourceSpan, ArrayType, ArrowFunctionExpr, Attribute, Binary, BinaryOperator, BinaryOperatorExpr, BindingParser, BindingPipe, BindingType, Block, BlockParameter, BoundElementProperty, BuiltinType, BuiltinTypeName, CUSTOM_ELEMENTS_SCHEMA, Call, Chain, ChangeDetectionStrategy, CommaExpr, Comment$1 as Comment, CompilerConfig, Conditional, ConditionalExpr, ConstantPool, CssSelector, DEFAULT_INTERPOLATION_CONFIG, DYNAMIC_TYPE, DeclarationListEmitMode, DeclareFunctionStmt, DeclareVarStmt, DeferBlockDepsEmitMode, DomElementSchemaRegistry, DynamicImportExpr, EOF, Element$1 as Element, ElementSchemaRegistry, EmitterVisitorContext, EmptyExpr, Expansion, ExpansionCase, Expression, ExpressionBinding, ExpressionStatement, ExpressionType, ExternalExpr, ExternalReference, FactoryTarget$1 as FactoryTarget, ForwardRefHandling, FunctionExpr, HtmlParser, HtmlTagDefinition, I18NHtmlParser, IfStmt, ImplicitReceiver, InstantiateExpr, Interpolation, InterpolationConfig, InvokeFunctionExpr, JSDocComment, JitEvaluator, KeyedRead, KeyedWrite, LeadingComment, LetDeclaration$1 as LetDeclaration, Lexer, TokenType$1 as LexerTokenType, LiteralArray, LiteralArrayExpr, LiteralExpr, LiteralMap, LiteralMapExpr, LiteralPrimitive, LocalizedString, MapType, MessageBundle, NONE_TYPE, NO_ERRORS_SCHEMA, NodeWithI18n, NonNullAssert, NotExpr, ParenthesizedExpr, ParenthesizedExpression, ParseError, ParseErrorLevel, ParseFlags, ParseLocation, ParseSourceFile, ParseSourceSpan, ParseSpan, ParseTreeResult, ParsedEvent, ParsedEventType, ParsedProperty, ParsedPropertyType, ParsedVariable, Parser, ParserError, PrefixNot, PropertyRead, PropertyWrite, Identifiers as R3Identifiers, R3NgModuleMetadataKind, R3SelectorScopeMode, R3TargetBinder, R3TemplateDependencyKind, ReadKeyExpr, ReadPropExpr, ReadVarExpr, RecursiveAstVisitor, RecursiveVisitor$1 as RecursiveVisitor, ResourceLoader, ReturnStatement, STRING_TYPE, SafeCall, SafeKeyedRead, SafePropertyRead, SelectorContext, SelectorListContext, SelectorMatcher, Serializer, SplitInterpolation, Statement, StmtModifier, StringToken, StringTokenKind, TagContentType, TaggedTemplateLiteral, TaggedTemplateLiteralExpr, TemplateBindingParseResult, TemplateLiteral, TemplateLiteralElement, TemplateLiteralElementExpr, TemplateLiteralExpr, Text$1 as Text, ThisReceiver, BlockNode as TmplAstBlockNode, BoundAttribute as TmplAstBoundAttribute, BoundDeferredTrigger as TmplAstBoundDeferredTrigger, BoundEvent as TmplAstBoundEvent, BoundText as TmplAstBoundText, Content as TmplAstContent, DeferredBlock as TmplAstDeferredBlock, DeferredBlockError as TmplAstDeferredBlockError, DeferredBlockLoading as TmplAstDeferredBlockLoading, DeferredBlockPlaceholder as TmplAstDeferredBlockPlaceholder, DeferredTrigger as TmplAstDeferredTrigger, Element as TmplAstElement, ForLoopBlock as TmplAstForLoopBlock, ForLoopBlockEmpty as TmplAstForLoopBlockEmpty, HostElement as TmplAstHostElement, HoverDeferredTrigger as TmplAstHoverDeferredTrigger, Icu as TmplAstIcu, IdleDeferredTrigger as TmplAstIdleDeferredTrigger, IfBlock as TmplAstIfBlock, IfBlockBranch as TmplAstIfBlockBranch, ImmediateDeferredTrigger as TmplAstImmediateDeferredTrigger, InteractionDeferredTrigger as TmplAstInteractionDeferredTrigger, LetDeclaration as TmplAstLetDeclaration, NeverDeferredTrigger as TmplAstNeverDeferredTrigger, RecursiveVisitor as TmplAstRecursiveVisitor, Reference as TmplAstReference, SwitchBlock as TmplAstSwitchBlock, SwitchBlockCase as TmplAstSwitchBlockCase, Template as TmplAstTemplate, Text as TmplAstText, TextAttribute as TmplAstTextAttribute, TimerDeferredTrigger as TmplAstTimerDeferredTrigger, UnknownBlock as TmplAstUnknownBlock, Variable as TmplAstVariable, ViewportDeferredTrigger as TmplAstViewportDeferredTrigger, Token, TokenType, TransplantedType, TreeError, Type, TypeModifier, TypeofExpr, TypeofExpression, Unary, UnaryOperator, UnaryOperatorExpr, VERSION, VariableBinding, Version, ViewEncapsulation, VoidExpr, VoidExpression, WrappedNodeExpr, WriteKeyExpr, WritePropExpr, WriteVarExpr, Xliff, Xliff2, Xmb, XmlParser, Xtb, compileClassDebugInfo, compileClassMetadata, compileComponentClassMetadata, compileComponentDeclareClassMetadata, compileComponentFromMetadata, compileDeclareClassMetadata, compileDeclareComponentFromMetadata, compileDeclareDirectiveFromMetadata, compileDeclareFactoryFunction, compileDeclareInjectableFromMetadata, compileDeclareInjectorFromMetadata, compileDeclareNgModuleFromMetadata, compileDeclarePipeFromMetadata, compileDeferResolverFunction, compileDirectiveFromMetadata, compileFactoryFunction, compileHmrInitializer, compileHmrUpdateCallback, compileInjectable, compileInjector, compileNgModule, compileOpaqueAsyncClassMetadata, compilePipeFromMetadata, computeMsgId, core_d as core, createCssSelectorFromNode, createInjectableType, createMayBeForwardRefExpression, devOnlyGuardedExpression, emitDistinctChangesOnlyDefaultValue, encapsulateStyle, findMatchingDirectivesAndPipes, getHtmlTagDefinition, getNsPrefix, getSafePropertyAccessString, identifierName, isNgContainer, isNgContent, isNgTemplate, jsDocComment, leadingComment, literal, literalMap, makeBindingParser, mergeNsAndName, output_ast_d as outputAst, parseHostBindings, parseTemplate, preserveWhitespacesDefault, publishFacade, r3JitTypeSourceSpan, sanitizeIdentifier, splitNsName, visitAll as tmplAstVisitAll, verifyHostBindings, visitAll$1 as visitAll };
|
|
5381
|
+
export { AST, ASTWithName, ASTWithSource, AbsoluteSourceSpan, ArrayType, ArrowFunctionExpr, Attribute, Binary, BinaryOperator, BinaryOperatorExpr, BindingParser, BindingPipe, BindingType, Block, BlockParameter, BoundElementProperty, BuiltinType, BuiltinTypeName, CUSTOM_ELEMENTS_SCHEMA, Call, Chain, ChangeDetectionStrategy, CommaExpr, Comment$1 as Comment, CompilerConfig, Component$1 as Component, Conditional, ConditionalExpr, ConstantPool, CssSelector, DEFAULT_INTERPOLATION_CONFIG, DYNAMIC_TYPE, DeclarationListEmitMode, DeclareFunctionStmt, DeclareVarStmt, DeferBlockDepsEmitMode, Directive$1 as Directive, DomElementSchemaRegistry, DynamicImportExpr, EOF, Element$1 as Element, ElementSchemaRegistry, EmitterVisitorContext, EmptyExpr, Expansion, ExpansionCase, Expression, ExpressionBinding, ExpressionStatement, ExpressionType, ExternalExpr, ExternalReference, FactoryTarget$1 as FactoryTarget, ForwardRefHandling, FunctionExpr, HtmlParser, HtmlTagDefinition, I18NHtmlParser, IfStmt, ImplicitReceiver, InstantiateExpr, Interpolation, InterpolationConfig, InvokeFunctionExpr, JSDocComment, JitEvaluator, KeyedRead, KeyedWrite, LeadingComment, LetDeclaration$1 as LetDeclaration, Lexer, TokenType$1 as LexerTokenType, LiteralArray, LiteralArrayExpr, LiteralExpr, LiteralMap, LiteralMapExpr, LiteralPrimitive, LocalizedString, MapType, MessageBundle, NONE_TYPE, NO_ERRORS_SCHEMA, NodeWithI18n, NonNullAssert, NotExpr, ParenthesizedExpr, ParenthesizedExpression, ParseError, ParseErrorLevel, ParseFlags, ParseLocation, ParseSourceFile, ParseSourceSpan, ParseSpan, ParseTreeResult, ParsedEvent, ParsedEventType, ParsedProperty, ParsedPropertyType, ParsedVariable, Parser, ParserError, PrefixNot, PropertyRead, PropertyWrite, Identifiers as R3Identifiers, R3NgModuleMetadataKind, R3SelectorScopeMode, R3TargetBinder, R3TemplateDependencyKind, ReadKeyExpr, ReadPropExpr, ReadVarExpr, RecursiveAstVisitor, RecursiveVisitor$1 as RecursiveVisitor, ResourceLoader, ReturnStatement, STRING_TYPE, SafeCall, SafeKeyedRead, SafePropertyRead, SelectorContext, SelectorListContext, SelectorMatcher, Serializer, SplitInterpolation, Statement, StmtModifier, StringToken, StringTokenKind, TagContentType, TaggedTemplateLiteral, TaggedTemplateLiteralExpr, TemplateBindingParseResult, TemplateLiteral, TemplateLiteralElement, TemplateLiteralElementExpr, TemplateLiteralExpr, Text$1 as Text, ThisReceiver, BlockNode as TmplAstBlockNode, BoundAttribute as TmplAstBoundAttribute, BoundDeferredTrigger as TmplAstBoundDeferredTrigger, BoundEvent as TmplAstBoundEvent, BoundText as TmplAstBoundText, Component as TmplAstComponent, Content as TmplAstContent, DeferredBlock as TmplAstDeferredBlock, DeferredBlockError as TmplAstDeferredBlockError, DeferredBlockLoading as TmplAstDeferredBlockLoading, DeferredBlockPlaceholder as TmplAstDeferredBlockPlaceholder, DeferredTrigger as TmplAstDeferredTrigger, Directive as TmplAstDirective, Element as TmplAstElement, ForLoopBlock as TmplAstForLoopBlock, ForLoopBlockEmpty as TmplAstForLoopBlockEmpty, HostElement as TmplAstHostElement, HoverDeferredTrigger as TmplAstHoverDeferredTrigger, Icu as TmplAstIcu, IdleDeferredTrigger as TmplAstIdleDeferredTrigger, IfBlock as TmplAstIfBlock, IfBlockBranch as TmplAstIfBlockBranch, ImmediateDeferredTrigger as TmplAstImmediateDeferredTrigger, InteractionDeferredTrigger as TmplAstInteractionDeferredTrigger, LetDeclaration as TmplAstLetDeclaration, NeverDeferredTrigger as TmplAstNeverDeferredTrigger, RecursiveVisitor as TmplAstRecursiveVisitor, Reference as TmplAstReference, SwitchBlock as TmplAstSwitchBlock, SwitchBlockCase as TmplAstSwitchBlockCase, Template as TmplAstTemplate, Text as TmplAstText, TextAttribute as TmplAstTextAttribute, TimerDeferredTrigger as TmplAstTimerDeferredTrigger, UnknownBlock as TmplAstUnknownBlock, Variable as TmplAstVariable, ViewportDeferredTrigger as TmplAstViewportDeferredTrigger, Token, TokenType, TransplantedType, TreeError, Type, TypeModifier, TypeofExpr, TypeofExpression, Unary, UnaryOperator, UnaryOperatorExpr, VERSION, VariableBinding, Version, ViewEncapsulation, VoidExpr, VoidExpression, WrappedNodeExpr, WriteKeyExpr, WritePropExpr, WriteVarExpr, Xliff, Xliff2, Xmb, XmlParser, Xtb, compileClassDebugInfo, compileClassMetadata, compileComponentClassMetadata, compileComponentDeclareClassMetadata, compileComponentFromMetadata, compileDeclareClassMetadata, compileDeclareComponentFromMetadata, compileDeclareDirectiveFromMetadata, compileDeclareFactoryFunction, compileDeclareInjectableFromMetadata, compileDeclareInjectorFromMetadata, compileDeclareNgModuleFromMetadata, compileDeclarePipeFromMetadata, compileDeferResolverFunction, compileDirectiveFromMetadata, compileFactoryFunction, compileHmrInitializer, compileHmrUpdateCallback, compileInjectable, compileInjector, compileNgModule, compileOpaqueAsyncClassMetadata, compilePipeFromMetadata, computeMsgId, core_d as core, createCssSelectorFromNode, createInjectableType, createMayBeForwardRefExpression, devOnlyGuardedExpression, emitDistinctChangesOnlyDefaultValue, encapsulateStyle, findMatchingDirectivesAndPipes, getHtmlTagDefinition, getNsPrefix, getSafePropertyAccessString, identifierName, isNgContainer, isNgContent, isNgTemplate, jsDocComment, leadingComment, literal, literalMap, makeBindingParser, mergeNsAndName, output_ast_d as outputAst, parseHostBindings, parseTemplate, preserveWhitespacesDefault, publishFacade, r3JitTypeSourceSpan, sanitizeIdentifier, splitNsName, visitAll as tmplAstVisitAll, verifyHostBindings, visitAll$1 as visitAll };
|
|
5308
5382
|
export type { AnimationTriggerNames, AstVisitor, BoundTarget, CompileClassMetadataFn, CompileIdentifierMetadata, DeclareComponentTemplateInfo, DirectiveMeta, ExpressionVisitor, InputOutputPropertySet, InterpolationPiece, LegacyInputPartialMapping, LexerRange, LiteralMapKey, MaybeForwardRefExpression, Node$1 as Node, ParseTemplateOptions, ParsedHostBindings, ParsedTemplate, R3ClassDebugInfo, R3ClassMetadata, R3CompiledExpression, R3ComponentDeferMetadata, R3ComponentMetadata, R3DeclareClassMetadata, R3DeclareClassMetadataAsync, R3DeclareComponentMetadata, R3DeclareDependencyMetadata, R3DeclareDirectiveDependencyMetadata, R3DeclareDirectiveMetadata, R3DeclareFactoryMetadata, R3DeclareHostDirectiveMetadata, R3DeclareInjectableMetadata, R3DeclareInjectorMetadata, R3DeclareNgModuleDependencyMetadata, R3DeclareNgModuleMetadata, R3DeclarePipeDependencyMetadata, R3DeclarePipeMetadata, R3DeclareQueryMetadata, R3DeclareTemplateDependencyMetadata, R3DeferPerBlockDependency, R3DeferPerComponentDependency, R3DeferResolverFunctionMetadata, R3DependencyMetadata, R3DirectiveDependencyMetadata, R3DirectiveMetadata, R3FactoryMetadata, R3HmrMetadata, R3HmrNamespaceDependency, R3HostDirectiveMetadata, R3HostMetadata, R3InjectableMetadata, R3InjectorMetadata, R3InputMetadata, R3NgModuleDependencyMetadata, R3NgModuleMetadata, R3NgModuleMetadataGlobal, R3PartialDeclaration, R3PipeDependencyMetadata, R3PipeMetadata, R3QueryMetadata, R3Reference, R3TemplateDependency, R3TemplateDependencyMetadata, ReferenceTarget, SchemaMetadata, ScopedNode, SourceMap, StatementVisitor, TagDefinition, Target, TargetBinder, TemplateBinding, TemplateBindingIdentifier, TemplateEntity, DeferredBlockTriggers as TmplAstDeferredBlockTriggers, Node as TmplAstNode, Visitor as TmplAstVisitor, TypeVisitor, Visitor$1 as Visitor };
|