2021-06-28 13:54:20 -04:00
|
|
|
## API Report File for "@angular/forms"
|
|
|
|
|
|
|
|
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
|
|
|
|
|
|
```ts
|
|
|
|
|
|
|
|
import { AfterViewInit } from '@angular/core';
|
|
|
|
import { ElementRef } from '@angular/core';
|
|
|
|
import { EventEmitter } from '@angular/core';
|
|
|
|
import { InjectionToken } from '@angular/core';
|
|
|
|
import { Injector } from '@angular/core';
|
|
|
|
import { ModuleWithProviders } from '@angular/core';
|
|
|
|
import { Observable } from 'rxjs';
|
|
|
|
import { OnChanges } from '@angular/core';
|
|
|
|
import { OnDestroy } from '@angular/core';
|
|
|
|
import { OnInit } from '@angular/core';
|
|
|
|
import { Renderer2 } from '@angular/core';
|
|
|
|
import { SimpleChanges } from '@angular/core';
|
|
|
|
import { Version } from '@angular/core';
|
|
|
|
|
|
|
|
// @public
|
|
|
|
export abstract class AbstractControl {
|
|
|
|
constructor(validators: ValidatorFn | ValidatorFn[] | null, asyncValidators: AsyncValidatorFn | AsyncValidatorFn[] | null);
|
2020-07-01 21:16:49 -04:00
|
|
|
get asyncValidator(): AsyncValidatorFn | null;
|
|
|
|
set asyncValidator(asyncValidatorFn: AsyncValidatorFn | null);
|
2016-06-22 17:56:10 -04:00
|
|
|
clearAsyncValidators(): void;
|
|
|
|
clearValidators(): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get dirty(): boolean;
|
2017-06-12 13:59:29 -04:00
|
|
|
disable(opts?: {
|
2016-08-24 19:58:43 -04:00
|
|
|
onlySelf?: boolean;
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get disabled(): boolean;
|
2017-06-12 13:59:29 -04:00
|
|
|
enable(opts?: {
|
2016-08-24 19:58:43 -04:00
|
|
|
onlySelf?: boolean;
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get enabled(): boolean;
|
|
|
|
readonly errors: ValidationErrors | null;
|
2017-04-17 14:13:30 -04:00
|
|
|
get(path: Array<string | number> | string): AbstractControl | null;
|
2018-12-21 19:39:37 -05:00
|
|
|
getError(errorCode: string, path?: Array<string | number> | string): any;
|
|
|
|
hasError(errorCode: string, path?: Array<string | number> | string): boolean;
|
2021-06-28 13:54:20 -04:00
|
|
|
get invalid(): boolean;
|
2018-10-29 04:36:17 -04:00
|
|
|
markAllAsTouched(): void;
|
2017-06-12 13:59:29 -04:00
|
|
|
markAsDirty(opts?: {
|
2016-06-22 17:56:10 -04:00
|
|
|
onlySelf?: boolean;
|
|
|
|
}): void;
|
2017-06-12 13:59:29 -04:00
|
|
|
markAsPending(opts?: {
|
2016-06-22 17:56:10 -04:00
|
|
|
onlySelf?: boolean;
|
2017-11-06 03:59:09 -05:00
|
|
|
emitEvent?: boolean;
|
2016-06-22 17:56:10 -04:00
|
|
|
}): void;
|
2017-06-12 13:59:29 -04:00
|
|
|
markAsPristine(opts?: {
|
2016-07-12 18:02:25 -04:00
|
|
|
onlySelf?: boolean;
|
|
|
|
}): void;
|
2017-06-12 13:59:29 -04:00
|
|
|
markAsTouched(opts?: {
|
2016-07-01 18:36:04 -04:00
|
|
|
onlySelf?: boolean;
|
|
|
|
}): void;
|
2017-06-12 13:59:29 -04:00
|
|
|
markAsUntouched(opts?: {
|
2016-07-12 18:02:25 -04:00
|
|
|
onlySelf?: boolean;
|
|
|
|
}): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get parent(): FormGroup | FormArray | null;
|
2016-08-05 16:35:17 -04:00
|
|
|
abstract patchValue(value: any, options?: Object): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get pending(): boolean;
|
|
|
|
readonly pristine: boolean;
|
2016-07-12 18:02:25 -04:00
|
|
|
abstract reset(value?: any, options?: Object): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get root(): AbstractControl;
|
2017-11-10 03:09:22 -05:00
|
|
|
setAsyncValidators(newValidator: AsyncValidatorFn | AsyncValidatorFn[] | null): void;
|
2017-06-12 13:59:29 -04:00
|
|
|
setErrors(errors: ValidationErrors | null, opts?: {
|
2016-06-22 17:56:10 -04:00
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2016-06-23 21:19:32 -04:00
|
|
|
setParent(parent: FormGroup | FormArray): void;
|
2017-04-17 14:13:30 -04:00
|
|
|
setValidators(newValidator: ValidatorFn | ValidatorFn[] | null): void;
|
2016-08-05 16:35:17 -04:00
|
|
|
abstract setValue(value: any, options?: Object): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
readonly status: string;
|
|
|
|
readonly statusChanges: Observable<any>;
|
|
|
|
readonly touched: boolean;
|
|
|
|
get untouched(): boolean;
|
|
|
|
get updateOn(): FormHooks;
|
2017-06-12 13:59:29 -04:00
|
|
|
updateValueAndValidity(opts?: {
|
2016-06-23 21:19:32 -04:00
|
|
|
onlySelf?: boolean;
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get valid(): boolean;
|
|
|
|
get validator(): ValidatorFn | null;
|
|
|
|
set validator(validatorFn: ValidatorFn | null);
|
|
|
|
readonly value: any;
|
|
|
|
readonly valueChanges: Observable<any>;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export abstract class AbstractControlDirective {
|
2020-07-27 22:31:40 -04:00
|
|
|
get asyncValidator(): AsyncValidatorFn | null;
|
2019-11-09 13:36:22 -05:00
|
|
|
abstract get control(): AbstractControl | null;
|
|
|
|
get dirty(): boolean | null;
|
|
|
|
get disabled(): boolean | null;
|
|
|
|
get enabled(): boolean | null;
|
|
|
|
get errors(): ValidationErrors | null;
|
2021-06-28 13:54:20 -04:00
|
|
|
getError(errorCode: string, path?: Array<string | number> | string): any;
|
|
|
|
hasError(errorCode: string, path?: Array<string | number> | string): boolean;
|
2019-11-09 13:36:22 -05:00
|
|
|
get invalid(): boolean | null;
|
|
|
|
get path(): string[] | null;
|
|
|
|
get pending(): boolean | null;
|
|
|
|
get pristine(): boolean | null;
|
2021-06-28 13:54:20 -04:00
|
|
|
reset(value?: any): void;
|
2019-11-09 13:36:22 -05:00
|
|
|
get status(): string | null;
|
|
|
|
get statusChanges(): Observable<any> | null;
|
|
|
|
get touched(): boolean | null;
|
|
|
|
get untouched(): boolean | null;
|
|
|
|
get valid(): boolean | null;
|
2020-07-27 22:31:40 -04:00
|
|
|
get validator(): ValidatorFn | null;
|
2019-11-09 13:36:22 -05:00
|
|
|
get value(): any;
|
|
|
|
get valueChanges(): Observable<any> | null;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export interface AbstractControlOptions {
|
2018-01-31 22:25:14 -05:00
|
|
|
asyncValidators?: AsyncValidatorFn | AsyncValidatorFn[] | null;
|
|
|
|
updateOn?: 'change' | 'blur' | 'submit';
|
|
|
|
validators?: ValidatorFn | ValidatorFn[] | null;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class AbstractFormGroupDirective extends ControlContainer implements OnInit, OnDestroy {
|
2019-11-09 13:36:22 -05:00
|
|
|
get control(): FormGroup;
|
|
|
|
get formDirective(): Form | null;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2016-07-07 23:14:42 -04:00
|
|
|
ngOnDestroy(): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2016-07-07 23:14:42 -04:00
|
|
|
ngOnInit(): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get path(): string[];
|
2016-07-07 23:14:42 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export interface AsyncValidator extends Validator {
|
2018-09-20 10:18:14 -04:00
|
|
|
validate(control: AbstractControl): Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
|
2017-02-20 19:26:51 -05:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export interface AsyncValidatorFn {
|
|
|
|
// (undocumented)
|
2018-09-20 10:18:14 -04:00
|
|
|
(control: AbstractControl): Promise<ValidationErrors | null> | Observable<ValidationErrors | null>;
|
2016-06-24 21:24:11 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class CheckboxControlValueAccessor extends ɵangular_packages_forms_forms_g implements ControlValueAccessor {
|
2016-06-23 21:19:32 -04:00
|
|
|
writeValue(value: any): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class CheckboxRequiredValidator extends RequiredValidator {
|
2018-09-20 10:18:14 -04:00
|
|
|
validate(control: AbstractControl): ValidationErrors | null;
|
2016-12-10 05:44:04 -05:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export const COMPOSITION_BUFFER_MODE: InjectionToken<boolean>;
|
fix(forms): make composition event buffering configurable (#15256)
This commit fixes a regression where `ngModel` no longer syncs
letter by letter on Android devices, and instead syncs at the
end of every word. This broke when we introduced buffering of
IME events so IMEs like Pinyin keyboards or Katakana keyboards
wouldn't display composition strings. Unfortunately, iOS devices
and Android devices have opposite event behavior. Whereas iOS
devices fire composition events for IME keyboards only, Android
fires composition events for Latin-language keyboards. For
this reason, languages like English don't work as expected on
Android if we always buffer. So to support both platforms,
composition string buffering will only be turned on by default
for non-Android devices.
However, we have also added a `COMPOSITION_BUFFER_MODE` token
to make this configurable by the application. In some cases, apps
might might still want to receive intermediate values. For example,
some inputs begin searching based on Latin letters before a
character selection is made.
As a provider, this is fairly flexible. If you want to turn
composition buffering off, simply provide the token at the top
level:
```ts
providers: [
{provide: COMPOSITION_BUFFER_MODE, useValue: false}
]
```
Or, if you want to change the mode based on locale or platform,
you can use a factory:
```ts
import {shouldUseBuffering} from 'my/lib';
....
providers: [
{provide: COMPOSITION_BUFFER_MODE, useFactory: shouldUseBuffering}
]
```
Closes #15079.
PR Close #15256
2017-03-20 20:38:33 -04:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export abstract class ControlContainer extends AbstractControlDirective {
|
2019-11-09 13:36:22 -05:00
|
|
|
get formDirective(): Form | null;
|
2019-09-10 16:39:47 -04:00
|
|
|
name: string | number | null;
|
2019-11-09 13:36:22 -05:00
|
|
|
get path(): string[] | null;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export interface ControlValueAccessor {
|
2016-06-22 17:56:10 -04:00
|
|
|
registerOnChange(fn: any): void;
|
|
|
|
registerOnTouched(fn: any): void;
|
2016-08-24 19:58:43 -04:00
|
|
|
setDisabledState?(isDisabled: boolean): void;
|
2016-06-23 21:19:32 -04:00
|
|
|
writeValue(obj: any): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class DefaultValueAccessor extends ɵangular_packages_forms_forms_f implements ControlValueAccessor {
|
2021-03-15 21:56:06 -04:00
|
|
|
constructor(renderer: Renderer2, elementRef: ElementRef, _compositionMode: boolean);
|
2016-06-23 21:19:32 -04:00
|
|
|
writeValue(value: any): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class EmailValidator implements Validator {
|
2019-11-09 13:36:22 -05:00
|
|
|
set email(value: boolean | string);
|
2016-12-29 12:07:02 -05:00
|
|
|
registerOnValidatorChange(fn: () => void): void;
|
2018-09-20 10:18:14 -04:00
|
|
|
validate(control: AbstractControl): ValidationErrors | null;
|
2016-12-29 12:07:02 -05:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export interface Form {
|
2016-06-22 17:56:10 -04:00
|
|
|
addControl(dir: NgControl): void;
|
|
|
|
addFormGroup(dir: AbstractFormGroupDirective): void;
|
2016-06-23 21:19:32 -04:00
|
|
|
getControl(dir: NgControl): FormControl;
|
2016-06-22 17:56:10 -04:00
|
|
|
getFormGroup(dir: AbstractFormGroupDirective): FormGroup;
|
2016-06-23 21:19:32 -04:00
|
|
|
removeControl(dir: NgControl): void;
|
|
|
|
removeFormGroup(dir: AbstractFormGroupDirective): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
updateModel(dir: NgControl, value: any): void;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class FormArray extends AbstractControl {
|
2017-07-25 18:01:04 -04:00
|
|
|
constructor(controls: AbstractControl[], validatorOrOpts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[] | null);
|
2016-06-22 17:56:10 -04:00
|
|
|
at(index: number): AbstractControl;
|
2021-02-11 07:01:32 -05:00
|
|
|
clear(options?: {
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
|
|
|
controls: AbstractControl[];
|
2016-08-24 19:58:43 -04:00
|
|
|
getRawValue(): any[];
|
2021-02-11 07:01:32 -05:00
|
|
|
insert(index: number, control: AbstractControl, options?: {
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get length(): number;
|
2017-04-27 16:39:21 -04:00
|
|
|
patchValue(value: any[], options?: {
|
2016-08-05 16:35:17 -04:00
|
|
|
onlySelf?: boolean;
|
2016-10-19 12:54:54 -04:00
|
|
|
emitEvent?: boolean;
|
2016-08-05 16:35:17 -04:00
|
|
|
}): void;
|
2021-02-11 07:01:32 -05:00
|
|
|
push(control: AbstractControl, options?: {
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
|
|
|
removeAt(index: number, options?: {
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2017-04-27 16:39:21 -04:00
|
|
|
reset(value?: any, options?: {
|
2016-07-12 18:02:25 -04:00
|
|
|
onlySelf?: boolean;
|
2016-10-19 12:54:54 -04:00
|
|
|
emitEvent?: boolean;
|
2016-07-12 18:02:25 -04:00
|
|
|
}): void;
|
2021-02-11 07:01:32 -05:00
|
|
|
setControl(index: number, control: AbstractControl, options?: {
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2017-04-27 16:39:21 -04:00
|
|
|
setValue(value: any[], options?: {
|
2016-07-08 16:04:25 -04:00
|
|
|
onlySelf?: boolean;
|
2016-10-19 12:54:54 -04:00
|
|
|
emitEvent?: boolean;
|
2016-07-08 16:04:25 -04:00
|
|
|
}): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class FormArrayName extends ControlContainer implements OnInit, OnDestroy {
|
|
|
|
constructor(parent: ControlContainer, validators: (Validator | ValidatorFn)[], asyncValidators: (AsyncValidator | AsyncValidatorFn)[]);
|
2019-11-09 13:36:22 -05:00
|
|
|
get control(): FormArray;
|
|
|
|
get formDirective(): FormGroupDirective | null;
|
2019-09-10 16:39:47 -04:00
|
|
|
name: string | number | null;
|
2016-06-25 16:27:29 -04:00
|
|
|
ngOnDestroy(): void;
|
|
|
|
ngOnInit(): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get path(): string[];
|
2016-06-25 16:27:29 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class FormBuilder {
|
2018-06-20 13:21:46 -04:00
|
|
|
array(controlsConfig: any[], validatorOrOpts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[] | null): FormArray;
|
|
|
|
control(formState: any, validatorOrOpts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[] | null): FormControl;
|
2016-06-22 17:56:10 -04:00
|
|
|
group(controlsConfig: {
|
|
|
|
[key: string]: any;
|
2020-11-19 15:29:20 -05:00
|
|
|
}, options?: AbstractControlOptions | null): FormGroup;
|
2021-06-28 13:54:20 -04:00
|
|
|
// @deprecated
|
|
|
|
group(controlsConfig: {
|
2016-06-22 17:56:10 -04:00
|
|
|
[key: string]: any;
|
2020-11-19 15:29:20 -05:00
|
|
|
}, options: {
|
|
|
|
[key: string]: any;
|
|
|
|
}): FormGroup;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class FormControl extends AbstractControl {
|
2017-07-25 18:01:04 -04:00
|
|
|
constructor(formState?: any, validatorOrOpts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[] | null);
|
2016-08-05 16:35:17 -04:00
|
|
|
patchValue(value: any, options?: {
|
|
|
|
onlySelf?: boolean;
|
|
|
|
emitEvent?: boolean;
|
|
|
|
emitModelToViewChange?: boolean;
|
|
|
|
emitViewToModelChange?: boolean;
|
|
|
|
}): void;
|
2016-06-23 21:19:32 -04:00
|
|
|
registerOnChange(fn: Function): void;
|
2016-08-24 19:58:43 -04:00
|
|
|
registerOnDisabledChange(fn: (isDisabled: boolean) => void): void;
|
2017-04-27 16:39:21 -04:00
|
|
|
reset(formState?: any, options?: {
|
2016-07-12 18:02:25 -04:00
|
|
|
onlySelf?: boolean;
|
2016-10-19 12:54:54 -04:00
|
|
|
emitEvent?: boolean;
|
2016-07-12 18:02:25 -04:00
|
|
|
}): void;
|
2017-04-27 16:39:21 -04:00
|
|
|
setValue(value: any, options?: {
|
2016-08-05 16:35:17 -04:00
|
|
|
onlySelf?: boolean;
|
|
|
|
emitEvent?: boolean;
|
|
|
|
emitModelToViewChange?: boolean;
|
|
|
|
emitViewToModelChange?: boolean;
|
|
|
|
}): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class FormControlDirective extends NgControl implements OnChanges, OnDestroy {
|
|
|
|
constructor(validators: (Validator | ValidatorFn)[], asyncValidators: (AsyncValidator | AsyncValidatorFn)[], valueAccessors: ControlValueAccessor[], _ngModelWarningConfig: string | null);
|
2019-11-09 13:36:22 -05:00
|
|
|
get control(): FormControl;
|
2016-06-22 17:56:10 -04:00
|
|
|
form: FormControl;
|
2019-11-09 13:36:22 -05:00
|
|
|
set isDisabled(isDisabled: boolean);
|
2021-06-28 13:54:20 -04:00
|
|
|
// @deprecated (undocumented)
|
|
|
|
model: any;
|
|
|
|
// (undocumented)
|
2016-06-22 17:56:10 -04:00
|
|
|
ngOnChanges(changes: SimpleChanges): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2020-06-12 19:22:22 -04:00
|
|
|
ngOnDestroy(): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get path(): string[];
|
|
|
|
// @deprecated (undocumented)
|
|
|
|
update: EventEmitter<any>;
|
|
|
|
viewModel: any;
|
2016-06-22 17:56:10 -04:00
|
|
|
viewToModelUpdate(newValue: any): void;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class FormControlName extends NgControl implements OnChanges, OnDestroy {
|
|
|
|
constructor(parent: ControlContainer, validators: (Validator | ValidatorFn)[], asyncValidators: (AsyncValidator | AsyncValidatorFn)[], valueAccessors: ControlValueAccessor[], _ngModelWarningConfig: string | null);
|
2017-02-07 22:27:01 -05:00
|
|
|
readonly control: FormControl;
|
2019-11-09 13:36:22 -05:00
|
|
|
get formDirective(): any;
|
|
|
|
set isDisabled(isDisabled: boolean);
|
2021-06-28 13:54:20 -04:00
|
|
|
// @deprecated (undocumented)
|
|
|
|
model: any;
|
2019-05-22 04:22:13 -04:00
|
|
|
name: string | number | null;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2016-06-22 17:56:10 -04:00
|
|
|
ngOnChanges(changes: SimpleChanges): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2016-06-22 17:56:10 -04:00
|
|
|
ngOnDestroy(): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get path(): string[];
|
|
|
|
// @deprecated (undocumented)
|
|
|
|
update: EventEmitter<any>;
|
2016-06-22 17:56:10 -04:00
|
|
|
viewToModelUpdate(newValue: any): void;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class FormGroup extends AbstractControl {
|
2016-06-22 17:56:10 -04:00
|
|
|
constructor(controls: {
|
|
|
|
[key: string]: AbstractControl;
|
2017-07-25 18:01:04 -04:00
|
|
|
}, validatorOrOpts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[] | null);
|
2021-02-11 07:01:32 -05:00
|
|
|
addControl(name: string, control: AbstractControl, options?: {
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
contains(controlName: string): boolean;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
|
|
|
controls: {
|
|
|
|
[key: string]: AbstractControl;
|
|
|
|
};
|
2016-11-08 18:44:36 -05:00
|
|
|
getRawValue(): any;
|
2016-08-05 16:35:17 -04:00
|
|
|
patchValue(value: {
|
|
|
|
[key: string]: any;
|
2017-04-27 16:39:21 -04:00
|
|
|
}, options?: {
|
2016-08-05 16:35:17 -04:00
|
|
|
onlySelf?: boolean;
|
2016-10-19 12:54:54 -04:00
|
|
|
emitEvent?: boolean;
|
2016-08-05 16:35:17 -04:00
|
|
|
}): void;
|
2016-06-23 21:19:32 -04:00
|
|
|
registerControl(name: string, control: AbstractControl): AbstractControl;
|
2021-02-11 07:01:32 -05:00
|
|
|
removeControl(name: string, options?: {
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2017-04-27 16:39:21 -04:00
|
|
|
reset(value?: any, options?: {
|
2016-07-12 18:02:25 -04:00
|
|
|
onlySelf?: boolean;
|
2016-10-19 12:54:54 -04:00
|
|
|
emitEvent?: boolean;
|
2016-07-12 18:02:25 -04:00
|
|
|
}): void;
|
2021-02-11 07:01:32 -05:00
|
|
|
setControl(name: string, control: AbstractControl, options?: {
|
|
|
|
emitEvent?: boolean;
|
|
|
|
}): void;
|
2016-08-05 16:35:17 -04:00
|
|
|
setValue(value: {
|
2016-07-08 16:04:25 -04:00
|
|
|
[key: string]: any;
|
2017-04-27 16:39:21 -04:00
|
|
|
}, options?: {
|
2016-07-08 16:04:25 -04:00
|
|
|
onlySelf?: boolean;
|
2016-10-19 12:54:54 -04:00
|
|
|
emitEvent?: boolean;
|
2016-07-08 16:04:25 -04:00
|
|
|
}): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class FormGroupDirective extends ControlContainer implements Form, OnChanges, OnDestroy {
|
2020-07-27 22:31:40 -04:00
|
|
|
constructor(validators: (Validator | ValidatorFn)[], asyncValidators: (AsyncValidator | AsyncValidatorFn)[]);
|
2016-09-02 18:57:35 -04:00
|
|
|
addControl(dir: FormControlName): FormControl;
|
2016-06-25 16:27:29 -04:00
|
|
|
addFormArray(dir: FormArrayName): void;
|
2016-06-23 21:19:32 -04:00
|
|
|
addFormGroup(dir: FormGroupName): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
get control(): FormGroup;
|
|
|
|
directives: FormControlName[];
|
|
|
|
form: FormGroup;
|
|
|
|
get formDirective(): Form;
|
2016-09-02 18:57:35 -04:00
|
|
|
getControl(dir: FormControlName): FormControl;
|
2016-06-25 16:27:29 -04:00
|
|
|
getFormArray(dir: FormArrayName): FormArray;
|
2016-06-23 21:19:32 -04:00
|
|
|
getFormGroup(dir: FormGroupName): FormGroup;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2016-06-23 21:19:32 -04:00
|
|
|
ngOnChanges(changes: SimpleChanges): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2020-06-12 19:22:22 -04:00
|
|
|
ngOnDestroy(): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
ngSubmit: EventEmitter<any>;
|
2016-07-12 18:02:25 -04:00
|
|
|
onReset(): void;
|
2016-10-11 18:49:36 -04:00
|
|
|
onSubmit($event: Event): boolean;
|
2021-06-28 13:54:20 -04:00
|
|
|
get path(): string[];
|
2016-09-02 18:57:35 -04:00
|
|
|
removeControl(dir: FormControlName): void;
|
2016-06-25 16:27:29 -04:00
|
|
|
removeFormArray(dir: FormArrayName): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
removeFormGroup(dir: FormGroupName): void;
|
2016-08-12 02:27:33 -04:00
|
|
|
resetForm(value?: any): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
readonly submitted: boolean;
|
2016-09-02 18:57:35 -04:00
|
|
|
updateModel(dir: FormControlName, value: any): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
}
|
2016-06-22 17:56:10 -04:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class FormGroupName extends AbstractFormGroupDirective implements OnInit, OnDestroy {
|
2020-09-22 21:00:37 -04:00
|
|
|
constructor(parent: ControlContainer, validators: (Validator | ValidatorFn)[], asyncValidators: (AsyncValidator | AsyncValidatorFn)[]);
|
2021-06-28 13:54:20 -04:00
|
|
|
name: string | number | null;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class FormsModule {
|
feat(forms): add modules for forms and deprecatedForms (#9859)
Closes #9732
BREAKING CHANGE:
We have removed the deprecated form directives from the built-in platform directive list, so apps are not required to package forms with their app. This also makes forms friendly to offline compilation.
Instead, we have exposed three modules:
OLD API:
- `DeprecatedFormsModule`
NEW API:
- `FormsModule`
- `ReactiveFormsModule`
If you provide one of these modules, the default forms directives and providers from that module will be available to you app-wide. Note: You can provide both the `FormsModule` and the `ReactiveFormsModule` together if you like, but they are fully-functional separately.
**Before:**
```ts
import {disableDeprecatedForms, provideForms} from @angular/forms;
bootstrap(App, [
disableDeprecatedForms(),
provideForms()
]);
```
**After:**
```ts
import {DeprecatedFormsModule} from @angular/common;
bootstrap(App, {modules: [DeprecatedFormsModule] });
```
-OR-
```ts
import {FormsModule} from @angular/forms;
bootstrap(App, {modules: [FormsModule] });
```
-OR-
```ts
import {ReactiveFormsModule} from @angular/forms;
bootstrap(App, {modules: [ReactiveFormsModule] });
```
You can also choose not to provide any forms module and run your app without forms.
Or you can choose not to provide any forms module *and* provide form directives at will. This will allow you to use the deprecatedForms API for some components and not others.
```
import {FORM_DIRECTIVES, FORM_PROVIDERS} from @angular/forms;
@Component({
selector: some-comp,
directives: [FORM_DIRECTIVES],
providers: [FORM_PROVIDERS]
})
class SomeComp
```
2016-07-07 14:32:51 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class MaxLengthValidator implements Validator, OnChanges {
|
2019-08-08 13:19:41 -04:00
|
|
|
maxlength: string | number;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2016-08-06 02:53:41 -04:00
|
|
|
ngOnChanges(changes: SimpleChanges): void;
|
2016-09-09 17:09:11 -04:00
|
|
|
registerOnValidatorChange(fn: () => void): void;
|
2018-09-20 10:18:14 -04:00
|
|
|
validate(control: AbstractControl): ValidationErrors | null;
|
2021-06-28 13:54:20 -04:00
|
|
|
}
|
2016-06-22 17:56:10 -04:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class MaxValidator extends AbstractValidatorDirective implements OnChanges {
|
2020-09-30 12:17:04 -04:00
|
|
|
max: string | number;
|
|
|
|
ngOnChanges(changes: SimpleChanges): void;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class MinLengthValidator implements Validator, OnChanges {
|
2019-08-08 13:19:41 -04:00
|
|
|
minlength: string | number;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2016-08-06 02:53:41 -04:00
|
|
|
ngOnChanges(changes: SimpleChanges): void;
|
2016-09-09 17:09:11 -04:00
|
|
|
registerOnValidatorChange(fn: () => void): void;
|
2018-09-20 10:18:14 -04:00
|
|
|
validate(control: AbstractControl): ValidationErrors | null;
|
2021-06-28 13:54:20 -04:00
|
|
|
}
|
2020-09-30 12:17:04 -04:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class MinValidator extends AbstractValidatorDirective implements OnChanges {
|
2020-09-30 12:17:04 -04:00
|
|
|
min: string | number;
|
|
|
|
ngOnChanges(changes: SimpleChanges): void;
|
|
|
|
}
|
2016-06-22 17:56:10 -04:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export const NG_ASYNC_VALIDATORS: InjectionToken<(Function | Validator)[]>;
|
2016-06-22 17:56:10 -04:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export const NG_VALIDATORS: InjectionToken<(Function | Validator)[]>;
|
2016-06-22 17:56:10 -04:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export const NG_VALUE_ACCESSOR: InjectionToken<readonly ControlValueAccessor[]>;
|
2016-06-22 17:56:10 -04:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export abstract class NgControl extends AbstractControlDirective {
|
2019-05-22 04:22:13 -04:00
|
|
|
name: string | number | null;
|
2017-04-17 14:13:30 -04:00
|
|
|
valueAccessor: ControlValueAccessor | null;
|
2016-06-22 17:56:10 -04:00
|
|
|
abstract viewToModelUpdate(newValue: any): void;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class NgControlStatus extends ɵangular_packages_forms_forms_i {
|
2016-06-23 21:19:32 -04:00
|
|
|
constructor(cd: NgControl);
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class NgControlStatusGroup extends ɵangular_packages_forms_forms_i {
|
2016-08-11 12:01:09 -04:00
|
|
|
constructor(cd: ControlContainer);
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class NgForm extends ControlContainer implements Form, AfterViewInit {
|
|
|
|
constructor(validators: (Validator | ValidatorFn)[], asyncValidators: (AsyncValidator | AsyncValidatorFn)[]);
|
|
|
|
addControl(dir: NgModel): void;
|
|
|
|
addFormGroup(dir: NgModelGroup): void;
|
2019-11-09 13:36:22 -05:00
|
|
|
get control(): FormGroup;
|
|
|
|
get controls(): {
|
2016-06-22 17:56:10 -04:00
|
|
|
[key: string]: AbstractControl;
|
|
|
|
};
|
2016-06-23 21:19:32 -04:00
|
|
|
form: FormGroup;
|
2019-11-09 13:36:22 -05:00
|
|
|
get formDirective(): Form;
|
2016-06-22 17:56:10 -04:00
|
|
|
getControl(dir: NgModel): FormControl;
|
2016-06-23 21:19:32 -04:00
|
|
|
getFormGroup(dir: NgModelGroup): FormGroup;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2017-08-08 17:37:29 -04:00
|
|
|
ngAfterViewInit(): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
ngSubmit: EventEmitter<any>;
|
2016-07-12 18:02:25 -04:00
|
|
|
onReset(): void;
|
2016-10-11 18:49:36 -04:00
|
|
|
onSubmit($event: Event): boolean;
|
2021-06-28 13:54:20 -04:00
|
|
|
options: {
|
|
|
|
updateOn?: FormHooks;
|
|
|
|
};
|
|
|
|
get path(): string[];
|
2016-06-22 17:56:10 -04:00
|
|
|
removeControl(dir: NgModel): void;
|
|
|
|
removeFormGroup(dir: NgModelGroup): void;
|
2016-08-12 02:27:33 -04:00
|
|
|
resetForm(value?: any): void;
|
2016-08-05 16:35:17 -04:00
|
|
|
setValue(value: {
|
2016-07-08 16:04:25 -04:00
|
|
|
[key: string]: any;
|
|
|
|
}): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
readonly submitted: boolean;
|
2016-08-05 16:35:17 -04:00
|
|
|
updateModel(dir: NgControl, value: any): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class NgModel extends NgControl implements OnChanges, OnDestroy {
|
|
|
|
constructor(parent: ControlContainer, validators: (Validator | ValidatorFn)[], asyncValidators: (AsyncValidator | AsyncValidatorFn)[], valueAccessors: ControlValueAccessor[]);
|
|
|
|
// (undocumented)
|
2017-02-07 22:27:01 -05:00
|
|
|
readonly control: FormControl;
|
2019-11-09 13:36:22 -05:00
|
|
|
get formDirective(): any;
|
2016-08-25 17:56:31 -04:00
|
|
|
isDisabled: boolean;
|
2016-06-22 17:56:10 -04:00
|
|
|
model: any;
|
|
|
|
name: string;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
|
|
|
static ngAcceptInputType_isDisabled: boolean | string;
|
|
|
|
// (undocumented)
|
|
|
|
ngOnChanges(changes: SimpleChanges): void;
|
|
|
|
// (undocumented)
|
|
|
|
ngOnDestroy(): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
options: {
|
|
|
|
name?: string;
|
|
|
|
standalone?: boolean;
|
2017-08-08 00:11:46 -04:00
|
|
|
updateOn?: FormHooks;
|
2016-06-22 17:56:10 -04:00
|
|
|
};
|
2019-11-09 13:36:22 -05:00
|
|
|
get path(): string[];
|
2019-07-17 20:49:16 -04:00
|
|
|
update: EventEmitter<any>;
|
2016-06-23 21:19:32 -04:00
|
|
|
viewModel: any;
|
2016-06-22 17:56:10 -04:00
|
|
|
viewToModelUpdate(newValue: any): void;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class NgModelGroup extends AbstractFormGroupDirective implements OnInit, OnDestroy {
|
2020-09-22 21:00:37 -04:00
|
|
|
constructor(parent: ControlContainer, validators: (Validator | ValidatorFn)[], asyncValidators: (AsyncValidator | AsyncValidatorFn)[]);
|
2021-06-28 13:54:20 -04:00
|
|
|
name: string;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class NgSelectOption implements OnDestroy {
|
|
|
|
constructor(_element: ElementRef, _renderer: Renderer2, _select: SelectControlValueAccessor);
|
2016-06-22 17:56:10 -04:00
|
|
|
id: string;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
|
|
|
ngOnDestroy(): void;
|
2019-11-09 13:36:22 -05:00
|
|
|
set ngValue(value: any);
|
|
|
|
set value(value: any);
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class NumberValueAccessor extends ɵangular_packages_forms_forms_g implements ControlValueAccessor {
|
2018-12-13 14:11:15 -05:00
|
|
|
registerOnChange(fn: (_: number | null) => void): void;
|
|
|
|
writeValue(value: number): void;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class PatternValidator implements Validator, OnChanges {
|
|
|
|
// (undocumented)
|
2016-08-06 02:53:41 -04:00
|
|
|
ngOnChanges(changes: SimpleChanges): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
pattern: string | RegExp;
|
2016-09-09 17:09:11 -04:00
|
|
|
registerOnValidatorChange(fn: () => void): void;
|
2018-09-20 10:18:14 -04:00
|
|
|
validate(control: AbstractControl): ValidationErrors | null;
|
2021-06-28 13:54:20 -04:00
|
|
|
}
|
2016-06-22 17:56:10 -04:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class RadioControlValueAccessor extends ɵangular_packages_forms_forms_g implements ControlValueAccessor, OnDestroy, OnInit {
|
2021-06-07 13:07:49 -04:00
|
|
|
constructor(renderer: Renderer2, elementRef: ElementRef, _registry: ɵangular_packages_forms_forms_r, _injector: Injector);
|
2016-09-19 13:41:20 -04:00
|
|
|
fireUncheck(value: any): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
formControlName: string;
|
|
|
|
name: string;
|
|
|
|
// (undocumented)
|
2016-09-19 13:41:20 -04:00
|
|
|
ngOnDestroy(): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2016-09-19 13:41:20 -04:00
|
|
|
ngOnInit(): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
onChange: () => void;
|
2016-09-19 13:41:20 -04:00
|
|
|
registerOnChange(fn: (_: any) => {}): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
value: any;
|
2016-09-19 13:41:20 -04:00
|
|
|
writeValue(value: any): void;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class RangeValueAccessor extends ɵangular_packages_forms_forms_g implements ControlValueAccessor {
|
2018-12-13 14:11:15 -05:00
|
|
|
registerOnChange(fn: (_: number | null) => void): void;
|
|
|
|
writeValue(value: any): void;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class ReactiveFormsModule {
|
|
|
|
static withConfig(opts: {
|
|
|
|
warnOnNgModelWithFormControl: 'never' | 'once' | 'always';
|
2018-07-09 14:36:30 -04:00
|
|
|
}): ModuleWithProviders<ReactiveFormsModule>;
|
feat(forms): add modules for forms and deprecatedForms (#9859)
Closes #9732
BREAKING CHANGE:
We have removed the deprecated form directives from the built-in platform directive list, so apps are not required to package forms with their app. This also makes forms friendly to offline compilation.
Instead, we have exposed three modules:
OLD API:
- `DeprecatedFormsModule`
NEW API:
- `FormsModule`
- `ReactiveFormsModule`
If you provide one of these modules, the default forms directives and providers from that module will be available to you app-wide. Note: You can provide both the `FormsModule` and the `ReactiveFormsModule` together if you like, but they are fully-functional separately.
**Before:**
```ts
import {disableDeprecatedForms, provideForms} from @angular/forms;
bootstrap(App, [
disableDeprecatedForms(),
provideForms()
]);
```
**After:**
```ts
import {DeprecatedFormsModule} from @angular/common;
bootstrap(App, {modules: [DeprecatedFormsModule] });
```
-OR-
```ts
import {FormsModule} from @angular/forms;
bootstrap(App, {modules: [FormsModule] });
```
-OR-
```ts
import {ReactiveFormsModule} from @angular/forms;
bootstrap(App, {modules: [ReactiveFormsModule] });
```
You can also choose not to provide any forms module and run your app without forms.
Or you can choose not to provide any forms module *and* provide form directives at will. This will allow you to use the deprecatedForms API for some components and not others.
```
import {FORM_DIRECTIVES, FORM_PROVIDERS} from @angular/forms;
@Component({
selector: some-comp,
directives: [FORM_DIRECTIVES],
providers: [FORM_PROVIDERS]
})
class SomeComp
```
2016-07-07 14:32:51 -04:00
|
|
|
}
|
2016-06-22 17:56:10 -04:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class RequiredValidator implements Validator {
|
|
|
|
registerOnValidatorChange(fn: () => void): void;
|
2019-11-09 13:36:22 -05:00
|
|
|
get required(): boolean | string;
|
|
|
|
set required(value: boolean | string);
|
2018-09-20 10:18:14 -04:00
|
|
|
validate(control: AbstractControl): ValidationErrors | null;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class SelectControlValueAccessor extends ɵangular_packages_forms_forms_g implements ControlValueAccessor {
|
2019-11-09 13:36:22 -05:00
|
|
|
set compareWith(fn: (o1: any, o2: any) => boolean);
|
2016-06-22 17:56:10 -04:00
|
|
|
registerOnChange(fn: (value: any) => any): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
|
|
|
value: any;
|
2016-06-23 21:19:32 -04:00
|
|
|
writeValue(value: any): void;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class SelectMultipleControlValueAccessor extends ɵangular_packages_forms_forms_g implements ControlValueAccessor {
|
2019-11-09 13:36:22 -05:00
|
|
|
set compareWith(fn: (o1: any, o2: any) => boolean);
|
2016-06-30 21:04:00 -04:00
|
|
|
registerOnChange(fn: (value: any) => any): void;
|
2021-06-28 13:54:20 -04:00
|
|
|
value: any;
|
2016-06-30 21:04:00 -04:00
|
|
|
writeValue(value: any): void;
|
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export type ValidationErrors = {
|
2017-02-23 12:53:29 -05:00
|
|
|
[key: string]: any;
|
|
|
|
};
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export interface Validator {
|
2016-09-09 17:09:11 -04:00
|
|
|
registerOnValidatorChange?(fn: () => void): void;
|
2018-09-20 10:18:14 -04:00
|
|
|
validate(control: AbstractControl): ValidationErrors | null;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export interface ValidatorFn {
|
|
|
|
// (undocumented)
|
2018-09-20 10:18:14 -04:00
|
|
|
(control: AbstractControl): ValidationErrors | null;
|
2016-06-24 21:24:11 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public
|
|
|
|
export class Validators {
|
2017-04-28 12:48:15 -04:00
|
|
|
static compose(validators: null): null;
|
2021-06-28 13:54:20 -04:00
|
|
|
// (undocumented)
|
2020-01-24 13:55:39 -05:00
|
|
|
static compose(validators: (ValidatorFn | null | undefined)[]): ValidatorFn | null;
|
2017-04-17 14:13:30 -04:00
|
|
|
static composeAsync(validators: (AsyncValidatorFn | null)[]): AsyncValidatorFn | null;
|
2017-02-23 12:53:29 -05:00
|
|
|
static email(control: AbstractControl): ValidationErrors | null;
|
2017-04-06 11:41:10 -04:00
|
|
|
static max(max: number): ValidatorFn;
|
2016-06-23 21:19:32 -04:00
|
|
|
static maxLength(maxLength: number): ValidatorFn;
|
2017-04-06 11:41:10 -04:00
|
|
|
static min(min: number): ValidatorFn;
|
2016-06-23 21:19:32 -04:00
|
|
|
static minLength(minLength: number): ValidatorFn;
|
2018-09-20 10:18:14 -04:00
|
|
|
static nullValidator(control: AbstractControl): ValidationErrors | null;
|
2016-10-19 12:37:54 -04:00
|
|
|
static pattern(pattern: string | RegExp): ValidatorFn;
|
2017-02-23 12:53:29 -05:00
|
|
|
static required(control: AbstractControl): ValidationErrors | null;
|
|
|
|
static requiredTrue(control: AbstractControl): ValidationErrors | null;
|
2016-06-22 17:56:10 -04:00
|
|
|
}
|
2016-11-30 16:52:08 -05:00
|
|
|
|
2021-06-28 13:54:20 -04:00
|
|
|
// @public (undocumented)
|
|
|
|
export const VERSION: Version;
|
|
|
|
|
|
|
|
|
|
|
|
// (No @packageDocumentation comment for this package)
|
|
|
|
|
|
|
|
```
|