@angular/compiler-cli 17.0.0 → 17.0.1
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/bundles/{chunk-6WFRHXYB.js → chunk-3L3QP7PC.js} +5 -5
- package/bundles/{chunk-3IBJEGH3.js → chunk-BV3ZUD7T.js} +5 -5
- package/bundles/{chunk-GYHDNUIK.js → chunk-EKTJ7622.js} +7 -7
- package/bundles/{chunk-QDHJ26RK.js → chunk-ELZXPNCU.js} +9 -9
- package/bundles/{chunk-6JN5EFEW.js → chunk-HKIDKKUJ.js} +88 -83
- package/bundles/{chunk-6JN5EFEW.js.map → chunk-HKIDKKUJ.js.map} +1 -1
- package/bundles/{chunk-UHYH6BYB.js → chunk-JZC4T2RR.js} +1 -1
- package/bundles/{chunk-SBDNBITT.js → chunk-LYJKWJUC.js} +3 -3
- package/bundles/{chunk-VNJI35KB.js → chunk-MHTLEXGT.js} +4 -4
- package/bundles/{chunk-CLTYCPJK.js → chunk-OTTOC3WQ.js} +27 -27
- package/bundles/{chunk-CSOLWS7O.js → chunk-PCMLSPQF.js} +7 -7
- package/bundles/{chunk-KIPH6OCC.js → chunk-VBLBTWOL.js} +108 -107
- package/bundles/{chunk-KIPH6OCC.js.map → chunk-VBLBTWOL.js.map} +1 -1
- package/bundles/{chunk-QFTMYSLL.js → chunk-Z4QM3XT4.js} +30 -30
- package/bundles/index.js +13 -13
- package/bundles/linker/babel/index.js +13 -13
- package/bundles/linker/index.js +5 -5
- package/bundles/ngcc/index.js +1 -1
- package/bundles/private/bazel.js +1 -1
- package/bundles/private/localize.js +3 -3
- package/bundles/private/migrations.js +6 -6
- package/bundles/private/tooling.js +4 -4
- package/bundles/src/bin/ng_xi18n.js +11 -11
- package/bundles/src/bin/ngc.js +9 -9
- package/bundles_metadata.json +1 -1
- package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
- package/package.json +2 -2
- package/src/ngtsc/annotations/component/src/handler.d.ts +2 -1
- package/src/ngtsc/annotations/component/src/resources.d.ts +1 -0
- package/src/ngtsc/core/src/compiler.d.ts +1 -0
- /package/bundles/{chunk-6WFRHXYB.js.map → chunk-3L3QP7PC.js.map} +0 -0
- /package/bundles/{chunk-3IBJEGH3.js.map → chunk-BV3ZUD7T.js.map} +0 -0
- /package/bundles/{chunk-GYHDNUIK.js.map → chunk-EKTJ7622.js.map} +0 -0
- /package/bundles/{chunk-QDHJ26RK.js.map → chunk-ELZXPNCU.js.map} +0 -0
- /package/bundles/{chunk-UHYH6BYB.js.map → chunk-JZC4T2RR.js.map} +0 -0
- /package/bundles/{chunk-SBDNBITT.js.map → chunk-LYJKWJUC.js.map} +0 -0
- /package/bundles/{chunk-VNJI35KB.js.map → chunk-MHTLEXGT.js.map} +0 -0
- /package/bundles/{chunk-CLTYCPJK.js.map → chunk-OTTOC3WQ.js.map} +0 -0
- /package/bundles/{chunk-CSOLWS7O.js.map → chunk-PCMLSPQF.js.map} +0 -0
- /package/bundles/{chunk-QFTMYSLL.js.map → chunk-Z4QM3XT4.js.map} +0 -0
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { MaybeForwardRefExpression, outputAst as o, R3DeclareDependencyMetadata, R3DependencyMetadata, R3Reference } from '@angular/compiler';
|
|
9
9
|
import { AstObject, AstValue } from '../../ast/ast_value';
|
|
10
|
-
export declare const PLACEHOLDER_VERSION = "17.0.
|
|
10
|
+
export declare const PLACEHOLDER_VERSION = "17.0.1";
|
|
11
11
|
export declare function wrapReference<TExpression>(wrapped: o.WrappedNodeExpr<TExpression>): R3Reference;
|
|
12
12
|
/**
|
|
13
13
|
* Parses the value of an enum from the AST value's symbol name.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler-cli",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.0.1",
|
|
4
4
|
"description": "Angular - the compiler CLI for Node.js",
|
|
5
5
|
"typings": "index.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"yargs": "^17.2.1"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@angular/compiler": "17.0.
|
|
56
|
+
"@angular/compiler": "17.0.1",
|
|
57
57
|
"typescript": ">=5.2 <5.3"
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
@@ -61,7 +61,8 @@ export declare class ComponentDecoratorHandler implements DecoratorHandler<Decor
|
|
|
61
61
|
private readonly compilationMode;
|
|
62
62
|
private readonly deferredSymbolTracker;
|
|
63
63
|
private readonly forbidOrphanRendering;
|
|
64
|
-
|
|
64
|
+
private readonly enableBlockSyntax;
|
|
65
|
+
constructor(reflector: ReflectionHost, evaluator: PartialEvaluator, metaRegistry: MetadataRegistry, metaReader: MetadataReader, scopeReader: ComponentScopeReader, dtsScopeReader: DtsModuleScopeResolver, scopeRegistry: LocalModuleScopeRegistry, typeCheckScopeRegistry: TypeCheckScopeRegistry, resourceRegistry: ResourceRegistry, isCore: boolean, strictCtorDeps: boolean, resourceLoader: ResourceLoader, rootDirs: ReadonlyArray<string>, defaultPreserveWhitespaces: boolean, i18nUseExternalIds: boolean, enableI18nLegacyMessageIdFormat: boolean, usePoisonedData: boolean, i18nNormalizeLineEndingsInICUs: boolean, moduleResolver: ModuleResolver, cycleAnalyzer: CycleAnalyzer, cycleHandlingStrategy: CycleHandlingStrategy, refEmitter: ReferenceEmitter, referencesRegistry: ReferencesRegistry, depTracker: DependencyTracker | null, injectableRegistry: InjectableClassRegistry, semanticDepGraphUpdater: SemanticDepGraphUpdater | null, annotateForClosureCompiler: boolean, perf: PerfRecorder, hostDirectivesResolver: HostDirectivesResolver, includeClassMetadata: boolean, compilationMode: CompilationMode, deferredSymbolTracker: DeferredSymbolTracker, forbidOrphanRendering: boolean, enableBlockSyntax: boolean);
|
|
65
66
|
private literalCache;
|
|
66
67
|
private elementSchemaRegistry;
|
|
67
68
|
/**
|
|
@@ -99,6 +99,7 @@ export interface ExtractTemplateOptions {
|
|
|
99
99
|
usePoisonedData: boolean;
|
|
100
100
|
enableI18nLegacyMessageIdFormat: boolean;
|
|
101
101
|
i18nNormalizeLineEndingsInICUs: boolean;
|
|
102
|
+
enableBlockSyntax: boolean;
|
|
102
103
|
}
|
|
103
104
|
export declare function extractTemplate(node: ClassDeclaration, template: TemplateDeclaration, evaluator: PartialEvaluator, depTracker: DependencyTracker | null, resourceLoader: ResourceLoader, options: ExtractTemplateOptions, compilationMode: CompilationMode): ParsedTemplateWithSource;
|
|
104
105
|
export declare function parseTemplateDeclaration(node: ClassDeclaration, decorator: Decorator, component: Map<string, ts.Expression>, containingFile: string, evaluator: PartialEvaluator, depTracker: DependencyTracker | null, resourceLoader: ResourceLoader, defaultPreserveWhitespaces: boolean): TemplateDeclaration;
|
|
@@ -130,6 +130,7 @@ export declare class NgCompiler {
|
|
|
130
130
|
readonly ignoreForDiagnostics: Set<ts.SourceFile>;
|
|
131
131
|
readonly ignoreForEmit: Set<ts.SourceFile>;
|
|
132
132
|
readonly enableTemplateTypeChecker: boolean;
|
|
133
|
+
private readonly enableBlockSyntax;
|
|
133
134
|
/**
|
|
134
135
|
* `NgCompiler` can be reused for multiple compilations (for resource-only changes), and each
|
|
135
136
|
* new compilation uses a fresh `PerfRecorder`. Thus, classes created with a lifespan of the
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|