@angular/compiler 21.2.0-next.0 → 21.2.0-next.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler",
3
- "version": "21.2.0-next.0",
3
+ "version": "21.2.0-next.2",
4
4
  "description": "Angular - the compiler library",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.2.0-next.0
2
+ * @license Angular v21.2.0-next.2
3
3
  * (c) 2010-2026 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -13,7 +13,8 @@ declare enum ViewEncapsulation$1 {
13
13
  }
14
14
  declare enum ChangeDetectionStrategy$1 {
15
15
  OnPush = 0,
16
- Default = 1
16
+ Default = 1,
17
+ Eager = 1
17
18
  }
18
19
  interface Input {
19
20
  alias?: string;
@@ -2537,6 +2538,9 @@ interface R3DirectiveMetadataFacade {
2537
2538
  })[];
2538
2539
  outputs: string[];
2539
2540
  usesInheritance: boolean;
2541
+ controlCreate: {
2542
+ passThroughInput: string | null;
2543
+ } | null;
2540
2544
  exportAs: string[] | null;
2541
2545
  providers: Provider[] | null;
2542
2546
  viewQueries: R3QueryMetadataFacade[];
@@ -2591,6 +2595,9 @@ interface R3DeclareDirectiveFacade {
2591
2595
  exportAs?: string[];
2592
2596
  usesInheritance?: boolean;
2593
2597
  usesOnChanges?: boolean;
2598
+ controlCreate?: {
2599
+ passThroughInput: string | null;
2600
+ };
2594
2601
  isStandalone?: boolean;
2595
2602
  isSignal?: boolean;
2596
2603
  hostDirectives?: R3HostDirectiveMetadataFacade[] | null;
@@ -3137,6 +3144,9 @@ interface R3DeclareDirectiveMetadata extends R3PartialDeclaration {
3137
3144
  * Whether the directive implements the `ngOnChanges` hook. Defaults to false.
3138
3145
  */
3139
3146
  usesOnChanges?: boolean;
3147
+ controlCreate?: {
3148
+ passThroughInput: string | null;
3149
+ };
3140
3150
  /**
3141
3151
  * Whether the directive is standalone. Defaults to false.
3142
3152
  */
@@ -4017,6 +4027,12 @@ interface R3DirectiveMetadata {
4017
4027
  * Whether or not the component or directive inherits from another class
4018
4028
  */
4019
4029
  usesInheritance: boolean;
4030
+ /**
4031
+ * Whether or not the component or directive uses the private `ɵngControlCreate` hook.
4032
+ */
4033
+ controlCreate: {
4034
+ passThroughInput: string | null;
4035
+ } | null;
4020
4036
  /**
4021
4037
  * Reference name under which to export the directive's type in a template,
4022
4038
  * if any.
@@ -5343,6 +5359,7 @@ declare class Identifiers {
5343
5359
  static arrowFunction: ExternalReference;
5344
5360
  static attachSourceLocations: ExternalReference;
5345
5361
  static NgOnChangesFeature: ExternalReference;
5362
+ static ControlFeature: ExternalReference;
5346
5363
  static InheritDefinitionFeature: ExternalReference;
5347
5364
  static ProvidersFeature: ExternalReference;
5348
5365
  static HostDirectivesFeature: ExternalReference;