@angular/router 14.0.0-rc.3 → 14.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/src/components/empty_outlet.mjs +3 -3
- package/esm2020/src/directives/router_link.mjs +6 -6
- package/esm2020/src/directives/router_link_active.mjs +3 -3
- package/esm2020/src/directives/router_outlet.mjs +3 -3
- package/esm2020/src/models.mjs +1 -1
- package/esm2020/src/page_title_strategy.mjs +3 -3
- package/esm2020/src/router.mjs +7 -36
- package/esm2020/src/router_config_loader.mjs +3 -3
- package/esm2020/src/router_module.mjs +11 -11
- package/esm2020/src/router_preloader.mjs +3 -3
- package/esm2020/src/router_scroller.mjs +3 -3
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/router_testing_module.mjs +4 -4
- package/fesm2015/router.mjs +45 -74
- package/fesm2015/router.mjs.map +1 -1
- package/fesm2015/testing.mjs +5 -5
- package/fesm2015/upgrade.mjs +1 -1
- package/fesm2020/router.mjs +45 -74
- package/fesm2020/router.mjs.map +1 -1
- package/fesm2020/testing.mjs +5 -5
- package/fesm2020/upgrade.mjs +1 -1
- package/index.d.ts +19 -17
- package/package.json +4 -4
- package/testing/index.d.ts +1 -1
- package/upgrade/index.d.ts +1 -1
package/fesm2015/router.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.0.
|
|
2
|
+
* @license Angular v14.0.2
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -2332,9 +2332,9 @@ class RouterOutlet {
|
|
|
2332
2332
|
this.activateEvents.emit(this.activated.instance);
|
|
2333
2333
|
}
|
|
2334
2334
|
}
|
|
2335
|
-
RouterOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
2336
|
-
RouterOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.
|
|
2337
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
2335
|
+
RouterOutlet.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterOutlet, deps: [{ token: ChildrenOutletContexts }, { token: i0.ViewContainerRef }, { token: 'name', attribute: true }, { token: i0.ChangeDetectorRef }, { token: i0.EnvironmentInjector }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2336
|
+
RouterOutlet.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.2", type: RouterOutlet, selector: "router-outlet", outputs: { activateEvents: "activate", deactivateEvents: "deactivate", attachEvents: "attach", detachEvents: "detach" }, exportAs: ["outlet"], ngImport: i0 });
|
|
2337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterOutlet, decorators: [{
|
|
2338
2338
|
type: Directive,
|
|
2339
2339
|
args: [{ selector: 'router-outlet', exportAs: 'outlet' }]
|
|
2340
2340
|
}], ctorParameters: function () {
|
|
@@ -2393,9 +2393,9 @@ function isComponentFactoryResolver(item) {
|
|
|
2393
2393
|
*/
|
|
2394
2394
|
class ɵEmptyOutletComponent {
|
|
2395
2395
|
}
|
|
2396
|
-
ɵEmptyOutletComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
2397
|
-
ɵEmptyOutletComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.
|
|
2398
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
2396
|
+
ɵEmptyOutletComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ɵEmptyOutletComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2397
|
+
ɵEmptyOutletComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.2", type: ɵEmptyOutletComponent, selector: "ng-component", ngImport: i0, template: `<router-outlet></router-outlet>`, isInline: true, dependencies: [{ kind: "directive", type: RouterOutlet, selector: "router-outlet", outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }] });
|
|
2398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: ɵEmptyOutletComponent, decorators: [{
|
|
2399
2399
|
type: Component,
|
|
2400
2400
|
args: [{ template: `<router-outlet></router-outlet>` }]
|
|
2401
2401
|
}] });
|
|
@@ -4200,9 +4200,9 @@ class RouterConfigLoader {
|
|
|
4200
4200
|
}));
|
|
4201
4201
|
}
|
|
4202
4202
|
}
|
|
4203
|
-
RouterConfigLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
4204
|
-
RouterConfigLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.
|
|
4205
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
4203
|
+
RouterConfigLoader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterConfigLoader, deps: [{ token: i0.Injector }, { token: i0.Compiler }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4204
|
+
RouterConfigLoader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterConfigLoader });
|
|
4205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterConfigLoader, decorators: [{
|
|
4206
4206
|
type: Injectable
|
|
4207
4207
|
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i0.Compiler }]; } });
|
|
4208
4208
|
|
|
@@ -4244,12 +4244,6 @@ function defaultErrorHandler(error) {
|
|
|
4244
4244
|
function defaultMalformedUriErrorHandler(error, urlSerializer, url) {
|
|
4245
4245
|
return urlSerializer.parse('/');
|
|
4246
4246
|
}
|
|
4247
|
-
/**
|
|
4248
|
-
* @internal
|
|
4249
|
-
*/
|
|
4250
|
-
function defaultRouterHook(snapshot, runExtras) {
|
|
4251
|
-
return of(null);
|
|
4252
|
-
}
|
|
4253
4247
|
/**
|
|
4254
4248
|
* The equivalent `IsActiveMatchOptions` options for `Router.isActive` is called with `true`
|
|
4255
4249
|
* (exact = true).
|
|
@@ -4329,13 +4323,12 @@ class Router {
|
|
|
4329
4323
|
this.navigated = false;
|
|
4330
4324
|
this.lastSuccessfulId = -1;
|
|
4331
4325
|
/**
|
|
4332
|
-
*
|
|
4333
|
-
* either before or after the preactivation phase.
|
|
4326
|
+
* Hook that enables you to pause navigation after the preactivation phase.
|
|
4334
4327
|
* Used by `RouterModule`.
|
|
4335
4328
|
*
|
|
4336
4329
|
* @internal
|
|
4337
4330
|
*/
|
|
4338
|
-
this.
|
|
4331
|
+
this.afterPreactivation = () => of(void 0);
|
|
4339
4332
|
/**
|
|
4340
4333
|
* A strategy for extracting and merging URLs.
|
|
4341
4334
|
* Used for AngularJS to Angular migrations.
|
|
@@ -4552,17 +4545,6 @@ class Router {
|
|
|
4552
4545
|
}
|
|
4553
4546
|
}
|
|
4554
4547
|
}),
|
|
4555
|
-
// Before Preactivation
|
|
4556
|
-
switchTap(t => {
|
|
4557
|
-
const { targetSnapshot, id: navigationId, extractedUrl: appliedUrlTree, rawUrl: rawUrlTree, extras: { skipLocationChange, replaceUrl } } = t;
|
|
4558
|
-
return this.hooks.beforePreactivation(targetSnapshot, {
|
|
4559
|
-
navigationId,
|
|
4560
|
-
appliedUrlTree,
|
|
4561
|
-
rawUrlTree,
|
|
4562
|
-
skipLocationChange: !!skipLocationChange,
|
|
4563
|
-
replaceUrl: !!replaceUrl,
|
|
4564
|
-
});
|
|
4565
|
-
}),
|
|
4566
4548
|
// --- GUARDS ---
|
|
4567
4549
|
tap(t => {
|
|
4568
4550
|
const guardsStart = new GuardsCheckStart(t.id, this.serializeUrl(t.extractedUrl), this.serializeUrl(t.urlAfterRedirects), t.targetSnapshot);
|
|
@@ -4606,18 +4588,7 @@ class Router {
|
|
|
4606
4588
|
}));
|
|
4607
4589
|
}
|
|
4608
4590
|
return undefined;
|
|
4609
|
-
}),
|
|
4610
|
-
// --- AFTER PREACTIVATION ---
|
|
4611
|
-
switchTap((t) => {
|
|
4612
|
-
const { targetSnapshot, id: navigationId, extractedUrl: appliedUrlTree, rawUrl: rawUrlTree, extras: { skipLocationChange, replaceUrl } } = t;
|
|
4613
|
-
return this.hooks.afterPreactivation(targetSnapshot, {
|
|
4614
|
-
navigationId,
|
|
4615
|
-
appliedUrlTree,
|
|
4616
|
-
rawUrlTree,
|
|
4617
|
-
skipLocationChange: !!skipLocationChange,
|
|
4618
|
-
replaceUrl: !!replaceUrl,
|
|
4619
|
-
});
|
|
4620
|
-
}),
|
|
4591
|
+
}), switchTap(() => this.afterPreactivation()),
|
|
4621
4592
|
// --- LOAD COMPONENTS ---
|
|
4622
4593
|
switchTap((t) => {
|
|
4623
4594
|
const loadComponents = (route) => {
|
|
@@ -5195,9 +5166,9 @@ class Router {
|
|
|
5195
5166
|
return { navigationId };
|
|
5196
5167
|
}
|
|
5197
5168
|
}
|
|
5198
|
-
Router.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
5199
|
-
Router.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.
|
|
5200
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
5169
|
+
Router.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: Router, deps: "invalid", target: i0.ɵɵFactoryTarget.Injectable });
|
|
5170
|
+
Router.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: Router });
|
|
5171
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: Router, decorators: [{
|
|
5201
5172
|
type: Injectable
|
|
5202
5173
|
}], ctorParameters: function () { return [{ type: i0.Type }, { type: UrlSerializer }, { type: ChildrenOutletContexts }, { type: i3.Location }, { type: i0.Injector }, { type: i0.Compiler }, { type: undefined }]; } });
|
|
5203
5174
|
function validateCommands(commands) {
|
|
@@ -5389,9 +5360,9 @@ class RouterLink {
|
|
|
5389
5360
|
});
|
|
5390
5361
|
}
|
|
5391
5362
|
}
|
|
5392
|
-
RouterLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
5393
|
-
RouterLink.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.
|
|
5394
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
5363
|
+
RouterLink.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterLink, deps: [{ token: Router }, { token: ActivatedRoute }, { token: 'tabindex', attribute: true }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5364
|
+
RouterLink.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.2", type: RouterLink, selector: ":not(a):not(area)[routerLink]", inputs: { queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", preserveFragment: "preserveFragment", skipLocationChange: "skipLocationChange", replaceUrl: "replaceUrl", state: "state", relativeTo: "relativeTo", routerLink: "routerLink" }, host: { listeners: { "click": "onClick()" } }, usesOnChanges: true, ngImport: i0 });
|
|
5365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterLink, decorators: [{
|
|
5395
5366
|
type: Directive,
|
|
5396
5367
|
args: [{ selector: ':not(a):not(area)[routerLink]' }]
|
|
5397
5368
|
}], ctorParameters: function () {
|
|
@@ -5510,9 +5481,9 @@ class RouterLinkWithHref {
|
|
|
5510
5481
|
});
|
|
5511
5482
|
}
|
|
5512
5483
|
}
|
|
5513
|
-
RouterLinkWithHref.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
5514
|
-
RouterLinkWithHref.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.
|
|
5515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
5484
|
+
RouterLinkWithHref.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterLinkWithHref, deps: [{ token: Router }, { token: ActivatedRoute }, { token: i3.LocationStrategy }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5485
|
+
RouterLinkWithHref.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.2", type: RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: { target: "target", queryParams: "queryParams", fragment: "fragment", queryParamsHandling: "queryParamsHandling", preserveFragment: "preserveFragment", skipLocationChange: "skipLocationChange", replaceUrl: "replaceUrl", state: "state", relativeTo: "relativeTo", routerLink: "routerLink" }, host: { listeners: { "click": "onClick($event.button,$event.ctrlKey,$event.shiftKey,$event.altKey,$event.metaKey)" }, properties: { "attr.target": "this.target", "attr.href": "this.href" } }, usesOnChanges: true, ngImport: i0 });
|
|
5486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterLinkWithHref, decorators: [{
|
|
5516
5487
|
type: Directive,
|
|
5517
5488
|
args: [{ selector: 'a[routerLink],area[routerLink]' }]
|
|
5518
5489
|
}], ctorParameters: function () { return [{ type: Router }, { type: ActivatedRoute }, { type: i3.LocationStrategy }]; }, propDecorators: { target: [{
|
|
@@ -5739,9 +5710,9 @@ class RouterLinkActive {
|
|
|
5739
5710
|
this.links.some(isActiveCheckFn) || this.linksWithHrefs.some(isActiveCheckFn);
|
|
5740
5711
|
}
|
|
5741
5712
|
}
|
|
5742
|
-
RouterLinkActive.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
5743
|
-
RouterLinkActive.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.
|
|
5744
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
5713
|
+
RouterLinkActive.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterLinkActive, deps: [{ token: Router }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: RouterLink, optional: true }, { token: RouterLinkWithHref, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5714
|
+
RouterLinkActive.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.0.2", type: RouterLinkActive, selector: "[routerLinkActive]", inputs: { routerLinkActiveOptions: "routerLinkActiveOptions", ariaCurrentWhenActive: "ariaCurrentWhenActive", routerLinkActive: "routerLinkActive" }, outputs: { isActiveChange: "isActiveChange" }, queries: [{ propertyName: "links", predicate: RouterLink, descendants: true }, { propertyName: "linksWithHrefs", predicate: RouterLinkWithHref, descendants: true }], exportAs: ["routerLinkActive"], usesOnChanges: true, ngImport: i0 });
|
|
5715
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterLinkActive, decorators: [{
|
|
5745
5716
|
type: Directive,
|
|
5746
5717
|
args: [{
|
|
5747
5718
|
selector: '[routerLinkActive]',
|
|
@@ -5847,9 +5818,9 @@ class DefaultTitleStrategy extends TitleStrategy {
|
|
|
5847
5818
|
}
|
|
5848
5819
|
}
|
|
5849
5820
|
}
|
|
5850
|
-
DefaultTitleStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
5851
|
-
DefaultTitleStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.
|
|
5852
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
5821
|
+
DefaultTitleStrategy.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: DefaultTitleStrategy, deps: [{ token: i1.Title }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5822
|
+
DefaultTitleStrategy.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: DefaultTitleStrategy, providedIn: 'root' });
|
|
5823
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: DefaultTitleStrategy, decorators: [{
|
|
5853
5824
|
type: Injectable,
|
|
5854
5825
|
args: [{ providedIn: 'root' }]
|
|
5855
5826
|
}], ctorParameters: function () { return [{ type: i1.Title }]; } });
|
|
@@ -5984,9 +5955,9 @@ class RouterPreloader {
|
|
|
5984
5955
|
});
|
|
5985
5956
|
}
|
|
5986
5957
|
}
|
|
5987
|
-
RouterPreloader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
5988
|
-
RouterPreloader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.
|
|
5989
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
5958
|
+
RouterPreloader.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterPreloader, deps: [{ token: Router }, { token: i0.Compiler }, { token: i0.EnvironmentInjector }, { token: PreloadingStrategy }, { token: RouterConfigLoader }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
5959
|
+
RouterPreloader.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterPreloader });
|
|
5960
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterPreloader, decorators: [{
|
|
5990
5961
|
type: Injectable
|
|
5991
5962
|
}], ctorParameters: function () { return [{ type: Router }, { type: i0.Compiler }, { type: i0.EnvironmentInjector }, { type: PreloadingStrategy }, { type: RouterConfigLoader }]; } });
|
|
5992
5963
|
|
|
@@ -6065,9 +6036,9 @@ class RouterScroller {
|
|
|
6065
6036
|
}
|
|
6066
6037
|
}
|
|
6067
6038
|
}
|
|
6068
|
-
RouterScroller.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
6069
|
-
RouterScroller.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.
|
|
6070
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
6039
|
+
RouterScroller.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterScroller, deps: "invalid", target: i0.ɵɵFactoryTarget.Injectable });
|
|
6040
|
+
RouterScroller.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterScroller });
|
|
6041
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterScroller, decorators: [{
|
|
6071
6042
|
type: Injectable
|
|
6072
6043
|
}], ctorParameters: function () { return [{ type: Router }, { type: i3.ViewportScroller }, { type: undefined }]; } });
|
|
6073
6044
|
|
|
@@ -6209,10 +6180,10 @@ class RouterModule {
|
|
|
6209
6180
|
return { ngModule: RouterModule, providers: [provideRoutes(routes)] };
|
|
6210
6181
|
}
|
|
6211
6182
|
}
|
|
6212
|
-
RouterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
6213
|
-
RouterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.
|
|
6214
|
-
RouterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.
|
|
6215
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
6183
|
+
RouterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterModule, deps: [{ token: ROUTER_FORROOT_GUARD, optional: true }, { token: Router, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6184
|
+
RouterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.2", ngImport: i0, type: RouterModule, declarations: [RouterOutlet, RouterLink, RouterLinkWithHref, RouterLinkActive, ɵEmptyOutletComponent], exports: [RouterOutlet, RouterLink, RouterLinkWithHref, RouterLinkActive, ɵEmptyOutletComponent] });
|
|
6185
|
+
RouterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterModule });
|
|
6186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterModule, decorators: [{
|
|
6216
6187
|
type: NgModule,
|
|
6217
6188
|
args: [{
|
|
6218
6189
|
declarations: ROUTER_DIRECTIVES,
|
|
@@ -6349,7 +6320,7 @@ class RouterInitializer {
|
|
|
6349
6320
|
resolve(true);
|
|
6350
6321
|
}
|
|
6351
6322
|
else if (opts.initialNavigation === 'enabledBlocking') {
|
|
6352
|
-
router.
|
|
6323
|
+
router.afterPreactivation = () => {
|
|
6353
6324
|
// only the initial navigation should be delayed
|
|
6354
6325
|
if (!this.initNavigation) {
|
|
6355
6326
|
this.initNavigation = true;
|
|
@@ -6358,7 +6329,7 @@ class RouterInitializer {
|
|
|
6358
6329
|
// subsequent navigations should not be delayed
|
|
6359
6330
|
}
|
|
6360
6331
|
else {
|
|
6361
|
-
return of(
|
|
6332
|
+
return of(void 0);
|
|
6362
6333
|
}
|
|
6363
6334
|
};
|
|
6364
6335
|
router.initialNavigation();
|
|
@@ -6385,16 +6356,16 @@ class RouterInitializer {
|
|
|
6385
6356
|
preloader.setUpPreloading();
|
|
6386
6357
|
routerScroller.init();
|
|
6387
6358
|
router.resetRootComponentType(ref.componentTypes[0]);
|
|
6388
|
-
this.resultOfPreactivationDone.next(
|
|
6359
|
+
this.resultOfPreactivationDone.next(void 0);
|
|
6389
6360
|
this.resultOfPreactivationDone.complete();
|
|
6390
6361
|
}
|
|
6391
6362
|
ngOnDestroy() {
|
|
6392
6363
|
this.destroyed = true;
|
|
6393
6364
|
}
|
|
6394
6365
|
}
|
|
6395
|
-
RouterInitializer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.
|
|
6396
|
-
RouterInitializer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.
|
|
6397
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.
|
|
6366
|
+
RouterInitializer.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterInitializer, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6367
|
+
RouterInitializer.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterInitializer });
|
|
6368
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.2", ngImport: i0, type: RouterInitializer, decorators: [{
|
|
6398
6369
|
type: Injectable
|
|
6399
6370
|
}], ctorParameters: function () { return [{ type: i0.Injector }]; } });
|
|
6400
6371
|
function getAppInitializer(r) {
|
|
@@ -6434,7 +6405,7 @@ function provideRouterInitializer() {
|
|
|
6434
6405
|
/**
|
|
6435
6406
|
* @publicApi
|
|
6436
6407
|
*/
|
|
6437
|
-
const VERSION = new Version('14.0.
|
|
6408
|
+
const VERSION = new Version('14.0.2');
|
|
6438
6409
|
|
|
6439
6410
|
/**
|
|
6440
6411
|
* @license
|