@formisch/solid 0.7.0 → 0.7.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/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -483,7 +483,7 @@ declare function getInput<TSchema extends Schema, TFieldPath extends RequiredPat
|
|
|
483
483
|
*
|
|
484
484
|
* @returns A submit event handler function to attach to the form element.
|
|
485
485
|
*/
|
|
486
|
-
declare function handleSubmit<TSchema extends Schema>(form: BaseFormStore<TSchema>, handler: SubmitHandler<TSchema>): (event: SubmitEvent) => void
|
|
486
|
+
declare function handleSubmit<TSchema extends Schema>(form: BaseFormStore<TSchema>, handler: SubmitHandler<TSchema>): (event: SubmitEvent) => Promise<void>;
|
|
487
487
|
//#endregion
|
|
488
488
|
//#region src/insert/insert.d.ts
|
|
489
489
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formisch/solid",
|
|
3
3
|
"description": "The modular and type-safe form library for SolidJS",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Fabian Hiller",
|
|
7
7
|
"homepage": "https://formisch.dev",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"valibot": "^1.1.0",
|
|
64
64
|
"vitest": "3.2.4",
|
|
65
65
|
"@formisch/core": "0.4.2",
|
|
66
|
-
"@formisch/methods": "0.5.
|
|
66
|
+
"@formisch/methods": "0.5.1"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"solid-js": "^1.6.0",
|