angular/packages/forms/src/forms.ts
Joey Perrott 9dbe6fc18b refactor: update license text to point to angular.dev (#57901)
Update license text to point to angular.dev instead of angular.io

PR Close #57901
2024-09-24 15:33:00 +02:00

120 lines
3.8 KiB
TypeScript

/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
/**
* @module
* @description
* This module is used for handling user input, by defining and building a `FormGroup` that
* consists of `FormControl` objects, and mapping them onto the DOM. `FormControl`
* objects can then be used to read information from the form DOM elements.
*
* Forms providers are not included in default providers; you must import these providers
* explicitly.
*/
export {ɵInternalFormsSharedModule} from './directives';
export {AbstractControlDirective} from './directives/abstract_control_directive';
export {AbstractFormGroupDirective} from './directives/abstract_form_group_directive';
export {CheckboxControlValueAccessor} from './directives/checkbox_value_accessor';
export {ControlContainer} from './directives/control_container';
export {ControlValueAccessor, NG_VALUE_ACCESSOR} from './directives/control_value_accessor';
export {COMPOSITION_BUFFER_MODE, DefaultValueAccessor} from './directives/default_value_accessor';
export {Form} from './directives/form_interface';
export {NgControl} from './directives/ng_control';
export {NgControlStatus, NgControlStatusGroup} from './directives/ng_control_status';
export {NgForm} from './directives/ng_form';
export {NgModel} from './directives/ng_model';
export {NgModelGroup} from './directives/ng_model_group';
export {ɵNgNoValidate} from './directives/ng_no_validate_directive';
export {NumberValueAccessor} from './directives/number_value_accessor';
export {RadioControlValueAccessor} from './directives/radio_control_value_accessor';
export {RangeValueAccessor} from './directives/range_value_accessor';
export {FormControlDirective} from './directives/reactive_directives/form_control_directive';
export {FormControlName} from './directives/reactive_directives/form_control_name';
export {FormGroupDirective} from './directives/reactive_directives/form_group_directive';
export {FormArrayName, FormGroupName} from './directives/reactive_directives/form_group_name';
export {
NgSelectOption,
SelectControlValueAccessor,
} from './directives/select_control_value_accessor';
export {
SelectMultipleControlValueAccessor,
ɵNgSelectMultipleOption,
} from './directives/select_multiple_control_value_accessor';
export {SetDisabledStateOption} from './directives/shared';
export {
AsyncValidator,
AsyncValidatorFn,
CheckboxRequiredValidator,
EmailValidator,
MaxLengthValidator,
MaxValidator,
MinLengthValidator,
MinValidator,
PatternValidator,
RequiredValidator,
ValidationErrors,
Validator,
ValidatorFn,
} from './directives/validators';
export {
ControlConfig,
FormBuilder,
NonNullableFormBuilder,
UntypedFormBuilder,
ɵElement,
} from './form_builder';
export {
AbstractControl,
AbstractControlOptions,
ControlEvent,
FormControlStatus,
FormResetEvent,
FormSubmittedEvent,
PristineChangeEvent,
StatusChangeEvent,
TouchedChangeEvent,
ValueChangeEvent,
ɵCoerceStrArrToNumArr,
ɵGetProperty,
ɵNavigate,
ɵRawValue,
ɵTokenize,
ɵTypedOrUntyped,
ɵValue,
ɵWriteable,
} from './model/abstract_model';
export {
FormArray,
isFormArray,
UntypedFormArray,
ɵFormArrayRawValue,
ɵFormArrayValue,
} from './model/form_array';
export {
FormControl,
FormControlOptions,
FormControlState,
isFormControl,
UntypedFormControl,
ɵFormControlCtor,
} from './model/form_control';
export {
FormGroup,
FormRecord,
isFormGroup,
isFormRecord,
UntypedFormGroup,
ɵFormGroupRawValue,
ɵFormGroupValue,
ɵOptionalKeys,
} from './model/form_group';
export {NG_ASYNC_VALIDATORS, NG_VALIDATORS, Validators} from './validators';
export {VERSION} from './version';
export * from './form_providers';