@angular/core 17.0.0-rc.1 → 17.0.0-rc.3

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 (53) 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 +11 -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/core_private_export.mjs +2 -1
  7. package/esm2022/src/core_reactivity_export_internal.mjs +1 -1
  8. package/esm2022/src/defer/instructions.mjs +37 -23
  9. package/esm2022/src/errors.mjs +1 -1
  10. package/esm2022/src/hydration/api.mjs +3 -2
  11. package/esm2022/src/image_performance_warning.mjs +9 -3
  12. package/esm2022/src/metadata/do_bootstrap.mjs +9 -0
  13. package/esm2022/src/metadata.mjs +1 -1
  14. package/esm2022/src/render3/after_render_hooks.mjs +4 -3
  15. package/esm2022/src/render3/assert.mjs +2 -2
  16. package/esm2022/src/render3/debug/framework_injector_profiler.mjs +13 -4
  17. package/esm2022/src/render3/features/standalone_feature.mjs +6 -1
  18. package/esm2022/src/render3/instructions/change_detection.mjs +65 -8
  19. package/esm2022/src/render3/instructions/control_flow.mjs +66 -45
  20. package/esm2022/src/render3/instructions/shared.mjs +22 -42
  21. package/esm2022/src/render3/interfaces/view.mjs +2 -2
  22. package/esm2022/src/render3/node_manipulation.mjs +3 -4
  23. package/esm2022/src/render3/reactive_lview_consumer.mjs +20 -33
  24. package/esm2022/src/render3/reactivity/effect.mjs +24 -6
  25. package/esm2022/src/render3/reactivity/signal.mjs +1 -1
  26. package/esm2022/src/render3/util/injector_discovery_utils.mjs +33 -26
  27. package/esm2022/src/util/performance.mjs +19 -0
  28. package/esm2022/src/version.mjs +1 -1
  29. package/esm2022/testing/src/component_fixture.mjs +4 -1
  30. package/esm2022/testing/src/logger.mjs +3 -3
  31. package/fesm2022/core.mjs +18209 -18076
  32. package/fesm2022/core.mjs.map +1 -1
  33. package/fesm2022/primitives/signals.mjs +32 -3
  34. package/fesm2022/primitives/signals.mjs.map +1 -1
  35. package/fesm2022/rxjs-interop.mjs +9 -2
  36. package/fesm2022/rxjs-interop.mjs.map +1 -1
  37. package/fesm2022/testing.mjs +4 -1
  38. package/fesm2022/testing.mjs.map +1 -1
  39. package/index.d.ts +38 -11
  40. package/package.json +2 -2
  41. package/primitives/signals/index.d.ts +14 -1
  42. package/rxjs-interop/index.d.ts +10 -1
  43. package/schematics/migrations/block-template-entities/bundle.js +1623 -1075
  44. package/schematics/migrations/block-template-entities/bundle.js.map +4 -4
  45. package/schematics/migrations/compiler-options/bundle.js +13 -13
  46. package/schematics/migrations/transfer-state/bundle.js +13 -13
  47. package/schematics/ng-generate/control-flow-migration/bundle.js +1735 -1120
  48. package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
  49. package/schematics/ng-generate/control-flow-migration/schema.json +9 -2
  50. package/schematics/ng-generate/standalone-migration/bundle.js +3123 -2462
  51. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  52. package/testing/index.d.ts +1 -1
  53. 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
+ }