@tanstack/react-form 0.19.0 → 0.19.1
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/react-form",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.1",
|
|
4
4
|
"description": "Powerful, type-safe forms for React.",
|
|
5
5
|
"author": "tannerlinsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@tanstack/react-store": "^0.3.1",
|
|
44
44
|
"decode-formdata": "^0.4.0",
|
|
45
45
|
"rehackt": "^0.0.3",
|
|
46
|
-
"@tanstack/form-core": "0.19.
|
|
46
|
+
"@tanstack/form-core": "0.19.1"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"react": "^17.0.0 || ^18.0.0"
|
|
@@ -532,7 +532,7 @@ describe('useField', () => {
|
|
|
532
532
|
onSubmit={(e) => {
|
|
533
533
|
e.preventDefault()
|
|
534
534
|
e.stopPropagation()
|
|
535
|
-
|
|
535
|
+
form.handleSubmit()
|
|
536
536
|
}}
|
|
537
537
|
>
|
|
538
538
|
<div>
|
|
@@ -624,7 +624,7 @@ describe('useField', () => {
|
|
|
624
624
|
onSubmit={(e) => {
|
|
625
625
|
e.preventDefault()
|
|
626
626
|
e.stopPropagation()
|
|
627
|
-
|
|
627
|
+
form.handleSubmit()
|
|
628
628
|
}}
|
|
629
629
|
>
|
|
630
630
|
<form.Field name="people">
|
|
@@ -720,7 +720,7 @@ describe('useField', () => {
|
|
|
720
720
|
onSubmit={(e) => {
|
|
721
721
|
e.preventDefault()
|
|
722
722
|
e.stopPropagation()
|
|
723
|
-
|
|
723
|
+
form.handleSubmit()
|
|
724
724
|
}}
|
|
725
725
|
>
|
|
726
726
|
<form.Field name="people">
|