@angular/core 17.0.0-next.5 → 17.0.0-next.7

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 (55) hide show
  1. package/esm2022/rxjs-interop/src/to_signal.mjs +13 -11
  2. package/esm2022/src/application_init.mjs +3 -3
  3. package/esm2022/src/application_module.mjs +3 -3
  4. package/esm2022/src/application_ref.mjs +23 -6
  5. package/esm2022/src/change_detection/differs/default_iterable_differ.mjs +1 -2
  6. package/esm2022/src/console.mjs +2 -2
  7. package/esm2022/src/core_private_export.mjs +2 -2
  8. package/esm2022/src/hydration/api.mjs +7 -8
  9. package/esm2022/src/hydration/views.mjs +3 -3
  10. package/esm2022/src/initial_render_pending_tasks.mjs +2 -2
  11. package/esm2022/src/linker/compiler.mjs +2 -2
  12. package/esm2022/src/linker/query_list.mjs +7 -10
  13. package/esm2022/src/linker/view_container_ref.mjs +12 -10
  14. package/esm2022/src/render3/deps_tracker/deps_tracker.mjs +4 -8
  15. package/esm2022/src/render3/instructions/control_flow.mjs +69 -64
  16. package/esm2022/src/render3/instructions/defer.mjs +615 -97
  17. package/esm2022/src/render3/instructions/defer_events.mjs +164 -0
  18. package/esm2022/src/render3/instructions/shared.mjs +1 -1
  19. package/esm2022/src/render3/instructions/template.mjs +9 -2
  20. package/esm2022/src/render3/interfaces/defer.mjs +9 -11
  21. package/esm2022/src/render3/interfaces/definition.mjs +1 -1
  22. package/esm2022/src/render3/interfaces/view.mjs +1 -1
  23. package/esm2022/src/render3/list_reconciliation.mjs +257 -0
  24. package/esm2022/src/render3/metadata.mjs +2 -2
  25. package/esm2022/src/render3/pipe.mjs +4 -4
  26. package/esm2022/src/render3/state.mjs +2 -11
  27. package/esm2022/src/render3/util/global_utils.mjs +3 -2
  28. package/esm2022/src/render3/util/injector_discovery_utils.mjs +35 -3
  29. package/esm2022/src/render3/util/view_utils.mjs +17 -3
  30. package/esm2022/src/render3/view_ref.mjs +11 -1
  31. package/esm2022/src/testability/testability.mjs +5 -5
  32. package/esm2022/src/util/assert.mjs +6 -1
  33. package/esm2022/src/version.mjs +1 -1
  34. package/esm2022/testing/src/component_fixture.mjs +4 -2
  35. package/esm2022/testing/src/defer.mjs +3 -3
  36. package/esm2022/testing/src/logger.mjs +4 -4
  37. package/fesm2022/core.mjs +13603 -12606
  38. package/fesm2022/core.mjs.map +1 -1
  39. package/fesm2022/rxjs-interop.mjs +13 -11
  40. package/fesm2022/rxjs-interop.mjs.map +1 -1
  41. package/fesm2022/testing.mjs +6 -4
  42. package/fesm2022/testing.mjs.map +1 -1
  43. package/index.d.ts +94 -53
  44. package/package.json +1 -1
  45. package/rxjs-interop/index.d.ts +1 -1
  46. package/schematics/migrations/block-template-entities/bundle.js +23643 -0
  47. package/schematics/migrations/block-template-entities/bundle.js.map +7 -0
  48. package/schematics/migrations.json +4 -9
  49. package/schematics/ng-generate/standalone-migration/bundle.js +3250 -2695
  50. package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
  51. package/testing/index.d.ts +5 -3
  52. package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +0 -694
  53. package/schematics/migrations/guard-and-resolve-interfaces/bundle.js.map +0 -7
  54. package/schematics/migrations/remove-module-id/bundle.js +0 -368
  55. package/schematics/migrations/remove-module-id/bundle.js.map +0 -7
@@ -1,14 +1,9 @@
1
1
  {
2
2
  "schematics": {
3
- "migration-v16-remove-module-id": {
4
- "version": "16.0.0",
5
- "description": "As of Angular v16, the `moduleId` property of `@Component` is deprecated as it no longer has any effect.",
6
- "factory": "./migrations/remove-module-id/bundle"
7
- },
8
- "migration-v16-guard-and-resolve-interfaces": {
9
- "version": "16.0.0",
10
- "description": "In Angular version 15.2, the guard and resolver interfaces (CanActivate, Resolve, etc) were deprecated. This migration removes imports and 'implements' clauses that contain them.",
11
- "factory": "./migrations/guard-and-resolve-interfaces/bundle"
3
+ "block-template-entities": {
4
+ "version": "17.0.0",
5
+ "description": "Angular v17 introduces a new control flow syntax that uses the @ and } characters. This migration replaces the existing usages with their corresponding HTML entities.",
6
+ "factory": "./migrations/block-template-entities/bundle"
12
7
  }
13
8
  }
14
9
  }