@angular/core 19.0.0-next.2 → 19.0.0-next.4

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 (30) hide show
  1. package/fesm2022/core.mjs +193 -20
  2. package/fesm2022/core.mjs.map +1 -1
  3. package/fesm2022/primitives/event-dispatch.mjs +1 -1
  4. package/fesm2022/primitives/signals.mjs +1 -1
  5. package/fesm2022/rxjs-interop.mjs +1 -1
  6. package/fesm2022/testing.mjs +4 -4
  7. package/index.d.ts +113 -4
  8. package/package.json +1 -1
  9. package/primitives/event-dispatch/index.d.ts +1 -1
  10. package/primitives/signals/index.d.ts +1 -1
  11. package/rxjs-interop/index.d.ts +1 -1
  12. package/schematics/bundles/compiler_host-ca7ba733.js +44719 -0
  13. package/schematics/bundles/control-flow-migration.js +1847 -0
  14. package/schematics/bundles/explicit-standalone-flag.js +157 -0
  15. package/schematics/bundles/imports-4ac08251.js +110 -0
  16. package/schematics/bundles/inject-migration.js +927 -0
  17. package/schematics/bundles/nodes-0e7d45ca.js +56 -0
  18. package/schematics/bundles/project_tsconfig_paths-e9ccccbf.js +90 -0
  19. package/schematics/bundles/route-lazy-loading.js +411 -0
  20. package/schematics/bundles/standalone-migration.js +22441 -0
  21. package/schematics/collection.json +7 -14
  22. package/schematics/migrations.json +4 -14
  23. package/testing/index.d.ts +1 -1
  24. package/schematics/migrations/after-render-phase/bundle.js +0 -27333
  25. package/schematics/migrations/http-providers/bundle.js +0 -27582
  26. package/schematics/migrations/invalid-two-way-bindings/bundle.js +0 -23808
  27. package/schematics/ng-generate/control-flow-migration/bundle.js +0 -28076
  28. package/schematics/ng-generate/inject-migration/bundle.js +0 -27777
  29. package/schematics/ng-generate/route-lazy-loading/bundle.js +0 -27478
  30. package/schematics/ng-generate/standalone-migration/bundle.js +0 -52161
@@ -2,34 +2,27 @@
2
2
  "schematics": {
3
3
  "standalone-migration": {
4
4
  "description": "Converts the entire application or a part of it to standalone",
5
- "factory": "./ng-generate/standalone-migration/bundle",
5
+ "factory": "./bundles/standalone-migration#migrate",
6
6
  "schema": "./ng-generate/standalone-migration/schema.json",
7
- "aliases": [
8
- "standalone"
9
- ]
7
+ "aliases": ["standalone"]
10
8
  },
11
9
  "control-flow-migration": {
12
10
  "description": "Converts the entire application to block control flow syntax",
13
- "factory": "./ng-generate/control-flow-migration/bundle",
11
+ "factory": "./bundles/control-flow-migration#migrate",
14
12
  "schema": "./ng-generate/control-flow-migration/schema.json",
15
- "aliases": [
16
- "control-flow"
17
- ]
13
+ "aliases": ["control-flow"]
18
14
  },
19
15
  "inject-migration": {
20
16
  "description": "Converts usages of constructor-based injection to the inject() function",
21
- "factory": "./ng-generate/inject-migration/bundle",
17
+ "factory": "./bundles/inject-migration#migrate",
22
18
  "schema": "./ng-generate/inject-migration/schema.json",
23
- "aliases": [
24
- "inject"
25
- ]
19
+ "aliases": ["inject"]
26
20
  },
27
21
  "route-lazy-loading-migration": {
28
22
  "description": "Updates route definitions to use lazy-loading of components instead of eagerly referencing them",
29
- "factory": "./ng-generate/route-lazy-loading/bundle",
23
+ "factory": "./bundles/route-lazy-loading#migrate",
30
24
  "schema": "./ng-generate/route-lazy-loading/schema.json",
31
25
  "aliases": ["route-lazy-loading"]
32
26
  }
33
27
  }
34
28
  }
35
-
@@ -1,19 +1,9 @@
1
1
  {
2
2
  "schematics": {
3
- "invalid-two-way-bindings": {
4
- "version": "18.0.0",
5
- "description": "Updates two-way bindings that have an invalid expression to use the longform expression instead.",
6
- "factory": "./migrations/invalid-two-way-bindings/bundle"
7
- },
8
- "migration-http-providers": {
9
- "version": "18.0.0",
10
- "description": "Replace deprecated HTTP related modules with provider functions",
11
- "factory": "./migrations/http-providers/bundle"
12
- },
13
- "migration-after-render-phase": {
14
- "version": "18.1.0",
15
- "description": "Updates calls to afterRender with an explicit phase to the new API",
16
- "factory": "./migrations/after-render-phase/bundle"
3
+ "explicit-standalone-flag": {
4
+ "version": "19.0.0",
5
+ "description": "Updates non-standalone Directives, Component and Pipes to standalone:false",
6
+ "factory": "./bundles/explicit-standalone-flag#migrate"
17
7
  }
18
8
  }
19
9
  }
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v19.0.0-next.2
2
+ * @license Angular v19.0.0-next.4
3
3
  * (c) 2010-2024 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */