You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@angular/router

Package Overview
Dependencies
Maintainers
2
Versions
1043
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@angular/router - npm Package Compare versions

Comparing version
19.2.5
to
19.2.6
fesm2022/router_module-CbmfhtZA.mjs

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

+4
-4
/**
* @license Angular v19.2.5
* @license Angular v19.2.6
* (c) 2010-2025 Google LLC. https://angular.io/

@@ -7,4 +7,4 @@ * License: MIT

export { x as ActivatedRoute, y as ActivatedRouteSnapshot, A as ActivationEnd, b as ActivationStart, B as BaseRouteReuseStrategy, C as ChildActivationEnd, d as ChildActivationStart, w as ChildrenOutletContexts, D as DefaultTitleStrategy, J as DefaultUrlSerializer, E as EventType, G as GuardsCheckEnd, e as GuardsCheckStart, N as NavigationCancel, f as NavigationCancellationCode, g as NavigationEnd, h as NavigationError, i as NavigationSkipped, j as NavigationSkippedCode, k as NavigationStart, O as OutletContext, P as PRIMARY_OUTLET, u as ROUTER_CONFIGURATION, a as ROUTER_OUTLET_DATA, v as ROUTES, r as RedirectCommand, l as ResolveEnd, m as ResolveStart, n as RouteConfigLoadEnd, o as RouteConfigLoadStart, s as RouteReuseStrategy, t as Router, p as RouterEvent, R as RouterOutlet, z as RouterState, F as RouterStateSnapshot, q as RoutesRecognized, S as Scroll, T as TitleStrategy, U as UrlHandlingStrategy, K as UrlSegment, L as UrlSegmentGroup, M as UrlSerializer, Q as UrlTree, H as convertToParamMap, c as createUrlTreeFromSnapshot, I as defaultUrlMatcher, ɵ as ɵEmptyOutletComponent, W as ɵafterNextNavigation, V as ɵloadChildren } from './router-LSBBtrLI.mjs';
export { N as NoPreloading, P as PreloadAllModules, n as PreloadingStrategy, l as ROUTER_INITIALIZER, R as RouterLink, a as RouterLinkActive, R as RouterLinkWithHref, m as RouterModule, o as RouterPreloader, p as provideRouter, b as provideRoutes, c as withComponentInputBinding, d as withDebugTracing, e as withDisabledInitialNavigation, f as withEnabledBlockingInitialNavigation, g as withHashLocation, h as withInMemoryScrolling, i as withNavigationErrorHandler, j as withPreloading, k as withRouterConfig, w as withViewTransitions, q as ɵROUTER_PROVIDERS } from './router_module-C0FJ-J6L.mjs';
export { ActivatedRoute, ActivatedRouteSnapshot, ActivationEnd, ActivationStart, BaseRouteReuseStrategy, ChildActivationEnd, ChildActivationStart, ChildrenOutletContexts, DefaultTitleStrategy, DefaultUrlSerializer, EventType, GuardsCheckEnd, GuardsCheckStart, NavigationCancel, NavigationCancellationCode, NavigationEnd, NavigationError, NavigationSkipped, NavigationSkippedCode, NavigationStart, OutletContext, PRIMARY_OUTLET, ROUTER_CONFIGURATION, ROUTER_OUTLET_DATA, ROUTES, RedirectCommand, ResolveEnd, ResolveStart, RouteConfigLoadEnd, RouteConfigLoadStart, RouteReuseStrategy, Router, RouterEvent, RouterOutlet, RouterState, RouterStateSnapshot, RoutesRecognized, Scroll, TitleStrategy, UrlHandlingStrategy, UrlSegment, UrlSegmentGroup, UrlSerializer, UrlTree, convertToParamMap, createUrlTreeFromSnapshot, defaultUrlMatcher, ɵEmptyOutletComponent, afterNextNavigation as ɵafterNextNavigation, loadChildren as ɵloadChildren } from './router-B-Y85L0c.mjs';
export { NoPreloading, PreloadAllModules, PreloadingStrategy, ROUTER_INITIALIZER, RouterLink, RouterLinkActive, RouterLink as RouterLinkWithHref, RouterModule, RouterPreloader, provideRouter, provideRoutes, withComponentInputBinding, withDebugTracing, withDisabledInitialNavigation, withEnabledBlockingInitialNavigation, withHashLocation, withInMemoryScrolling, withNavigationErrorHandler, withPreloading, withRouterConfig, withViewTransitions, ROUTER_PROVIDERS as ɵROUTER_PROVIDERS } from './router_module-CbmfhtZA.mjs';
import { inject, Version } from '@angular/core';

@@ -85,5 +85,5 @@ import '@angular/common';

*/
const VERSION = new Version('19.2.5');
const VERSION = new Version('19.2.6');
export { VERSION, mapToCanActivate, mapToCanActivateChild, mapToCanDeactivate, mapToCanMatch, mapToResolve };
//# sourceMappingURL=router.mjs.map

