@angular/core 16.2.10 → 16.2.12
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_init.mjs +3 -2
- package/esm2022/src/application_ref.mjs +3 -3
- package/esm2022/src/di/r3_injector.mjs +6 -1
- package/esm2022/src/render3/debug/injector_profiler.mjs +26 -8
- package/esm2022/src/render3/util/injector_discovery_utils.mjs +26 -2
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +147 -100
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +118 -96
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +4 -3
- package/package.json +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/ng-generate/standalone-migration/bundle.js +425 -430
- package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
- package/testing/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.2.
|
|
2
|
+
* @license Angular v16.2.12
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -390,7 +390,7 @@ export declare const APP_ID: InjectionToken<string>;
|
|
|
390
390
|
* ```
|
|
391
391
|
*
|
|
392
392
|
* ### Example with standalone application
|
|
393
|
-
*
|
|
393
|
+
* ```
|
|
394
394
|
* function initializeAppFactory(httpClient: HttpClient): () => Observable<any> {
|
|
395
395
|
* return () => httpClient.get("https://someUrl.com/api/user")
|
|
396
396
|
* .pipe(
|
|
@@ -409,6 +409,7 @@ export declare const APP_ID: InjectionToken<string>;
|
|
|
409
409
|
* },
|
|
410
410
|
* ],
|
|
411
411
|
* });
|
|
412
|
+
* ```
|
|
412
413
|
*
|
|
413
414
|
* @publicApi
|
|
414
415
|
*/
|
|
@@ -6869,7 +6870,7 @@ export declare type ProviderToken<T> = Type<T> | AbstractType<T> | InjectionToke
|
|
|
6869
6870
|
* `BootstrapOptions` instead.
|
|
6870
6871
|
*
|
|
6871
6872
|
* @usageNotes
|
|
6872
|
-
* ```typescript
|
|
6873
|
+
* ```typescript
|
|
6873
6874
|
* bootstrapApplication(MyApp, {providers: [
|
|
6874
6875
|
* provideZoneChangeDetection({eventCoalescing: true}),
|
|
6875
6876
|
* ]});
|
package/package.json
CHANGED
package/rxjs-interop/index.d.ts
CHANGED