@angular/router 19.2.4 → 19.2.6
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/fesm2022/router-B-Y85L0c.mjs +5929 -0
- package/fesm2022/router-B-Y85L0c.mjs.map +1 -0
- package/fesm2022/router.mjs +10 -7515
- package/fesm2022/router.mjs.map +1 -1
- package/fesm2022/router_module-CbmfhtZA.mjs +1632 -0
- package/fesm2022/router_module-CbmfhtZA.mjs.map +1 -0
- package/fesm2022/testing.mjs +23 -16
- package/fesm2022/testing.mjs.map +1 -1
- package/fesm2022/upgrade.mjs +5 -2
- package/fesm2022/upgrade.mjs.map +1 -1
- package/index.d.ts +81 -3966
- package/package.json +4 -4
- package/router_module.d-BivBj8FC.d.ts +3907 -0
- package/testing/index.d.ts +7 -4
- package/upgrade/index.d.ts +1 -1
package/testing/index.d.ts
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v19.2.
|
|
2
|
+
* @license Angular v19.2.6
|
|
3
3
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import * as i0 from '@angular/core';
|
|
8
8
|
import { ModuleWithProviders, WritableSignal, DebugElement, Type } from '@angular/core';
|
|
9
|
-
import
|
|
10
|
-
|
|
9
|
+
import { Routes, ExtraOptions, RouterModule } from '../router_module.d-BivBj8FC.js';
|
|
10
|
+
export { ɵEmptyOutletComponent as ɵɵEmptyOutletComponent, RouterLink as ɵɵRouterLink, RouterLinkActive as ɵɵRouterLinkActive, RouterOutlet as ɵɵRouterOutlet } from '../router_module.d-BivBj8FC.js';
|
|
11
11
|
import { ComponentFixture } from '@angular/core/testing';
|
|
12
|
+
import 'rxjs';
|
|
13
|
+
import '@angular/common';
|
|
14
|
+
import '@angular/router';
|
|
12
15
|
|
|
13
16
|
/**
|
|
14
17
|
* @description
|
|
@@ -43,7 +46,7 @@ import { ComponentFixture } from '@angular/core/testing';
|
|
|
43
46
|
declare class RouterTestingModule {
|
|
44
47
|
static withRoutes(routes: Routes, config?: ExtraOptions): ModuleWithProviders<RouterTestingModule>;
|
|
45
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<RouterTestingModule, never>;
|
|
46
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<RouterTestingModule, never, never, [typeof
|
|
49
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<RouterTestingModule, never, never, [typeof RouterModule]>;
|
|
47
50
|
static ɵinj: i0.ɵɵInjectorDeclaration<RouterTestingModule>;
|
|
48
51
|
}
|
|
49
52
|
|
package/upgrade/index.d.ts
CHANGED