@angular/compiler 16.0.1 → 16.1.0-next.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.
Files changed (32) hide show
  1. package/esm2022/src/compiler_facade_interface.mjs +1 -1
  2. package/esm2022/src/jit_compiler_facade.mjs +2 -1
  3. package/esm2022/src/render3/partial/api.mjs +1 -1
  4. package/esm2022/src/render3/partial/class_metadata.mjs +1 -1
  5. package/esm2022/src/render3/partial/directive.mjs +5 -2
  6. package/esm2022/src/render3/partial/factory.mjs +1 -1
  7. package/esm2022/src/render3/partial/injectable.mjs +1 -1
  8. package/esm2022/src/render3/partial/injector.mjs +1 -1
  9. package/esm2022/src/render3/partial/ng_module.mjs +1 -1
  10. package/esm2022/src/render3/partial/pipe.mjs +1 -1
  11. package/esm2022/src/render3/view/api.mjs +1 -1
  12. package/esm2022/src/render3/view/compiler.mjs +6 -1
  13. package/esm2022/src/template/pipeline/ir/src/enums.mjs +18 -6
  14. package/esm2022/src/template/pipeline/ir/src/expression.mjs +8 -1
  15. package/esm2022/src/template/pipeline/ir/src/ops/create.mjs +1 -1
  16. package/esm2022/src/template/pipeline/src/conversion.mjs +28 -0
  17. package/esm2022/src/template/pipeline/src/emit.mjs +6 -2
  18. package/esm2022/src/template/pipeline/src/ingest.mjs +45 -8
  19. package/esm2022/src/template/pipeline/src/instruction.mjs +17 -8
  20. package/esm2022/src/template/pipeline/src/phases/chaining.mjs +4 -1
  21. package/esm2022/src/template/pipeline/src/phases/empty_elements.mjs +16 -8
  22. package/esm2022/src/template/pipeline/src/phases/generate_variables.mjs +8 -27
  23. package/esm2022/src/template/pipeline/src/phases/ng_container.mjs +29 -0
  24. package/esm2022/src/template/pipeline/src/phases/reify.mjs +10 -1
  25. package/esm2022/src/template/pipeline/src/phases/save_restore_view.mjs +46 -0
  26. package/esm2022/src/version.mjs +1 -1
  27. package/fesm2022/compiler.mjs +216 -62
  28. package/fesm2022/compiler.mjs.map +1 -1
  29. package/fesm2022/testing.mjs +1 -1
  30. package/index.d.ts +9 -1
  31. package/package.json +2 -2
  32. package/testing/index.d.ts +1 -1
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.0.1
2
+ * @license Angular v16.1.0-next.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.0.1
2
+ * @license Angular v16.1.0-next.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -3047,6 +3047,10 @@ export declare interface R3DeclareDirectiveMetadata extends R3PartialDeclaration
3047
3047
  * Whether the directive is standalone. Defaults to false.
3048
3048
  */
3049
3049
  isStandalone?: boolean;
3050
+ /**
3051
+ * Whether the directive is a signal-based directive. Defaults to false.
3052
+ */
3053
+ isSignal?: boolean;
3050
3054
  /**
3051
3055
  * Additional directives applied to the directive host.
3052
3056
  */
@@ -3407,6 +3411,10 @@ export declare interface R3DirectiveMetadata {
3407
3411
  * Whether or not the component or directive is standalone.
3408
3412
  */
3409
3413
  isStandalone: boolean;
3414
+ /**
3415
+ * Whether or not the component or directive is signal-based.
3416
+ */
3417
+ isSignal: boolean;
3410
3418
  /**
3411
3419
  * Additional directives applied to the directive host.
3412
3420
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/compiler",
3
- "version": "16.0.1",
3
+ "version": "16.1.0-next.0",
4
4
  "description": "Angular - the compiler library",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -11,7 +11,7 @@
11
11
  "tslib": "^2.3.0"
12
12
  },
13
13
  "peerDependencies": {
14
- "@angular/core": "16.0.1"
14
+ "@angular/core": "16.1.0-next.0"
15
15
  },
16
16
  "peerDependenciesMeta": {
17
17
  "@angular/core": {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v16.0.1
2
+ * @license Angular v16.1.0-next.0
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */