@angular/core 19.0.0-next.3 → 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 +3 -3
- 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 +1 -1
- 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-bbb5d8fd.js → compiler_host-ca7ba733.js} +15 -15
- package/schematics/bundles/control-flow-migration.js +2 -2
- package/schematics/bundles/explicit-standalone-flag.js +157 -0
- package/schematics/bundles/{nodes-ddfa1613.js → imports-4ac08251.js} +1 -42
- package/schematics/bundles/inject-migration.js +6 -5
- package/schematics/bundles/nodes-0e7d45ca.js +56 -0
- package/schematics/bundles/project_tsconfig_paths-e9ccccbf.js +1 -1
- package/schematics/bundles/route-lazy-loading.js +2 -2
- package/schematics/bundles/standalone-migration.js +871 -769
- package/schematics/migrations.json +7 -1
- package/testing/index.d.ts +1 -1
package/fesm2022/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.0.0-next.
|
|
2
|
+
* @license Angular v19.0.0-next.4
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -16962,7 +16962,7 @@ function createRootComponent(componentView, rootComponentDef, rootDirectives, ho
|
|
|
16962
16962
|
function setRootNodeAttributes(hostRenderer, componentDef, hostRNode, rootSelectorOrNode) {
|
|
16963
16963
|
if (rootSelectorOrNode) {
|
|
16964
16964
|
// The placeholder will be replaced with the actual version at build time.
|
|
16965
|
-
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.0.0-next.
|
|
16965
|
+
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '19.0.0-next.4']);
|
|
16966
16966
|
}
|
|
16967
16967
|
else {
|
|
16968
16968
|
// If host element is created as a part of this function call (i.e. `rootSelectorOrNode`
|
|
@@ -31052,7 +31052,7 @@ class Version {
|
|
|
31052
31052
|
/**
|
|
31053
31053
|
* @publicApi
|
|
31054
31054
|
*/
|
|
31055
|
-
const VERSION = new Version('19.0.0-next.
|
|
31055
|
+
const VERSION = new Version('19.0.0-next.4');
|
|
31056
31056
|
|
|
31057
31057
|
/*
|
|
31058
31058
|
* This file exists to support compilation of @angular/core in Ivy mode.
|