@angular/common 14.1.0-next.2 → 14.1.0-rc.0
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/src/client.mjs +3 -3
- package/esm2020/http/src/headers.mjs +2 -2
- package/esm2020/http/src/interceptor.mjs +3 -3
- package/esm2020/http/src/jsonp.mjs +6 -6
- package/esm2020/http/src/module.mjs +15 -15
- package/esm2020/http/src/xhr.mjs +5 -5
- package/esm2020/http/src/xsrf.mjs +6 -6
- package/esm2020/http/testing/src/backend.mjs +3 -3
- package/esm2020/http/testing/src/module.mjs +4 -4
- package/esm2020/src/common_module.mjs +6 -11
- package/esm2020/src/directives/ng_class.mjs +8 -5
- package/esm2020/src/directives/ng_component_outlet.mjs +10 -7
- package/esm2020/src/directives/ng_for_of.mjs +19 -10
- package/esm2020/src/directives/ng_if.mjs +8 -5
- package/esm2020/src/directives/ng_plural.mjs +15 -9
- package/esm2020/src/directives/ng_style.mjs +12 -9
- package/esm2020/src/directives/ng_switch.mjs +22 -13
- package/esm2020/src/directives/ng_template_outlet.mjs +8 -5
- package/esm2020/src/errors.mjs +1 -1
- package/esm2020/src/i18n/format_number.mjs +2 -2
- package/esm2020/src/i18n/locale_data_api.mjs +3 -3
- package/esm2020/src/i18n/localization.mjs +6 -6
- package/esm2020/src/location/hash_location_strategy.mjs +3 -3
- package/esm2020/src/location/location.mjs +3 -3
- package/esm2020/src/location/location_strategy.mjs +6 -6
- package/esm2020/src/location/platform_location.mjs +6 -6
- package/esm2020/src/pipes/async_pipe.mjs +9 -5
- package/esm2020/src/pipes/case_conversion_pipes.mjs +22 -13
- package/esm2020/src/pipes/date_pipe.mjs +9 -5
- package/esm2020/src/pipes/i18n_plural_pipe.mjs +9 -5
- package/esm2020/src/pipes/i18n_select_pipe.mjs +9 -5
- package/esm2020/src/pipes/json_pipe.mjs +9 -5
- package/esm2020/src/pipes/keyvalue_pipe.mjs +9 -5
- package/esm2020/src/pipes/number_pipe.mjs +22 -13
- package/esm2020/src/pipes/slice_pipe.mjs +9 -5
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/location_mock.mjs +3 -3
- package/esm2020/testing/src/mock_location_strategy.mjs +3 -3
- package/esm2020/testing/src/mock_platform_location.mjs +3 -3
- package/esm2020/upgrade/src/location_shim.mjs +9 -9
- package/esm2020/upgrade/src/location_upgrade_module.mjs +4 -4
- package/fesm2015/common.mjs +224 -144
- package/fesm2015/common.mjs.map +1 -1
- package/fesm2015/http/testing.mjs +8 -8
- package/fesm2015/http.mjs +39 -39
- package/fesm2015/http.mjs.map +1 -1
- package/fesm2015/testing.mjs +10 -10
- package/fesm2015/upgrade.mjs +13 -13
- package/fesm2015/upgrade.mjs.map +1 -1
- package/fesm2020/common.mjs +224 -144
- package/fesm2020/common.mjs.map +1 -1
- package/fesm2020/http/testing.mjs +8 -8
- package/fesm2020/http.mjs +39 -39
- package/fesm2020/http.mjs.map +1 -1
- package/fesm2020/testing.mjs +10 -10
- package/fesm2020/upgrade.mjs +13 -13
- package/fesm2020/upgrade.mjs.map +1 -1
- package/http/index.d.ts +2 -2
- package/http/testing/index.d.ts +1 -1
- package/index.d.ts +29 -34
- package/package.json +2 -2
- package/testing/index.d.ts +1 -1
- package/upgrade/index.d.ts +3 -3
package/fesm2015/common.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.1.0-
|
|
2
|
+
* @license Angular v14.1.0-rc.0
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import * as i0 from '@angular/core';
|
|
8
|
-
import { InjectionToken, Injectable, ɵɵinject, Inject, Optional, EventEmitter, ɵfindLocaleData, ɵLocaleDataIndex, ɵgetLocaleCurrencyCode, ɵgetLocalePluralCase, LOCALE_ID, ɵregisterLocaleData, ɵisListLikeIterable, ɵstringify, Directive, Input,
|
|
8
|
+
import { InjectionToken, Injectable, ɵɵinject, Inject, Optional, EventEmitter, ɵfindLocaleData, ɵLocaleDataIndex, ɵgetLocaleCurrencyCode, ɵgetLocalePluralCase, LOCALE_ID, ɵregisterLocaleData, ɵisListLikeIterable, ɵstringify, Directive, Input, createNgModule, NgModuleRef, ɵRuntimeError, Host, Attribute, RendererStyleFlags2, ɵisPromise, ɵisSubscribable, Pipe, DEFAULT_CURRENCY_CODE, NgModule, Version, ɵɵdefineInjectable } from '@angular/core';
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* @license
|
|
@@ -87,9 +87,9 @@ class PlatformLocation {
|
|
|
87
87
|
throw new Error('Not implemented');
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
|
-
PlatformLocation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
91
|
-
PlatformLocation.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-
|
|
92
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
90
|
+
PlatformLocation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: PlatformLocation, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
91
|
+
PlatformLocation.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: PlatformLocation, providedIn: 'platform', useFactory: useBrowserPlatformLocation });
|
|
92
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: PlatformLocation, decorators: [{
|
|
93
93
|
type: Injectable,
|
|
94
94
|
args: [{
|
|
95
95
|
providedIn: 'platform',
|
|
@@ -190,9 +190,9 @@ class BrowserPlatformLocation extends PlatformLocation {
|
|
|
190
190
|
return this._history.state;
|
|
191
191
|
}
|
|
192
192
|
}
|
|
193
|
-
BrowserPlatformLocation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
194
|
-
BrowserPlatformLocation.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-
|
|
195
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
193
|
+
BrowserPlatformLocation.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: BrowserPlatformLocation, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
194
|
+
BrowserPlatformLocation.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: BrowserPlatformLocation, providedIn: 'platform', useFactory: createBrowserPlatformLocation });
|
|
195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: BrowserPlatformLocation, decorators: [{
|
|
196
196
|
type: Injectable,
|
|
197
197
|
args: [{
|
|
198
198
|
providedIn: 'platform',
|
|
@@ -313,9 +313,9 @@ class LocationStrategy {
|
|
|
313
313
|
throw new Error('Not implemented');
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
|
-
LocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
317
|
-
LocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-
|
|
318
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
316
|
+
LocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: LocationStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
317
|
+
LocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: LocationStrategy, providedIn: 'root', useFactory: provideLocationStrategy });
|
|
318
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: LocationStrategy, decorators: [{
|
|
319
319
|
type: Injectable,
|
|
320
320
|
args: [{ providedIn: 'root', useFactory: provideLocationStrategy }]
|
|
321
321
|
}] });
|
|
@@ -434,9 +434,9 @@ class PathLocationStrategy extends LocationStrategy {
|
|
|
434
434
|
(_b = (_a = this._platformLocation).historyGo) === null || _b === void 0 ? void 0 : _b.call(_a, relativePosition);
|
|
435
435
|
}
|
|
436
436
|
}
|
|
437
|
-
PathLocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
438
|
-
PathLocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-
|
|
439
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
437
|
+
PathLocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: PathLocationStrategy, deps: [{ token: PlatformLocation }, { token: APP_BASE_HREF, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
438
|
+
PathLocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: PathLocationStrategy });
|
|
439
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: PathLocationStrategy, decorators: [{
|
|
440
440
|
type: Injectable
|
|
441
441
|
}], ctorParameters: function () {
|
|
442
442
|
return [{ type: PlatformLocation }, { type: undefined, decorators: [{
|
|
@@ -534,9 +534,9 @@ class HashLocationStrategy extends LocationStrategy {
|
|
|
534
534
|
(_b = (_a = this._platformLocation).historyGo) === null || _b === void 0 ? void 0 : _b.call(_a, relativePosition);
|
|
535
535
|
}
|
|
536
536
|
}
|
|
537
|
-
HashLocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
538
|
-
HashLocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-
|
|
539
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
537
|
+
HashLocationStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: HashLocationStrategy, deps: [{ token: PlatformLocation }, { token: APP_BASE_HREF, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
538
|
+
HashLocationStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: HashLocationStrategy });
|
|
539
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: HashLocationStrategy, decorators: [{
|
|
540
540
|
type: Injectable
|
|
541
541
|
}], ctorParameters: function () {
|
|
542
542
|
return [{ type: PlatformLocation }, { type: undefined, decorators: [{
|
|
@@ -792,9 +792,9 @@ Location.joinWithSlash = joinWithSlash;
|
|
|
792
792
|
* @returns The URL string, modified if needed.
|
|
793
793
|
*/
|
|
794
794
|
Location.stripTrailingSlash = stripTrailingSlash;
|
|
795
|
-
Location.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
796
|
-
Location.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-
|
|
797
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
795
|
+
Location.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: Location, deps: [{ token: LocationStrategy }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
796
|
+
Location.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: Location, providedIn: 'root', useFactory: createLocation });
|
|
797
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: Location, decorators: [{
|
|
798
798
|
type: Injectable,
|
|
799
799
|
args: [{
|
|
800
800
|
providedIn: 'root',
|
|
@@ -1146,11 +1146,11 @@ function getLocaleWeekEndRange(locale) {
|
|
|
1146
1146
|
return data[ɵLocaleDataIndex.WeekendRange];
|
|
1147
1147
|
}
|
|
1148
1148
|
/**
|
|
1149
|
-
* Retrieves a localized date-value
|
|
1149
|
+
* Retrieves a localized date-value formatting string.
|
|
1150
1150
|
*
|
|
1151
1151
|
* @param locale A locale code for the locale format rules to use.
|
|
1152
1152
|
* @param width The format type.
|
|
1153
|
-
* @returns The localized
|
|
1153
|
+
* @returns The localized formatting string.
|
|
1154
1154
|
* @see `FormatWidth`
|
|
1155
1155
|
* @see [Internationalization (i18n) Guide](https://angular.io/guide/i18n-overview)
|
|
1156
1156
|
*
|
|
@@ -2344,7 +2344,7 @@ function formatCurrency(value, locale, currency, currencyCode, digitsInfo) {
|
|
|
2344
2344
|
// if we have 2 time the currency character, the second one is ignored
|
|
2345
2345
|
.replace(CURRENCY_CHAR, '')
|
|
2346
2346
|
// If there is a spacing between currency character and the value and
|
|
2347
|
-
// the currency character is
|
|
2347
|
+
// the currency character is suppressed by passing an empty string, the
|
|
2348
2348
|
// spacing character would remain as part of the string. Then we
|
|
2349
2349
|
// should remove it.
|
|
2350
2350
|
.trim();
|
|
@@ -2610,9 +2610,9 @@ function parseIntAutoRadix(text) {
|
|
|
2610
2610
|
*/
|
|
2611
2611
|
class NgLocalization {
|
|
2612
2612
|
}
|
|
2613
|
-
NgLocalization.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
2614
|
-
NgLocalization.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-
|
|
2615
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
2613
|
+
NgLocalization.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgLocalization, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2614
|
+
NgLocalization.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgLocalization, providedIn: 'root', useFactory: (locale) => new NgLocaleLocalization(locale), deps: [{ token: LOCALE_ID }] });
|
|
2615
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgLocalization, decorators: [{
|
|
2616
2616
|
type: Injectable,
|
|
2617
2617
|
args: [{
|
|
2618
2618
|
providedIn: 'root',
|
|
@@ -2667,9 +2667,9 @@ class NgLocaleLocalization extends NgLocalization {
|
|
|
2667
2667
|
}
|
|
2668
2668
|
}
|
|
2669
2669
|
}
|
|
2670
|
-
NgLocaleLocalization.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
2671
|
-
NgLocaleLocalization.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-
|
|
2672
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
2670
|
+
NgLocaleLocalization.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgLocaleLocalization, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2671
|
+
NgLocaleLocalization.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgLocaleLocalization });
|
|
2672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgLocaleLocalization, decorators: [{
|
|
2673
2673
|
type: Injectable
|
|
2674
2674
|
}], ctorParameters: function () {
|
|
2675
2675
|
return [{ type: undefined, decorators: [{
|
|
@@ -2864,11 +2864,14 @@ class NgClass {
|
|
|
2864
2864
|
}
|
|
2865
2865
|
}
|
|
2866
2866
|
}
|
|
2867
|
-
NgClass.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
2868
|
-
NgClass.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
2869
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
2867
|
+
NgClass.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgClass, deps: [{ token: i0.IterableDiffers }, { token: i0.KeyValueDiffers }, { token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2868
|
+
NgClass.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgClass, isStandalone: true, selector: "[ngClass]", inputs: { klass: ["class", "klass"], ngClass: "ngClass" }, ngImport: i0 });
|
|
2869
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgClass, decorators: [{
|
|
2870
2870
|
type: Directive,
|
|
2871
|
-
args: [{
|
|
2871
|
+
args: [{
|
|
2872
|
+
selector: '[ngClass]',
|
|
2873
|
+
standalone: true,
|
|
2874
|
+
}]
|
|
2872
2875
|
}], ctorParameters: function () { return [{ type: i0.IterableDiffers }, { type: i0.KeyValueDiffers }, { type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { klass: [{
|
|
2873
2876
|
type: Input,
|
|
2874
2877
|
args: ['class']
|
|
@@ -2959,7 +2962,7 @@ class NgComponentOutlet {
|
|
|
2959
2962
|
if (this._moduleRef)
|
|
2960
2963
|
this._moduleRef.destroy();
|
|
2961
2964
|
if (ngModule) {
|
|
2962
|
-
this._moduleRef =
|
|
2965
|
+
this._moduleRef = createNgModule(ngModule, getParentInjector(injector));
|
|
2963
2966
|
}
|
|
2964
2967
|
else if (ngModuleFactory) {
|
|
2965
2968
|
this._moduleRef = ngModuleFactory.create(getParentInjector(injector));
|
|
@@ -2982,11 +2985,14 @@ class NgComponentOutlet {
|
|
|
2982
2985
|
this._moduleRef.destroy();
|
|
2983
2986
|
}
|
|
2984
2987
|
}
|
|
2985
|
-
NgComponentOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
2986
|
-
NgComponentOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
2987
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
2988
|
+
NgComponentOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgComponentOutlet, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2989
|
+
NgComponentOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgComponentOutlet, isStandalone: true, selector: "[ngComponentOutlet]", inputs: { ngComponentOutlet: "ngComponentOutlet", ngComponentOutletInjector: "ngComponentOutletInjector", ngComponentOutletContent: "ngComponentOutletContent", ngComponentOutletNgModule: "ngComponentOutletNgModule", ngComponentOutletNgModuleFactory: "ngComponentOutletNgModuleFactory" }, usesOnChanges: true, ngImport: i0 });
|
|
2990
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgComponentOutlet, decorators: [{
|
|
2988
2991
|
type: Directive,
|
|
2989
|
-
args: [{
|
|
2992
|
+
args: [{
|
|
2993
|
+
selector: '[ngComponentOutlet]',
|
|
2994
|
+
standalone: true,
|
|
2995
|
+
}]
|
|
2990
2996
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { ngComponentOutlet: [{
|
|
2991
2997
|
type: Input
|
|
2992
2998
|
}], ngComponentOutletInjector: [{
|
|
@@ -3011,6 +3017,7 @@ function getParentInjector(injector) {
|
|
|
3011
3017
|
* Use of this source code is governed by an MIT-style license that can be
|
|
3012
3018
|
* found in the LICENSE file at https://angular.io/license
|
|
3013
3019
|
*/
|
|
3020
|
+
const NG_DEV_MODE = typeof ngDevMode === 'undefined' || !!ngDevMode;
|
|
3014
3021
|
/**
|
|
3015
3022
|
* @publicApi
|
|
3016
3023
|
*/
|
|
@@ -3073,7 +3080,7 @@ class NgForOfContext {
|
|
|
3073
3080
|
* on an element](guide/structural-directives#one-per-element).
|
|
3074
3081
|
* If you want to iterate conditionally, for example,
|
|
3075
3082
|
* put the `*ngIf` on a container element that wraps the `*ngFor` element.
|
|
3076
|
-
* For
|
|
3083
|
+
* For further discussion, see
|
|
3077
3084
|
* [Structural Directives](guide/structural-directives#one-per-element).
|
|
3078
3085
|
*
|
|
3079
3086
|
* @usageNotes
|
|
@@ -3168,7 +3175,7 @@ class NgForOf {
|
|
|
3168
3175
|
* @see `TrackByFunction`
|
|
3169
3176
|
*/
|
|
3170
3177
|
set ngForTrackBy(fn) {
|
|
3171
|
-
if (
|
|
3178
|
+
if (NG_DEV_MODE && fn != null && typeof fn !== 'function') {
|
|
3172
3179
|
// TODO(vicb): use a log service once there is a public one available
|
|
3173
3180
|
if (console && console.warn) {
|
|
3174
3181
|
console.warn(`trackBy must be a function, but received ${JSON.stringify(fn)}. ` +
|
|
@@ -3202,14 +3209,19 @@ class NgForOf {
|
|
|
3202
3209
|
// React on ngForOf changes only once all inputs have been initialized
|
|
3203
3210
|
const value = this._ngForOf;
|
|
3204
3211
|
if (!this._differ && value) {
|
|
3205
|
-
if (
|
|
3212
|
+
if (NG_DEV_MODE) {
|
|
3206
3213
|
try {
|
|
3207
3214
|
// CAUTION: this logic is duplicated for production mode below, as the try-catch
|
|
3208
3215
|
// is only present in development builds.
|
|
3209
3216
|
this._differ = this._differs.find(value).create(this.ngForTrackBy);
|
|
3210
3217
|
}
|
|
3211
3218
|
catch (_a) {
|
|
3212
|
-
|
|
3219
|
+
let errorMessage = `Cannot find a differ supporting object '${value}' of type '` +
|
|
3220
|
+
`${getTypeName(value)}'. NgFor only supports binding to Iterables, such as Arrays.`;
|
|
3221
|
+
if (typeof value === 'object') {
|
|
3222
|
+
errorMessage += ' Did you mean to use the keyvalue pipe?';
|
|
3223
|
+
}
|
|
3224
|
+
throw new ɵRuntimeError(-2200 /* RuntimeErrorCode.NG_FOR_MISSING_DIFFER */, errorMessage);
|
|
3213
3225
|
}
|
|
3214
3226
|
}
|
|
3215
3227
|
else {
|
|
@@ -3265,11 +3277,14 @@ class NgForOf {
|
|
|
3265
3277
|
return true;
|
|
3266
3278
|
}
|
|
3267
3279
|
}
|
|
3268
|
-
NgForOf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
3269
|
-
NgForOf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
3270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
3280
|
+
NgForOf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgForOf, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: i0.IterableDiffers }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3281
|
+
NgForOf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgForOf, isStandalone: true, selector: "[ngFor][ngForOf]", inputs: { ngForOf: "ngForOf", ngForTrackBy: "ngForTrackBy", ngForTemplate: "ngForTemplate" }, ngImport: i0 });
|
|
3282
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgForOf, decorators: [{
|
|
3271
3283
|
type: Directive,
|
|
3272
|
-
args: [{
|
|
3284
|
+
args: [{
|
|
3285
|
+
selector: '[ngFor][ngForOf]',
|
|
3286
|
+
standalone: true,
|
|
3287
|
+
}]
|
|
3273
3288
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: i0.IterableDiffers }]; }, propDecorators: { ngForOf: [{
|
|
3274
3289
|
type: Input
|
|
3275
3290
|
}], ngForTrackBy: [{
|
|
@@ -3497,11 +3512,14 @@ class NgIf {
|
|
|
3497
3512
|
return true;
|
|
3498
3513
|
}
|
|
3499
3514
|
}
|
|
3500
|
-
NgIf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
3501
|
-
NgIf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
3502
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
3515
|
+
NgIf.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgIf, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3516
|
+
NgIf.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgIf, isStandalone: true, selector: "[ngIf]", inputs: { ngIf: "ngIf", ngIfThen: "ngIfThen", ngIfElse: "ngIfElse" }, ngImport: i0 });
|
|
3517
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgIf, decorators: [{
|
|
3503
3518
|
type: Directive,
|
|
3504
|
-
args: [{
|
|
3519
|
+
args: [{
|
|
3520
|
+
selector: '[ngIf]',
|
|
3521
|
+
standalone: true,
|
|
3522
|
+
}]
|
|
3505
3523
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }]; }, propDecorators: { ngIf: [{
|
|
3506
3524
|
type: Input
|
|
3507
3525
|
}], ngIfThen: [{
|
|
@@ -3667,11 +3685,14 @@ class NgSwitch {
|
|
|
3667
3685
|
}
|
|
3668
3686
|
}
|
|
3669
3687
|
}
|
|
3670
|
-
NgSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
3671
|
-
NgSwitch.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
3672
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
3688
|
+
NgSwitch.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgSwitch, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
3689
|
+
NgSwitch.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgSwitch, isStandalone: true, selector: "[ngSwitch]", inputs: { ngSwitch: "ngSwitch" }, ngImport: i0 });
|
|
3690
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgSwitch, decorators: [{
|
|
3673
3691
|
type: Directive,
|
|
3674
|
-
args: [{
|
|
3692
|
+
args: [{
|
|
3693
|
+
selector: '[ngSwitch]',
|
|
3694
|
+
standalone: true,
|
|
3695
|
+
}]
|
|
3675
3696
|
}], propDecorators: { ngSwitch: [{
|
|
3676
3697
|
type: Input
|
|
3677
3698
|
}] } });
|
|
@@ -3725,11 +3746,14 @@ class NgSwitchCase {
|
|
|
3725
3746
|
this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase));
|
|
3726
3747
|
}
|
|
3727
3748
|
}
|
|
3728
|
-
NgSwitchCase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
3729
|
-
NgSwitchCase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
3730
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
3749
|
+
NgSwitchCase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgSwitchCase, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: NgSwitch, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3750
|
+
NgSwitchCase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgSwitchCase, isStandalone: true, selector: "[ngSwitchCase]", inputs: { ngSwitchCase: "ngSwitchCase" }, ngImport: i0 });
|
|
3751
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgSwitchCase, decorators: [{
|
|
3731
3752
|
type: Directive,
|
|
3732
|
-
args: [{
|
|
3753
|
+
args: [{
|
|
3754
|
+
selector: '[ngSwitchCase]',
|
|
3755
|
+
standalone: true,
|
|
3756
|
+
}]
|
|
3733
3757
|
}], ctorParameters: function () {
|
|
3734
3758
|
return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: NgSwitch, decorators: [{
|
|
3735
3759
|
type: Optional
|
|
@@ -3761,11 +3785,14 @@ class NgSwitchDefault {
|
|
|
3761
3785
|
ngSwitch._addDefault(new SwitchView(viewContainer, templateRef));
|
|
3762
3786
|
}
|
|
3763
3787
|
}
|
|
3764
|
-
NgSwitchDefault.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
3765
|
-
NgSwitchDefault.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
3766
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
3788
|
+
NgSwitchDefault.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgSwitchDefault, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: NgSwitch, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3789
|
+
NgSwitchDefault.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgSwitchDefault, isStandalone: true, selector: "[ngSwitchDefault]", ngImport: i0 });
|
|
3790
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgSwitchDefault, decorators: [{
|
|
3767
3791
|
type: Directive,
|
|
3768
|
-
args: [{
|
|
3792
|
+
args: [{
|
|
3793
|
+
selector: '[ngSwitchDefault]',
|
|
3794
|
+
standalone: true,
|
|
3795
|
+
}]
|
|
3769
3796
|
}], ctorParameters: function () {
|
|
3770
3797
|
return [{ type: i0.ViewContainerRef }, { type: i0.TemplateRef }, { type: NgSwitch, decorators: [{
|
|
3771
3798
|
type: Optional
|
|
@@ -3846,11 +3873,14 @@ class NgPlural {
|
|
|
3846
3873
|
}
|
|
3847
3874
|
}
|
|
3848
3875
|
}
|
|
3849
|
-
NgPlural.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
3850
|
-
NgPlural.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
3851
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
3876
|
+
NgPlural.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgPlural, deps: [{ token: NgLocalization }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3877
|
+
NgPlural.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgPlural, isStandalone: true, selector: "[ngPlural]", inputs: { ngPlural: "ngPlural" }, ngImport: i0 });
|
|
3878
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgPlural, decorators: [{
|
|
3852
3879
|
type: Directive,
|
|
3853
|
-
args: [{
|
|
3880
|
+
args: [{
|
|
3881
|
+
selector: '[ngPlural]',
|
|
3882
|
+
standalone: true,
|
|
3883
|
+
}]
|
|
3854
3884
|
}], ctorParameters: function () { return [{ type: NgLocalization }]; }, propDecorators: { ngPlural: [{
|
|
3855
3885
|
type: Input
|
|
3856
3886
|
}] } });
|
|
@@ -3881,11 +3911,14 @@ class NgPluralCase {
|
|
|
3881
3911
|
ngPlural.addCase(isANumber ? `=${value}` : value, new SwitchView(viewContainer, template));
|
|
3882
3912
|
}
|
|
3883
3913
|
}
|
|
3884
|
-
NgPluralCase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
3885
|
-
NgPluralCase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
3886
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
3914
|
+
NgPluralCase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgPluralCase, deps: [{ token: 'ngPluralCase', attribute: true }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: NgPlural, host: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3915
|
+
NgPluralCase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgPluralCase, isStandalone: true, selector: "[ngPluralCase]", ngImport: i0 });
|
|
3916
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgPluralCase, decorators: [{
|
|
3887
3917
|
type: Directive,
|
|
3888
|
-
args: [{
|
|
3918
|
+
args: [{
|
|
3919
|
+
selector: '[ngPluralCase]',
|
|
3920
|
+
standalone: true,
|
|
3921
|
+
}]
|
|
3889
3922
|
}], ctorParameters: function () {
|
|
3890
3923
|
return [{ type: undefined, decorators: [{
|
|
3891
3924
|
type: Attribute,
|
|
@@ -3962,12 +3995,12 @@ class NgStyle {
|
|
|
3962
3995
|
}
|
|
3963
3996
|
_setStyle(nameAndUnit, value) {
|
|
3964
3997
|
const [name, unit] = nameAndUnit.split('.');
|
|
3965
|
-
|
|
3998
|
+
const flags = name.indexOf('-') === -1 ? undefined : RendererStyleFlags2.DashCase;
|
|
3966
3999
|
if (value != null) {
|
|
3967
|
-
this._renderer.setStyle(this._ngEl.nativeElement, name, value);
|
|
4000
|
+
this._renderer.setStyle(this._ngEl.nativeElement, name, unit ? `${value}${unit}` : value, flags);
|
|
3968
4001
|
}
|
|
3969
4002
|
else {
|
|
3970
|
-
this._renderer.removeStyle(this._ngEl.nativeElement, name);
|
|
4003
|
+
this._renderer.removeStyle(this._ngEl.nativeElement, name, flags);
|
|
3971
4004
|
}
|
|
3972
4005
|
}
|
|
3973
4006
|
_applyChanges(changes) {
|
|
@@ -3976,11 +4009,14 @@ class NgStyle {
|
|
|
3976
4009
|
changes.forEachChangedItem((record) => this._setStyle(record.key, record.currentValue));
|
|
3977
4010
|
}
|
|
3978
4011
|
}
|
|
3979
|
-
NgStyle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
3980
|
-
NgStyle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
3981
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4012
|
+
NgStyle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgStyle, deps: [{ token: i0.ElementRef }, { token: i0.KeyValueDiffers }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4013
|
+
NgStyle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgStyle, isStandalone: true, selector: "[ngStyle]", inputs: { ngStyle: "ngStyle" }, ngImport: i0 });
|
|
4014
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgStyle, decorators: [{
|
|
3982
4015
|
type: Directive,
|
|
3983
|
-
args: [{
|
|
4016
|
+
args: [{
|
|
4017
|
+
selector: '[ngStyle]',
|
|
4018
|
+
standalone: true,
|
|
4019
|
+
}]
|
|
3984
4020
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.KeyValueDiffers }, { type: i0.Renderer2 }]; }, propDecorators: { ngStyle: [{
|
|
3985
4021
|
type: Input,
|
|
3986
4022
|
args: ['ngStyle']
|
|
@@ -4055,11 +4091,14 @@ class NgTemplateOutlet {
|
|
|
4055
4091
|
}
|
|
4056
4092
|
}
|
|
4057
4093
|
}
|
|
4058
|
-
NgTemplateOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4059
|
-
NgTemplateOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-
|
|
4060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4094
|
+
NgTemplateOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgTemplateOutlet, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4095
|
+
NgTemplateOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.1.0-rc.0", type: NgTemplateOutlet, isStandalone: true, selector: "[ngTemplateOutlet]", inputs: { ngTemplateOutletContext: "ngTemplateOutletContext", ngTemplateOutlet: "ngTemplateOutlet", ngTemplateOutletInjector: "ngTemplateOutletInjector" }, usesOnChanges: true, ngImport: i0 });
|
|
4096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: NgTemplateOutlet, decorators: [{
|
|
4061
4097
|
type: Directive,
|
|
4062
|
-
args: [{
|
|
4098
|
+
args: [{
|
|
4099
|
+
selector: '[ngTemplateOutlet]',
|
|
4100
|
+
standalone: true,
|
|
4101
|
+
}]
|
|
4063
4102
|
}], ctorParameters: function () { return [{ type: i0.ViewContainerRef }]; }, propDecorators: { ngTemplateOutletContext: [{
|
|
4064
4103
|
type: Input
|
|
4065
4104
|
}], ngTemplateOutlet: [{
|
|
@@ -4226,11 +4265,15 @@ class AsyncPipe {
|
|
|
4226
4265
|
}
|
|
4227
4266
|
}
|
|
4228
4267
|
}
|
|
4229
|
-
AsyncPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4230
|
-
AsyncPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4268
|
+
AsyncPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: AsyncPipe, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4269
|
+
AsyncPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: AsyncPipe, isStandalone: true, name: "async", pure: false });
|
|
4270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: AsyncPipe, decorators: [{
|
|
4232
4271
|
type: Pipe,
|
|
4233
|
-
args: [{
|
|
4272
|
+
args: [{
|
|
4273
|
+
name: 'async',
|
|
4274
|
+
pure: false,
|
|
4275
|
+
standalone: true,
|
|
4276
|
+
}]
|
|
4234
4277
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; } });
|
|
4235
4278
|
|
|
4236
4279
|
/**
|
|
@@ -4265,11 +4308,14 @@ class LowerCasePipe {
|
|
|
4265
4308
|
return value.toLowerCase();
|
|
4266
4309
|
}
|
|
4267
4310
|
}
|
|
4268
|
-
LowerCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4269
|
-
LowerCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4311
|
+
LowerCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: LowerCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4312
|
+
LowerCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: LowerCasePipe, isStandalone: true, name: "lowercase" });
|
|
4313
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: LowerCasePipe, decorators: [{
|
|
4271
4314
|
type: Pipe,
|
|
4272
|
-
args: [{
|
|
4315
|
+
args: [{
|
|
4316
|
+
name: 'lowercase',
|
|
4317
|
+
standalone: true,
|
|
4318
|
+
}]
|
|
4273
4319
|
}] });
|
|
4274
4320
|
//
|
|
4275
4321
|
// Regex below matches any Unicode word and number compatible with ES5. In ES2018 the same result
|
|
@@ -4307,11 +4353,14 @@ class TitleCasePipe {
|
|
|
4307
4353
|
return value.replace(unicodeWordMatch, (txt => txt[0].toUpperCase() + txt.slice(1).toLowerCase()));
|
|
4308
4354
|
}
|
|
4309
4355
|
}
|
|
4310
|
-
TitleCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4311
|
-
TitleCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4356
|
+
TitleCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: TitleCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4357
|
+
TitleCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: TitleCasePipe, isStandalone: true, name: "titlecase" });
|
|
4358
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: TitleCasePipe, decorators: [{
|
|
4313
4359
|
type: Pipe,
|
|
4314
|
-
args: [{
|
|
4360
|
+
args: [{
|
|
4361
|
+
name: 'titlecase',
|
|
4362
|
+
standalone: true,
|
|
4363
|
+
}]
|
|
4315
4364
|
}] });
|
|
4316
4365
|
/**
|
|
4317
4366
|
* Transforms text to all upper case.
|
|
@@ -4331,11 +4380,14 @@ class UpperCasePipe {
|
|
|
4331
4380
|
return value.toUpperCase();
|
|
4332
4381
|
}
|
|
4333
4382
|
}
|
|
4334
|
-
UpperCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4335
|
-
UpperCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4336
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4383
|
+
UpperCasePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: UpperCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4384
|
+
UpperCasePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: UpperCasePipe, isStandalone: true, name: "uppercase" });
|
|
4385
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: UpperCasePipe, decorators: [{
|
|
4337
4386
|
type: Pipe,
|
|
4338
|
-
args: [{
|
|
4387
|
+
args: [{
|
|
4388
|
+
name: 'uppercase',
|
|
4389
|
+
standalone: true,
|
|
4390
|
+
}]
|
|
4339
4391
|
}] });
|
|
4340
4392
|
|
|
4341
4393
|
/**
|
|
@@ -4526,11 +4578,15 @@ class DatePipe {
|
|
|
4526
4578
|
}
|
|
4527
4579
|
}
|
|
4528
4580
|
}
|
|
4529
|
-
DatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4530
|
-
DatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4531
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4581
|
+
DatePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: DatePipe, deps: [{ token: LOCALE_ID }, { token: DATE_PIPE_DEFAULT_TIMEZONE, optional: true }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4582
|
+
DatePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: DatePipe, isStandalone: true, name: "date" });
|
|
4583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: DatePipe, decorators: [{
|
|
4532
4584
|
type: Pipe,
|
|
4533
|
-
args: [{
|
|
4585
|
+
args: [{
|
|
4586
|
+
name: 'date',
|
|
4587
|
+
pure: true,
|
|
4588
|
+
standalone: true,
|
|
4589
|
+
}]
|
|
4534
4590
|
}], ctorParameters: function () {
|
|
4535
4591
|
return [{ type: undefined, decorators: [{
|
|
4536
4592
|
type: Inject,
|
|
@@ -4586,11 +4642,15 @@ class I18nPluralPipe {
|
|
|
4586
4642
|
return pluralMap[key].replace(_INTERPOLATION_REGEXP, value.toString());
|
|
4587
4643
|
}
|
|
4588
4644
|
}
|
|
4589
|
-
I18nPluralPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4590
|
-
I18nPluralPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4591
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4645
|
+
I18nPluralPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: I18nPluralPipe, deps: [{ token: NgLocalization }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4646
|
+
I18nPluralPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: I18nPluralPipe, isStandalone: true, name: "i18nPlural" });
|
|
4647
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: I18nPluralPipe, decorators: [{
|
|
4592
4648
|
type: Pipe,
|
|
4593
|
-
args: [{
|
|
4649
|
+
args: [{
|
|
4650
|
+
name: 'i18nPlural',
|
|
4651
|
+
pure: true,
|
|
4652
|
+
standalone: true,
|
|
4653
|
+
}]
|
|
4594
4654
|
}], ctorParameters: function () { return [{ type: NgLocalization }]; } });
|
|
4595
4655
|
|
|
4596
4656
|
/**
|
|
@@ -4638,11 +4698,15 @@ class I18nSelectPipe {
|
|
|
4638
4698
|
return '';
|
|
4639
4699
|
}
|
|
4640
4700
|
}
|
|
4641
|
-
I18nSelectPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4642
|
-
I18nSelectPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4643
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4701
|
+
I18nSelectPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: I18nSelectPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4702
|
+
I18nSelectPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: I18nSelectPipe, isStandalone: true, name: "i18nSelect" });
|
|
4703
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: I18nSelectPipe, decorators: [{
|
|
4644
4704
|
type: Pipe,
|
|
4645
|
-
args: [{
|
|
4705
|
+
args: [{
|
|
4706
|
+
name: 'i18nSelect',
|
|
4707
|
+
pure: true,
|
|
4708
|
+
standalone: true,
|
|
4709
|
+
}]
|
|
4646
4710
|
}] });
|
|
4647
4711
|
|
|
4648
4712
|
/**
|
|
@@ -4675,11 +4739,15 @@ class JsonPipe {
|
|
|
4675
4739
|
return JSON.stringify(value, null, 2);
|
|
4676
4740
|
}
|
|
4677
4741
|
}
|
|
4678
|
-
JsonPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4679
|
-
JsonPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4680
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4742
|
+
JsonPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: JsonPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4743
|
+
JsonPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: JsonPipe, isStandalone: true, name: "json", pure: false });
|
|
4744
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: JsonPipe, decorators: [{
|
|
4681
4745
|
type: Pipe,
|
|
4682
|
-
args: [{
|
|
4746
|
+
args: [{
|
|
4747
|
+
name: 'json',
|
|
4748
|
+
pure: false,
|
|
4749
|
+
standalone: true,
|
|
4750
|
+
}]
|
|
4683
4751
|
}] });
|
|
4684
4752
|
|
|
4685
4753
|
/**
|
|
@@ -4741,11 +4809,15 @@ class KeyValuePipe {
|
|
|
4741
4809
|
return this.keyValues;
|
|
4742
4810
|
}
|
|
4743
4811
|
}
|
|
4744
|
-
KeyValuePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4745
|
-
KeyValuePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4746
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4812
|
+
KeyValuePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: KeyValuePipe, deps: [{ token: i0.KeyValueDiffers }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4813
|
+
KeyValuePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: KeyValuePipe, isStandalone: true, name: "keyvalue", pure: false });
|
|
4814
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: KeyValuePipe, decorators: [{
|
|
4747
4815
|
type: Pipe,
|
|
4748
|
-
args: [{
|
|
4816
|
+
args: [{
|
|
4817
|
+
name: 'keyvalue',
|
|
4818
|
+
pure: false,
|
|
4819
|
+
standalone: true,
|
|
4820
|
+
}]
|
|
4749
4821
|
}], ctorParameters: function () { return [{ type: i0.KeyValueDiffers }]; } });
|
|
4750
4822
|
function defaultComparator(keyValueA, keyValueB) {
|
|
4751
4823
|
const a = keyValueA.key;
|
|
@@ -4872,11 +4944,14 @@ class DecimalPipe {
|
|
|
4872
4944
|
}
|
|
4873
4945
|
}
|
|
4874
4946
|
}
|
|
4875
|
-
DecimalPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4876
|
-
DecimalPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4877
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
4947
|
+
DecimalPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: DecimalPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
4948
|
+
DecimalPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: DecimalPipe, isStandalone: true, name: "number" });
|
|
4949
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: DecimalPipe, decorators: [{
|
|
4878
4950
|
type: Pipe,
|
|
4879
|
-
args: [{
|
|
4951
|
+
args: [{
|
|
4952
|
+
name: 'number',
|
|
4953
|
+
standalone: true,
|
|
4954
|
+
}]
|
|
4880
4955
|
}], ctorParameters: function () {
|
|
4881
4956
|
return [{ type: undefined, decorators: [{
|
|
4882
4957
|
type: Inject,
|
|
@@ -4936,11 +5011,14 @@ class PercentPipe {
|
|
|
4936
5011
|
}
|
|
4937
5012
|
}
|
|
4938
5013
|
}
|
|
4939
|
-
PercentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
4940
|
-
PercentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
4941
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
5014
|
+
PercentPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: PercentPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
5015
|
+
PercentPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: PercentPipe, isStandalone: true, name: "percent" });
|
|
5016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: PercentPipe, decorators: [{
|
|
4942
5017
|
type: Pipe,
|
|
4943
|
-
args: [{
|
|
5018
|
+
args: [{
|
|
5019
|
+
name: 'percent',
|
|
5020
|
+
standalone: true,
|
|
5021
|
+
}]
|
|
4944
5022
|
}], ctorParameters: function () {
|
|
4945
5023
|
return [{ type: undefined, decorators: [{
|
|
4946
5024
|
type: Inject,
|
|
@@ -5053,11 +5131,14 @@ class CurrencyPipe {
|
|
|
5053
5131
|
}
|
|
5054
5132
|
}
|
|
5055
5133
|
}
|
|
5056
|
-
CurrencyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
5057
|
-
CurrencyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
5058
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
5134
|
+
CurrencyPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: CurrencyPipe, deps: [{ token: LOCALE_ID }, { token: DEFAULT_CURRENCY_CODE }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
5135
|
+
CurrencyPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: CurrencyPipe, isStandalone: true, name: "currency" });
|
|
5136
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: CurrencyPipe, decorators: [{
|
|
5059
5137
|
type: Pipe,
|
|
5060
|
-
args: [{
|
|
5138
|
+
args: [{
|
|
5139
|
+
name: 'currency',
|
|
5140
|
+
standalone: true,
|
|
5141
|
+
}]
|
|
5061
5142
|
}], ctorParameters: function () {
|
|
5062
5143
|
return [{ type: undefined, decorators: [{
|
|
5063
5144
|
type: Inject,
|
|
@@ -5139,11 +5220,15 @@ class SlicePipe {
|
|
|
5139
5220
|
return typeof obj === 'string' || Array.isArray(obj);
|
|
5140
5221
|
}
|
|
5141
5222
|
}
|
|
5142
|
-
SlicePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
5143
|
-
SlicePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-
|
|
5144
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
5223
|
+
SlicePipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: SlicePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
|
|
5224
|
+
SlicePipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.1.0-rc.0", ngImport: i0, type: SlicePipe, isStandalone: true, name: "slice", pure: false });
|
|
5225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: SlicePipe, decorators: [{
|
|
5145
5226
|
type: Pipe,
|
|
5146
|
-
args: [{
|
|
5227
|
+
args: [{
|
|
5228
|
+
name: 'slice',
|
|
5229
|
+
pure: false,
|
|
5230
|
+
standalone: true,
|
|
5231
|
+
}]
|
|
5147
5232
|
}] });
|
|
5148
5233
|
|
|
5149
5234
|
/**
|
|
@@ -5187,22 +5272,17 @@ const COMMON_PIPES = [
|
|
|
5187
5272
|
* Re-exported by `BrowserModule`, which is included automatically in the root
|
|
5188
5273
|
* `AppModule` when you create a new app with the CLI `new` command.
|
|
5189
5274
|
*
|
|
5190
|
-
* * The `providers` options configure the NgModule's injector to provide
|
|
5191
|
-
* localization dependencies to members.
|
|
5192
|
-
* * The `exports` options make the declared directives and pipes available for import
|
|
5193
|
-
* by other NgModules.
|
|
5194
|
-
*
|
|
5195
5275
|
* @publicApi
|
|
5196
5276
|
*/
|
|
5197
5277
|
class CommonModule {
|
|
5198
5278
|
}
|
|
5199
|
-
CommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-
|
|
5200
|
-
CommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.0-
|
|
5201
|
-
CommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.0-
|
|
5202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-
|
|
5279
|
+
CommonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5280
|
+
CommonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.1.0-rc.0", 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] });
|
|
5281
|
+
CommonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: CommonModule });
|
|
5282
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.1.0-rc.0", ngImport: i0, type: CommonModule, decorators: [{
|
|
5203
5283
|
type: NgModule,
|
|
5204
5284
|
args: [{
|
|
5205
|
-
|
|
5285
|
+
imports: [COMMON_DIRECTIVES, COMMON_PIPES],
|
|
5206
5286
|
exports: [COMMON_DIRECTIVES, COMMON_PIPES],
|
|
5207
5287
|
}]
|
|
5208
5288
|
}] });
|
|
@@ -5257,7 +5337,7 @@ function isPlatformWorkerUi(platformId) {
|
|
|
5257
5337
|
/**
|
|
5258
5338
|
* @publicApi
|
|
5259
5339
|
*/
|
|
5260
|
-
const VERSION = new Version('14.1.0-
|
|
5340
|
+
const VERSION = new Version('14.1.0-rc.0');
|
|
5261
5341
|
|
|
5262
5342
|
/**
|
|
5263
5343
|
* @license
|