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 {
1414 SelectSingleFormField ,
1515 type SelectSingleFormFieldProps as _SelectSingleFormFieldProps ,
1616} from "./elements/SelectSingleFormField"
17+ import {
18+ TextareaFormField ,
19+ type TextareaFormFieldProps as _TextareaFormFieldProps ,
20+ } from "./elements/TextAreaFormField"
1721import {
1822 DynamicForm as Form ,
1923 type FormField as _FormField ,
@@ -28,6 +32,7 @@ const DynamicForm = {
2832 SelectMultiFormField,
2933 SelectSingleFormField,
3034 Form,
35+ TextareaFormField,
3136}
3237export { DynamicForm }
3338
@@ -47,4 +52,6 @@ export namespace DynamicFormTypes {
4752 export type FormField < T extends FieldValues > = _FormField < T >
4853 export type FormProps < T extends FieldValues > = _FormProps < T >
4954 export type DynamicFormProps < T extends FieldValues > = _DynamicFormProps < T >
55+ export type TextareaFormFieldProps < T extends FieldValues > =
56+ _TextareaFormFieldProps < T >
5057}
You can’t perform that action at this time.
0 commit comments