@tanstack/preact-table 9.0.0-alpha.48 → 9.0.0-alpha.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/skills/preact/client-to-server/SKILL.md +1 -1
- package/skills/preact/compose-with-tanstack-form/SKILL.md +1 -1
- package/skills/preact/compose-with-tanstack-pacer/SKILL.md +1 -1
- package/skills/preact/compose-with-tanstack-query/SKILL.md +1 -1
- package/skills/preact/compose-with-tanstack-store/SKILL.md +1 -1
- package/skills/preact/compose-with-tanstack-virtual/SKILL.md +2 -2
- package/skills/preact/getting-started/SKILL.md +1 -1
- package/skills/preact/migrate-v8-to-v9/SKILL.md +1 -1
- package/skills/preact/production-readiness/SKILL.md +1 -1
- package/skills/preact/table-state/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/preact-table",
|
|
3
|
-
"version": "9.0.0-alpha.
|
|
3
|
+
"version": "9.0.0-alpha.49",
|
|
4
4
|
"description": "Headless UI for building powerful tables & datagrids for Preact.",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
],
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@tanstack/preact-store": "^0.13.1",
|
|
54
|
-
"@tanstack/table-core": "9.0.0-alpha.
|
|
54
|
+
"@tanstack/table-core": "9.0.0-alpha.49"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@preact/preset-vite": "^2.10.5",
|
|
58
|
-
"preact": "^10.29.
|
|
58
|
+
"preact": "^10.29.2"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"preact": ">=10"
|
|
@@ -11,7 +11,7 @@ description: >
|
|
|
11
11
|
type: composition
|
|
12
12
|
library: tanstack-table
|
|
13
13
|
framework: preact
|
|
14
|
-
library_version: '9.0.0-alpha.
|
|
14
|
+
library_version: '9.0.0-alpha.48'
|
|
15
15
|
requires:
|
|
16
16
|
- preact/table-state
|
|
17
17
|
- row-expanding
|
|
@@ -24,7 +24,7 @@ sources:
|
|
|
24
24
|
|
|
25
25
|
TanStack Table is headless — it does not virtualize rows or columns. For long lists, pair the table with TanStack Virtual.
|
|
26
26
|
|
|
27
|
-
> **Adapter status:** There is no published `@tanstack/preact-virtual` adapter as of `@tanstack/table` v9.0.0-alpha.
|
|
27
|
+
> **Adapter status:** There is no published `@tanstack/preact-virtual` adapter as of `@tanstack/table` v9.0.0-alpha.48. The two supported paths are:
|
|
28
28
|
>
|
|
29
29
|
> 1. **Use `@tanstack/virtual-core` directly.** The framework-agnostic `Virtualizer` class wrapped in a small Preact hook is the recommended path.
|
|
30
30
|
> 2. **Use `@tanstack/react-virtual` via `preact/compat`.** Works if your project already aliases `react` → `preact/compat`.
|