
committed by
Alex Rickabaugh

parent
e0a9cfb5e2
commit
0c822b75f9
@ -253,6 +253,7 @@ import {UrlSegment, UrlSegmentGroup} from './url_tree';
|
||||
* Then it will extract the set of routes defined in that NgModule, and will transparently add
|
||||
* those routes to the main configuration.
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export type Routes = Route[];
|
||||
|
||||
@ -298,6 +299,7 @@ export type UrlMatcher = (segments: UrlSegment[], group: UrlSegmentGroup, route:
|
||||
*
|
||||
* See `Routes` for more details.
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export type Data = {
|
||||
[name: string]: any
|
||||
@ -310,6 +312,7 @@ export type Data = {
|
||||
*
|
||||
* See `Routes` for more details.
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export type ResolveData = {
|
||||
[name: string]: any
|
||||
@ -322,6 +325,7 @@ export type ResolveData = {
|
||||
*
|
||||
* See `Routes` for more details.
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export type LoadChildrenCallback = () =>
|
||||
Type<any>| NgModuleFactory<any>| Promise<Type<any>>| Observable<Type<any>>;
|
||||
@ -333,6 +337,7 @@ export type LoadChildrenCallback = () =>
|
||||
*
|
||||
* See `Routes` for more details.
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export type LoadChildren = string | LoadChildrenCallback;
|
||||
|
||||
@ -359,6 +364,7 @@ export type RunGuardsAndResolvers = 'paramsChange' | 'paramsOrQueryParamsChange'
|
||||
/**
|
||||
* See `Routes` for more details.
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface Route {
|
||||
path?: string;
|
||||
|
@ -88,7 +88,7 @@ import {UrlTree} from '../url_tree';
|
||||
*
|
||||
* @ngModule RouterModule
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
@Directive({selector: ':not(a)[routerLink]'})
|
||||
export class RouterLink {
|
||||
@ -167,7 +167,7 @@ export class RouterLink {
|
||||
*
|
||||
* @ngModule RouterModule
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
@Directive({selector: 'a[routerLink]'})
|
||||
export class RouterLinkWithHref implements OnChanges, OnDestroy {
|
||||
|
@ -70,7 +70,7 @@ import {RouterLink, RouterLinkWithHref} from './router_link';
|
||||
*
|
||||
* @ngModule RouterModule
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
@Directive({
|
||||
selector: '[routerLinkActive]',
|
||||
|
@ -34,7 +34,7 @@ import {PRIMARY_OUTLET} from '../shared';
|
||||
* ```
|
||||
* @ngModule RouterModule
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
@Directive({selector: 'router-outlet', exportAs: 'outlet'})
|
||||
export class RouterOutlet implements OnDestroy, OnInit {
|
||||
|
@ -55,7 +55,7 @@ export class RouterEvent {
|
||||
*
|
||||
* Represents an event triggered when a navigation starts.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class NavigationStart extends RouterEvent {
|
||||
/**
|
||||
@ -104,7 +104,7 @@ export class NavigationStart extends RouterEvent {
|
||||
*
|
||||
* Represents an event triggered when a navigation ends successfully.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class NavigationEnd extends RouterEvent {
|
||||
constructor(
|
||||
@ -128,7 +128,7 @@ export class NavigationEnd extends RouterEvent {
|
||||
*
|
||||
* Represents an event triggered when a navigation is canceled.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class NavigationCancel extends RouterEvent {
|
||||
constructor(
|
||||
@ -150,7 +150,7 @@ export class NavigationCancel extends RouterEvent {
|
||||
*
|
||||
* Represents an event triggered when a navigation fails due to an unexpected error.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class NavigationError extends RouterEvent {
|
||||
constructor(
|
||||
@ -174,7 +174,7 @@ export class NavigationError extends RouterEvent {
|
||||
*
|
||||
* Represents an event triggered when routes are recognized.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class RoutesRecognized extends RouterEvent {
|
||||
constructor(
|
||||
@ -405,6 +405,8 @@ export class ActivationEnd {
|
||||
* @description
|
||||
*
|
||||
* Represents a scrolling event.
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class Scroll {
|
||||
constructor(
|
||||
@ -447,7 +449,7 @@ export class Scroll {
|
||||
* - `NavigationError`
|
||||
* - `Scroll`
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export type Event = RouterEvent | RouteConfigLoadStart | RouteConfigLoadEnd | ChildActivationStart |
|
||||
ChildActivationEnd | ActivationStart | ActivationEnd | Scroll;
|
||||
|
@ -76,7 +76,7 @@ import {UrlSegment} from './url_tree';
|
||||
* class AppModule {}
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface CanActivate {
|
||||
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot):
|
||||
@ -156,7 +156,7 @@ export interface CanActivate {
|
||||
* class AppModule {}
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface CanActivateChild {
|
||||
canActivateChild(childRoute: ActivatedRouteSnapshot, state: RouterStateSnapshot):
|
||||
@ -229,7 +229,7 @@ export interface CanActivateChild {
|
||||
* class AppModule {}
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface CanDeactivate<T> {
|
||||
canDeactivate(
|
||||
@ -303,6 +303,7 @@ export interface CanDeactivate<T> {
|
||||
* class AppModule {}
|
||||
* ```
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface Resolve<T> {
|
||||
resolve(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<T>|Promise<T>|T;
|
||||
@ -371,7 +372,7 @@ export interface Resolve<T> {
|
||||
* class AppModule {}
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface CanLoad {
|
||||
canLoad(route: Route, segments: UrlSegment[]): Observable<boolean>|Promise<boolean>|boolean;
|
||||
|
@ -37,7 +37,7 @@ import {Checks, getAllRouteGuards} from './utils/preactivation';
|
||||
*
|
||||
* Represents the extra options used during navigation.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface NavigationExtras {
|
||||
/**
|
||||
@ -155,7 +155,7 @@ export interface NavigationExtras {
|
||||
* If the handler throws an exception, the navigation promise will be rejected with
|
||||
* the exception.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export type ErrorHandler = (error: any) => any;
|
||||
|
||||
@ -222,7 +222,7 @@ function defaultRouterHook(snapshot: RouterStateSnapshot, runExtras: {
|
||||
*
|
||||
* @ngModule RouterModule
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class Router {
|
||||
private currentUrlTree: UrlTree;
|
||||
|
@ -45,7 +45,7 @@ const ROUTER_DIRECTIVES =
|
||||
*
|
||||
* Is used in DI to configure the router.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export const ROUTER_CONFIGURATION = new InjectionToken<ExtraOptions>('ROUTER_CONFIGURATION');
|
||||
|
||||
@ -128,7 +128,7 @@ export function routerNgProbeToken() {
|
||||
* [Read this developer guide](https://angular.io/docs/ts/latest/guide/router.html) to get an
|
||||
* overview of how the router should be used.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
@NgModule({
|
||||
declarations: ROUTER_DIRECTIVES,
|
||||
@ -236,7 +236,7 @@ export function provideForRootGuard(router: Router): any {
|
||||
* class MyNgModule {}
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export function provideRoutes(routes: Routes): any {
|
||||
return [
|
||||
@ -278,7 +278,7 @@ export type InitialNavigation =
|
||||
*
|
||||
* Represents options to configure the router.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface ExtraOptions {
|
||||
/**
|
||||
|
@ -15,7 +15,7 @@ import {ActivatedRoute} from './router_state';
|
||||
/**
|
||||
* Store contextual information about a `RouterOutlet`
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class OutletContext {
|
||||
outlet: RouterOutlet|null = null;
|
||||
@ -28,7 +28,7 @@ export class OutletContext {
|
||||
/**
|
||||
* Store contextual information about the children (= nested) `RouterOutlet`
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class ChildrenOutletContexts {
|
||||
// contexts for child outlets, by name.
|
||||
|
@ -67,7 +67,7 @@ export class NoPreloading implements PreloadingStrategy {
|
||||
*
|
||||
* If a route is protected by `canLoad` guards, the preloaded will not load it.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
@Injectable()
|
||||
export class RouterPreloader implements OnDestroy {
|
||||
|
@ -44,7 +44,7 @@ import {Tree, TreeNode} from './utils/tree';
|
||||
*
|
||||
* See `ActivatedRoute` for more information.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class RouterState extends Tree<ActivatedRoute> {
|
||||
/** @internal */
|
||||
@ -103,7 +103,7 @@ export function createEmptyStateSnapshot(
|
||||
* }
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class ActivatedRoute {
|
||||
/** The current snapshot of this route */
|
||||
@ -250,7 +250,7 @@ function flattenInherited(pathFromRoot: ActivatedRouteSnapshot[]): Inherited {
|
||||
* }
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class ActivatedRouteSnapshot {
|
||||
/** The configuration used to match this route **/
|
||||
@ -358,7 +358,7 @@ export class ActivatedRouteSnapshot {
|
||||
* }
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class RouterStateSnapshot extends Tree<ActivatedRouteSnapshot> {
|
||||
/** @internal */
|
||||
|
@ -15,14 +15,14 @@ import {UrlSegment, UrlSegmentGroup} from './url_tree';
|
||||
*
|
||||
* Name of the primary outlet.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export const PRIMARY_OUTLET = 'primary';
|
||||
|
||||
/**
|
||||
* A collection of parameters.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export type Params = {
|
||||
[key: string]: any
|
||||
@ -38,7 +38,7 @@ export type Params = {
|
||||
* The API is inspired by the URLSearchParams interface.
|
||||
* see https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export interface ParamMap {
|
||||
has(name: string): boolean;
|
||||
@ -91,7 +91,7 @@ class ParamsAsMap implements ParamMap {
|
||||
/**
|
||||
* Convert a `Params` instance to a `ParamMap`.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export function convertToParamMap(params: Params): ParamMap {
|
||||
return new ParamsAsMap(params);
|
||||
|
@ -101,7 +101,7 @@ function containsSegmentGroupHelper(
|
||||
* }
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class UrlTree {
|
||||
/** @internal */
|
||||
@ -135,7 +135,7 @@ export class UrlTree {
|
||||
*
|
||||
* See `UrlTree` for more information.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class UrlSegmentGroup {
|
||||
/** @internal */
|
||||
@ -190,7 +190,7 @@ export class UrlSegmentGroup {
|
||||
* }
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class UrlSegment {
|
||||
/** @internal */
|
||||
@ -251,7 +251,7 @@ export function mapChildrenIntoArray<T>(
|
||||
*
|
||||
* See `DefaultUrlSerializer` for an example of a URL serializer.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export abstract class UrlSerializer {
|
||||
/** Parse a url into a `UrlTree` */
|
||||
@ -277,7 +277,7 @@ export abstract class UrlSerializer {
|
||||
* colon syntax to specify the outlet, and the ';parameter=value' syntax (e.g., open=true) to
|
||||
* specify route specific parameters.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export class DefaultUrlSerializer implements UrlSerializer {
|
||||
/** Parses a url into a `UrlTree` */
|
||||
|
@ -14,4 +14,7 @@
|
||||
|
||||
import {Version} from '@angular/core';
|
||||
|
||||
/**
|
||||
* @publicApi
|
||||
*/
|
||||
export const VERSION = new Version('0.0.0-PLACEHOLDER');
|
||||
|
@ -40,7 +40,7 @@ import {ChildrenOutletContexts, ExtraOptions, NoPreloading, PreloadingStrategy,
|
||||
* router.navigateByUrl('/lazy/loaded');
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
@Injectable()
|
||||
export class SpyNgModuleFactoryLoader implements NgModuleFactoryLoader {
|
||||
@ -86,7 +86,7 @@ function isUrlHandlingStrategy(opts: ExtraOptions | UrlHandlingStrategy):
|
||||
/**
|
||||
* Router setup factory function used for testing.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export function setupTestingRouter(
|
||||
urlSerializer: UrlSerializer, contexts: ChildrenOutletContexts, location: Location,
|
||||
@ -98,6 +98,7 @@ export function setupTestingRouter(
|
||||
*
|
||||
* @deprecated As of v5.2. The 2nd-to-last argument should be `ExtraOptions`, not
|
||||
* `UrlHandlingStrategy`
|
||||
* @publicApi
|
||||
*/
|
||||
export function setupTestingRouter(
|
||||
urlSerializer: UrlSerializer, contexts: ChildrenOutletContexts, location: Location,
|
||||
@ -107,7 +108,7 @@ export function setupTestingRouter(
|
||||
/**
|
||||
* Router setup factory function used for testing.
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
export function setupTestingRouter(
|
||||
urlSerializer: UrlSerializer, contexts: ChildrenOutletContexts, location: Location,
|
||||
@ -162,7 +163,7 @@ export function setupTestingRouter(
|
||||
* });
|
||||
* ```
|
||||
*
|
||||
*
|
||||
* @publicApi
|
||||
*/
|
||||
@NgModule({
|
||||
exports: [RouterModule],
|
||||
|
Reference in New Issue
Block a user