@formisch/svelte 0.5.0 → 0.5.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.
|
@@ -125,7 +125,7 @@ declare function getInput<TSchema extends Schema, TFieldPath extends RequiredPat
|
|
|
125
125
|
*
|
|
126
126
|
* @returns A submit event handler function to attach to the form element.
|
|
127
127
|
*/
|
|
128
|
-
declare function handleSubmit<TSchema extends Schema>(form: BaseFormStore<TSchema>, handler: SubmitHandler<TSchema>): (event: SubmitEvent) => void
|
|
128
|
+
declare function handleSubmit<TSchema extends Schema>(form: BaseFormStore<TSchema>, handler: SubmitHandler<TSchema>): (event: SubmitEvent) => Promise<void>;
|
|
129
129
|
//#endregion
|
|
130
130
|
//#region src/insert/insert.d.ts
|
|
131
131
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formisch/svelte",
|
|
3
3
|
"description": "The modular and type-safe form library for Svelte",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Fabian Hiller",
|
|
7
7
|
"homepage": "https://formisch.dev",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"typescript-eslint": "^8.43.0",
|
|
53
53
|
"vite": "^7.1.5",
|
|
54
54
|
"@formisch/core": "0.4.2",
|
|
55
|
-
"@formisch/methods": "0.5.
|
|
55
|
+
"@formisch/methods": "0.5.1"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"svelte": "^5.29.0",
|