@angular/core 18.2.13 → 18.2.14
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/esm2022/src/application/create_application.mjs +10 -4
- package/esm2022/src/platform/platform.mjs +25 -12
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/application_error_handler.mjs +3 -3
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +34 -16
- 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 +6 -2
- 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/migrations/add-bootstrap-context-to-server-main/bundle.js +27129 -0
- package/schematics/migrations/after-render-phase/bundle.js +267 -267
- package/schematics/migrations/http-providers/bundle.js +270 -270
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +161 -161
- package/schematics/migrations.json +5 -0
- package/schematics/ng-generate/control-flow-migration/bundle.js +270 -270
- package/schematics/ng-generate/inject-migration/bundle.js +273 -273
- package/schematics/ng-generate/route-lazy-loading/bundle.js +269 -269
- package/schematics/ng-generate/standalone-migration/bundle.js +451 -451
- package/testing/index.d.ts +1 -1
|
@@ -14,6 +14,11 @@
|
|
|
14
14
|
"version": "18.1.0",
|
|
15
15
|
"description": "Updates calls to afterRender with an explicit phase to the new API",
|
|
16
16
|
"factory": "./migrations/after-render-phase/bundle"
|
|
17
|
+
},
|
|
18
|
+
"add-bootstrap-context-to-server-main": {
|
|
19
|
+
"version": "18.2.14",
|
|
20
|
+
"description": "Adds `BootstrapContext` to `bootstrapApplication` calls in `main.server.ts` to support server rendering.",
|
|
21
|
+
"factory": "./migrations/add-bootstrap-context-to-server-main/bundle"
|
|
17
22
|
}
|
|
18
23
|
}
|
|
19
24
|
}
|