Skip to content

Commit 2559a0f

Browse files
ci: apply automated fixes and generate docs
1 parent c4283ae commit 2559a0f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/framework/react/reference/functions/useForm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: useForm
99
function useForm<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>(opts?): ReactFormExtendedApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>;
1010
```
1111

12-
Defined in: [packages/react-form/src/useForm.tsx:158](https://github.com/TanStack/form/blob/main/packages/react-form/src/useForm.tsx#L158)
12+
Defined in: [packages/react-form/src/useForm.tsx:159](https://github.com/TanStack/form/blob/main/packages/react-form/src/useForm.tsx#L159)
1313

1414
A custom React Hook that returns an extended instance of the `FormApi` class.
1515

docs/framework/react/reference/interfaces/ReactFormApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: ReactFormApi
55

66
# Interface: ReactFormApi\<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta\>
77

8-
Defined in: [packages/react-form/src/useForm.tsx:23](https://github.com/TanStack/form/blob/main/packages/react-form/src/useForm.tsx#L23)
8+
Defined in: [packages/react-form/src/useForm.tsx:24](https://github.com/TanStack/form/blob/main/packages/react-form/src/useForm.tsx#L24)
99

1010
Fields that are added onto the `FormAPI` from `@tanstack/form-core` and returned from `useForm`
1111

@@ -67,7 +67,7 @@ Fields that are added onto the `FormAPI` from `@tanstack/form-core` and returned
6767
Field: FieldComponent<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>;
6868
```
6969

70-
Defined in: [packages/react-form/src/useForm.tsx:40](https://github.com/TanStack/form/blob/main/packages/react-form/src/useForm.tsx#L40)
70+
Defined in: [packages/react-form/src/useForm.tsx:41](https://github.com/TanStack/form/blob/main/packages/react-form/src/useForm.tsx#L41)
7171

7272
A React component to render form fields. With this, you can render and manage individual form fields.
7373

@@ -79,7 +79,7 @@ A React component to render form fields. With this, you can render and manage in
7979
Subscribe: <TSelected>(props) => ReactNode | Promise<ReactNode>;
8080
```
8181

82-
Defined in: [packages/react-form/src/useForm.tsx:57](https://github.com/TanStack/form/blob/main/packages/react-form/src/useForm.tsx#L57)
82+
Defined in: [packages/react-form/src/useForm.tsx:58](https://github.com/TanStack/form/blob/main/packages/react-form/src/useForm.tsx#L58)
8383

8484
A `Subscribe` function that allows you to listen and react to changes in the form's state. It's especially useful when you need to execute side effects or render specific components in response to state updates.
8585

docs/framework/react/reference/type-aliases/ReactFormExtendedApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title: ReactFormExtendedApi
99
type ReactFormExtendedApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta> = FormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta> & ReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>;
1010
```
1111

12-
Defined in: [packages/react-form/src/useForm.tsx:98](https://github.com/TanStack/form/blob/main/packages/react-form/src/useForm.tsx#L98)
12+
Defined in: [packages/react-form/src/useForm.tsx:99](https://github.com/TanStack/form/blob/main/packages/react-form/src/useForm.tsx#L99)
1313

1414
An extended version of the `FormApi` class that includes React-specific functionalities from `ReactFormApi`
1515

0 commit comments

Comments
 (0)