docs(*) fix dangling links in API docs (#16632)

* docs(animations): fix links to `Component` animations

* docs(core): fix links to `ReflectiveInjector` methods

The `resolve` and other methods were moved from the
`Injector` to the `ReflectiveInjector`.

* docs(core): fix links to `Renderer`

The local links were assuming that that methods were on the
current document (e.g. `RootRenderer`), but they are actually
on the `Renderer` class.

* docs(router): fix links to methods

* docs(forms): fix links to methods

* docs(core): fix links to methods

* docs(router): fix API page links and an internal link
This commit is contained in:
Pete Bacon Darwin 2017-05-09 23:51:37 +01:00 committed by Jason Aden
parent b44eb328e0
commit d0e72a8f8f
11 changed files with 31 additions and 29 deletions

View File

@ -120,7 +120,7 @@ export interface AnimationGroupMetadata extends AnimationMetadata { steps: Anima
/** /**
* `trigger` is an animation-specific function that is designed to be used inside of Angular's * `trigger` is an animation-specific function that is designed to be used inside of Angular's
animation DSL language. If this information is new, please navigate to the {@link animation DSL language. If this information is new, please navigate to the {@link
Component#animations-anchor component animations metadata page} to gain a better understanding of Component#animations component animations metadata page} to gain a better understanding of
how animations in Angular are used. how animations in Angular are used.
* *
* `trigger` Creates an animation trigger which will a list of {@link state state} and {@link * `trigger` Creates an animation trigger which will a list of {@link state state} and {@link
@ -128,7 +128,7 @@ export interface AnimationGroupMetadata extends AnimationMetadata { steps: Anima
changes. changes.
* *
* Triggers are registered within the component annotation data under the {@link * Triggers are registered within the component annotation data under the {@link
Component#animations-anchor animations section}. An animation trigger can be placed on an element Component#animations animations section}. An animation trigger can be placed on an element
within a template by referencing the name of the trigger followed by the expression value that the within a template by referencing the name of the trigger followed by the expression value that the
trigger is bound to (in the form of `[@triggerName]="expression"`. trigger is bound to (in the form of `[@triggerName]="expression"`.
* *
@ -175,7 +175,7 @@ export function trigger(name: string, definitions: AnimationMetadata[]): Animati
/** /**
* `animate` is an animation-specific function that is designed to be used inside of Angular's * `animate` is an animation-specific function that is designed to be used inside of Angular's
* animation DSL language. If this information is new, please navigate to the {@link * animation DSL language. If this information is new, please navigate to the {@link
* Component#animations-anchor component animations metadata page} to gain a better understanding of * Component#animations component animations metadata page} to gain a better understanding of
* how animations in Angular are used. * how animations in Angular are used.
* *
* `animate` specifies an animation step that will apply the provided `styles` data for a given * `animate` specifies an animation step that will apply the provided `styles` data for a given
@ -226,7 +226,7 @@ export function animate(
/** /**
* `group` is an animation-specific function that is designed to be used inside of Angular's * `group` is an animation-specific function that is designed to be used inside of Angular's
* animation DSL language. If this information is new, please navigate to the {@link * animation DSL language. If this information is new, please navigate to the {@link
* Component#animations-anchor component animations metadata page} to gain a better understanding of * Component#animations component animations metadata page} to gain a better understanding of
* how animations in Angular are used. * how animations in Angular are used.
* *
* `group` specifies a list of animation steps that are all run in parallel. Grouped animations are * `group` specifies a list of animation steps that are all run in parallel. Grouped animations are
@ -261,7 +261,7 @@ export function group(steps: AnimationMetadata[]): AnimationGroupMetadata {
/** /**
* `sequence` is an animation-specific function that is designed to be used inside of Angular's * `sequence` is an animation-specific function that is designed to be used inside of Angular's
* animation DSL language. If this information is new, please navigate to the {@link * animation DSL language. If this information is new, please navigate to the {@link
* Component#animations-anchor component animations metadata page} to gain a better understanding of * Component#animations component animations metadata page} to gain a better understanding of
* how animations in Angular are used. * how animations in Angular are used.
* *
* `sequence` Specifies a list of animation steps that are run one by one. (`sequence` is used by * `sequence` Specifies a list of animation steps that are run one by one. (`sequence` is used by
@ -299,7 +299,7 @@ export function sequence(steps: AnimationMetadata[]): AnimationSequenceMetadata
/** /**
* `style` is an animation-specific function that is designed to be used inside of Angular's * `style` is an animation-specific function that is designed to be used inside of Angular's
* animation DSL language. If this information is new, please navigate to the {@link * animation DSL language. If this information is new, please navigate to the {@link
* Component#animations-anchor component animations metadata page} to gain a better understanding of * Component#animations component animations metadata page} to gain a better understanding of
* how animations in Angular are used. * how animations in Angular are used.
* *
* `style` declares a key/value object containing CSS properties/styles that can then be used for * `style` declares a key/value object containing CSS properties/styles that can then be used for
@ -347,7 +347,7 @@ export function style(
/** /**
* `state` is an animation-specific function that is designed to be used inside of Angular's * `state` is an animation-specific function that is designed to be used inside of Angular's
* animation DSL language. If this information is new, please navigate to the {@link * animation DSL language. If this information is new, please navigate to the {@link
* Component#animations-anchor component animations metadata page} to gain a better understanding of * Component#animations component animations metadata page} to gain a better understanding of
* how animations in Angular are used. * how animations in Angular are used.
* *
* `state` declares an animation state within the given trigger. When a state is active within a * `state` declares an animation state within the given trigger. When a state is active within a
@ -399,7 +399,7 @@ export function state(name: string, styles: AnimationStyleMetadata): AnimationSt
/** /**
* `keyframes` is an animation-specific function that is designed to be used inside of Angular's * `keyframes` is an animation-specific function that is designed to be used inside of Angular's
* animation DSL language. If this information is new, please navigate to the {@link * animation DSL language. If this information is new, please navigate to the {@link
* Component#animations-anchor component animations metadata page} to gain a better understanding of * Component#animations component animations metadata page} to gain a better understanding of
* how animations in Angular are used. * how animations in Angular are used.
* *
* `keyframes` specifies a collection of {@link style style} entries each optionally characterized * `keyframes` specifies a collection of {@link style style} entries each optionally characterized
@ -448,7 +448,7 @@ export function keyframes(steps: AnimationStyleMetadata[]): AnimationKeyframesSe
/** /**
* `transition` is an animation-specific function that is designed to be used inside of Angular's * `transition` is an animation-specific function that is designed to be used inside of Angular's
* animation DSL language. If this information is new, please navigate to the {@link * animation DSL language. If this information is new, please navigate to the {@link
* Component#animations-anchor component animations metadata page} to gain a better understanding of * Component#animations component animations metadata page} to gain a better understanding of
* how animations in Angular are used. * how animations in Angular are used.
* *
* `transition` declares the {@link sequence sequence of animation steps} that will be run when the * `transition` declares the {@link sequence sequence of animation steps} that will be run when the

View File

@ -113,7 +113,7 @@ export abstract class ReflectiveInjector implements Injector {
* *
* This function is slower than the corresponding `fromResolvedProviders` * This function is slower than the corresponding `fromResolvedProviders`
* because it needs to resolve the passed-in providers first. * because it needs to resolve the passed-in providers first.
* See {@link Injector#resolve} and {@link Injector#fromResolvedProviders}. * See {@link ReflectiveInjector#resolve} and {@link ReflectiveInjector#fromResolvedProviders}.
*/ */
static resolveAndCreate(providers: Provider[], parent?: Injector): ReflectiveInjector { static resolveAndCreate(providers: Provider[], parent?: Injector): ReflectiveInjector {
const ResolvedReflectiveProviders = ReflectiveInjector.resolve(providers); const ResolvedReflectiveProviders = ReflectiveInjector.resolve(providers);
@ -190,7 +190,7 @@ export abstract class ReflectiveInjector implements Injector {
* *
* This function is slower than the corresponding `createChildFromResolved` * This function is slower than the corresponding `createChildFromResolved`
* because it needs to resolve the passed-in providers first. * because it needs to resolve the passed-in providers first.
* See {@link Injector#resolve} and {@link Injector#createChildFromResolved}. * See {@link ReflectiveInjector#resolve} and {@link ReflectiveInjector#createChildFromResolved}.
*/ */
abstract resolveAndCreateChild(providers: Provider[]): ReflectiveInjector; abstract resolveAndCreateChild(providers: Provider[]): ReflectiveInjector;

View File

@ -61,19 +61,19 @@ export enum ViewEncapsulation {
* {@link Component} * {@link Component}
*/ */
export class ViewMetadata { export class ViewMetadata {
/** {@link Component.templateUrl} */ /** {@link Component#templateUrl} */
templateUrl: string|undefined; templateUrl: string|undefined;
/** {@link Component.template} */ /** {@link Component#template} */
template: string|undefined; template: string|undefined;
/** {@link Component.stylesUrl} */ /** {@link Component#stylesUrl} */
styleUrls: string[]|undefined; styleUrls: string[]|undefined;
/** {@link Component.styles} */ /** {@link Component#styles} */
styles: string[]|undefined; styles: string[]|undefined;
/** {@link Component.encapsulation} */ /** {@link Component#encapsulation} */
encapsulation: ViewEncapsulation|undefined; encapsulation: ViewEncapsulation|undefined;
/** {@link Component.animation} */ /** {@link Component#animation} */
animations: any[]|undefined; animations: any[]|undefined;
/** {@link Component.interpolation} */ /** {@link Component#interpolation} */
interpolation: [string, string]|undefined; interpolation: [string, string]|undefined;
constructor( constructor(

View File

@ -99,7 +99,8 @@ export const Renderer2Interceptor = new InjectionToken<Renderer2[]>('Renderer2In
* *
* Use this service to bypass Angular's templating and make custom UI changes that can't be * Use this service to bypass Angular's templating and make custom UI changes that can't be
* expressed declaratively. For example if you need to set a property or an attribute whose name is * expressed declaratively. For example if you need to set a property or an attribute whose name is
* not statically known, use {@link #setElementProperty} or {@link #setElementAttribute} * not statically known, use {@link Renderer#setElementProperty} or {@link
* Renderer#setElementAttribute}
* respectively. * respectively.
* *
* If you are implementing a custom renderer, you must implement this interface. * If you are implementing a custom renderer, you must implement this interface.

View File

@ -128,7 +128,7 @@ export const formArrayNameProvider: any = {
* status is re-calculated. * status is re-calculated.
* *
* **Add new controls**: You can add new controls to the {@link FormArray} dynamically by * **Add new controls**: You can add new controls to the {@link FormArray} dynamically by
* calling its {@link FormArray.push} method. * calling its {@link FormArray#push} method.
* Ex: `this.form.get('cities').push(new FormControl());` * Ex: `this.form.get('cities').push(new FormControl());`
* *
* ### Example * ### Example

View File

@ -676,8 +676,8 @@ export class FormControl extends AbstractControl {
/** /**
* Patches the value of a control. * Patches the value of a control.
* *
* This function is functionally the same as {@link FormControl.setValue} at this level. * This function is functionally the same as {@link FormControl#setValue} at this level.
* It exists for symmetry with {@link FormGroup.patchValue} on `FormGroups` and `FormArrays`, * It exists for symmetry with {@link FormGroup#patchValue} on `FormGroups` and `FormArrays`,
* where it does behave differently. * where it does behave differently.
*/ */
patchValue(value: any, options: { patchValue(value: any, options: {
@ -842,7 +842,7 @@ export class FormGroup extends AbstractControl {
* Registers a control with the group's list of controls. * Registers a control with the group's list of controls.
* *
* This method does not update value or validity of the control, so for * This method does not update value or validity of the control, so for
* most cases you'll want to use {@link FormGroup.addControl} instead. * most cases you'll want to use {@link FormGroup#addControl} instead.
*/ */
registerControl(name: string, control: AbstractControl): AbstractControl { registerControl(name: string, control: AbstractControl): AbstractControl {
if (this.controls[name]) return this.controls[name]; if (this.controls[name]) return this.controls[name];

View File

@ -72,7 +72,7 @@ import {UrlTree} from '../url_tree';
* - 'merge' merge the queryParams into the current queryParams * - 'merge' merge the queryParams into the current queryParams
* - 'preserve' prserve the current queryParams * - 'preserve' prserve the current queryParams
* - default / '' use the queryParams only * - default / '' use the queryParams only
* same options for {@link NavigationExtras.queryParamsHandling} * same options for {@link NavigationExtras#queryParamsHandling}
* *
* ``` * ```
* <a [routerLink]="['/user/bob']" [queryParams]="{debug: true}" queryParamsHandling="merge"> * <a [routerLink]="['/user/bob']" [queryParams]="{debug: true}" queryParamsHandling="merge">
@ -89,7 +89,7 @@ import {UrlTree} from '../url_tree';
* *
* @ngModule RouterModule * @ngModule RouterModule
* *
* See {@link Router.createUrlTree} for more information. * See {@link Router#createUrlTree} for more information.
* *
* @stable * @stable
*/ */

View File

@ -18,7 +18,7 @@ let downgradeCount = 0;
/** /**
* @whatItDoes * @whatItDoes
* *
* *Part of the [upgrade/static](/docs/ts/latest/api/#!?query=upgrade%2Fstatic) * *Part of the [upgrade/static](api?query=upgrade%2Fstatic)
* library for hybrid upgrade apps that support AoT compilation* * library for hybrid upgrade apps that support AoT compilation*
* *
* Allows an Angular component to be used from AngularJS. * Allows an Angular component to be used from AngularJS.

View File

@ -12,7 +12,7 @@ import {INJECTOR_KEY} from './constants';
/** /**
* @whatItDoes * @whatItDoes
* *
* *Part of the [upgrade/static](/docs/ts/latest/api/#!?query=upgrade%2Fstatic) * *Part of the [upgrade/static](api?query=upgrade%2Fstatic)
* library for hybrid upgrade apps that support AoT compilation* * library for hybrid upgrade apps that support AoT compilation*
* *
* Allow an Angular service to be accessible from AngularJS. * Allow an Angular service to be accessible from AngularJS.

View File

@ -43,7 +43,7 @@ type LifecycleHook = '$doCheck' | '$onChanges' | '$onDestroy' | '$onInit' | '$po
/** /**
* @whatItDoes * @whatItDoes
* *
* *Part of the [upgrade/static](/docs/ts/latest/api/#!?query=upgrade%2Fstatic) * *Part of the [upgrade/static](api?query=upgrade%2Fstatic)
* library for hybrid upgrade apps that support AoT compilation* * library for hybrid upgrade apps that support AoT compilation*
* *
* Allows an AngularJS component to be used from Angular. * Allows an AngularJS component to be used from Angular.

View File

@ -18,7 +18,7 @@ import {angular1Providers, setTempInjectorRef} from './angular1_providers';
/** /**
* @whatItDoes * @whatItDoes
* *
* *Part of the [upgrade/static](/docs/ts/latest/api/#!?query=upgrade%2Fstatic) * *Part of the [upgrade/static](api?query=upgrade%2Fstatic)
* library for hybrid upgrade apps that support AoT compilation* * library for hybrid upgrade apps that support AoT compilation*
* *
* Allows AngularJS and Angular components to be used together inside a hybrid upgrade * Allows AngularJS and Angular components to be used together inside a hybrid upgrade
@ -88,6 +88,7 @@ import {angular1Providers, setTempInjectorRef} from './angular1_providers';
* *
* {@example upgrade/static/ts/module.ts region='bootstrap'} * {@example upgrade/static/ts/module.ts region='bootstrap'}
* *
* {@a upgrading-an-angular-1-service}
* *
* ## Upgrading an AngularJS service * ## Upgrading an AngularJS service
* *