Skip to content

Commit 7a5fb0f

Browse files
Merge branch 'main' into alpha
2 parents d2c8076 + f159b04 commit 7a5fb0f

File tree

80 files changed

+9026
-2110
lines changed

Some content is hidden

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

80 files changed

+9026
-2110
lines changed

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 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 example](../../../framework/react/examples/editable-data).
9393
9494
### `state`
9595

docs/config.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,10 @@
617617
{
618618
"to": "framework/react/examples/custom-features",
619619
"label": "Custom Features"
620+
},
621+
{
622+
"to": "framework/react/examples/query-router-search-params",
623+
"label": "Query Router Search Params"
620624
}
621625
]
622626
},

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ table.setOptions(prev => ({
131131

132132
### On State Change Callbacks
133133

134-
So far, we have seen the `on[State]Change` and `onStateChange` table options work to "hoist" the table state changes into our own state management. However, there are a few things about these using these options that you should be aware of.
134+
So far, we have seen the `on[State]Change` and `onStateChange` table options work to "hoist" the table state changes into our own state management. However, there are a few things about using these options that you should be aware of.
135135

136136
#### 1. **State Change Callbacks MUST have their corresponding state value in the `state` option**.
137137

@@ -201,4 +201,4 @@ const [sorting, setSorting] = React.useState<SortingState[]>([
201201
desc: true,
202202
}
203203
])
204-
```
204+
```

docs/guide/column-filtering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Filtering comes in 2 flavors: Column Filtering and Global Filtering.
2525

2626
This guide will focus on column filtering, which is a filter that is applied to a single column's accessor value.
2727

28-
TanStack table supports both both client-side and manual server-side filtering. This guide will go over how to implement and customize both, and help you decide which one is best for your use-case.
28+
TanStack table supports both client-side and manual server-side filtering. This guide will go over how to implement and customize both, and help you decide which one is best for your use-case.
2929

3030
### Client-Side vs Server-Side Filtering
3131

examples/angular/filters/src/app/app.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@if (!header.isPlaceholder) {
1111
<div
1212
[ngClass]="{
13-
'cursor-pointer select-none': header.column.getCanSort()
13+
'cursor-pointer select-none': header.column.getCanSort(),
1414
}"
1515
>
1616
<ng-container

examples/qwik/basic/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
8-
"build": "tsc && vite build",
8+
"build": "vite build",
99
"preview": "serve dist"
1010
},
1111
"devDependencies": {
12-
"@builder.io/qwik": "^1.5.2",
12+
"@builder.io/qwik": "^1.6.0",
1313
"serve": "^14.2.3",
1414
"typescript": "5.4.5",
1515
"vite": "^5.3.1"

examples/qwik/filters/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
8-
"build": "tsc && vite build",
8+
"build": "vite build",
99
"preview": "serve dist"
1010
},
1111
"devDependencies": {
12-
"@builder.io/qwik": "^1.5.2",
12+
"@builder.io/qwik": "^1.6.0",
1313
"@faker-js/faker": "^8.4.1",
1414
"serve": "^14.2.3",
1515
"typescript": "5.4.5",

examples/qwik/row-selection/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
8-
"build": "tsc && vite build",
8+
"build": "vite build",
99
"preview": "serve dist"
1010
},
1111
"devDependencies": {
12-
"@builder.io/qwik": "^1.5.2",
12+
"@builder.io/qwik": "^1.6.0",
1313
"@faker-js/faker": "^8.4.1",
1414
"serve": "^14.2.3",
1515
"typescript": "5.4.5",

examples/qwik/sorting/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
8-
"build": "tsc && vite build",
8+
"build": "vite build",
99
"preview": "serve dist"
1010
},
1111
"devDependencies": {
12-
"@builder.io/qwik": "^1.5.2",
12+
"@builder.io/qwik": "^1.6.0",
1313
"@faker-js/faker": "^8.4.1",
1414
"serve": "^14.2.3",
1515
"typescript": "5.4.5",
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
.DS_Store
3+
dist
4+
dist-ssr
5+
*.local

0 commit comments

Comments
 (0)