@angular/common 20.0.0-next.5 → 20.0.0-next.7
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/{common_module.d-BP8xLQft.d.ts → common_module.d-1Ij4nFjY.d.ts} +4 -4
- package/fesm2022/common.mjs +30 -30
- package/fesm2022/common.mjs.map +1 -1
- package/fesm2022/{common_module-DXqIruqL.mjs → common_module-Cz2TsVI9.mjs} +91 -91
- package/fesm2022/{common_module-DXqIruqL.mjs.map → common_module-Cz2TsVI9.mjs.map} +1 -1
- package/fesm2022/http/testing.mjs +10 -10
- package/fesm2022/http.mjs +12 -6
- package/fesm2022/http.mjs.map +1 -1
- package/fesm2022/{location-DL4aRLmc.mjs → location-BeT0iJq7.mjs} +18 -18
- package/fesm2022/{location-DL4aRLmc.mjs.map → location-BeT0iJq7.mjs.map} +1 -1
- package/fesm2022/{module-TRKGK7nU.mjs → module-C4LakRc7.mjs} +47 -47
- package/fesm2022/{module-TRKGK7nU.mjs.map → module-C4LakRc7.mjs.map} +1 -1
- package/fesm2022/{platform_navigation-2iCIwKiv.mjs → platform_navigation-B45Jeakb.mjs} +6 -6
- package/fesm2022/{platform_navigation-2iCIwKiv.mjs.map → platform_navigation-B45Jeakb.mjs.map} +1 -1
- package/fesm2022/testing.mjs +15 -15
- package/fesm2022/upgrade.mjs +7 -7
- package/fesm2022/{xhr-BdgfMvBr.mjs → xhr-BfNfxNDv.mjs} +3 -3
- package/fesm2022/{xhr-BdgfMvBr.mjs.map → xhr-BfNfxNDv.mjs.map} +1 -1
- package/http/index.d.ts +4 -4
- package/http/testing/index.d.ts +2 -2
- package/index.d.ts +6 -6
- package/{module.d-BJA_GXII.d.ts → module.d-CnjH8Dlt.d.ts} +3 -3
- package/package.json +2 -2
- package/{platform_location.d-BWJDgVlg.d.ts → platform_location.d-Lbv6Ueec.d.ts} +3 -3
- package/testing/index.d.ts +2 -2
- package/upgrade/index.d.ts +3 -3
- package/{xhr.d-Bbgj1reV.d.ts → xhr.d-D_1kTQR5.d.ts} +2 -2
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v20.0.0-next.
|
|
2
|
+
* @license Angular v20.0.0-next.7
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import * as i0 from '@angular/core';
|
|
8
|
-
import { ɵRuntimeError as _RuntimeError, Injectable, inject, NgZone, InjectionToken,
|
|
8
|
+
import { ɵRuntimeError as _RuntimeError, Injectable, inject, NgZone, InjectionToken, PendingTasks, PLATFORM_ID, ɵConsole as _Console, ɵformatRuntimeError as _formatRuntimeError, runInInjectionContext, DOCUMENT, Inject, makeEnvironmentProviders, NgModule } from '@angular/core';
|
|
9
9
|
import { concatMap, filter, map, finalize, switchMap } from 'rxjs/operators';
|
|
10
10
|
import { of, Observable, from } from 'rxjs';
|
|
11
|
-
import {
|
|
11
|
+
import { isPlatformServer, XhrFactory, parseCookieValue } from './xhr-BfNfxNDv.mjs';
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Transforms an `HttpRequest` into a stream of `HttpEvent`s, one of which will likely be a
|
|
@@ -1564,10 +1564,10 @@ class HttpClient {
|
|
|
1564
1564
|
put(url, body, options = {}) {
|
|
1565
1565
|
return this.request('PUT', url, addBody(options, body));
|
|
1566
1566
|
}
|
|
1567
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1568
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1567
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClient, deps: [{ token: HttpHandler }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1568
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClient });
|
|
1569
1569
|
}
|
|
1570
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClient, decorators: [{
|
|
1571
1571
|
type: Injectable
|
|
1572
1572
|
}], ctorParameters: () => [{ type: HttpHandler }] });
|
|
1573
1573
|
|
|
@@ -1782,10 +1782,10 @@ class FetchBackend {
|
|
|
1782
1782
|
}
|
|
1783
1783
|
return chunksAll;
|
|
1784
1784
|
}
|
|
1785
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1786
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1785
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: FetchBackend, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1786
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: FetchBackend });
|
|
1787
1787
|
}
|
|
1788
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1788
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: FetchBackend, decorators: [{
|
|
1789
1789
|
type: Injectable
|
|
1790
1790
|
}] });
|
|
1791
1791
|
/**
|
|
@@ -1857,11 +1857,11 @@ function legacyInterceptorFnFactory() {
|
|
|
1857
1857
|
// out.
|
|
1858
1858
|
chain = interceptors.reduceRight(adaptLegacyInterceptorToChain, interceptorChainEndFn);
|
|
1859
1859
|
}
|
|
1860
|
-
const pendingTasks = inject(
|
|
1860
|
+
const pendingTasks = inject(PendingTasks);
|
|
1861
1861
|
const contributeToStability = inject(REQUESTS_CONTRIBUTE_TO_STABILITY);
|
|
1862
1862
|
if (contributeToStability) {
|
|
1863
|
-
const
|
|
1864
|
-
return chain(req, handler).pipe(finalize(
|
|
1863
|
+
const removeTask = pendingTasks.add();
|
|
1864
|
+
return chain(req, handler).pipe(finalize(removeTask));
|
|
1865
1865
|
}
|
|
1866
1866
|
else {
|
|
1867
1867
|
return chain(req, handler);
|
|
@@ -1873,7 +1873,7 @@ class HttpInterceptorHandler extends HttpHandler {
|
|
|
1873
1873
|
backend;
|
|
1874
1874
|
injector;
|
|
1875
1875
|
chain = null;
|
|
1876
|
-
pendingTasks = inject(
|
|
1876
|
+
pendingTasks = inject(PendingTasks);
|
|
1877
1877
|
contributeToStability = inject(REQUESTS_CONTRIBUTE_TO_STABILITY);
|
|
1878
1878
|
constructor(backend, injector) {
|
|
1879
1879
|
super();
|
|
@@ -1915,17 +1915,17 @@ class HttpInterceptorHandler extends HttpHandler {
|
|
|
1915
1915
|
this.chain = dedupedInterceptorFns.reduceRight((nextSequencedFn, interceptorFn) => chainedInterceptorFn(nextSequencedFn, interceptorFn, this.injector), interceptorChainEndFn);
|
|
1916
1916
|
}
|
|
1917
1917
|
if (this.contributeToStability) {
|
|
1918
|
-
const
|
|
1919
|
-
return this.chain(initialRequest, (downstreamRequest) => this.backend.handle(downstreamRequest)).pipe(finalize(
|
|
1918
|
+
const removeTask = this.pendingTasks.add();
|
|
1919
|
+
return this.chain(initialRequest, (downstreamRequest) => this.backend.handle(downstreamRequest)).pipe(finalize(removeTask));
|
|
1920
1920
|
}
|
|
1921
1921
|
else {
|
|
1922
1922
|
return this.chain(initialRequest, (downstreamRequest) => this.backend.handle(downstreamRequest));
|
|
1923
1923
|
}
|
|
1924
1924
|
}
|
|
1925
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1926
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1925
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpInterceptorHandler, deps: [{ token: HttpBackend }, { token: i0.EnvironmentInjector }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
1926
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpInterceptorHandler });
|
|
1927
1927
|
}
|
|
1928
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
1928
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpInterceptorHandler, decorators: [{
|
|
1929
1929
|
type: Injectable
|
|
1930
1930
|
}], ctorParameters: () => [{ type: HttpBackend }, { type: i0.EnvironmentInjector }] });
|
|
1931
1931
|
|
|
@@ -2127,10 +2127,10 @@ class JsonpClientBackend {
|
|
|
2127
2127
|
foreignDocument ??= this.document.implementation.createHTMLDocument();
|
|
2128
2128
|
foreignDocument.adoptNode(script);
|
|
2129
2129
|
}
|
|
2130
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2131
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2130
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: JsonpClientBackend, deps: [{ token: JsonpCallbackContext }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2131
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: JsonpClientBackend });
|
|
2132
2132
|
}
|
|
2133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: JsonpClientBackend, decorators: [{
|
|
2134
2134
|
type: Injectable
|
|
2135
2135
|
}], ctorParameters: () => [{ type: JsonpCallbackContext }, { type: undefined, decorators: [{
|
|
2136
2136
|
type: Inject,
|
|
@@ -2169,10 +2169,10 @@ class JsonpInterceptor {
|
|
|
2169
2169
|
intercept(initialRequest, next) {
|
|
2170
2170
|
return runInInjectionContext(this.injector, () => jsonpInterceptorFn(initialRequest, (downstreamRequest) => next.handle(downstreamRequest)));
|
|
2171
2171
|
}
|
|
2172
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2173
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2172
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: JsonpInterceptor, deps: [{ token: i0.EnvironmentInjector }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2173
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: JsonpInterceptor });
|
|
2174
2174
|
}
|
|
2175
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2175
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: JsonpInterceptor, decorators: [{
|
|
2176
2176
|
type: Injectable
|
|
2177
2177
|
}], ctorParameters: () => [{ type: i0.EnvironmentInjector }] });
|
|
2178
2178
|
|
|
@@ -2454,10 +2454,10 @@ class HttpXhrBackend {
|
|
|
2454
2454
|
});
|
|
2455
2455
|
}));
|
|
2456
2456
|
}
|
|
2457
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2458
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2457
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpXhrBackend, deps: [{ token: XhrFactory }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2458
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpXhrBackend });
|
|
2459
2459
|
}
|
|
2460
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2460
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpXhrBackend, decorators: [{
|
|
2461
2461
|
type: Injectable
|
|
2462
2462
|
}], ctorParameters: () => [{ type: XhrFactory }] });
|
|
2463
2463
|
|
|
@@ -2509,10 +2509,10 @@ class HttpXsrfCookieExtractor {
|
|
|
2509
2509
|
}
|
|
2510
2510
|
return this.lastToken;
|
|
2511
2511
|
}
|
|
2512
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2513
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2512
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpXsrfCookieExtractor, deps: [{ token: DOCUMENT }, { token: PLATFORM_ID }, { token: XSRF_COOKIE_NAME }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2513
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpXsrfCookieExtractor });
|
|
2514
2514
|
}
|
|
2515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2515
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpXsrfCookieExtractor, decorators: [{
|
|
2516
2516
|
type: Injectable
|
|
2517
2517
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
2518
2518
|
type: Inject,
|
|
@@ -2556,10 +2556,10 @@ class HttpXsrfInterceptor {
|
|
|
2556
2556
|
intercept(initialRequest, next) {
|
|
2557
2557
|
return runInInjectionContext(this.injector, () => xsrfInterceptorFn(initialRequest, (downstreamRequest) => next.handle(downstreamRequest)));
|
|
2558
2558
|
}
|
|
2559
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2560
|
-
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2559
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpXsrfInterceptor, deps: [{ token: i0.EnvironmentInjector }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2560
|
+
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpXsrfInterceptor });
|
|
2561
2561
|
}
|
|
2562
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2562
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpXsrfInterceptor, decorators: [{
|
|
2563
2563
|
type: Injectable
|
|
2564
2564
|
}], ctorParameters: () => [{ type: i0.EnvironmentInjector }] });
|
|
2565
2565
|
|
|
@@ -2825,9 +2825,9 @@ class HttpClientXsrfModule {
|
|
|
2825
2825
|
providers: withXsrfConfiguration(options).ɵproviders,
|
|
2826
2826
|
};
|
|
2827
2827
|
}
|
|
2828
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2829
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
2830
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2828
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientXsrfModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2829
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientXsrfModule });
|
|
2830
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientXsrfModule, providers: [
|
|
2831
2831
|
HttpXsrfInterceptor,
|
|
2832
2832
|
{ provide: HTTP_INTERCEPTORS, useExisting: HttpXsrfInterceptor, multi: true },
|
|
2833
2833
|
{ provide: HttpXsrfTokenExtractor, useClass: HttpXsrfCookieExtractor },
|
|
@@ -2838,7 +2838,7 @@ class HttpClientXsrfModule {
|
|
|
2838
2838
|
{ provide: XSRF_ENABLED, useValue: true },
|
|
2839
2839
|
] });
|
|
2840
2840
|
}
|
|
2841
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2841
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientXsrfModule, decorators: [{
|
|
2842
2842
|
type: NgModule,
|
|
2843
2843
|
args: [{
|
|
2844
2844
|
providers: [
|
|
@@ -2864,11 +2864,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5",
|
|
|
2864
2864
|
* @deprecated use `provideHttpClient(withInterceptorsFromDi())` as providers instead
|
|
2865
2865
|
*/
|
|
2866
2866
|
class HttpClientModule {
|
|
2867
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2868
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
2869
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2867
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2868
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientModule });
|
|
2869
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientModule, providers: [provideHttpClient(withInterceptorsFromDi())] });
|
|
2870
2870
|
}
|
|
2871
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientModule, decorators: [{
|
|
2872
2872
|
type: NgModule,
|
|
2873
2873
|
args: [{
|
|
2874
2874
|
/**
|
|
@@ -2888,16 +2888,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.5",
|
|
|
2888
2888
|
* @deprecated `withJsonpSupport()` as providers instead
|
|
2889
2889
|
*/
|
|
2890
2890
|
class HttpClientJsonpModule {
|
|
2891
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2892
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.
|
|
2893
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2891
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientJsonpModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2892
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientJsonpModule });
|
|
2893
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientJsonpModule, providers: [withJsonpSupport().ɵproviders] });
|
|
2894
2894
|
}
|
|
2895
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.
|
|
2895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0-next.7", ngImport: i0, type: HttpClientJsonpModule, decorators: [{
|
|
2896
2896
|
type: NgModule,
|
|
2897
2897
|
args: [{
|
|
2898
2898
|
providers: [withJsonpSupport().ɵproviders],
|
|
2899
2899
|
}]
|
|
2900
2900
|
}] });
|
|
2901
2901
|
|
|
2902
|
-
export {
|
|
2903
|
-
//# sourceMappingURL=module-
|
|
2902
|
+
export { FetchBackend, HTTP_INTERCEPTORS, HTTP_ROOT_INTERCEPTOR_FNS, HttpBackend, HttpClient, HttpClientJsonpModule, HttpClientModule, HttpClientXsrfModule, HttpContext, HttpContextToken, HttpErrorResponse, HttpEventType, HttpFeatureKind, HttpHandler, HttpHeaderResponse, HttpHeaders, HttpInterceptorHandler, HttpParams, HttpRequest, HttpResponse, HttpResponseBase, HttpStatusCode, HttpUrlEncodingCodec, HttpXhrBackend, HttpXsrfTokenExtractor, JsonpClientBackend, JsonpInterceptor, REQUESTS_CONTRIBUTE_TO_STABILITY, provideHttpClient, withFetch, withInterceptors, withInterceptorsFromDi, withJsonpSupport, withNoXsrfProtection, withRequestsMadeViaParent, withXsrfConfiguration };
|
|
2903
|
+
//# sourceMappingURL=module-C4LakRc7.mjs.map
|