Skip to content

Commit 5f3fca4

Browse files
committed
docs: fix links
commit b7329a4 Author: Tanner Linsley <[email protected]> Date: Fri May 23 13:38:26 2025 -0600 docs: fix relative links
1 parent 66fbe3a commit 5f3fca4

23 files changed

+7361
-15954
lines changed

docs/api/core/cell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Cell APIs
33
---
44

5-
These are **core** options and API properties for all cells. More options and API properties are available for other [table features](../guide/features).
5+
These are **core** options and API properties for all cells. More options and API properties are available for other [table features](../../../guide/features.md).
66

77
## Cell API
88

docs/api/core/column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Column APIs
33
---
44

5-
These are **core** options and API properties for all columns. More options and API properties are available for other [table features](../guide/features).
5+
These are **core** options and API properties for all columns. More options and API properties are available for other [table features](../../../guide/features.md).
66

77
## Column API
88

docs/api/core/header-group.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: HeaderGroup APIs
33
---
44

5-
These are **core** options and API properties for all header groups. More options and API properties may be available for other [table features](../guide/features).
5+
These are **core** options and API properties for all header groups. More options and API properties may be available for other [table features](../../../guide/features.md).
66

77
## Header Group API
88

@@ -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) objects that belong to this header group
33+
An array of [Header](../../../api/core/header.md) objects that belong to this header group

docs/api/core/header.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Header APIs
33
---
44

5-
These are **core** options and API properties for all headers. More options and API properties may be available for other [table features](../guide/features).
5+
These are **core** options and API properties for all headers. More options and API properties may be available for other [table features](../../../guide/features.md).
66

77
## Header API
88

@@ -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) object
41+
The header's associated [Column](../../../api/core/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) object
49+
The header's associated [HeaderGroup](../../../api/core/header-group.md) object
5050

5151
### `subHeaders`
5252

docs/api/core/row.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Row APIs
33
---
44

5-
These are **core** options and API properties for all rows. More options and API properties are available for other [table features](../guide/features).
5+
These are **core** options and API properties for all rows. More options and API properties are available for other [table features](../../../guide/features.md).
66

77
## Row API
88

@@ -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) for the row.
123+
Returns all of the [Cells](../../../api/core/cell.md) for the row.

docs/api/core/table.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Table APIs
33
---
44

5-
## `createAngularTable` / `useReactTable` / `createSolidTable` / `useQwikTable` / `useVueTable` / `createSvelteTable`
5+
## `useReactTable` / `createSolidTable` / `useQwikTable` / `useVueTable` / `createSvelteTable`
66

77
```tsx
88
type useReactTable = <TData extends AnyData>(
@@ -14,7 +14,7 @@ These functions are used to create a table. Which one you use depends on which f
1414
1515
## Options
1616
17-
These are **core** options and API properties for the table. More options and API properties are available for other [table features](../guide/features).
17+
These are **core** options and API properties for the table. More options and API properties are available for other [table features](../../../guide/features.md).
1818
1919
### `data`
2020
@@ -34,7 +34,7 @@ When the `data` option changes reference (compared via `Object.is`), the table w
3434
type columns = ColumnDef<TData>[]
3535
```
3636
37-
The array of column defs to use for the table. See the [Column Defs Guide](../../docs/guide/column-defs) for more information on creating column definitions.
37+
The array of column defs to use for the table. See the [Column Def Guide](../../../guide/column-defs.md) for more information on creating column definitions.
3838
3939
### `defaultColumn`
4040
@@ -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 example](../framework/react/examples/editable-data).
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.
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](../api/features/column-faceting)
11-
- [Global Faceting](../api/features/global-faceting)
12-
- [Column Filtering](../api/features/column-filtering)
13-
- [Global Filtering](../api/features/global-filtering)
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)

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 APIs](../api/features/column-filtering) 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](../../features/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](../api/features/column-pinning)
11-
- [Row Pinning](../api/features/row-pinning)
10+
- [Column Pinning](../../features/column-pinning.md)
11+
- [Row Pinning](../../features/row-pinning.md)

docs/api/features/row-selection.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export type RowSelectionTableState = {
1515
}
1616
```
1717
18-
By default, the row selection state uses the index of each row as the row identifiers. Row selection state can instead be tracked with a custom unique row id by passing in a custom [getRowId](../core/table.md#getrowid) function to the the table.
18+
By default, the row selection state uses the index of each row as the row identifiers. Row selection state can instead be tracked with a custom unique row id by passing in a custom [getRowId](../../core/table.md#getrowid) function to the the table.
1919
2020
## Table Options
2121
@@ -113,8 +113,6 @@ getIsSomeRowsSelected: () => boolean
113113
114114
Returns whether or not any rows in the table are selected.
115115
116-
NOTE: Returns `false` if all rows are selected.
117-
118116
### `getIsSomePageRowsSelected`
119117
120118
```tsx

0 commit comments

Comments
 (0)