@angular/compiler-cli 17.2.0-rc.1 → 17.2.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-63UQIYTZ.js +1 -1
- package/bundles/{chunk-JIFH6OZK.js → chunk-KMYUI7UU.js} +18 -5
- package/bundles/{chunk-JIFH6OZK.js.map → chunk-KMYUI7UU.js.map} +1 -1
- package/bundles/{chunk-VVX2ZXGV.js → chunk-QLLRERNV.js} +2 -2
- package/bundles/index.js +2 -2
- package/bundles/src/bin/ng_xi18n.js +2 -2
- package/bundles/src/bin/ngc.js +2 -2
- 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/core/src/compiler.d.ts +1 -0
- package/src/ngtsc/typecheck/api/api.d.ts +4 -0
- /package/bundles/{chunk-VVX2ZXGV.js.map → chunk-QLLRERNV.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.2.
|
|
10
|
+
export declare const PLACEHOLDER_VERSION = "17.2.1";
|
|
11
11
|
export declare const SHOULD_USE_TEMPLATE_PIPELINE_FOR_LINKER = false;
|
|
12
12
|
export declare function wrapReference<TExpression>(wrapped: o.WrappedNodeExpr<TExpression>): R3Reference;
|
|
13
13
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler-cli",
|
|
3
|
-
"version": "17.2.
|
|
3
|
+
"version": "17.2.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.2.
|
|
56
|
+
"@angular/compiler": "17.2.1",
|
|
57
57
|
"typescript": ">=5.2 <5.4"
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
@@ -131,6 +131,7 @@ export declare class NgCompiler {
|
|
|
131
131
|
readonly ignoreForEmit: Set<ts.SourceFile>;
|
|
132
132
|
readonly enableTemplateTypeChecker: boolean;
|
|
133
133
|
private readonly enableBlockSyntax;
|
|
134
|
+
private readonly angularCoreVersion;
|
|
134
135
|
/**
|
|
135
136
|
* `NgCompiler` can be reused for multiple compilations (for resource-only changes), and each
|
|
136
137
|
* new compilation uses a fresh `PerfRecorder`. Thus, classes created with a lifespan of the
|
|
@@ -290,6 +290,10 @@ export interface TypeCheckingConfig {
|
|
|
290
290
|
* opportunities to improve their own developer experience.
|
|
291
291
|
*/
|
|
292
292
|
suggestionsForSuboptimalTypeInference: boolean;
|
|
293
|
+
/**
|
|
294
|
+
* Whether the type of two-way bindings should be widened to allow `WritableSignal`.
|
|
295
|
+
*/
|
|
296
|
+
allowSignalsInTwoWayBindings: boolean;
|
|
293
297
|
}
|
|
294
298
|
export type TemplateSourceMapping = DirectTemplateSourceMapping | IndirectTemplateSourceMapping | ExternalTemplateSourceMapping;
|
|
295
299
|
/**
|
|
File without changes
|