@@ -1,1 +0,1 @@

{"version":3,"file":"router.mjs","sources":["../../../../../../packages/router/src/utils/functional_guards.ts","../../../../../../packages/router/src/version.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {inject, Type} from '@angular/core';\n\nimport {\n CanActivate,\n CanActivateChild,\n CanActivateChildFn,\n CanActivateFn,\n CanDeactivate,\n CanDeactivateFn,\n CanMatch,\n CanMatchFn,\n Resolve,\n ResolveFn,\n} from '../models';\n\n/**\n * Maps an array of injectable classes with canMatch functions to an array of equivalent\n * `CanMatchFn` for use in a `Route` definition.\n *\n * Usage {@example router/utils/functional_guards.ts region='CanActivate'}\n *\n * @publicApi\n * @see {@link Route}\n */\nexport function mapToCanMatch(providers: Array<Type<CanMatch>>): CanMatchFn[] {\n return providers.map(\n (provider) =>\n (...params) =>\n inject(provider).canMatch(...params),\n );\n}\n\n/**\n * Maps an array of injectable classes with canActivate functions to an array of equivalent\n * `CanActivateFn` for use in a `Route` definition.\n *\n * Usage {@example router/utils/functional_guards.ts region='CanActivate'}\n *\n * @publicApi\n * @see {@link Route}\n */\nexport function mapToCanActivate(providers: Array<Type<CanActivate>>): CanActivateFn[] {\n return providers.map(\n (provider) =>\n (...params) =>\n inject(provider).canActivate(...params),\n );\n}\n/**\n * Maps an array of injectable classes with canActivateChild functions to an array of equivalent\n * `CanActivateChildFn` for use in a `Route` definition.\n *\n * Usage {@example router/utils/functional_guards.ts region='CanActivate'}\n *\n * @publicApi\n * @see {@link Route}\n */\nexport function mapToCanActivateChild(\n providers: Array<Type<CanActivateChild>>,\n): CanActivateChildFn[] {\n return providers.map(\n (provider) =>\n (...params) =>\n inject(provider).canActivateChild(...params),\n );\n}\n/**\n * Maps an array of injectable classes with canDeactivate functions to an array of equivalent\n * `CanDeactivateFn` for use in a `Route` definition.\n *\n * Usage {@example router/utils/functional_guards.ts region='CanActivate'}\n *\n * @publicApi\n * @see {@link Route}\n */\nexport function mapToCanDeactivate<T = unknown>(\n providers: Array<Type<CanDeactivate<T>>>,\n): CanDeactivateFn<T>[] {\n return providers.map(\n (provider) =>\n (...params) =>\n inject(provider).canDeactivate(...params),\n );\n}\n/**\n * Maps an injectable class with a resolve function to an equivalent `ResolveFn`\n * for use in a `Route` definition.\n *\n * Usage {@example router/utils/functional_guards.ts region='Resolve'}\n *\n * @publicApi\n * @see {@link Route}\n */\nexport function mapToResolve<T>(provider: Type<Resolve<T>>): ResolveFn<T> {\n return (...params) => inject(provider).resolve(...params);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\n/**\n * @module\n * @description\n * Entry point for all public APIs of the router package.\n */\n\nimport {Version} from '@angular/core';\n\n/**\n * @publicApi\n */\nexport const VERSION = new Version('19.2.5');\n"],"names":[],"mappings":";;;;;;;;;;;;;;AAuBA;;;;;;;;AAQG;AACG,SAAU,aAAa,CAAC,SAAgC,EAAA;IAC5D,OAAO,SAAS,CAAC,GAAG,CAClB,CAAC,QAAQ,KACP,CAAC,GAAG,MAAM,KACR,MAAM,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,GAAG,MAAM,CAAC,CACzC;AACH;AAEA;;;;;;;;AAQG;AACG,SAAU,gBAAgB,CAAC,SAAmC,EAAA;IAClE,OAAO,SAAS,CAAC,GAAG,CAClB,CAAC,QAAQ,KACP,CAAC,GAAG,MAAM,KACR,MAAM,CAAC,QAAQ,CAAC,CAAC,WAAW,CAAC,GAAG,MAAM,CAAC,CAC5C;AACH;AACA;;;;;;;;AAQG;AACG,SAAU,qBAAqB,CACnC,SAAwC,EAAA;IAExC,OAAO,SAAS,CAAC,GAAG,CAClB,CAAC,QAAQ,KACP,CAAC,GAAG,MAAM,KACR,MAAM,CAAC,QAAQ,CAAC,CAAC,gBAAgB,CAAC,GAAG,MAAM,CAAC,CACjD;AACH;AACA;;;;;;;;AAQG;AACG,SAAU,kBAAkB,CAChC,SAAwC,EAAA;IAExC,OAAO,SAAS,CAAC,GAAG,CAClB,CAAC,QAAQ,KACP,CAAC,GAAG,MAAM,KACR,MAAM,CAAC,QAAQ,CAAC,CAAC,aAAa,CAAC,GAAG,MAAM,CAAC,CAC9C;AACH;AACA;;;;;;;;AAQG;AACG,SAAU,YAAY,CAAI,QAA0B,EAAA;AACxD,IAAA,OAAO,CAAC,GAAG,MAAM,KAAK,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,GAAG,MAAM,CAAC;AAC3D;;AC/FA;;;;AAIG;AAIH;;AAEG;MACU,OAAO,GAAG,IAAI,OAAO,CAAC,mBAAmB;;;;"}
{"version":3,"file":"router.mjs","sources":["../../../../../../packages/router/src/utils/functional_guards.ts","../../../../../../packages/router/src/version.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {inject, Type} from '@angular/core';\n\nimport {\n CanActivate,\n CanActivateChild,\n CanActivateChildFn,\n CanActivateFn,\n CanDeactivate,\n CanDeactivateFn,\n CanMatch,\n CanMatchFn,\n Resolve,\n ResolveFn,\n} from '../models';\n\n/**\n * Maps an array of injectable classes with canMatch functions to an array of equivalent\n * `CanMatchFn` for use in a `Route` definition.\n *\n * Usage {@example router/utils/functional_guards.ts region='CanActivate'}\n *\n * @publicApi\n * @see {@link Route}\n */\nexport function mapToCanMatch(providers: Array<Type<CanMatch>>): CanMatchFn[] {\n return providers.map(\n (provider) =>\n (...params) =>\n inject(provider).canMatch(...params),\n );\n}\n\n/**\n * Maps an array of injectable classes with canActivate functions to an array of equivalent\n * `CanActivateFn` for use in a `Route` definition.\n *\n * Usage {@example router/utils/functional_guards.ts region='CanActivate'}\n *\n * @publicApi\n * @see {@link Route}\n */\nexport function mapToCanActivate(providers: Array<Type<CanActivate>>): CanActivateFn[] {\n return providers.map(\n (provider) =>\n (...params) =>\n inject(provider).canActivate(...params),\n );\n}\n/**\n * Maps an array of injectable classes with canActivateChild functions to an array of equivalent\n * `CanActivateChildFn` for use in a `Route` definition.\n *\n * Usage {@example router/utils/functional_guards.ts region='CanActivate'}\n *\n * @publicApi\n * @see {@link Route}\n */\nexport function mapToCanActivateChild(\n providers: Array<Type<CanActivateChild>>,\n): CanActivateChildFn[] {\n return providers.map(\n (provider) =>\n (...params) =>\n inject(provider).canActivateChild(...params),\n );\n}\n/**\n * Maps an array of injectable classes with canDeactivate functions to an array of equivalent\n * `CanDeactivateFn` for use in a `Route` definition.\n *\n * Usage {@example router/utils/functional_guards.ts region='CanActivate'}\n *\n * @publicApi\n * @see {@link Route}\n */\nexport function mapToCanDeactivate<T = unknown>(\n providers: Array<Type<CanDeactivate<T>>>,\n): CanDeactivateFn<T>[] {\n return providers.map(\n (provider) =>\n (...params) =>\n inject(provider).canDeactivate(...params),\n );\n}\n/**\n * Maps an injectable class with a resolve function to an equivalent `ResolveFn`\n * for use in a `Route` definition.\n *\n * Usage {@example router/utils/functional_guards.ts region='Resolve'}\n *\n * @publicApi\n * @see {@link Route}\n */\nexport function mapToResolve<T>(provider: Type<Resolve<T>>): ResolveFn<T> {\n return (...params) => inject(provider).resolve(...params);\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\n/**\n * @module\n * @description\n * Entry point for all public APIs of the router package.\n */\n\nimport {Version} from '@angular/core';\n\n/**\n * @publicApi\n */\nexport const VERSION = new Version('19.2.6');\n"],"names":[],"mappings":";;;;;;;;;;;;;;AAuBA;;;;;;;;AAQG;AACG,SAAU,aAAa,CAAC,SAAgC,EAAA;IAC5D,OAAO,SAAS,CAAC,GAAG,CAClB,CAAC,QAAQ,KACP,CAAC,GAAG,MAAM,KACR,MAAM,CAAC,QAAQ,CAAC,CAAC,QAAQ,CAAC,GAAG,MAAM,CAAC,CACzC;AACH;AAEA;;;;;;;;AAQG;AACG,SAAU,gBAAgB,CAAC,SAAmC,EAAA;IAClE,OAAO,SAAS,CAAC,GAAG,CAClB,CAAC,QAAQ,KACP,CAAC,GAAG,MAAM,KACR,MAAM,CAAC,QAAQ,CAAC,CAAC,WAAW,CAAC,GAAG,MAAM,CAAC,CAC5C;AACH;AACA;;;;;;;;AAQG;AACG,SAAU,qBAAqB,CACnC,SAAwC,EAAA;IAExC,OAAO,SAAS,CAAC,GAAG,CAClB,CAAC,QAAQ,KACP,CAAC,GAAG,MAAM,KACR,MAAM,CAAC,QAAQ,CAAC,CAAC,gBAAgB,CAAC,GAAG,MAAM,CAAC,CACjD;AACH;AACA;;;;;;;;AAQG;AACG,SAAU,kBAAkB,CAChC,SAAwC,EAAA;IAExC,OAAO,SAAS,CAAC,GAAG,CAClB,CAAC,QAAQ,KACP,CAAC,GAAG,MAAM,KACR,MAAM,CAAC,QAAQ,CAAC,CAAC,aAAa,CAAC,GAAG,MAAM,CAAC,CAC9C;AACH;AACA;;;;;;;;AAQG;AACG,SAAU,YAAY,CAAI,QAA0B,EAAA;AACxD,IAAA,OAAO,CAAC,GAAG,MAAM,KAAK,MAAM,CAAC,QAAQ,CAAC,CAAC,OAAO,CAAC,GAAG,MAAM,CAAC;AAC3D;;AC/FA;;;;AAIG;AAIH;;AAEG;MACU,OAAO,GAAG,IAAI,OAAO,CAAC,mBAAmB;;;;"}
/**
* @license Angular v19.2.5
* @license Angular v19.2.6
* (c) 2010-2025 Google LLC. https://angular.io/

@@ -10,6 +10,6 @@ * License: MIT

import { TestBed } from '@angular/core/testing';
import { v as ROUTES, u as ROUTER_CONFIGURATION, t as Router, W as afterNextNavigation, R as RouterOutlet } from './router-LSBBtrLI.mjs';
export { ɵ as ɵɵEmptyOutletComponent } from './router-LSBBtrLI.mjs';
import { m as RouterModule, q as ROUTER_PROVIDERS, j as withPreloading, N as NoPreloading } from './router_module-C0FJ-J6L.mjs';
export { R as ɵɵRouterLink, a as ɵɵRouterLinkActive } from './router_module-C0FJ-J6L.mjs';
import { ROUTES, ROUTER_CONFIGURATION, Router, afterNextNavigation, RouterOutlet } from './router-B-Y85L0c.mjs';
export { ɵEmptyOutletComponent as ɵɵEmptyOutletComponent } from './router-B-Y85L0c.mjs';
import { RouterModule, ROUTER_PROVIDERS, withPreloading, NoPreloading } from './router_module-CbmfhtZA.mjs';
export { RouterLink as ɵɵRouterLink, RouterLinkActive as ɵɵRouterLinkActive } from './router_module-CbmfhtZA.mjs';
import { provideLocationMocks } from '@angular/common/testing';

@@ -61,5 +61,5 @@ import '@angular/common';

}
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: RouterTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.5", ngImport: i0, type: RouterTestingModule, exports: [RouterModule] });
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: RouterTestingModule, providers: [
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RouterTestingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.6", ngImport: i0, type: RouterTestingModule, exports: [RouterModule] });
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RouterTestingModule, providers: [
ROUTER_PROVIDERS,

@@ -71,3 +71,3 @@ provideLocationMocks(),

}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: RouterTestingModule, decorators: [{
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RouterTestingModule, decorators: [{
type: NgModule,

@@ -103,6 +103,6 @@ args: [{

}
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: RootFixtureService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: RootFixtureService, providedIn: 'root' });
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RootFixtureService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RootFixtureService, providedIn: 'root' });
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: RootFixtureService, decorators: [{
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RootFixtureService, decorators: [{
type: Injectable,

@@ -114,6 +114,6 @@ args: [{ providedIn: 'root' }]

routerOutletData = signal(undefined);
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: RootCmp, deps: [], target: i0.ɵɵFactoryTarget.Component });
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.5", type: RootCmp, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "outlet", first: true, predicate: RouterOutlet, descendants: true }], ngImport: i0, template: '<router-outlet [routerOutletData]="routerOutletData()"></router-outlet>', isInline: true, dependencies: [{ kind: "directive", type: RouterOutlet, selector: "router-outlet", inputs: ["name", "routerOutletData"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }] });
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RootCmp, deps: [], target: i0.ɵɵFactoryTarget.Component });
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: RootCmp, isStandalone: true, selector: "ng-component", viewQueries: [{ propertyName: "outlet", first: true, predicate: RouterOutlet, descendants: true }], ngImport: i0, template: '<router-outlet [routerOutletData]="routerOutletData()"></router-outlet>', isInline: true, dependencies: [{ kind: "directive", type: RouterOutlet, selector: "router-outlet", inputs: ["name", "routerOutletData"], outputs: ["activate", "deactivate", "attach", "detach"], exportAs: ["outlet"] }] });
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.5", ngImport: i0, type: RootCmp, decorators: [{
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: RootCmp, decorators: [{
type: Component,

@@ -120,0 +120,0 @@ args: [{

/**
* @license Angular v19.2.5
* @license Angular v19.2.6
* (c) 2010-2025 Google LLC. https://angular.io/

@@ -10,3 +10,3 @@ * License: MIT

import { UpgradeModule } from '@angular/upgrade/static';
import { t as Router } from './router-LSBBtrLI.mjs';
import { Router } from './router-B-Y85L0c.mjs';
import 'rxjs';

@@ -13,0 +13,0 @@ import 'rxjs/operators';

/**
* @license Angular v19.2.5
* @license Angular v19.2.6
* (c) 2010-2025 Google LLC. https://angular.io/

@@ -7,4 +7,4 @@ * License: MIT

import { A as ActivatedRouteSnapshot, P as Params, U as UrlTree, R as RouterOutletContract, a as ActivatedRoute, b as RouterStateSnapshot, c as Route, L as LoadedRouterConfig, d as Router, e as Routes, I as InMemoryScrollingOptions, N as NavigationError, f as RedirectCommand, g as RouterConfigOptions, C as CanActivate, h as CanActivateFn, i as CanActivateChild, j as CanActivateChildFn, k as CanDeactivate, l as CanDeactivateFn, m as CanMatch, n as CanMatchFn, o as Resolve, p as ResolveFn, E as Event } from './router_module.d-6zbCxc1T.js';
export { u as ActivationEnd, v as ActivationStart, ae as BaseRouteReuseStrategy, aa as CanLoad, Z as CanLoadFn, w as ChildActivationEnd, x as ChildActivationStart, _ as Data, $ as DefaultExport, ar as DefaultUrlSerializer, aw as DeprecatedGuard, af as DetachedRouteHandle, y as EventType, ah as ExtraOptions, Y as GuardResult, G as GuardsCheckEnd, z as GuardsCheckStart, ai as InitialNavigation, as as IsActiveMatchOptions, a0 as LoadChildren, a1 as LoadChildrenCallback, X as MaybeAsync, ab as Navigation, a2 as NavigationBehaviorOptions, B as NavigationCancel, D as NavigationCancellationCode, F as NavigationEnd, ac as NavigationExtras, H as NavigationSkipped, J as NavigationSkippedCode, K as NavigationStart, a3 as OnSameUrlNavigation, aq as PRIMARY_OUTLET, ap as ParamMap, a4 as QueryParamsHandling, aj as ROUTER_CONFIGURATION, ak as ROUTER_INITIALIZER, t as ROUTER_OUTLET_DATA, a5 as RedirectFunction, a6 as ResolveData, M as ResolveEnd, O as ResolveStart, Q as RouteConfigLoadEnd, S as RouteConfigLoadStart, ag as RouteReuseStrategy, T as RouterEvent, q as RouterLink, r as RouterLinkActive, q as RouterLinkWithHref, al as RouterModule, s as RouterOutlet, am as RouterState, V as RoutesRecognized, a7 as RunGuardsAndResolvers, W as Scroll, ad as UrlCreationOptions, a9 as UrlMatchResult, a8 as UrlMatcher, at as UrlSegment, au as UrlSegmentGroup, av as UrlSerializer, an as convertToParamMap, ao as defaultUrlMatcher, ɵ as ɵEmptyOutletComponent, ay as ɵROUTER_PROVIDERS, ax as ɵRestoredState } from './router_module.d-6zbCxc1T.js';
import { ActivatedRouteSnapshot, Params, UrlTree, RouterOutletContract, ActivatedRoute, RouterStateSnapshot, Route, LoadedRouterConfig, Router, Routes, InMemoryScrollingOptions, NavigationError, RedirectCommand, RouterConfigOptions, CanActivate, CanActivateFn, CanActivateChild, CanActivateChildFn, CanDeactivate, CanDeactivateFn, CanMatch, CanMatchFn, Resolve, ResolveFn, Event } from './router_module.d-BivBj8FC.js';
export { ActivationEnd, ActivationStart, BaseRouteReuseStrategy, CanLoad, CanLoadFn, ChildActivationEnd, ChildActivationStart, Data, DefaultExport, DefaultUrlSerializer, DeprecatedGuard, DetachedRouteHandle, EventType, ExtraOptions, GuardResult, GuardsCheckEnd, GuardsCheckStart, InitialNavigation, IsActiveMatchOptions, LoadChildren, LoadChildrenCallback, MaybeAsync, Navigation, NavigationBehaviorOptions, NavigationCancel, NavigationCancellationCode, NavigationEnd, NavigationExtras, NavigationSkipped, NavigationSkippedCode, NavigationStart, OnSameUrlNavigation, PRIMARY_OUTLET, ParamMap, QueryParamsHandling, ROUTER_CONFIGURATION, ROUTER_INITIALIZER, ROUTER_OUTLET_DATA, RedirectFunction, ResolveData, ResolveEnd, ResolveStart, RouteConfigLoadEnd, RouteConfigLoadStart, RouteReuseStrategy, RouterEvent, RouterLink, RouterLinkActive, RouterLink as RouterLinkWithHref, RouterModule, RouterOutlet, RouterState, RoutesRecognized, RunGuardsAndResolvers, Scroll, UrlCreationOptions, UrlMatchResult, UrlMatcher, UrlSegment, UrlSegmentGroup, UrlSerializer, convertToParamMap, defaultUrlMatcher, ɵEmptyOutletComponent, ROUTER_PROVIDERS as ɵROUTER_PROVIDERS, RestoredState as ɵRestoredState } from './router_module.d-BivBj8FC.js';
import { Title } from '@angular/platform-browser';

@@ -378,3 +378,3 @@ import * as i0 from '@angular/core';

ɵkind: FeatureKind;
ɵproviders: Provider[];
ɵproviders: Array<Provider | EnvironmentProviders>;
}

@@ -381,0 +381,0 @@ /**

{
"name": "@angular/router",
"version": "19.2.5",
"version": "19.2.6",
"description": "Angular - the routing library",

@@ -27,5 +27,5 @@ "keywords": [

"peerDependencies": {
"@angular/core": "19.2.5",
"@angular/common": "19.2.5",
"@angular/platform-browser": "19.2.5",
"@angular/core": "19.2.6",
"@angular/common": "19.2.6",
"@angular/platform-browser": "19.2.6",
"rxjs": "^6.5.3 || ^7.4.0"

@@ -32,0 +32,0 @@ },

/**
* @license Angular v19.2.5
* @license Angular v19.2.6
* (c) 2010-2025 Google LLC. https://angular.io/

@@ -9,4 +9,4 @@ * License: MIT

import { ModuleWithProviders, WritableSignal, DebugElement, Type } from '@angular/core';
import { e as Routes, ah as ExtraOptions, al as RouterModule } from '../router_module.d-6zbCxc1T.js';
export { ɵ as ɵɵEmptyOutletComponent, q as ɵɵRouterLink, r as ɵɵRouterLinkActive, s as ɵɵRouterOutlet } from '../router_module.d-6zbCxc1T.js';
import { Routes, ExtraOptions, RouterModule } from '../router_module.d-BivBj8FC.js';
export { ɵEmptyOutletComponent as ɵɵEmptyOutletComponent, RouterLink as ɵɵRouterLink, RouterLinkActive as ɵɵRouterLinkActive, RouterOutlet as ɵɵRouterOutlet } from '../router_module.d-BivBj8FC.js';
import { ComponentFixture } from '@angular/core/testing';

@@ -13,0 +13,0 @@ import 'rxjs';

/**
* @license Angular v19.2.5
* @license Angular v19.2.6
* (c) 2010-2025 Google LLC. https://angular.io/

@@ -4,0 +4,0 @@ * License: MIT

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display