@angular/compiler-cli 17.2.0-rc.1 → 17.2.0

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.
@@ -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.0-rc.1";
10
+ export declare const PLACEHOLDER_VERSION = "17.2.0";
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.0-rc.1",
3
+ "version": "17.2.0",
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.0-rc.1",
56
+ "@angular/compiler": "17.2.0",
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
  /**