@tanstack/solid-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/solid-form",
|
3
|
-
"version": "0.19.
|
3
|
+
"version": "0.19.1",
|
4
4
|
"description": "Powerful, type-safe forms for Solid.",
|
5
5
|
"author": "tannerlinsley",
|
6
6
|
"license": "MIT",
|
@@ -38,7 +38,7 @@
|
|
38
38
|
},
|
39
39
|
"dependencies": {
|
40
40
|
"@tanstack/solid-store": "^0.3.1",
|
41
|
-
"@tanstack/form-core": "0.19.
|
41
|
+
"@tanstack/form-core": "0.19.1"
|
42
42
|
},
|
43
43
|
"peerDependencies": {
|
44
44
|
"solid-js": "^1.6.0"
|
@@ -402,7 +402,7 @@ describe('createField', () => {
|
|
402
402
|
onSubmit={(e) => {
|
403
403
|
e.preventDefault()
|
404
404
|
e.stopPropagation()
|
405
|
-
|
405
|
+
form.handleSubmit()
|
406
406
|
}}
|
407
407
|
>
|
408
408
|
<form.Field name="people">
|
@@ -496,7 +496,7 @@ describe('createField', () => {
|
|
496
496
|
onSubmit={(e) => {
|
497
497
|
e.preventDefault()
|
498
498
|
e.stopPropagation()
|
499
|
-
|
499
|
+
form.handleSubmit()
|
500
500
|
}}
|
501
501
|
>
|
502
502
|
<form.Field name="people">
|