forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.ts
More file actions
130 lines (126 loc) · 4.28 KB
/
Copy pathforms.ts
File metadata and controls
130 lines (126 loc) · 4.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/**
* @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 {AbstractFormDirective} from './directives/reactive_directives/abstract_form.directive';
export {FormArrayDirective} from './directives/reactive_directives/form_array_directive';
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, ɵFORM_FIELD_PARSE_ERRORS} 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 {
isNativeFormElement as ɵisNativeFormElement,
isNumericFormElement as ɵisNumericFormElement,
isTextualFormElement as ɵisTextualFormElement,
setNativeDomProperty as ɵsetNativeDomProperty,
type NativeFormControl as ɵNativeFormControl,
} from './directives/native';
export * from './form_providers';