Skip to content

Commit 0b3952d

Browse files
authored
Fix form arrays (#2041)
* fix: form arrays now work again * chore: add changeset
1 parent 660319b commit 0b3952d

File tree

12 files changed

+65
-55
lines changed

12 files changed

+65
-55
lines changed

.changeset/tall-pandas-wear.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
'@tanstack/angular-form': patch
3+
'@tanstack/svelte-form': patch
4+
'@tanstack/react-form': patch
5+
'@tanstack/solid-form': patch
6+
'@tanstack/form-core': patch
7+
'@tanstack/vue-form': patch
8+
---
9+
10+
form arrays now work again

examples/react/next-server-actions-zod/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"dependencies": {
1111
"@tanstack/react-form-nextjs": "^1.28.2",
12-
"@tanstack/react-store": "^0.8.0",
12+
"@tanstack/react-store": "^0.8.1",
1313
"next": "16.0.5",
1414
"react": "^19.0.0",
1515
"react-dom": "^19.0.0",

examples/react/next-server-actions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"dependencies": {
1111
"@tanstack/react-form-nextjs": "^1.28.2",
12-
"@tanstack/react-store": "^0.8.0",
12+
"@tanstack/react-store": "^0.8.1",
1313
"next": "16.0.5",
1414
"react": "^19.0.0",
1515
"react-dom": "^19.0.0"

examples/react/remix/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@remix-run/react": "^2.17.1",
1313
"@remix-run/serve": "^2.17.1",
1414
"@tanstack/react-form-remix": "^1.28.2",
15-
"@tanstack/react-store": "^0.8.0",
15+
"@tanstack/react-store": "^0.8.1",
1616
"isbot": "^5.1.30",
1717
"react": "^19.0.0",
1818
"react-dom": "^19.0.0"

examples/react/tanstack-start/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@tanstack/react-form-start": "^1.28.2",
1515
"@tanstack/react-router": "^1.134.9",
1616
"@tanstack/react-start": "^1.134.9",
17-
"@tanstack/react-store": "^0.8.0",
17+
"@tanstack/react-store": "^0.8.1",
1818
"react": "^19.0.0",
1919
"react-dom": "^19.0.0"
2020
},

packages/angular-form/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"src"
4343
],
4444
"dependencies": {
45-
"@tanstack/angular-store": "^0.8.0",
45+
"@tanstack/angular-store": "^0.8.1",
4646
"@tanstack/form-core": "workspace:*",
4747
"tslib": "^2.8.1"
4848
},

packages/form-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"dependencies": {
5454
"@tanstack/devtools-event-client": "^0.4.0",
5555
"@tanstack/pacer-lite": "^0.1.1",
56-
"@tanstack/store": "^0.8.0"
56+
"@tanstack/store": "^0.8.1"
5757
},
5858
"devDependencies": {
5959
"arktype": "^2.1.22",

packages/react-form/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
],
5353
"dependencies": {
5454
"@tanstack/form-core": "workspace:*",
55-
"@tanstack/react-store": "^0.8.0"
55+
"@tanstack/react-store": "^0.8.1"
5656
},
5757
"devDependencies": {
5858
"@types/react": "^19.0.7",

packages/solid-form/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
],
5757
"dependencies": {
5858
"@tanstack/form-core": "workspace:*",
59-
"@tanstack/solid-store": "^0.8.0"
59+
"@tanstack/solid-store": "^0.8.1"
6060
},
6161
"devDependencies": {
6262
"solid-js": "^1.9.9",

packages/svelte-form/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
],
4242
"dependencies": {
4343
"@tanstack/form-core": "workspace:*",
44-
"@tanstack/svelte-store": "^0.8.0"
44+
"@tanstack/svelte-store": "^0.9.1"
4545
},
4646
"devDependencies": {
4747
"@sveltejs/package": "^2.5.3",

0 commit comments

Comments
 (0)