chore(forms): update forms labels (#10873)

This commit is contained in:
Kara
2016-08-17 07:44:39 -07:00
committed by vikerman
parent 675e582ffd
commit 6fd5bc075d
24 changed files with 93 additions and 90 deletions

View File

@ -70,7 +70,7 @@ export const formControlBinding: any = {
* }
* ```
*
* @experimental
* @stable
*/
@Directive({selector: '[formControl]', providers: [formControlBinding], exportAs: 'ngForm'})

View File

@ -92,7 +92,7 @@ export const controlNameBinding: any = {
* }
* ```
*
* @experimental
* @stable
*/
@Directive({selector: '[formControlName]', providers: [controlNameBinding]})
export class FormControlName extends NgControl implements OnChanges, OnDestroy {

View File

@ -94,7 +94,7 @@ export const formDirectiveProvider: any = {
* }
* ```
*
* @experimental
* @stable
*/
@Directive({
selector: '[formGroup]',

View File

@ -68,7 +68,7 @@ export const formGroupNameProvider: any = {
* This example syncs the form group for the user's name. The value and validation state of
* this group can be accessed separately from the overall form.
*
* @experimental
* @stable
*/
@Directive({selector: '[formGroupName]', providers: [formGroupNameProvider]})
export class FormGroupName extends AbstractFormGroupDirective implements OnInit, OnDestroy {
@ -131,7 +131,7 @@ export const formArrayNameProvider: any = {
* }
* ```
*
* @experimental
* @stable
*/
@Directive({selector: '[formArrayName]', providers: [formArrayNameProvider]})
export class FormArrayName extends ControlContainer implements OnInit, OnDestroy {