@angular/compiler-cli 17.3.6 → 17.3.8

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.3.6";
10
+ export declare const PLACEHOLDER_VERSION = "17.3.8";
11
11
  export declare const SHOULD_USE_TEMPLATE_PIPELINE_FOR_LINKER = true;
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.3.6",
3
+ "version": "17.3.8",
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.3.6",
56
+ "@angular/compiler": "17.3.8",
57
57
  "typescript": ">=5.2 <5.5"
58
58
  },
59
59
  "repository": {
@@ -294,6 +294,10 @@ export interface TypeCheckingConfig {
294
294
  * Whether the type of two-way bindings should be widened to allow `WritableSignal`.
295
295
  */
296
296
  allowSignalsInTwoWayBindings: boolean;
297
+ /**
298
+ * Whether to descend into the bodies of control flow blocks (`@if`, `@switch` and `@for`).
299
+ */
300
+ checkControlFlowBodies: boolean;
297
301
  }
298
302
  export type TemplateSourceMapping = DirectTemplateSourceMapping | IndirectTemplateSourceMapping | ExternalTemplateSourceMapping;
299
303
  /**