@angular/common 16.0.0-next.0 → 16.0.0-next.2
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/esm2020/http/public_api.mjs +3 -15
- package/esm2020/http/src/client.mjs +6 -5
- package/esm2020/http/src/interceptor.mjs +6 -5
- package/esm2020/http/src/jsonp.mjs +11 -9
- package/esm2020/http/src/module.mjs +19 -16
- package/esm2020/http/src/xhr.mjs +6 -5
- package/esm2020/http/src/xsrf.mjs +11 -9
- package/esm2020/http/testing/src/backend.mjs +6 -5
- package/esm2020/http/testing/src/module.mjs +7 -6
- package/esm2020/src/common_module.mjs +7 -6
- package/esm2020/src/directives/ng_class.mjs +6 -5
- package/esm2020/src/directives/ng_component_outlet.mjs +6 -5
- package/esm2020/src/directives/ng_for_of.mjs +6 -5
- package/esm2020/src/directives/ng_if.mjs +6 -5
- package/esm2020/src/directives/ng_optimized_image/lcp_image_observer.mjs +6 -5
- package/esm2020/src/directives/ng_optimized_image/ng_optimized_image.mjs +6 -5
- package/esm2020/src/directives/ng_optimized_image/preconnect_link_checker.mjs +6 -5
- package/esm2020/src/directives/ng_optimized_image/preload-link-creator.mjs +6 -5
- package/esm2020/src/directives/ng_plural.mjs +11 -9
- package/esm2020/src/directives/ng_style.mjs +6 -5
- package/esm2020/src/directives/ng_switch.mjs +16 -13
- package/esm2020/src/directives/ng_template_outlet.mjs +6 -5
- package/esm2020/src/i18n/localization.mjs +11 -9
- package/esm2020/src/location/hash_location_strategy.mjs +6 -5
- package/esm2020/src/location/location.mjs +14 -8
- package/esm2020/src/location/location_strategy.mjs +11 -9
- package/esm2020/src/location/platform_location.mjs +11 -9
- package/esm2020/src/pipes/async_pipe.mjs +6 -5
- package/esm2020/src/pipes/case_conversion_pipes.mjs +16 -13
- package/esm2020/src/pipes/date_pipe.mjs +6 -5
- package/esm2020/src/pipes/i18n_plural_pipe.mjs +6 -5
- package/esm2020/src/pipes/i18n_select_pipe.mjs +6 -5
- package/esm2020/src/pipes/json_pipe.mjs +6 -5
- package/esm2020/src/pipes/keyvalue_pipe.mjs +6 -5
- package/esm2020/src/pipes/number_pipe.mjs +16 -13
- package/esm2020/src/pipes/slice_pipe.mjs +6 -5
- package/esm2020/src/private_export.mjs +1 -2
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/src/viewport_scroller.mjs +5 -3
- package/esm2020/testing/src/location_mock.mjs +6 -5
- package/esm2020/testing/src/mock_location_strategy.mjs +6 -5
- package/esm2020/testing/src/mock_platform_location.mjs +6 -5
- package/esm2020/upgrade/src/location_shim.mjs +3 -2
- package/esm2020/upgrade/src/location_upgrade_module.mjs +7 -6
- package/esm2020/upgrade/src/utils.mjs +1 -6
- package/fesm2015/common.mjs +182 -176
- package/fesm2015/common.mjs.map +1 -1
- package/fesm2015/http/testing.mjs +8 -8
- package/fesm2015/http/testing.mjs.map +1 -1
- package/fesm2015/http.mjs +37 -47
- package/fesm2015/http.mjs.map +1 -1
- package/fesm2015/testing.mjs +10 -10
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2015/upgrade.mjs +8 -13
- package/fesm2015/upgrade.mjs.map +1 -1
- package/fesm2020/common.mjs +125 -119
- package/fesm2020/common.mjs.map +1 -1
- package/fesm2020/http/testing.mjs +8 -8
- package/fesm2020/http/testing.mjs.map +1 -1
- package/fesm2020/http.mjs +37 -47
- package/fesm2020/http.mjs.map +1 -1
- package/fesm2020/testing.mjs +10 -10
- package/fesm2020/testing.mjs.map +1 -1
- package/fesm2020/upgrade.mjs +8 -13
- package/fesm2020/upgrade.mjs.map +1 -1
- package/http/index.d.ts +3 -23
- package/http/testing/index.d.ts +1 -1
- package/index.d.ts +2 -4
- package/package.json +3 -3
- package/testing/index.d.ts +1 -1
- package/upgrade/index.d.ts +1 -1
package/fesm2015/common.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.0.0-next.
|
|
2
|
+
* @license Angular v16.0.0-next.2
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -36,6 +36,63 @@ class DomAdapter {
|
|
|
36
36
|
*/
|
|
37
37
|
const DOCUMENT = new InjectionToken('DocumentToken');
|
|
38
38
|
|
|
39
|
+
/**
|
|
40
|
+
* Joins two parts of a URL with a slash if needed.
|
|
41
|
+
*
|
|
42
|
+
* @param start URL string
|
|
43
|
+
* @param end URL string
|
|
44
|
+
*
|
|
45
|
+
*
|
|
46
|
+
* @returns The joined URL string.
|
|
47
|
+
*/
|
|
48
|
+
function joinWithSlash(start, end) {
|
|
49
|
+
if (start.length == 0) {
|
|
50
|
+
return end;
|
|
51
|
+
}
|
|
52
|
+
if (end.length == 0) {
|
|
53
|
+
return start;
|
|
54
|
+
}
|
|
55
|
+
let slashes = 0;
|
|
56
|
+
if (start.endsWith('/')) {
|
|
57
|
+
slashes++;
|
|
58
|
+
}
|
|
59
|
+
if (end.startsWith('/')) {
|
|
60
|
+
slashes++;
|
|
61
|
+
}
|
|
62
|
+
if (slashes == 2) {
|
|
63
|
+
return start + end.substring(1);
|
|
64
|
+
}
|
|
65
|
+
if (slashes == 1) {
|
|
66
|
+
return start + end;
|
|
67
|
+
}
|
|
68
|
+
return start + '/' + end;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Removes a trailing slash from a URL string if needed.
|
|
72
|
+
* Looks for the first occurrence of either `#`, `?`, or the end of the
|
|
73
|
+
* line as `/` characters and removes the trailing slash if one exists.
|
|
74
|
+
*
|
|
75
|
+
* @param url URL string.
|
|
76
|
+
*
|
|
77
|
+
* @returns The URL string, modified if needed.
|
|
78
|
+
*/
|
|
79
|
+
function stripTrailingSlash(url) {
|
|
80
|
+
const match = url.match(/#|\?|$/);
|
|
81
|
+
const pathEndIdx = match && match.index || url.length;
|
|
82
|
+
const droppedSlashIdx = pathEndIdx - (url[pathEndIdx - 1] === '/' ? 1 : 0);
|
|
83
|
+
return url.slice(0, droppedSlashIdx) + url.slice(pathEndIdx);
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Normalizes URL parameters by prepending with `?` if needed.
|
|
87
|
+
*
|
|
88
|
+
* @param params String of URL parameters.
|
|
89
|
+
*
|
|
90
|
+
* @returns The normalized URL parameters string.
|
|
91
|
+
*/
|
|
92
|
+
function normalizeQueryParams(params) {
|
|
93
|
+
return params && params[0] !== '?' ? '?' + params : params;
|
|
94
|
+
}
|
|
95
|
+
|
|
39
96
|
/**
|
|
40
97
|
* This class should not be used directly by an application developer. Instead, use
|
|
41
98
|
* {@link Location}.
|
|
@@ -63,9 +120,9 @@ class PlatformLocation {
|
|
|
63
120
|
throw new Error('Not implemented');
|
|
64
121
|
}
|
|
65
122
|
}
|
|
66
|
-
PlatformLocation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
67
|
-
PlatformLocation.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
68
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
123
|
+
PlatformLocation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PlatformLocation, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
124
|
+
PlatformLocation.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PlatformLocation, providedIn: 'platform', useFactory: useBrowserPlatformLocation });
|
|
125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PlatformLocation, decorators: [{
|
|
69
126
|
type: Injectable,
|
|
70
127
|
args: [{
|
|
71
128
|
providedIn: 'platform',
|
|
@@ -163,9 +220,9 @@ class BrowserPlatformLocation extends PlatformLocation {
|
|
|
163
220
|
return this._history.state;
|
|
164
221
|
}
|
|
165
222
|
}
|
|
166
|
-
BrowserPlatformLocation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
167
|
-
BrowserPlatformLocation.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
168
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
223
|
+
BrowserPlatformLocation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: BrowserPlatformLocation, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
224
|
+
BrowserPlatformLocation.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: BrowserPlatformLocation, providedIn: 'platform', useFactory: createBrowserPlatformLocation });
|
|
225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: BrowserPlatformLocation, decorators: [{
|
|
169
226
|
type: Injectable,
|
|
170
227
|
args: [{
|
|
171
228
|
providedIn: 'platform',
|
|
@@ -185,63 +242,6 @@ function createBrowserPlatformLocation() {
|
|
|
185
242
|
return new BrowserPlatformLocation(ɵɵinject(DOCUMENT));
|
|
186
243
|
}
|
|
187
244
|
|
|
188
|
-
/**
|
|
189
|
-
* Joins two parts of a URL with a slash if needed.
|
|
190
|
-
*
|
|
191
|
-
* @param start URL string
|
|
192
|
-
* @param end URL string
|
|
193
|
-
*
|
|
194
|
-
*
|
|
195
|
-
* @returns The joined URL string.
|
|
196
|
-
*/
|
|
197
|
-
function joinWithSlash(start, end) {
|
|
198
|
-
if (start.length == 0) {
|
|
199
|
-
return end;
|
|
200
|
-
}
|
|
201
|
-
if (end.length == 0) {
|
|
202
|
-
return start;
|
|
203
|
-
}
|
|
204
|
-
let slashes = 0;
|
|
205
|
-
if (start.endsWith('/')) {
|
|
206
|
-
slashes++;
|
|
207
|
-
}
|
|
208
|
-
if (end.startsWith('/')) {
|
|
209
|
-
slashes++;
|
|
210
|
-
}
|
|
211
|
-
if (slashes == 2) {
|
|
212
|
-
return start + end.substring(1);
|
|
213
|
-
}
|
|
214
|
-
if (slashes == 1) {
|
|
215
|
-
return start + end;
|
|
216
|
-
}
|
|
217
|
-
return start + '/' + end;
|
|
218
|
-
}
|
|
219
|
-
/**
|
|
220
|
-
* Removes a trailing slash from a URL string if needed.
|
|
221
|
-
* Looks for the first occurrence of either `#`, `?`, or the end of the
|
|
222
|
-
* line as `/` characters and removes the trailing slash if one exists.
|
|
223
|
-
*
|
|
224
|
-
* @param url URL string.
|
|
225
|
-
*
|
|
226
|
-
* @returns The URL string, modified if needed.
|
|
227
|
-
*/
|
|
228
|
-
function stripTrailingSlash(url) {
|
|
229
|
-
const match = url.match(/#|\?|$/);
|
|
230
|
-
const pathEndIdx = match && match.index || url.length;
|
|
231
|
-
const droppedSlashIdx = pathEndIdx - (url[pathEndIdx - 1] === '/' ? 1 : 0);
|
|
232
|
-
return url.slice(0, droppedSlashIdx) + url.slice(pathEndIdx);
|
|
233
|
-
}
|
|
234
|
-
/**
|
|
235
|
-
* Normalizes URL parameters by prepending with `?` if needed.
|
|
236
|
-
*
|
|
237
|
-
* @param params String of URL parameters.
|
|
238
|
-
*
|
|
239
|
-
* @returns The normalized URL parameters string.
|
|
240
|
-
*/
|
|
241
|
-
function normalizeQueryParams(params) {
|
|
242
|
-
return params && params[0] !== '?' ? '?' + params : params;
|
|
243
|
-
}
|
|
244
|
-
|
|
245
245
|
/**
|
|
246
246
|
* Enables the `Location` service to read route state from the browser's URL.
|
|
247
247
|
* Angular provides two strategies:
|
|
@@ -264,9 +264,9 @@ class LocationStrategy {
|
|
|
264
264
|
throw new Error('Not implemented');
|
|
265
265
|
}
|
|
266
266
|
}
|
|
267
|
-
LocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
268
|
-
LocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
269
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
267
|
+
LocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: LocationStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
268
|
+
LocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: LocationStrategy, providedIn: 'root', useFactory: () => inject(PathLocationStrategy) });
|
|
269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: LocationStrategy, decorators: [{
|
|
270
270
|
type: Injectable,
|
|
271
271
|
args: [{ providedIn: 'root', useFactory: () => inject(PathLocationStrategy) }]
|
|
272
272
|
}] });
|
|
@@ -375,9 +375,9 @@ class PathLocationStrategy extends LocationStrategy {
|
|
|
375
375
|
(_b = (_a = this._platformLocation).historyGo) === null || _b === void 0 ? void 0 : _b.call(_a, relativePosition);
|
|
376
376
|
}
|
|
377
377
|
}
|
|
378
|
-
PathLocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
379
|
-
PathLocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
380
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
378
|
+
PathLocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PathLocationStrategy, deps: [{ token: PlatformLocation }, { token: APP_BASE_HREF, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
379
|
+
PathLocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PathLocationStrategy, providedIn: 'root' });
|
|
380
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PathLocationStrategy, decorators: [{
|
|
381
381
|
type: Injectable,
|
|
382
382
|
args: [{ providedIn: 'root' }]
|
|
383
383
|
}], ctorParameters: function () {
|
|
@@ -469,9 +469,9 @@ class HashLocationStrategy extends LocationStrategy {
|
|
|
469
469
|
(_b = (_a = this._platformLocation).historyGo) === null || _b === void 0 ? void 0 : _b.call(_a, relativePosition);
|
|
470
470
|
}
|
|
471
471
|
}
|
|
472
|
-
HashLocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
473
|
-
HashLocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
474
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
472
|
+
HashLocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: HashLocationStrategy, deps: [{ token: PlatformLocation }, { token: APP_BASE_HREF, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
473
|
+
HashLocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: HashLocationStrategy });
|
|
474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: HashLocationStrategy, decorators: [{
|
|
475
475
|
type: Injectable
|
|
476
476
|
}], ctorParameters: function () {
|
|
477
477
|
return [{ type: PlatformLocation }, { type: undefined, decorators: [{
|
|
@@ -726,9 +726,9 @@ Location.joinWithSlash = joinWithSlash;
|
|
|
726
726
|
* @returns The URL string, modified if needed.
|
|
727
727
|
*/
|
|
728
728
|
Location.stripTrailingSlash = stripTrailingSlash;
|
|
729
|
-
Location.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
730
|
-
Location.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
731
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
729
|
+
Location.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: Location, deps: [{ token: LocationStrategy }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
730
|
+
Location.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: Location, providedIn: 'root', useFactory: createLocation });
|
|
731
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: Location, decorators: [{
|
|
732
732
|
type: Injectable,
|
|
733
733
|
args: [{
|
|
734
734
|
providedIn: 'root',
|
|
@@ -740,9 +740,14 @@ function createLocation() {
|
|
|
740
740
|
return new Location(ɵɵinject(LocationStrategy));
|
|
741
741
|
}
|
|
742
742
|
function _stripBasePath(basePath, url) {
|
|
743
|
-
|
|
744
|
-
url
|
|
745
|
-
|
|
743
|
+
if (!basePath || !url.startsWith(basePath)) {
|
|
744
|
+
return url;
|
|
745
|
+
}
|
|
746
|
+
const strippedUrl = url.substring(basePath.length);
|
|
747
|
+
if (strippedUrl === '' || ['/', ';', '?', '#'].includes(strippedUrl[0])) {
|
|
748
|
+
return strippedUrl;
|
|
749
|
+
}
|
|
750
|
+
return url;
|
|
746
751
|
}
|
|
747
752
|
function _stripIndexHtml(url) {
|
|
748
753
|
return url.replace(/\/index.html$/, '');
|
|
@@ -2516,9 +2521,9 @@ function parseIntAutoRadix(text) {
|
|
|
2516
2521
|
*/
|
|
2517
2522
|
class NgLocalization {
|
|
2518
2523
|
}
|
|
2519
|
-
NgLocalization.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
2520
|
-
NgLocalization.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
2521
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
2524
|
+
NgLocalization.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgLocalization, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2525
|
+
NgLocalization.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgLocalization, providedIn: 'root', useFactory: (locale) => new NgLocaleLocalization(locale), deps: [{ token: LOCALE_ID }] });
|
|
2526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgLocalization, decorators: [{
|
|
2522
2527
|
type: Injectable,
|
|
2523
2528
|
args: [{
|
|
2524
2529
|
providedIn: 'root',
|
|
@@ -2573,9 +2578,9 @@ class NgLocaleLocalization extends NgLocalization {
|
|
|
2573
2578
|
}
|
|
2574
2579
|
}
|
|
2575
2580
|
}
|
|
2576
|
-
NgLocaleLocalization.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
2577
|
-
NgLocaleLocalization.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
2578
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
2581
|
+
NgLocaleLocalization.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgLocaleLocalization, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2582
|
+
NgLocaleLocalization.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgLocaleLocalization });
|
|
2583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgLocaleLocalization, decorators: [{
|
|
2579
2584
|
type: Injectable
|
|
2580
2585
|
}], ctorParameters: function () {
|
|
2581
2586
|
return [{ type: undefined, decorators: [{
|
|
@@ -2751,9 +2756,9 @@ class NgClass {
|
|
|
2751
2756
|
}
|
|
2752
2757
|
}
|
|
2753
2758
|
}
|
|
2754
|
-
NgClass.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
2755
|
-
NgClass.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
2756
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
2759
|
+
NgClass.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgClass, deps: [{ token: i0.IterableDiffers }, { token: i0.KeyValueDiffers }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2760
|
+
NgClass.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgClass, isStandalone: true, selector: "[ngClass]", inputs: { klass: ["class", "klass"], ngClass: "ngClass" }, ngImport: i0 });
|
|
2761
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgClass, decorators: [{
|
|
2757
2762
|
type: Directive,
|
|
2758
2763
|
args: [{
|
|
2759
2764
|
selector: '[ngClass]',
|
|
@@ -2865,9 +2870,9 @@ class NgComponentOutlet {
|
|
|
2865
2870
|
this._moduleRef.destroy();
|
|
2866
2871
|
}
|
|
2867
2872
|
}
|
|
2868
|
-
NgComponentOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
2869
|
-
NgComponentOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
2870
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
2873
|
+
NgComponentOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgComponentOutlet, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2874
|
+
NgComponentOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgComponentOutlet, isStandalone: true, selector: "[ngComponentOutlet]", inputs: { ngComponentOutlet: "ngComponentOutlet", ngComponentOutletInjector: "ngComponentOutletInjector", ngComponentOutletContent: "ngComponentOutletContent", ngComponentOutletNgModule: "ngComponentOutletNgModule", ngComponentOutletNgModuleFactory: "ngComponentOutletNgModuleFactory" }, usesOnChanges: true, ngImport: i0 });
|
|
2875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgComponentOutlet, decorators: [{
|
|
2871
2876
|
type: Directive,
|
|
2872
2877
|
args: [{
|
|
2873
2878
|
selector: '[ngComponentOutlet]',
|
|
@@ -3147,9 +3152,9 @@ class NgForOf {
|
|
|
3147
3152
|
return true;
|
|
3148
3153
|
}
|
|
3149
3154
|
}
|
|
3150
|
-
NgForOf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3151
|
-
NgForOf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
3152
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3155
|
+
NgForOf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgForOf, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: i0.IterableDiffers }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3156
|
+
NgForOf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgForOf, isStandalone: true, selector: "[ngFor][ngForOf]", inputs: { ngForOf: "ngForOf", ngForTrackBy: "ngForTrackBy", ngForTemplate: "ngForTemplate" }, ngImport: i0 });
|
|
3157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgForOf, decorators: [{
|
|
3153
3158
|
type: Directive,
|
|
3154
3159
|
args: [{
|
|
3155
3160
|
selector: '[ngFor][ngForOf]',
|
|
@@ -3375,9 +3380,9 @@ class NgIf {
|
|
|
3375
3380
|
return true;
|
|
3376
3381
|
}
|
|
3377
3382
|
}
|
|
3378
|
-
NgIf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3379
|
-
NgIf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
3380
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3383
|
+
NgIf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgIf, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3384
|
+
NgIf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgIf, isStandalone: true, selector: "[ngIf]", inputs: { ngIf: "ngIf", ngIfThen: "ngIfThen", ngIfElse: "ngIfElse" }, ngImport: i0 });
|
|
3385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgIf, decorators: [{
|
|
3381
3386
|
type: Directive,
|
|
3382
3387
|
args: [{
|
|
3383
3388
|
selector: '[ngIf]',
|
|
@@ -3538,9 +3543,9 @@ class NgSwitch {
|
|
|
3538
3543
|
}
|
|
3539
3544
|
}
|
|
3540
3545
|
}
|
|
3541
|
-
NgSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3542
|
-
NgSwitch.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
3543
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3546
|
+
NgSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgSwitch, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3547
|
+
NgSwitch.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgSwitch, isStandalone: true, selector: "[ngSwitch]", inputs: { ngSwitch: "ngSwitch" }, ngImport: i0 });
|
|
3548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgSwitch, decorators: [{
|
|
3544
3549
|
type: Directive,
|
|
3545
3550
|
args: [{
|
|
3546
3551
|
selector: '[ngSwitch]',
|
|
@@ -3599,9 +3604,9 @@ class NgSwitchCase {
|
|
|
3599
3604
|
this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase));
|
|
3600
3605
|
}
|
|
3601
3606
|
}
|
|
3602
|
-
NgSwitchCase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3603
|
-
NgSwitchCase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
3604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3607
|
+
NgSwitchCase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgSwitchCase, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: NgSwitch, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3608
|
+
NgSwitchCase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgSwitchCase, isStandalone: true, selector: "[ngSwitchCase]", inputs: { ngSwitchCase: "ngSwitchCase" }, ngImport: i0 });
|
|
3609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgSwitchCase, decorators: [{
|
|
3605
3610
|
type: Directive,
|
|
3606
3611
|
args: [{
|
|
3607
3612
|
selector: '[ngSwitchCase]',
|
|
@@ -3638,9 +3643,9 @@ class NgSwitchDefault {
|
|
|
3638
3643
|
ngSwitch._addDefault(new SwitchView(viewContainer, templateRef));
|
|
3639
3644
|
}
|
|
3640
3645
|
}
|
|
3641
|
-
NgSwitchDefault.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3642
|
-
NgSwitchDefault.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
3643
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3646
|
+
NgSwitchDefault.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgSwitchDefault, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: NgSwitch, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3647
|
+
NgSwitchDefault.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgSwitchDefault, isStandalone: true, selector: "[ngSwitchDefault]", ngImport: i0 });
|
|
3648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgSwitchDefault, decorators: [{
|
|
3644
3649
|
type: Directive,
|
|
3645
3650
|
args: [{
|
|
3646
3651
|
selector: '[ngSwitchDefault]',
|
|
@@ -3718,9 +3723,9 @@ class NgPlural {
|
|
|
3718
3723
|
}
|
|
3719
3724
|
}
|
|
3720
3725
|
}
|
|
3721
|
-
NgPlural.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3722
|
-
NgPlural.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
3723
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3726
|
+
NgPlural.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgPlural, deps: [{ token: NgLocalization }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3727
|
+
NgPlural.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgPlural, isStandalone: true, selector: "[ngPlural]", inputs: { ngPlural: "ngPlural" }, ngImport: i0 });
|
|
3728
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgPlural, decorators: [{
|
|
3724
3729
|
type: Directive,
|
|
3725
3730
|
args: [{
|
|
3726
3731
|
selector: '[ngPlural]',
|
|
@@ -3756,9 +3761,9 @@ class NgPluralCase {
|
|
|
3756
3761
|
ngPlural.addCase(isANumber ? `=${value}` : value, new SwitchView(viewContainer, template));
|
|
3757
3762
|
}
|
|
3758
3763
|
}
|
|
3759
|
-
NgPluralCase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3760
|
-
NgPluralCase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
3761
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3764
|
+
NgPluralCase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgPluralCase, deps: [{ token: 'ngPluralCase', attribute: true }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: NgPlural, host: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3765
|
+
NgPluralCase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgPluralCase, isStandalone: true, selector: "[ngPluralCase]", ngImport: i0 });
|
|
3766
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgPluralCase, decorators: [{
|
|
3762
3767
|
type: Directive,
|
|
3763
3768
|
args: [{
|
|
3764
3769
|
selector: '[ngPluralCase]',
|
|
@@ -3847,9 +3852,9 @@ class NgStyle {
|
|
|
3847
3852
|
changes.forEachChangedItem((record) => this._setStyle(record.key, record.currentValue));
|
|
3848
3853
|
}
|
|
3849
3854
|
}
|
|
3850
|
-
NgStyle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3851
|
-
NgStyle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
3852
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3855
|
+
NgStyle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgStyle, deps: [{ token: i0.ElementRef }, { token: i0.KeyValueDiffers }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3856
|
+
NgStyle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgStyle, isStandalone: true, selector: "[ngStyle]", inputs: { ngStyle: "ngStyle" }, ngImport: i0 });
|
|
3857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgStyle, decorators: [{
|
|
3853
3858
|
type: Directive,
|
|
3854
3859
|
args: [{
|
|
3855
3860
|
selector: '[ngStyle]',
|
|
@@ -3922,9 +3927,9 @@ class NgTemplateOutlet {
|
|
|
3922
3927
|
}
|
|
3923
3928
|
}
|
|
3924
3929
|
}
|
|
3925
|
-
NgTemplateOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3926
|
-
NgTemplateOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
3927
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
3930
|
+
NgTemplateOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgTemplateOutlet, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3931
|
+
NgTemplateOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgTemplateOutlet, isStandalone: true, selector: "[ngTemplateOutlet]", inputs: { ngTemplateOutletContext: "ngTemplateOutletContext", ngTemplateOutlet: "ngTemplateOutlet", ngTemplateOutletInjector: "ngTemplateOutletInjector" }, usesOnChanges: true, ngImport: i0 });
|
|
3932
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgTemplateOutlet, decorators: [{
|
|
3928
3933
|
type: Directive,
|
|
3929
3934
|
args: [{
|
|
3930
3935
|
selector: '[ngTemplateOutlet]',
|
|
@@ -4075,9 +4080,9 @@ class AsyncPipe {
|
|
|
4075
4080
|
}
|
|
4076
4081
|
}
|
|
4077
4082
|
}
|
|
4078
|
-
AsyncPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4079
|
-
AsyncPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4080
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4083
|
+
AsyncPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: AsyncPipe, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4084
|
+
AsyncPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: AsyncPipe, isStandalone: true, name: "async", pure: false });
|
|
4085
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: AsyncPipe, decorators: [{
|
|
4081
4086
|
type: Pipe,
|
|
4082
4087
|
args: [{
|
|
4083
4088
|
name: 'async',
|
|
@@ -4111,9 +4116,9 @@ class LowerCasePipe {
|
|
|
4111
4116
|
return value.toLowerCase();
|
|
4112
4117
|
}
|
|
4113
4118
|
}
|
|
4114
|
-
LowerCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4115
|
-
LowerCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4119
|
+
LowerCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: LowerCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4120
|
+
LowerCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: LowerCasePipe, isStandalone: true, name: "lowercase" });
|
|
4121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: LowerCasePipe, decorators: [{
|
|
4117
4122
|
type: Pipe,
|
|
4118
4123
|
args: [{
|
|
4119
4124
|
name: 'lowercase',
|
|
@@ -4156,9 +4161,9 @@ class TitleCasePipe {
|
|
|
4156
4161
|
return value.replace(unicodeWordMatch, (txt => txt[0].toUpperCase() + txt.slice(1).toLowerCase()));
|
|
4157
4162
|
}
|
|
4158
4163
|
}
|
|
4159
|
-
TitleCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4160
|
-
TitleCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4161
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4164
|
+
TitleCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: TitleCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4165
|
+
TitleCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: TitleCasePipe, isStandalone: true, name: "titlecase" });
|
|
4166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: TitleCasePipe, decorators: [{
|
|
4162
4167
|
type: Pipe,
|
|
4163
4168
|
args: [{
|
|
4164
4169
|
name: 'titlecase',
|
|
@@ -4183,9 +4188,9 @@ class UpperCasePipe {
|
|
|
4183
4188
|
return value.toUpperCase();
|
|
4184
4189
|
}
|
|
4185
4190
|
}
|
|
4186
|
-
UpperCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4187
|
-
UpperCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4191
|
+
UpperCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: UpperCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4192
|
+
UpperCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: UpperCasePipe, isStandalone: true, name: "uppercase" });
|
|
4193
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: UpperCasePipe, decorators: [{
|
|
4189
4194
|
type: Pipe,
|
|
4190
4195
|
args: [{
|
|
4191
4196
|
name: 'uppercase',
|
|
@@ -4417,9 +4422,9 @@ class DatePipe {
|
|
|
4417
4422
|
}
|
|
4418
4423
|
}
|
|
4419
4424
|
}
|
|
4420
|
-
DatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4421
|
-
DatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4422
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4425
|
+
DatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: DatePipe, deps: [{ token: LOCALE_ID }, { token: DATE_PIPE_DEFAULT_TIMEZONE, optional: true }, { token: DATE_PIPE_DEFAULT_OPTIONS, optional: true }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4426
|
+
DatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: DatePipe, isStandalone: true, name: "date" });
|
|
4427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: DatePipe, decorators: [{
|
|
4423
4428
|
type: Pipe,
|
|
4424
4429
|
args: [{
|
|
4425
4430
|
name: 'date',
|
|
@@ -4479,9 +4484,9 @@ class I18nPluralPipe {
|
|
|
4479
4484
|
return pluralMap[key].replace(_INTERPOLATION_REGEXP, value.toString());
|
|
4480
4485
|
}
|
|
4481
4486
|
}
|
|
4482
|
-
I18nPluralPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4483
|
-
I18nPluralPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4484
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4487
|
+
I18nPluralPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: I18nPluralPipe, deps: [{ token: NgLocalization }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4488
|
+
I18nPluralPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: I18nPluralPipe, isStandalone: true, name: "i18nPlural" });
|
|
4489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: I18nPluralPipe, decorators: [{
|
|
4485
4490
|
type: Pipe,
|
|
4486
4491
|
args: [{
|
|
4487
4492
|
name: 'i18nPlural',
|
|
@@ -4528,9 +4533,9 @@ class I18nSelectPipe {
|
|
|
4528
4533
|
return '';
|
|
4529
4534
|
}
|
|
4530
4535
|
}
|
|
4531
|
-
I18nSelectPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4532
|
-
I18nSelectPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4533
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4536
|
+
I18nSelectPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: I18nSelectPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4537
|
+
I18nSelectPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: I18nSelectPipe, isStandalone: true, name: "i18nSelect" });
|
|
4538
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: I18nSelectPipe, decorators: [{
|
|
4534
4539
|
type: Pipe,
|
|
4535
4540
|
args: [{
|
|
4536
4541
|
name: 'i18nSelect',
|
|
@@ -4562,9 +4567,9 @@ class JsonPipe {
|
|
|
4562
4567
|
return JSON.stringify(value, null, 2);
|
|
4563
4568
|
}
|
|
4564
4569
|
}
|
|
4565
|
-
JsonPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4566
|
-
JsonPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4567
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4570
|
+
JsonPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: JsonPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4571
|
+
JsonPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: JsonPipe, isStandalone: true, name: "json", pure: false });
|
|
4572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: JsonPipe, decorators: [{
|
|
4568
4573
|
type: Pipe,
|
|
4569
4574
|
args: [{
|
|
4570
4575
|
name: 'json',
|
|
@@ -4625,9 +4630,9 @@ class KeyValuePipe {
|
|
|
4625
4630
|
return this.keyValues;
|
|
4626
4631
|
}
|
|
4627
4632
|
}
|
|
4628
|
-
KeyValuePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4629
|
-
KeyValuePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4630
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4633
|
+
KeyValuePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: KeyValuePipe, deps: [{ token: i0.KeyValueDiffers }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4634
|
+
KeyValuePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: KeyValuePipe, isStandalone: true, name: "keyvalue", pure: false });
|
|
4635
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: KeyValuePipe, decorators: [{
|
|
4631
4636
|
type: Pipe,
|
|
4632
4637
|
args: [{
|
|
4633
4638
|
name: 'keyvalue',
|
|
@@ -4753,9 +4758,9 @@ class DecimalPipe {
|
|
|
4753
4758
|
}
|
|
4754
4759
|
}
|
|
4755
4760
|
}
|
|
4756
|
-
DecimalPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4757
|
-
DecimalPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4758
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4761
|
+
DecimalPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: DecimalPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4762
|
+
DecimalPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: DecimalPipe, isStandalone: true, name: "number" });
|
|
4763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: DecimalPipe, decorators: [{
|
|
4759
4764
|
type: Pipe,
|
|
4760
4765
|
args: [{
|
|
4761
4766
|
name: 'number',
|
|
@@ -4820,9 +4825,9 @@ class PercentPipe {
|
|
|
4820
4825
|
}
|
|
4821
4826
|
}
|
|
4822
4827
|
}
|
|
4823
|
-
PercentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4824
|
-
PercentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4825
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4828
|
+
PercentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PercentPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4829
|
+
PercentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: PercentPipe, isStandalone: true, name: "percent" });
|
|
4830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PercentPipe, decorators: [{
|
|
4826
4831
|
type: Pipe,
|
|
4827
4832
|
args: [{
|
|
4828
4833
|
name: 'percent',
|
|
@@ -4921,9 +4926,9 @@ class CurrencyPipe {
|
|
|
4921
4926
|
}
|
|
4922
4927
|
}
|
|
4923
4928
|
}
|
|
4924
|
-
CurrencyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4925
|
-
CurrencyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
4926
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
4929
|
+
CurrencyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: CurrencyPipe, deps: [{ token: LOCALE_ID }, { token: DEFAULT_CURRENCY_CODE }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4930
|
+
CurrencyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: CurrencyPipe, isStandalone: true, name: "currency" });
|
|
4931
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: CurrencyPipe, decorators: [{
|
|
4927
4932
|
type: Pipe,
|
|
4928
4933
|
args: [{
|
|
4929
4934
|
name: 'currency',
|
|
@@ -5003,9 +5008,9 @@ class SlicePipe {
|
|
|
5003
5008
|
return typeof obj === 'string' || Array.isArray(obj);
|
|
5004
5009
|
}
|
|
5005
5010
|
}
|
|
5006
|
-
SlicePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5007
|
-
SlicePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
5008
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5011
|
+
SlicePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: SlicePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
5012
|
+
SlicePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: SlicePipe, isStandalone: true, name: "slice", pure: false });
|
|
5013
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: SlicePipe, decorators: [{
|
|
5009
5014
|
type: Pipe,
|
|
5010
5015
|
args: [{
|
|
5011
5016
|
name: 'slice',
|
|
@@ -5050,10 +5055,10 @@ const COMMON_PIPES = [
|
|
|
5050
5055
|
*/
|
|
5051
5056
|
class CommonModule {
|
|
5052
5057
|
}
|
|
5053
|
-
CommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5054
|
-
CommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
5055
|
-
CommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5056
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5058
|
+
CommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5059
|
+
CommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.0-next.2", ngImport: i0, type: CommonModule, imports: [NgClass, NgComponentOutlet, NgForOf, NgIf, NgTemplateOutlet, NgStyle, NgSwitch, NgSwitchCase, NgSwitchDefault, NgPlural, NgPluralCase, AsyncPipe, UpperCasePipe, LowerCasePipe, JsonPipe, SlicePipe, DecimalPipe, PercentPipe, TitleCasePipe, CurrencyPipe, DatePipe, I18nPluralPipe, I18nSelectPipe, KeyValuePipe], exports: [NgClass, NgComponentOutlet, NgForOf, NgIf, NgTemplateOutlet, NgStyle, NgSwitch, NgSwitchCase, NgSwitchDefault, NgPlural, NgPluralCase, AsyncPipe, UpperCasePipe, LowerCasePipe, JsonPipe, SlicePipe, DecimalPipe, PercentPipe, TitleCasePipe, CurrencyPipe, DatePipe, I18nPluralPipe, I18nSelectPipe, KeyValuePipe] });
|
|
5060
|
+
CommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: CommonModule });
|
|
5061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: CommonModule, decorators: [{
|
|
5057
5062
|
type: NgModule,
|
|
5058
5063
|
args: [{
|
|
5059
5064
|
imports: [COMMON_DIRECTIVES, COMMON_PIPES],
|
|
@@ -5102,7 +5107,7 @@ function isPlatformWorkerUi(platformId) {
|
|
|
5102
5107
|
/**
|
|
5103
5108
|
* @publicApi
|
|
5104
5109
|
*/
|
|
5105
|
-
const VERSION = new Version('16.0.0-next.
|
|
5110
|
+
const VERSION = new Version('16.0.0-next.2');
|
|
5106
5111
|
|
|
5107
5112
|
/**
|
|
5108
5113
|
* Defines a scroll position manager. Implemented by `BrowserViewportScroller`.
|
|
@@ -5259,7 +5264,8 @@ function findAnchorFromDocument(document, target) {
|
|
|
5259
5264
|
// `getElementById` and `getElementsByName` won't pierce through the shadow DOM so we
|
|
5260
5265
|
// have to traverse the DOM manually and do the lookup through the shadow roots.
|
|
5261
5266
|
if (typeof document.createTreeWalker === 'function' && document.body &&
|
|
5262
|
-
(document.body.createShadowRoot ||
|
|
5267
|
+
(document.body.createShadowRoot ||
|
|
5268
|
+
typeof document.body.attachShadow === 'function')) {
|
|
5263
5269
|
const treeWalker = document.createTreeWalker(document.body, NodeFilter.SHOW_ELEMENT);
|
|
5264
5270
|
let currentNode = treeWalker.currentNode;
|
|
5265
5271
|
while (currentNode) {
|
|
@@ -5640,9 +5646,9 @@ class LCPImageObserver {
|
|
|
5640
5646
|
this.alreadyWarned.clear();
|
|
5641
5647
|
}
|
|
5642
5648
|
}
|
|
5643
|
-
LCPImageObserver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5644
|
-
LCPImageObserver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5645
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5649
|
+
LCPImageObserver.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: LCPImageObserver, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5650
|
+
LCPImageObserver.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: LCPImageObserver, providedIn: 'root' });
|
|
5651
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: LCPImageObserver, decorators: [{
|
|
5646
5652
|
type: Injectable,
|
|
5647
5653
|
args: [{ providedIn: 'root' }]
|
|
5648
5654
|
}], ctorParameters: function () { return []; } });
|
|
@@ -5762,9 +5768,9 @@ class PreconnectLinkChecker {
|
|
|
5762
5768
|
this.alreadySeen.clear();
|
|
5763
5769
|
}
|
|
5764
5770
|
}
|
|
5765
|
-
PreconnectLinkChecker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5766
|
-
PreconnectLinkChecker.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5767
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5771
|
+
PreconnectLinkChecker.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PreconnectLinkChecker, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5772
|
+
PreconnectLinkChecker.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PreconnectLinkChecker, providedIn: 'root' });
|
|
5773
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PreconnectLinkChecker, decorators: [{
|
|
5768
5774
|
type: Injectable,
|
|
5769
5775
|
args: [{ providedIn: 'root' }]
|
|
5770
5776
|
}], ctorParameters: function () { return []; } });
|
|
@@ -5851,9 +5857,9 @@ class PreloadLinkCreator {
|
|
|
5851
5857
|
renderer.appendChild(this.document.head, preload);
|
|
5852
5858
|
}
|
|
5853
5859
|
}
|
|
5854
|
-
PreloadLinkCreator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5855
|
-
PreloadLinkCreator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5856
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
5860
|
+
PreloadLinkCreator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PreloadLinkCreator, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5861
|
+
PreloadLinkCreator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PreloadLinkCreator, providedIn: 'root' });
|
|
5862
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: PreloadLinkCreator, decorators: [{
|
|
5857
5863
|
type: Injectable,
|
|
5858
5864
|
args: [{ providedIn: 'root' }]
|
|
5859
5865
|
}] });
|
|
@@ -6277,9 +6283,9 @@ class NgOptimizedImage {
|
|
|
6277
6283
|
this.renderer.setAttribute(this.imgElement, name, value);
|
|
6278
6284
|
}
|
|
6279
6285
|
}
|
|
6280
|
-
NgOptimizedImage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
6281
|
-
NgOptimizedImage.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.
|
|
6282
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.
|
|
6286
|
+
NgOptimizedImage.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgOptimizedImage, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
6287
|
+
NgOptimizedImage.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.0.0-next.2", type: NgOptimizedImage, isStandalone: true, selector: "img[ngSrc]", inputs: { ngSrc: "ngSrc", ngSrcset: "ngSrcset", sizes: "sizes", width: "width", height: "height", loading: "loading", priority: "priority", loaderParams: "loaderParams", disableOptimizedSrcset: "disableOptimizedSrcset", fill: "fill", src: "src", srcset: "srcset" }, host: { properties: { "style.position": "fill ? \"absolute\" : null", "style.width": "fill ? \"100%\" : null", "style.height": "fill ? \"100%\" : null", "style.inset": "fill ? \"0px\" : null" } }, usesOnChanges: true, ngImport: i0 });
|
|
6288
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.0-next.2", ngImport: i0, type: NgOptimizedImage, decorators: [{
|
|
6283
6289
|
type: Directive,
|
|
6284
6290
|
args: [{
|
|
6285
6291
|
standalone: true,
|
|
@@ -6696,5 +6702,5 @@ function assertNoLoaderParamsWithoutLoader(dir, imageLoader) {
|
|
|
6696
6702
|
* Generated bundle index. Do not edit.
|
|
6697
6703
|
*/
|
|
6698
6704
|
|
|
6699
|
-
export { APP_BASE_HREF, AsyncPipe, BrowserPlatformLocation, CommonModule, CurrencyPipe, DATE_PIPE_DEFAULT_OPTIONS, DATE_PIPE_DEFAULT_TIMEZONE, DOCUMENT, DatePipe, DecimalPipe, FormStyle, FormatWidth, HashLocationStrategy, I18nPluralPipe, I18nSelectPipe, IMAGE_CONFIG, IMAGE_LOADER, JsonPipe, KeyValuePipe, LOCATION_INITIALIZED, Location, LocationStrategy, LowerCasePipe, NgClass, NgComponentOutlet, NgForOf as NgFor, NgForOf, NgForOfContext, NgIf, NgIfContext, NgLocaleLocalization, NgLocalization, NgOptimizedImage, NgPlural, NgPluralCase, NgStyle, NgSwitch, NgSwitchCase, NgSwitchDefault, NgTemplateOutlet, NumberFormatStyle, NumberSymbol, PRECONNECT_CHECK_BLOCKLIST, PathLocationStrategy, PercentPipe, PlatformLocation, Plural, SlicePipe, TitleCasePipe, TranslationWidth, UpperCasePipe, VERSION, ViewportScroller, WeekDay, XhrFactory, formatCurrency, formatDate, formatNumber, formatPercent, getCurrencySymbol, getLocaleCurrencyCode, getLocaleCurrencyName, getLocaleCurrencySymbol, getLocaleDateFormat, getLocaleDateTimeFormat, getLocaleDayNames, getLocaleDayPeriods, getLocaleDirection, getLocaleEraNames, getLocaleExtraDayPeriodRules, getLocaleExtraDayPeriods, getLocaleFirstDayOfWeek, getLocaleId, getLocaleMonthNames, getLocaleNumberFormat, getLocaleNumberSymbol, getLocalePluralCase, getLocaleTimeFormat, getLocaleWeekEndRange, getNumberOfCurrencyDigits, isPlatformBrowser, isPlatformServer, isPlatformWorkerApp, isPlatformWorkerUi, provideCloudflareLoader, provideCloudinaryLoader, provideImageKitLoader, provideImgixLoader, registerLocaleData,
|
|
6705
|
+
export { APP_BASE_HREF, AsyncPipe, BrowserPlatformLocation, CommonModule, CurrencyPipe, DATE_PIPE_DEFAULT_OPTIONS, DATE_PIPE_DEFAULT_TIMEZONE, DOCUMENT, DatePipe, DecimalPipe, FormStyle, FormatWidth, HashLocationStrategy, I18nPluralPipe, I18nSelectPipe, IMAGE_CONFIG, IMAGE_LOADER, JsonPipe, KeyValuePipe, LOCATION_INITIALIZED, Location, LocationStrategy, LowerCasePipe, NgClass, NgComponentOutlet, NgForOf as NgFor, NgForOf, NgForOfContext, NgIf, NgIfContext, NgLocaleLocalization, NgLocalization, NgOptimizedImage, NgPlural, NgPluralCase, NgStyle, NgSwitch, NgSwitchCase, NgSwitchDefault, NgTemplateOutlet, NumberFormatStyle, NumberSymbol, PRECONNECT_CHECK_BLOCKLIST, PathLocationStrategy, PercentPipe, PlatformLocation, Plural, SlicePipe, TitleCasePipe, TranslationWidth, UpperCasePipe, VERSION, ViewportScroller, WeekDay, XhrFactory, formatCurrency, formatDate, formatNumber, formatPercent, getCurrencySymbol, getLocaleCurrencyCode, getLocaleCurrencyName, getLocaleCurrencySymbol, getLocaleDateFormat, getLocaleDateTimeFormat, getLocaleDayNames, getLocaleDayPeriods, getLocaleDirection, getLocaleEraNames, getLocaleExtraDayPeriodRules, getLocaleExtraDayPeriods, getLocaleFirstDayOfWeek, getLocaleId, getLocaleMonthNames, getLocaleNumberFormat, getLocaleNumberSymbol, getLocalePluralCase, getLocaleTimeFormat, getLocaleWeekEndRange, getNumberOfCurrencyDigits, isPlatformBrowser, isPlatformServer, isPlatformWorkerApp, isPlatformWorkerUi, provideCloudflareLoader, provideCloudinaryLoader, provideImageKitLoader, provideImgixLoader, registerLocaleData, DomAdapter as ɵDomAdapter, NullViewportScroller as ɵNullViewportScroller, PLATFORM_BROWSER_ID as ɵPLATFORM_BROWSER_ID, PLATFORM_SERVER_ID as ɵPLATFORM_SERVER_ID, PLATFORM_WORKER_APP_ID as ɵPLATFORM_WORKER_APP_ID, PLATFORM_WORKER_UI_ID as ɵPLATFORM_WORKER_UI_ID, getDOM as ɵgetDOM, parseCookieValue as ɵparseCookieValue, setRootDomAdapter as ɵsetRootDomAdapter };
|
|
6700
6706
|
//# sourceMappingURL=common.mjs.map
|