@angular/core 17.3.1 → 17.3.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.
Files changed (29) hide show
  1. package/esm2022/src/authoring/input/input.mjs +37 -14
  2. package/esm2022/src/authoring/input/input_signal.mjs +1 -1
  3. package/esm2022/src/authoring/input/input_signal_node.mjs +1 -1
  4. package/esm2022/src/authoring/input/input_type_checking.mjs +1 -1
  5. package/esm2022/src/authoring/model/model.mjs +35 -15
  6. package/esm2022/src/authoring/output/output.mjs +32 -10
  7. package/esm2022/src/authoring/queries.mjs +11 -1
  8. package/esm2022/src/defer/instructions.mjs +21 -6
  9. package/esm2022/src/render3/component_ref.mjs +1 -1
  10. package/esm2022/src/version.mjs +1 -1
  11. package/esm2022/testing/src/logger.mjs +3 -3
  12. package/fesm2022/core.mjs +133 -44
  13. package/fesm2022/core.mjs.map +1 -1
  14. package/fesm2022/primitives/signals.mjs +1 -1
  15. package/fesm2022/rxjs-interop.mjs +1 -1
  16. package/fesm2022/testing.mjs +1 -1
  17. package/index.d.ts +158 -109
  18. package/package.json +1 -1
  19. package/primitives/signals/index.d.ts +1 -1
  20. package/rxjs-interop/index.d.ts +1 -1
  21. package/schematics/migrations/block-template-entities/bundle.js +2 -1
  22. package/schematics/migrations/block-template-entities/bundle.js.map +2 -2
  23. package/schematics/migrations/invalid-two-way-bindings/bundle.js +2 -1
  24. package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +2 -2
  25. package/schematics/ng-generate/control-flow-migration/bundle.js +6 -2
  26. package/schematics/ng-generate/control-flow-migration/bundle.js.map +2 -2
  27. package/schematics/ng-generate/standalone-migration/bundle.js +2855 -1234
  28. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  29. package/testing/index.d.ts +1 -1
@@ -19095,6 +19095,7 @@ function optimizeTrackFns(job) {
19095
19095
  } else if (op.track instanceof ReadVarExpr && op.track.name === "$item") {
19096
19096
  op.trackByFn = importExpr(Identifiers.repeaterTrackByIdentity);
19097
19097
  } else if (isTrackByFunctionCall(job.root.xref, op.track)) {
19098
+ op.usesComponentInstance = true;
19098
19099
  if (op.track.receiver.receiver.view === unit.xref) {
19099
19100
  op.trackByFn = op.track.receiver;
19100
19101
  } else {
@@ -26156,7 +26157,7 @@ function publishFacade(global) {
26156
26157
  }
26157
26158
 
26158
26159
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/version.mjs
26159
- var VERSION2 = new Version("17.3.1");
26160
+ var VERSION2 = new Version("17.3.2");
26160
26161
 
26161
26162
  // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler/src/i18n/extractor_merger.mjs
26162
26163
  var _VisitorMode;