@angular/core 17.0.0-rc.1 → 17.0.0-rc.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 (48) hide show
  1. package/esm2022/primitives/signals/index.mjs +2 -2
  2. package/esm2022/primitives/signals/src/graph.mjs +22 -1
  3. package/esm2022/primitives/signals/src/signal.mjs +7 -3
  4. package/esm2022/rxjs-interop/src/to_signal.mjs +9 -2
  5. package/esm2022/src/change_detection/change_detector_ref.mjs +1 -1
  6. package/esm2022/src/defer/instructions.mjs +35 -22
  7. package/esm2022/src/errors.mjs +1 -1
  8. package/esm2022/src/image_performance_warning.mjs +9 -3
  9. package/esm2022/src/metadata/do_bootstrap.mjs +9 -0
  10. package/esm2022/src/metadata.mjs +1 -1
  11. package/esm2022/src/render3/assert.mjs +2 -2
  12. package/esm2022/src/render3/features/standalone_feature.mjs +5 -1
  13. package/esm2022/src/render3/instructions/change_detection.mjs +68 -8
  14. package/esm2022/src/render3/instructions/change_detection_flags.mjs +12 -0
  15. package/esm2022/src/render3/instructions/control_flow.mjs +65 -45
  16. package/esm2022/src/render3/instructions/shared.mjs +22 -42
  17. package/esm2022/src/render3/interfaces/view.mjs +2 -2
  18. package/esm2022/src/render3/node_manipulation.mjs +2 -3
  19. package/esm2022/src/render3/reactive_lview_consumer.mjs +20 -33
  20. package/esm2022/src/render3/reactivity/effect.mjs +22 -6
  21. package/esm2022/src/render3/reactivity/signal.mjs +1 -1
  22. package/esm2022/src/render3/util/injector_discovery_utils.mjs +32 -25
  23. package/esm2022/src/version.mjs +1 -1
  24. package/esm2022/testing/src/component_fixture.mjs +4 -1
  25. package/esm2022/testing/src/logger.mjs +3 -3
  26. package/fesm2022/core.mjs +18287 -18174
  27. package/fesm2022/core.mjs.map +1 -1
  28. package/fesm2022/primitives/signals.mjs +28 -3
  29. package/fesm2022/primitives/signals.mjs.map +1 -1
  30. package/fesm2022/rxjs-interop.mjs +9 -2
  31. package/fesm2022/rxjs-interop.mjs.map +1 -1
  32. package/fesm2022/testing.mjs +4 -1
  33. package/fesm2022/testing.mjs.map +1 -1
  34. package/index.d.ts +17 -10
  35. package/package.json +2 -2
  36. package/primitives/signals/index.d.ts +14 -1
  37. package/rxjs-interop/index.d.ts +10 -1
  38. package/schematics/migrations/block-template-entities/bundle.js +1348 -1013
  39. package/schematics/migrations/block-template-entities/bundle.js.map +4 -4
  40. package/schematics/migrations/compiler-options/bundle.js +13 -13
  41. package/schematics/migrations/transfer-state/bundle.js +13 -13
  42. package/schematics/ng-generate/control-flow-migration/bundle.js +1439 -1077
  43. package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
  44. package/schematics/ng-generate/control-flow-migration/schema.json +9 -2
  45. package/schematics/ng-generate/standalone-migration/bundle.js +2851 -2403
  46. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  47. package/testing/index.d.ts +1 -1
  48. package/esm2022/src/metadata/do_boostrap.mjs +0 -9
@@ -3,5 +3,12 @@
3
3
  "$id": "AngularControlFlowMigration",
4
4
  "title": "Angular Control Flow Migration Schema",
5
5
  "type": "object",
6
- "properties": {}
7
- }
6
+ "properties": {
7
+ "path": {
8
+ "type": "string",
9
+ "description": "Path relative to the project root which should be migrated",
10
+ "x-prompt": "Which path in your project should be migrated?",
11
+ "default": "./"
12
+ }
13
+ }
14
+ }