File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
library/src/components/form Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,10 @@ import {
14
14
SelectSingleFormField ,
15
15
type SelectSingleFormFieldProps as _SelectSingleFormFieldProps ,
16
16
} from "./elements/SelectSingleFormField"
17
+ import {
18
+ TextareaFormField ,
19
+ type TextareaFormFieldProps as _TextareaFormFieldProps ,
20
+ } from "./elements/TextAreaFormField"
17
21
import {
18
22
DynamicForm as Form ,
19
23
type FormField as _FormField ,
@@ -28,6 +32,7 @@ const DynamicForm = {
28
32
SelectMultiFormField,
29
33
SelectSingleFormField,
30
34
Form,
35
+ TextareaFormField,
31
36
}
32
37
export { DynamicForm }
33
38
@@ -47,4 +52,6 @@ export namespace DynamicFormTypes {
47
52
export type FormField < T extends FieldValues > = _FormField < T >
48
53
export type FormProps < T extends FieldValues > = _FormProps < T >
49
54
export type DynamicFormProps < T extends FieldValues > = _DynamicFormProps < T >
55
+ export type TextareaFormFieldProps < T extends FieldValues > =
56
+ _TextareaFormFieldProps < T >
50
57
}
You can’t perform that action at this time.
0 commit comments