@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.
- package/fesm2022/core.mjs +193 -20
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +4 -4
- package/index.d.ts +113 -4
- package/package.json +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/bundles/compiler_host-ca7ba733.js +44719 -0
- package/schematics/bundles/control-flow-migration.js +1847 -0
- package/schematics/bundles/explicit-standalone-flag.js +157 -0
- package/schematics/bundles/imports-4ac08251.js +110 -0
- package/schematics/bundles/inject-migration.js +927 -0
- package/schematics/bundles/nodes-0e7d45ca.js +56 -0
- package/schematics/bundles/project_tsconfig_paths-e9ccccbf.js +90 -0
- package/schematics/bundles/route-lazy-loading.js +411 -0
- package/schematics/bundles/standalone-migration.js +22441 -0
- package/schematics/collection.json +7 -14
- package/schematics/migrations.json +4 -14
- package/testing/index.d.ts +1 -1
- package/schematics/migrations/after-render-phase/bundle.js +0 -27333
- package/schematics/migrations/http-providers/bundle.js +0 -27582
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +0 -23808
- package/schematics/ng-generate/control-flow-migration/bundle.js +0 -28076
- package/schematics/ng-generate/inject-migration/bundle.js +0 -27777
- package/schematics/ng-generate/route-lazy-loading/bundle.js +0 -27478
- 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": "./
|
|
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": "./
|
|
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": "./
|
|
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": "./
|
|
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
|
-
"
|
|
4
|
-
"version": "
|
|
5
|
-
"description": "Updates
|
|
6
|
-
"factory": "./
|
|
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
|
}
|
package/testing/index.d.ts
CHANGED