@tanstack/vue-form 0.18.1 → 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/vue-form",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.19.1",
|
4
4
|
"description": "Powerful, type-safe forms for Vue.",
|
5
5
|
"author": "tannerlinsley",
|
6
6
|
"license": "MIT",
|
@@ -34,7 +34,7 @@
|
|
34
34
|
],
|
35
35
|
"dependencies": {
|
36
36
|
"@tanstack/vue-store": "^0.3.1",
|
37
|
-
"@tanstack/form-core": "0.
|
37
|
+
"@tanstack/form-core": "0.19.1"
|
38
38
|
},
|
39
39
|
"devDependencies": {
|
40
40
|
"@vitejs/plugin-vue": "^5.0.4",
|
@@ -270,7 +270,7 @@ describe('useField', () => {
|
|
270
270
|
onSubmit={(e) => {
|
271
271
|
e.preventDefault()
|
272
272
|
e.stopPropagation()
|
273
|
-
|
273
|
+
form.handleSubmit()
|
274
274
|
}}
|
275
275
|
>
|
276
276
|
<form.Field name="people">
|
@@ -370,7 +370,7 @@ describe('useField', () => {
|
|
370
370
|
onSubmit={(e) => {
|
371
371
|
e.preventDefault()
|
372
372
|
e.stopPropagation()
|
373
|
-
|
373
|
+
form.handleSubmit()
|
374
374
|
}}
|
375
375
|
>
|
376
376
|
<form.Field name="people">
|