docs: update forms with @publicApi tags (#26595)

PR Close #26595
This commit is contained in:
Pete Bacon Darwin
2018-10-19 17:36:24 +01:00
committed by Alex Rickabaugh
parent 3903e5ebe7
commit 982bc7f2aa
27 changed files with 56 additions and 8 deletions

View File

@ -42,6 +42,7 @@ function isEmptyInputValue(value: any): boolean {
* }
* ```
*
* @publicApi
*/
export const NG_VALIDATORS = new InjectionToken<Array<Validator|Function>>('NgValidators');
@ -51,6 +52,7 @@ export const NG_VALIDATORS = new InjectionToken<Array<Validator|Function>>('NgVa
*
* @see `NG_VALIDATORS`
*
* @publicApi
*/
export const NG_ASYNC_VALIDATORS =
new InjectionToken<Array<Validator|Function>>('NgAsyncValidators');
@ -67,6 +69,7 @@ const EMAIL_REGEXP =
*
* @see [Form Validation](/guide/form-validation)
*
* @publicApi
*/
export class Validators {
/**