Skip to content

Commit 9011802

Browse files
committed
docs: fix links
commit 770f8e9 Author: Tanner Linsley <tannerlinsley@gmail.com> Date: Sat May 24 00:13:23 2025 -0600 docs: fix relative links
1 parent ed33c7b commit 9011802

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+594
-247
lines changed

docs/framework/angular/guides/basic-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ onCountryChange: FieldListenerFn<any, any, any, any, string> = ({
228228
}
229229
```
230230

231-
More information can be found at [Listeners](./listeners.md)
231+
More information can be found at [Listeners](../listeners.md)
232232

233233
## Array Fields
234234

docs/framework/angular/guides/submission-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class AppComponent {
6565

6666
## Transforming data with Standard Schemas
6767

68-
While Tanstack Form provides [Standard Schema support](./validation.md) for validation, it does not preserve the Schema's output data.
68+
While Tanstack Form provides [Standard Schema support](../validation.md) for validation, it does not preserve the Schema's output data.
6969

7070
The value passed to the `onSubmit` function will always be the input data. To receive the output data of a Standard Schema, parse it in the `onSubmit` function:
7171

docs/framework/angular/guides/validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ TanStack Form natively supports all libraries following the [Standard Schema spe
554554

555555
_Note:_ make sure to use the latest version of the schema libraries as older versions might not support Standard Schema yet.
556556

557-
> Validation will not provide you with transformed values. See [submission handling](./submission-handling.md) for more information.
557+
> Validation will not provide you with transformed values. See [submission handling](../submission-handling.md) for more information.
558558
559559
To use schemas from these libraries you can pass them to the `validators` props as you would do with a custom function:
560560

docs/framework/angular/reference/classes/tanstackfield.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ new TanStackField<TParentData, TName, TData, TOnMount, TOnChange, TOnChangeAsync
6666

6767
#### Returns
6868

69-
[`TanStackField`](tanstackfield.md)\<`TParentData`, `TName`, `TData`, `TOnMount`, `TOnChange`, `TOnChangeAsync`, `TOnBlur`, `TOnBlurAsync`, `TOnSubmit`, `TOnSubmitAsync`, `TFormOnMount`, `TFormOnChange`, `TFormOnChangeAsync`, `TFormOnBlur`, `TFormOnBlurAsync`, `TFormOnSubmit`, `TFormOnSubmitAsync`, `TFormOnServer`, `TSubmitMeta`\>
69+
[`TanStackField`](../tanstackfield.md)\<`TParentData`, `TName`, `TData`, `TOnMount`, `TOnChange`, `TOnChangeAsync`, `TOnBlur`, `TOnBlurAsync`, `TOnSubmit`, `TOnSubmitAsync`, `TFormOnMount`, `TFormOnChange`, `TFormOnChangeAsync`, `TFormOnBlur`, `TFormOnBlurAsync`, `TFormOnSubmit`, `TFormOnSubmitAsync`, `TFormOnServer`, `TSubmitMeta`\>
7070

7171
## Properties
7272

docs/framework/angular/reference/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ title: "@tanstack/angular-form"
99

1010
## Classes
1111

12-
- [TanStackField](classes/tanstackfield.md)
12+
- [TanStackField](../classes/tanstackfield.md)
1313

1414
## Functions
1515

16-
- [injectForm](functions/injectform.md)
17-
- [injectStore](functions/injectstore.md)
16+
- [injectForm](../functions/injectform.md)
17+
- [injectStore](../functions/injectstore.md)

docs/framework/lit/reference/classes/tanstackformcontroller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Defined in: [tanstack-form-controller.ts:219](https://github.com/TanStack/form/b
5757
5858
#### Returns
5959
60-
[`TanStackFormController`](tanstackformcontroller.md)\<`TParentData`, `TFormOnMount`, `TFormOnChange`, `TFormOnChangeAsync`, `TFormOnBlur`, `TFormOnBlurAsync`, `TFormOnSubmit`, `TFormOnSubmitAsync`, `TFormOnServer`, `TSubmitMeta`\>
60+
[`TanStackFormController`](../tanstackformcontroller.md)\<`TParentData`, `TFormOnMount`, `TFormOnChange`, `TFormOnChangeAsync`, `TFormOnBlur`, `TFormOnBlurAsync`, `TFormOnSubmit`, `TFormOnSubmitAsync`, `TFormOnServer`, `TSubmitMeta`\>
6161
6262
## Properties
6363

docs/framework/lit/reference/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ title: "@tanstack/lit-form"
99

1010
## Classes
1111

12-
- [TanStackFormController](classes/tanstackformcontroller.md)
12+
- [TanStackFormController](../classes/tanstackformcontroller.md)

docs/framework/react/guides/basic-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Example:
265265
/>
266266
```
267267

268-
More information can be found at [Listeners](./listeners.md)
268+
More information can be found at [Listeners](../listeners.md)
269269

270270
## Array Fields
271271

docs/framework/react/guides/reactivity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ If you would like to access reactive values, you will need to subscribe to them
99

1010
Some uses for these subscriptions are rendering up-to-date field values, determining what to render based on a condition, or using field values inside the logic of your component.
1111

12-
> For situations where you want to "react" to triggers, check out the [listener](./listeners.md) API.
12+
> For situations where you want to "react" to triggers, check out the [listener](../listeners.md) API.
1313
1414
## useStore
1515

docs/framework/react/guides/submission-handling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function App() {
6464

6565
## Transforming data with Standard Schemas
6666

67-
While Tanstack Form provides [Standard Schema support](./validation.md) for validation, it does not preserve the Schema's output data.
67+
While Tanstack Form provides [Standard Schema support](../validation.md) for validation, it does not preserve the Schema's output data.
6868

6969
The value passed to the `onSubmit` function will always be the input data. To receive the output data of a Standard Schema, parse it in the `onSubmit` function:
7070

0 commit comments

Comments
 (0)