Skip to content

Commit 303bcd6

Browse files
authored
Merge branch 'main' into fix/toggle-all-rows-should-respect-row-selection-rules
2 parents 34d1711 + e172109 commit 303bcd6

File tree

284 files changed

+3103
-2877
lines changed

Some content is hidden

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

284 files changed

+3103
-2877
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- name: Feature Requests & Questions
3+
- name: 🤔 Feature Requests & Questions
44
url: https://github.com/TanStack/table/discussions
55
about: Please ask and answer questions here.
6-
- name: Community Chat
6+
- name: 💬 Community Chat
77
url: https://discord.gg/mQd7egN
88
about: A dedicated discord server hosted by TanStack
9+
- name: 🦋 TanStack Bluesky
10+
url: https://bsky.app/profile/tanstack.com
11+
about: Stay up to date with new releases of our libraries

.github/workflows/autofix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v5.0.0
21+
uses: actions/checkout@v6.0.1
2222
with:
2323
fetch-depth: 0
2424
- name: Setup Tools
2525
uses: tanstack/config/.github/setup@main
2626
- name: Fix formatting
27-
run: pnpm prettier:write
27+
run: pnpm format
2828
- name: Apply fixes
2929
uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a
3030
with:

.github/workflows/pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v5.0.0
26+
uses: actions/checkout@v6.0.1
2727
with:
2828
fetch-depth: 0
2929
- name: Start Nx Agents
3030
run: npx nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml"
3131
- name: Setup Tools
3232
uses: tanstack/config/.github/setup@main
3333
- name: Get base and head commits for `nx affected`
34-
uses: nrwl/nx-set-shas@v4.3.3
34+
uses: nrwl/nx-set-shas@v4.4.0
3535
with:
3636
main-branch-name: main
3737
- name: Run Checks
@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
steps:
4646
- name: Checkout
47-
uses: actions/checkout@v5.0.0
47+
uses: actions/checkout@v6.0.1
4848
with:
4949
fetch-depth: 0
5050
- name: Setup Tools
@@ -58,7 +58,7 @@ jobs:
5858
runs-on: ubuntu-latest
5959
steps:
6060
- name: Checkout
61-
uses: actions/checkout@v5.0.0
61+
uses: actions/checkout@v6.0.1
6262
with:
6363
fetch-depth: 0
6464
- name: Check Provenance

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: ci
1+
name: Release
22

33
on:
44
push:
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v5.0.0
26+
uses: actions/checkout@v6.0.1
2727
with:
2828
fetch-depth: 0
2929
- name: Start Nx Agents
@@ -44,4 +44,3 @@ jobs:
4444
title: 'ci: Version Packages'
4545
env:
4646
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

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

docs/api/core/table.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.md).
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 Def Guide](../../../guide/column-defs.md) 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

0 commit comments

Comments
 (0)