We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43930b9 commit 983b082Copy full SHA for 983b082
src/sveltekit/index.ts
@@ -66,9 +66,12 @@ export function formfail(issues: Record<string, string>): never {
66
*
67
* Usage: `<form use:enhance={reportValidity} />`
68
*/
69
-export function reportValidity(): ReturnType<SubmitFunction> {
+export function reportValidity(options?: {
70
+ reset?: boolean;
71
+ invalidateAll?: boolean;
72
+}): ReturnType<SubmitFunction> {
73
return ({ update, result, formElement }) => {
- update();
74
+ update(options);
75
76
if (result.type === "failure" && typeof result.data?.issues === "object") {
77
const issues = result.data.issues as Record<string, fg.ValidationIssue>;
0 commit comments