Skip to content

Commit 965b55e

Browse files
committed
docs: fix links
1 parent 5f3fca4 commit 965b55e

37 files changed

+10295
-1590
lines changed

docs/api/core/header-group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ The depth of the header group, zero-indexed based.
3030
type headers = Header<TData>[]
3131
```
3232
33-
An array of [Header](../../../api/core/header.md) objects that belong to this header group
33+
An array of [Header](../header.md) objects that belong to this header group

docs/api/core/header.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ The depth of the header, zero-indexed based.
3838
column: Column<TData>
3939
```
4040

41-
The header's associated [Column](../../../api/core/column.md) object
41+
The header's associated [Column](../column.md) object
4242

4343
### `headerGroup`
4444

4545
```tsx
4646
headerGroup: HeaderGroup<TData>
4747
```
4848

49-
The header's associated [HeaderGroup](../../../api/core/header-group.md) object
49+
The header's associated [HeaderGroup](../header-group.md) object
5050

5151
### `subHeaders`
5252

docs/api/core/row.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ An array of the original subRows as returned by the `options.getSubRows` option.
120120
type getAllCells = () => Cell<TData>[]
121121
```
122122
123-
Returns all of the [Cells](../../../api/core/cell.md) for the row.
123+
Returns all of the [Cells](../cell.md) for the row.

docs/api/core/table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ declare module '@tanstack/table-core' {
8989
}
9090
```
9191

92-
> 🧠 Think of this option as an arbitrary "context" for your table. This is a great way to pass arbitrary data or functions to your table without having to pass it to every thing the table touches. A good example is passing a locale object to your table to use for formatting dates, numbers, etc or even a function that can be used to update editable data like in the [editable-data](../../../framework/react/examples/editable-data) example.
92+
> 🧠 Think of this option as an arbitrary "context" for your table. This is a great way to pass arbitrary data or functions to your table without having to pass it to every thing the table touches. A good example is passing a locale object to your table to use for formatting dates, numbers, etc or even a function that can be used to update editable data like in the [editable-data](https://github.com/TanStack/table/tree/main/examples/react/editable-data) example.
9393
9494
### `state`
9595

docs/api/features/filters.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ id: filters
77

88
The Filtering API docs are now split into multiple API doc pages:
99

10-
- [Column Faceting](../../features/column-faceting.md)
11-
- [Global Faceting](../../features/global-faceting.md)
12-
- [Column Filtering](../../features/column-filtering.md)
13-
- [Global Filtering](../../features/global-filtering.md)
10+
- [Column Faceting](../../../guide/column-faceting.md)
11+
- [Global Faceting](../../../guide/global-faceting.md)
12+
- [Column Filtering](../../../guide/column-filtering.md)
13+
- [Global Filtering](../../../guide/global-filtering.md)

docs/api/features/global-filtering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface GlobalFilterTableState {
2525

2626
## Filter Functions
2727

28-
You can use the same filter functions that are available for column filtering for global filtering. See the [Column Filtering](../../features/column-filtering.md) to learn more about filter functions.
28+
You can use the same filter functions that are available for column filtering for global filtering. See the [Column Filtering](../../../guide/column-filtering.md) to learn more about filter functions.
2929

3030
#### Using Filter Functions
3131

docs/api/features/pinning.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ id: pinning
77

88
The pinning apis are now split into multiple api pages:
99

10-
- [Column Pinning](../../features/column-pinning.md)
11-
- [Row Pinning](../../features/row-pinning.md)
10+
- [Column Pinning](../../../guide/column-pinning.md)
11+
- [Row Pinning](../../../guide/row-pinning.md)

docs/framework/react/guide/table-state.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ title: Table State (React) Guide
66

77
Want to skip to the implementation? Check out these examples:
88

9-
- [kitchen sink](../examples/kitchen-sink)
10-
- [fully controlled](../examples/fully-controlled)
9+
- [kitchen sink](../../examples/kitchen-sink)
10+
- [fully controlled](../../examples/fully-controlled)
1111

1212
## Table State (React) Guide
1313

docs/guide/cells.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ title: Cells Guide
44

55
## API
66

7-
[Cell API](../api/core/cell)
7+
[Cell API](../../api/core/cell)
88

99
## Cells Guide
1010

1111
This quick guide will discuss the different ways you can retrieve and interact with `cell` objects in TanStack Table.
1212

1313
### Where to Get Cells From
1414

15-
Cells come from [Rows](../guide/rows). Enough said, right?
15+
Cells come from [Rows](../../guide/rows). Enough said, right?
1616

1717
There are multiple `row` instance APIs you can use to retrieve the appropriate cells from a row depending on which features you are using. Most commonly, you will use the `row.getAllCells` or `row.getVisibleCells` APIs (if you are using column visibility features), but there are a handful of other similar APIs that you can use.
1818

@@ -32,7 +32,7 @@ During grouping or aggregation features, the `cell.id` will have additional stri
3232

3333
#### Cell Parent Objects
3434

35-
Every cell stores a reference to its parent [row](../guide/rows) and [column](../guide/columns) objects.
35+
Every cell stores a reference to its parent [row](../../guide/rows) and [column](../../guide/columns) objects.
3636

3737
#### Access Cell Values
3838

docs/guide/column-defs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Columns Guide
44

55
## API
66

7-
[Table API](../../api/core/table)
7+
[Table API](../../api/core/table.md)
88

99
## Column Definitions Guide
1010

@@ -242,7 +242,7 @@ columnHelper.accessor('firstName', {
242242

243243
## Aggregated Cell Formatting
244244

245-
For more info on aggregated cells, see [grouping](../grouping).
245+
For more info on aggregated cells, see [grouping](../grouping.md).
246246

247247
## Header & Footer Formatting
248248

0 commit comments

Comments
 (0)