@angular/common 19.0.0-next.7 → 19.0.0-next.8
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/LICENSE +21 -0
- package/fesm2022/common.mjs +142 -122
- package/fesm2022/common.mjs.map +1 -1
- package/fesm2022/http/testing.mjs +8 -8
- package/fesm2022/http.mjs +52 -47
- package/fesm2022/http.mjs.map +1 -1
- package/fesm2022/testing.mjs +16 -16
- package/fesm2022/upgrade.mjs +5 -5
- package/http/index.d.ts +2 -1
- package/http/testing/index.d.ts +1 -1
- package/index.d.ts +2 -2
- package/package.json +2 -2
- package/testing/index.d.ts +1 -1
- package/upgrade/index.d.ts +1 -1
package/fesm2022/common.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.0.0-next.
|
|
2
|
+
* @license Angular v19.0.0-next.8
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -31,10 +31,10 @@ class DomAdapter {
|
|
|
31
31
|
* implementations.
|
|
32
32
|
*/
|
|
33
33
|
class PlatformNavigation {
|
|
34
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
35
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
34
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PlatformNavigation, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
35
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PlatformNavigation, providedIn: 'platform', useFactory: () => window.navigation }); }
|
|
36
36
|
}
|
|
37
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
37
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PlatformNavigation, decorators: [{
|
|
38
38
|
type: Injectable,
|
|
39
39
|
args: [{ providedIn: 'platform', useFactory: () => window.navigation }]
|
|
40
40
|
}] });
|
|
@@ -74,10 +74,10 @@ class PlatformLocation {
|
|
|
74
74
|
historyGo(relativePosition) {
|
|
75
75
|
throw new Error(ngDevMode ? 'Not implemented' : '');
|
|
76
76
|
}
|
|
77
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
78
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
77
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PlatformLocation, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
78
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PlatformLocation, providedIn: 'platform', useFactory: () => inject(BrowserPlatformLocation) }); }
|
|
79
79
|
}
|
|
80
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
80
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PlatformLocation, decorators: [{
|
|
81
81
|
type: Injectable,
|
|
82
82
|
args: [{ providedIn: 'platform', useFactory: () => inject(BrowserPlatformLocation) }]
|
|
83
83
|
}] });
|
|
@@ -157,10 +157,10 @@ class BrowserPlatformLocation extends PlatformLocation {
|
|
|
157
157
|
getState() {
|
|
158
158
|
return this._history.state;
|
|
159
159
|
}
|
|
160
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
161
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
160
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: BrowserPlatformLocation, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
161
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: BrowserPlatformLocation, providedIn: 'platform', useFactory: () => new BrowserPlatformLocation() }); }
|
|
162
162
|
}
|
|
163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: BrowserPlatformLocation, decorators: [{
|
|
164
164
|
type: Injectable,
|
|
165
165
|
args: [{
|
|
166
166
|
providedIn: 'platform',
|
|
@@ -234,7 +234,7 @@ function normalizeQueryParams(params) {
|
|
|
234
234
|
* interact with application route state.
|
|
235
235
|
*
|
|
236
236
|
* For instance, `HashLocationStrategy` produces URLs like
|
|
237
|
-
* <code class="no-auto-link">http://example.com
|
|
237
|
+
* <code class="no-auto-link">http://example.com/#/foo</code>,
|
|
238
238
|
* and `PathLocationStrategy` produces
|
|
239
239
|
* <code class="no-auto-link">http://example.com/foo</code> as an equivalent URL.
|
|
240
240
|
*
|
|
@@ -246,10 +246,10 @@ class LocationStrategy {
|
|
|
246
246
|
historyGo(relativePosition) {
|
|
247
247
|
throw new Error(ngDevMode ? 'Not implemented' : '');
|
|
248
248
|
}
|
|
249
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
250
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
249
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: LocationStrategy, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
250
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: LocationStrategy, providedIn: 'root', useFactory: () => inject(PathLocationStrategy) }); }
|
|
251
251
|
}
|
|
252
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
252
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: LocationStrategy, decorators: [{
|
|
253
253
|
type: Injectable,
|
|
254
254
|
args: [{ providedIn: 'root', useFactory: () => inject(PathLocationStrategy) }]
|
|
255
255
|
}] });
|
|
@@ -359,10 +359,10 @@ class PathLocationStrategy extends LocationStrategy {
|
|
|
359
359
|
historyGo(relativePosition = 0) {
|
|
360
360
|
this._platformLocation.historyGo?.(relativePosition);
|
|
361
361
|
}
|
|
362
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
363
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
362
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PathLocationStrategy, deps: [{ token: PlatformLocation }, { token: APP_BASE_HREF, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
363
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PathLocationStrategy, providedIn: 'root' }); }
|
|
364
364
|
}
|
|
365
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PathLocationStrategy, decorators: [{
|
|
366
366
|
type: Injectable,
|
|
367
367
|
args: [{ providedIn: 'root' }]
|
|
368
368
|
}], ctorParameters: () => [{ type: PlatformLocation }, { type: undefined, decorators: [{
|
|
@@ -448,10 +448,10 @@ class HashLocationStrategy extends LocationStrategy {
|
|
|
448
448
|
historyGo(relativePosition = 0) {
|
|
449
449
|
this._platformLocation.historyGo?.(relativePosition);
|
|
450
450
|
}
|
|
451
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
452
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
451
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: HashLocationStrategy, deps: [{ token: PlatformLocation }, { token: APP_BASE_HREF, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
452
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: HashLocationStrategy }); }
|
|
453
453
|
}
|
|
454
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: HashLocationStrategy, decorators: [{
|
|
455
455
|
type: Injectable
|
|
456
456
|
}], ctorParameters: () => [{ type: PlatformLocation }, { type: undefined, decorators: [{
|
|
457
457
|
type: Optional
|
|
@@ -702,10 +702,10 @@ class Location {
|
|
|
702
702
|
* @returns The URL string, modified if needed.
|
|
703
703
|
*/
|
|
704
704
|
static { this.stripTrailingSlash = stripTrailingSlash; }
|
|
705
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
706
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
705
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: Location, deps: [{ token: LocationStrategy }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
706
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: Location, providedIn: 'root', useFactory: createLocation }); }
|
|
707
707
|
}
|
|
708
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
708
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: Location, decorators: [{
|
|
709
709
|
type: Injectable,
|
|
710
710
|
args: [{
|
|
711
711
|
providedIn: 'root',
|
|
@@ -2607,10 +2607,10 @@ function parseIntAutoRadix(text) {
|
|
|
2607
2607
|
* @publicApi
|
|
2608
2608
|
*/
|
|
2609
2609
|
class NgLocalization {
|
|
2610
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
2611
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
2610
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgLocalization, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2611
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgLocalization, providedIn: 'root', useFactory: (locale) => new NgLocaleLocalization(locale), deps: [{ token: LOCALE_ID }] }); }
|
|
2612
2612
|
}
|
|
2613
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
2613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgLocalization, decorators: [{
|
|
2614
2614
|
type: Injectable,
|
|
2615
2615
|
args: [{
|
|
2616
2616
|
providedIn: 'root',
|
|
@@ -2664,10 +2664,10 @@ class NgLocaleLocalization extends NgLocalization {
|
|
|
2664
2664
|
return 'other';
|
|
2665
2665
|
}
|
|
2666
2666
|
}
|
|
2667
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
2668
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
2667
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgLocaleLocalization, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2668
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgLocaleLocalization }); }
|
|
2669
2669
|
}
|
|
2670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
2670
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgLocaleLocalization, decorators: [{
|
|
2671
2671
|
type: Injectable
|
|
2672
2672
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
2673
2673
|
type: Inject,
|
|
@@ -2836,10 +2836,10 @@ class NgClass {
|
|
|
2836
2836
|
});
|
|
2837
2837
|
}
|
|
2838
2838
|
}
|
|
2839
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
2840
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
2839
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgClass, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2840
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgClass, isStandalone: true, selector: "[ngClass]", inputs: { klass: ["class", "klass"], ngClass: "ngClass" }, ngImport: i0 }); }
|
|
2841
2841
|
}
|
|
2842
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
2842
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgClass, decorators: [{
|
|
2843
2843
|
type: Directive,
|
|
2844
2844
|
args: [{
|
|
2845
2845
|
selector: '[ngClass]',
|
|
@@ -3006,10 +3006,10 @@ class NgComponentOutlet {
|
|
|
3006
3006
|
}
|
|
3007
3007
|
}
|
|
3008
3008
|
}
|
|
3009
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3010
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
3009
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgComponentOutlet, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3010
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgComponentOutlet, isStandalone: true, selector: "[ngComponentOutlet]", inputs: { ngComponentOutlet: "ngComponentOutlet", ngComponentOutletInputs: "ngComponentOutletInputs", ngComponentOutletInjector: "ngComponentOutletInjector", ngComponentOutletContent: "ngComponentOutletContent", ngComponentOutletNgModule: "ngComponentOutletNgModule", ngComponentOutletNgModuleFactory: "ngComponentOutletNgModuleFactory" }, usesOnChanges: true, ngImport: i0 }); }
|
|
3011
3011
|
}
|
|
3012
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3012
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgComponentOutlet, decorators: [{
|
|
3013
3013
|
type: Directive,
|
|
3014
3014
|
args: [{
|
|
3015
3015
|
selector: '[ngComponentOutlet]',
|
|
@@ -3289,10 +3289,10 @@ class NgForOf {
|
|
|
3289
3289
|
static ngTemplateContextGuard(dir, ctx) {
|
|
3290
3290
|
return true;
|
|
3291
3291
|
}
|
|
3292
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3293
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
3292
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgForOf, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: i0.IterableDiffers }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3293
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgForOf, isStandalone: true, selector: "[ngFor][ngForOf]", inputs: { ngForOf: "ngForOf", ngForTrackBy: "ngForTrackBy", ngForTemplate: "ngForTemplate" }, ngImport: i0 }); }
|
|
3294
3294
|
}
|
|
3295
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3295
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgForOf, decorators: [{
|
|
3296
3296
|
type: Directive,
|
|
3297
3297
|
args: [{
|
|
3298
3298
|
selector: '[ngFor][ngForOf]',
|
|
@@ -3515,10 +3515,10 @@ class NgIf {
|
|
|
3515
3515
|
static ngTemplateContextGuard(dir, ctx) {
|
|
3516
3516
|
return true;
|
|
3517
3517
|
}
|
|
3518
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3519
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
3518
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgIf, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3519
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgIf, isStandalone: true, selector: "[ngIf]", inputs: { ngIf: "ngIf", ngIfThen: "ngIfThen", ngIfElse: "ngIfElse" }, ngImport: i0 }); }
|
|
3520
3520
|
}
|
|
3521
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgIf, decorators: [{
|
|
3522
3522
|
type: Directive,
|
|
3523
3523
|
args: [{
|
|
3524
3524
|
selector: '[ngIf]',
|
|
@@ -3678,10 +3678,10 @@ class NgSwitch {
|
|
|
3678
3678
|
}
|
|
3679
3679
|
}
|
|
3680
3680
|
}
|
|
3681
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3682
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
3681
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgSwitch, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3682
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgSwitch, isStandalone: true, selector: "[ngSwitch]", inputs: { ngSwitch: "ngSwitch" }, ngImport: i0 }); }
|
|
3683
3683
|
}
|
|
3684
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3684
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgSwitch, decorators: [{
|
|
3685
3685
|
type: Directive,
|
|
3686
3686
|
args: [{
|
|
3687
3687
|
selector: '[ngSwitch]',
|
|
@@ -3739,10 +3739,10 @@ class NgSwitchCase {
|
|
|
3739
3739
|
ngDoCheck() {
|
|
3740
3740
|
this._view.enforceState(this.ngSwitch._matchCase(this.ngSwitchCase));
|
|
3741
3741
|
}
|
|
3742
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3743
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
3742
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgSwitchCase, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: NgSwitch, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3743
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgSwitchCase, isStandalone: true, selector: "[ngSwitchCase]", inputs: { ngSwitchCase: "ngSwitchCase" }, ngImport: i0 }); }
|
|
3744
3744
|
}
|
|
3745
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3745
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgSwitchCase, decorators: [{
|
|
3746
3746
|
type: Directive,
|
|
3747
3747
|
args: [{
|
|
3748
3748
|
selector: '[ngSwitchCase]',
|
|
@@ -3776,10 +3776,10 @@ class NgSwitchDefault {
|
|
|
3776
3776
|
}
|
|
3777
3777
|
ngSwitch._addDefault(new SwitchView(viewContainer, templateRef));
|
|
3778
3778
|
}
|
|
3779
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3780
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
3779
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgSwitchDefault, deps: [{ token: i0.ViewContainerRef }, { token: i0.TemplateRef }, { token: NgSwitch, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3780
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgSwitchDefault, isStandalone: true, selector: "[ngSwitchDefault]", ngImport: i0 }); }
|
|
3781
3781
|
}
|
|
3782
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3782
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgSwitchDefault, decorators: [{
|
|
3783
3783
|
type: Directive,
|
|
3784
3784
|
args: [{
|
|
3785
3785
|
selector: '[ngSwitchDefault]',
|
|
@@ -3857,10 +3857,10 @@ class NgPlural {
|
|
|
3857
3857
|
this._activeView.create();
|
|
3858
3858
|
}
|
|
3859
3859
|
}
|
|
3860
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3861
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
3860
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgPlural, deps: [{ token: NgLocalization }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3861
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgPlural, isStandalone: true, selector: "[ngPlural]", inputs: { ngPlural: "ngPlural" }, ngImport: i0 }); }
|
|
3862
3862
|
}
|
|
3863
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3863
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgPlural, decorators: [{
|
|
3864
3864
|
type: Directive,
|
|
3865
3865
|
args: [{
|
|
3866
3866
|
selector: '[ngPlural]',
|
|
@@ -3895,10 +3895,10 @@ class NgPluralCase {
|
|
|
3895
3895
|
const isANumber = !isNaN(Number(value));
|
|
3896
3896
|
ngPlural.addCase(isANumber ? `=${value}` : value, new SwitchView(viewContainer, template));
|
|
3897
3897
|
}
|
|
3898
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3899
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
3898
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgPluralCase, deps: [{ token: 'ngPluralCase', attribute: true }, { token: i0.TemplateRef }, { token: i0.ViewContainerRef }, { token: NgPlural, host: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3899
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgPluralCase, isStandalone: true, selector: "[ngPluralCase]", ngImport: i0 }); }
|
|
3900
3900
|
}
|
|
3901
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3901
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgPluralCase, decorators: [{
|
|
3902
3902
|
type: Directive,
|
|
3903
3903
|
args: [{
|
|
3904
3904
|
selector: '[ngPluralCase]',
|
|
@@ -3984,10 +3984,10 @@ class NgStyle {
|
|
|
3984
3984
|
changes.forEachAddedItem((record) => this._setStyle(record.key, record.currentValue));
|
|
3985
3985
|
changes.forEachChangedItem((record) => this._setStyle(record.key, record.currentValue));
|
|
3986
3986
|
}
|
|
3987
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3988
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
3987
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgStyle, deps: [{ token: i0.ElementRef }, { token: i0.KeyValueDiffers }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
3988
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgStyle, isStandalone: true, selector: "[ngStyle]", inputs: { ngStyle: "ngStyle" }, ngImport: i0 }); }
|
|
3989
3989
|
}
|
|
3990
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
3990
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgStyle, decorators: [{
|
|
3991
3991
|
type: Directive,
|
|
3992
3992
|
args: [{
|
|
3993
3993
|
selector: '[ngStyle]',
|
|
@@ -4088,10 +4088,10 @@ class NgTemplateOutlet {
|
|
|
4088
4088
|
},
|
|
4089
4089
|
});
|
|
4090
4090
|
}
|
|
4091
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4092
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4091
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgTemplateOutlet, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
4092
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.0.0-next.8", type: NgTemplateOutlet, isStandalone: true, selector: "[ngTemplateOutlet]", inputs: { ngTemplateOutletContext: "ngTemplateOutletContext", ngTemplateOutlet: "ngTemplateOutlet", ngTemplateOutletInjector: "ngTemplateOutletInjector" }, usesOnChanges: true, ngImport: i0 }); }
|
|
4093
4093
|
}
|
|
4094
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgTemplateOutlet, decorators: [{
|
|
4095
4095
|
type: Directive,
|
|
4096
4096
|
args: [{
|
|
4097
4097
|
selector: '[ngTemplateOutlet]',
|
|
@@ -4259,10 +4259,10 @@ class AsyncPipe {
|
|
|
4259
4259
|
}
|
|
4260
4260
|
}
|
|
4261
4261
|
}
|
|
4262
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4263
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4262
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: AsyncPipe, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4263
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: AsyncPipe, isStandalone: true, name: "async", pure: false }); }
|
|
4264
4264
|
}
|
|
4265
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4265
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: AsyncPipe, decorators: [{
|
|
4266
4266
|
type: Pipe,
|
|
4267
4267
|
args: [{
|
|
4268
4268
|
name: 'async',
|
|
@@ -4295,10 +4295,10 @@ class LowerCasePipe {
|
|
|
4295
4295
|
}
|
|
4296
4296
|
return value.toLowerCase();
|
|
4297
4297
|
}
|
|
4298
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4299
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4298
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: LowerCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4299
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: LowerCasePipe, isStandalone: true, name: "lowercase" }); }
|
|
4300
4300
|
}
|
|
4301
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4301
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: LowerCasePipe, decorators: [{
|
|
4302
4302
|
type: Pipe,
|
|
4303
4303
|
args: [{
|
|
4304
4304
|
name: 'lowercase',
|
|
@@ -4340,10 +4340,10 @@ class TitleCasePipe {
|
|
|
4340
4340
|
}
|
|
4341
4341
|
return value.replace(unicodeWordMatch, (txt) => txt[0].toUpperCase() + txt.slice(1).toLowerCase());
|
|
4342
4342
|
}
|
|
4343
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4344
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4343
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: TitleCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4344
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: TitleCasePipe, isStandalone: true, name: "titlecase" }); }
|
|
4345
4345
|
}
|
|
4346
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4346
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: TitleCasePipe, decorators: [{
|
|
4347
4347
|
type: Pipe,
|
|
4348
4348
|
args: [{
|
|
4349
4349
|
name: 'titlecase',
|
|
@@ -4367,10 +4367,10 @@ class UpperCasePipe {
|
|
|
4367
4367
|
}
|
|
4368
4368
|
return value.toUpperCase();
|
|
4369
4369
|
}
|
|
4370
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4371
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4370
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: UpperCasePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4371
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: UpperCasePipe, isStandalone: true, name: "uppercase" }); }
|
|
4372
4372
|
}
|
|
4373
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4373
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: UpperCasePipe, decorators: [{
|
|
4374
4374
|
type: Pipe,
|
|
4375
4375
|
args: [{
|
|
4376
4376
|
name: 'uppercase',
|
|
@@ -4599,10 +4599,10 @@ class DatePipe {
|
|
|
4599
4599
|
throw invalidPipeArgumentError(DatePipe, error.message);
|
|
4600
4600
|
}
|
|
4601
4601
|
}
|
|
4602
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4603
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4602
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", 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 }); }
|
|
4603
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: DatePipe, isStandalone: true, name: "date" }); }
|
|
4604
4604
|
}
|
|
4605
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4605
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: DatePipe, decorators: [{
|
|
4606
4606
|
type: Pipe,
|
|
4607
4607
|
args: [{
|
|
4608
4608
|
name: 'date',
|
|
@@ -4658,10 +4658,10 @@ class I18nPluralPipe {
|
|
|
4658
4658
|
const key = getPluralCategory(value, Object.keys(pluralMap), this._localization, locale);
|
|
4659
4659
|
return pluralMap[key].replace(_INTERPOLATION_REGEXP, value.toString());
|
|
4660
4660
|
}
|
|
4661
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4662
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4661
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: I18nPluralPipe, deps: [{ token: NgLocalization }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4662
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: I18nPluralPipe, isStandalone: true, name: "i18nPlural" }); }
|
|
4663
4663
|
}
|
|
4664
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4664
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: I18nPluralPipe, decorators: [{
|
|
4665
4665
|
type: Pipe,
|
|
4666
4666
|
args: [{
|
|
4667
4667
|
name: 'i18nPlural',
|
|
@@ -4706,10 +4706,10 @@ class I18nSelectPipe {
|
|
|
4706
4706
|
}
|
|
4707
4707
|
return '';
|
|
4708
4708
|
}
|
|
4709
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4710
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4709
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: I18nSelectPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4710
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: I18nSelectPipe, isStandalone: true, name: "i18nSelect" }); }
|
|
4711
4711
|
}
|
|
4712
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4712
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: I18nSelectPipe, decorators: [{
|
|
4713
4713
|
type: Pipe,
|
|
4714
4714
|
args: [{
|
|
4715
4715
|
name: 'i18nSelect',
|
|
@@ -4739,10 +4739,10 @@ class JsonPipe {
|
|
|
4739
4739
|
transform(value) {
|
|
4740
4740
|
return JSON.stringify(value, null, 2);
|
|
4741
4741
|
}
|
|
4742
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4743
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4742
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: JsonPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4743
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: JsonPipe, isStandalone: true, name: "json", pure: false }); }
|
|
4744
4744
|
}
|
|
4745
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4745
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: JsonPipe, decorators: [{
|
|
4746
4746
|
type: Pipe,
|
|
4747
4747
|
args: [{
|
|
4748
4748
|
name: 'json',
|
|
@@ -4800,10 +4800,10 @@ class KeyValuePipe {
|
|
|
4800
4800
|
}
|
|
4801
4801
|
return this.keyValues;
|
|
4802
4802
|
}
|
|
4803
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4804
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4803
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: KeyValuePipe, deps: [{ token: i0.KeyValueDiffers }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4804
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: KeyValuePipe, isStandalone: true, name: "keyvalue", pure: false }); }
|
|
4805
4805
|
}
|
|
4806
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4806
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: KeyValuePipe, decorators: [{
|
|
4807
4807
|
type: Pipe,
|
|
4808
4808
|
args: [{
|
|
4809
4809
|
name: 'keyvalue',
|
|
@@ -4928,10 +4928,10 @@ class DecimalPipe {
|
|
|
4928
4928
|
throw invalidPipeArgumentError(DecimalPipe, error.message);
|
|
4929
4929
|
}
|
|
4930
4930
|
}
|
|
4931
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4932
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4931
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: DecimalPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4932
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: DecimalPipe, isStandalone: true, name: "number" }); }
|
|
4933
4933
|
}
|
|
4934
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4934
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: DecimalPipe, decorators: [{
|
|
4935
4935
|
type: Pipe,
|
|
4936
4936
|
args: [{
|
|
4937
4937
|
name: 'number',
|
|
@@ -4993,10 +4993,10 @@ class PercentPipe {
|
|
|
4993
4993
|
throw invalidPipeArgumentError(PercentPipe, error.message);
|
|
4994
4994
|
}
|
|
4995
4995
|
}
|
|
4996
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4997
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
4996
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PercentPipe, deps: [{ token: LOCALE_ID }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
4997
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: PercentPipe, isStandalone: true, name: "percent" }); }
|
|
4998
4998
|
}
|
|
4999
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
4999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PercentPipe, decorators: [{
|
|
5000
5000
|
type: Pipe,
|
|
5001
5001
|
args: [{
|
|
5002
5002
|
name: 'percent',
|
|
@@ -5092,10 +5092,10 @@ class CurrencyPipe {
|
|
|
5092
5092
|
throw invalidPipeArgumentError(CurrencyPipe, error.message);
|
|
5093
5093
|
}
|
|
5094
5094
|
}
|
|
5095
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5096
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
5095
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: CurrencyPipe, deps: [{ token: LOCALE_ID }, { token: DEFAULT_CURRENCY_CODE }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5096
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: CurrencyPipe, isStandalone: true, name: "currency" }); }
|
|
5097
5097
|
}
|
|
5098
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: CurrencyPipe, decorators: [{
|
|
5099
5099
|
type: Pipe,
|
|
5100
5100
|
args: [{
|
|
5101
5101
|
name: 'currency',
|
|
@@ -5172,10 +5172,10 @@ class SlicePipe {
|
|
|
5172
5172
|
supports(obj) {
|
|
5173
5173
|
return typeof obj === 'string' || Array.isArray(obj);
|
|
5174
5174
|
}
|
|
5175
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5176
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
5175
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: SlicePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
5176
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.0.0-next.8", ngImport: i0, type: SlicePipe, isStandalone: true, name: "slice", pure: false }); }
|
|
5177
5177
|
}
|
|
5178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: SlicePipe, decorators: [{
|
|
5179
5179
|
type: Pipe,
|
|
5180
5180
|
args: [{
|
|
5181
5181
|
name: 'slice',
|
|
@@ -5219,11 +5219,11 @@ const COMMON_PIPES = [
|
|
|
5219
5219
|
* @publicApi
|
|
5220
5220
|
*/
|
|
5221
5221
|
class CommonModule {
|
|
5222
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5223
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.0-next.
|
|
5224
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: CommonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
5223
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.0-next.8", 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] }); }
|
|
5224
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: CommonModule }); }
|
|
5225
5225
|
}
|
|
5226
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: CommonModule, decorators: [{
|
|
5227
5227
|
type: NgModule,
|
|
5228
5228
|
args: [{
|
|
5229
5229
|
imports: [COMMON_DIRECTIVES, COMMON_PIPES],
|
|
@@ -5256,7 +5256,7 @@ function isPlatformServer(platformId) {
|
|
|
5256
5256
|
/**
|
|
5257
5257
|
* @publicApi
|
|
5258
5258
|
*/
|
|
5259
|
-
const VERSION = new Version('19.0.0-next.
|
|
5259
|
+
const VERSION = new Version('19.0.0-next.8');
|
|
5260
5260
|
|
|
5261
5261
|
/**
|
|
5262
5262
|
* Defines a scroll position manager. Implemented by `BrowserViewportScroller`.
|
|
@@ -5869,10 +5869,10 @@ class LCPImageObserver {
|
|
|
5869
5869
|
this.observer.disconnect();
|
|
5870
5870
|
this.images.clear();
|
|
5871
5871
|
}
|
|
5872
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5873
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5872
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: LCPImageObserver, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
5873
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: LCPImageObserver, providedIn: 'root' }); }
|
|
5874
5874
|
}
|
|
5875
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5875
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: LCPImageObserver, decorators: [{
|
|
5876
5876
|
type: Injectable,
|
|
5877
5877
|
args: [{ providedIn: 'root' }]
|
|
5878
5878
|
}], ctorParameters: () => [] });
|
|
@@ -5996,10 +5996,10 @@ class PreconnectLinkChecker {
|
|
|
5996
5996
|
this.preconnectLinks?.clear();
|
|
5997
5997
|
this.alreadySeen.clear();
|
|
5998
5998
|
}
|
|
5999
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
6000
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
5999
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PreconnectLinkChecker, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
6000
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PreconnectLinkChecker, providedIn: 'root' }); }
|
|
6001
6001
|
}
|
|
6002
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
6002
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PreconnectLinkChecker, decorators: [{
|
|
6003
6003
|
type: Injectable,
|
|
6004
6004
|
args: [{ providedIn: 'root' }]
|
|
6005
6005
|
}], ctorParameters: () => [] });
|
|
@@ -6088,10 +6088,10 @@ class PreloadLinkCreator {
|
|
|
6088
6088
|
}
|
|
6089
6089
|
renderer.appendChild(this.document.head, preload);
|
|
6090
6090
|
}
|
|
6091
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
6092
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
6091
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PreloadLinkCreator, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
6092
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PreloadLinkCreator, providedIn: 'root' }); }
|
|
6093
6093
|
}
|
|
6094
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
6094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: PreloadLinkCreator, decorators: [{
|
|
6095
6095
|
type: Injectable,
|
|
6096
6096
|
args: [{ providedIn: 'root' }]
|
|
6097
6097
|
}] });
|
|
@@ -6583,6 +6583,7 @@ class NgOptimizedImage {
|
|
|
6583
6583
|
};
|
|
6584
6584
|
const removeLoadListenerFn = this.renderer.listen(img, 'load', callback);
|
|
6585
6585
|
const removeErrorListenerFn = this.renderer.listen(img, 'error', callback);
|
|
6586
|
+
callOnLoadIfImageIsLoaded(img, callback);
|
|
6586
6587
|
}
|
|
6587
6588
|
/** @nodoc */
|
|
6588
6589
|
ngOnDestroy() {
|
|
@@ -6595,10 +6596,10 @@ class NgOptimizedImage {
|
|
|
6595
6596
|
setHostAttribute(name, value) {
|
|
6596
6597
|
this.renderer.setAttribute(this.imgElement, name, value);
|
|
6597
6598
|
}
|
|
6598
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
6599
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.0.0-next.
|
|
6599
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgOptimizedImage, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6600
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "19.0.0-next.8", type: NgOptimizedImage, isStandalone: true, selector: "img[ngSrc]", inputs: { ngSrc: ["ngSrc", "ngSrc", unwrapSafeUrl], ngSrcset: "ngSrcset", sizes: "sizes", width: ["width", "width", numberAttribute], height: ["height", "height", numberAttribute], loading: "loading", priority: ["priority", "priority", booleanAttribute], loaderParams: "loaderParams", disableOptimizedSrcset: ["disableOptimizedSrcset", "disableOptimizedSrcset", booleanAttribute], fill: ["fill", "fill", booleanAttribute], placeholder: ["placeholder", "placeholder", booleanOrUrlAttribute], placeholderConfig: "placeholderConfig", src: "src", srcset: "srcset" }, host: { properties: { "style.position": "fill ? \"absolute\" : null", "style.width": "fill ? \"100%\" : null", "style.height": "fill ? \"100%\" : null", "style.inset": "fill ? \"0\" : null", "style.background-size": "placeholder ? \"cover\" : null", "style.background-position": "placeholder ? \"50% 50%\" : null", "style.background-repeat": "placeholder ? \"no-repeat\" : null", "style.background-image": "placeholder ? generatePlaceholder(placeholder) : null", "style.filter": "placeholder && shouldBlurPlaceholder(placeholderConfig) ? \"blur(15px)\" : null" } }, usesOnChanges: true, ngImport: i0 }); }
|
|
6600
6601
|
}
|
|
6601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.
|
|
6602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.0-next.8", ngImport: i0, type: NgOptimizedImage, decorators: [{
|
|
6602
6603
|
type: Directive,
|
|
6603
6604
|
args: [{
|
|
6604
6605
|
standalone: true,
|
|
@@ -6872,7 +6873,7 @@ function assertGreaterThanZero(dir, inputValue, inputName) {
|
|
|
6872
6873
|
* - Whether image styling is "correct" (see below for a longer explanation).
|
|
6873
6874
|
*/
|
|
6874
6875
|
function assertNoImageDistortion(dir, img, renderer) {
|
|
6875
|
-
const
|
|
6876
|
+
const callback = () => {
|
|
6876
6877
|
removeLoadListenerFn();
|
|
6877
6878
|
removeErrorListenerFn();
|
|
6878
6879
|
const computedStyle = window.getComputedStyle(img);
|
|
@@ -6940,7 +6941,8 @@ function assertNoImageDistortion(dir, img, renderer) {
|
|
|
6940
6941
|
`or consider using the "ngSrcset" and "sizes" attributes.`));
|
|
6941
6942
|
}
|
|
6942
6943
|
}
|
|
6943
|
-
}
|
|
6944
|
+
};
|
|
6945
|
+
const removeLoadListenerFn = renderer.listen(img, 'load', callback);
|
|
6944
6946
|
// We only listen to the `error` event to remove the `load` event listener because it will not be
|
|
6945
6947
|
// fired if the image fails to load. This is done to prevent memory leaks in development mode
|
|
6946
6948
|
// because image elements aren't garbage-collected properly. It happens because zone.js stores the
|
|
@@ -6949,6 +6951,7 @@ function assertNoImageDistortion(dir, img, renderer) {
|
|
|
6949
6951
|
removeLoadListenerFn();
|
|
6950
6952
|
removeErrorListenerFn();
|
|
6951
6953
|
});
|
|
6954
|
+
callOnLoadIfImageIsLoaded(img, callback);
|
|
6952
6955
|
}
|
|
6953
6956
|
/**
|
|
6954
6957
|
* Verifies that a specified input is set.
|
|
@@ -6983,7 +6986,7 @@ function assertEmptyWidthAndHeight(dir) {
|
|
|
6983
6986
|
* guidance that this can be caused by the containing element's CSS position property.
|
|
6984
6987
|
*/
|
|
6985
6988
|
function assertNonZeroRenderedHeight(dir, img, renderer) {
|
|
6986
|
-
const
|
|
6989
|
+
const callback = () => {
|
|
6987
6990
|
removeLoadListenerFn();
|
|
6988
6991
|
removeErrorListenerFn();
|
|
6989
6992
|
const renderedHeight = img.clientHeight;
|
|
@@ -6994,12 +6997,14 @@ function assertNonZeroRenderedHeight(dir, img, renderer) {
|
|
|
6994
6997
|
`To fix this problem, make sure the container element has the CSS 'position' ` +
|
|
6995
6998
|
`property defined and the height of the element is not zero.`));
|
|
6996
6999
|
}
|
|
6997
|
-
}
|
|
7000
|
+
};
|
|
7001
|
+
const removeLoadListenerFn = renderer.listen(img, 'load', callback);
|
|
6998
7002
|
// See comments in the `assertNoImageDistortion`.
|
|
6999
7003
|
const removeErrorListenerFn = renderer.listen(img, 'error', () => {
|
|
7000
7004
|
removeLoadListenerFn();
|
|
7001
7005
|
removeErrorListenerFn();
|
|
7002
7006
|
});
|
|
7007
|
+
callOnLoadIfImageIsLoaded(img, callback);
|
|
7003
7008
|
}
|
|
7004
7009
|
/**
|
|
7005
7010
|
* Verifies that the `loading` attribute is set to a valid input &
|
|
@@ -7104,6 +7109,21 @@ function assertPlaceholderDimensions(dir, imgElement) {
|
|
|
7104
7109
|
`To fix this, use a smaller image as a placeholder.`));
|
|
7105
7110
|
}
|
|
7106
7111
|
}
|
|
7112
|
+
function callOnLoadIfImageIsLoaded(img, callback) {
|
|
7113
|
+
// https://html.spec.whatwg.org/multipage/embedded-content.html#dom-img-complete
|
|
7114
|
+
// The spec defines that `complete` is truthy once its request state is fully available.
|
|
7115
|
+
// The image may already be available if it’s loaded from the browser cache.
|
|
7116
|
+
// In that case, the `load` event will not fire at all, meaning that all setup
|
|
7117
|
+
// callbacks listening for the `load` event will not be invoked.
|
|
7118
|
+
// In Safari, there is a known behavior where the `complete` property of an
|
|
7119
|
+
// `HTMLImageElement` may sometimes return `true` even when the image is not fully loaded.
|
|
7120
|
+
// Checking both `img.complete` and `img.naturalWidth` is the most reliable way to
|
|
7121
|
+
// determine if an image has been fully loaded, especially in browsers where the
|
|
7122
|
+
// `complete` property may return `true` prematurely.
|
|
7123
|
+
if (img.complete && img.naturalWidth) {
|
|
7124
|
+
callback();
|
|
7125
|
+
}
|
|
7126
|
+
}
|
|
7107
7127
|
function round(input) {
|
|
7108
7128
|
return Number.isInteger(input) ? input : input.toFixed(2);
|
|
7109
7129
|
}
|