Skip to content

Commit 983b082

Browse files
committed
feat: added options in reportValidity
1 parent 43930b9 commit 983b082

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/sveltekit/index.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,12 @@ export function formfail(issues: Record<string, string>): never {
6666
*
6767
* Usage: `<form use:enhance={reportValidity} />`
6868
*/
69-
export function reportValidity(): ReturnType<SubmitFunction> {
69+
export function reportValidity(options?: {
70+
reset?: boolean;
71+
invalidateAll?: boolean;
72+
}): ReturnType<SubmitFunction> {
7073
return ({ update, result, formElement }) => {
71-
update();
74+
update(options);
7275

7376
if (result.type === "failure" && typeof result.data?.issues === "object") {
7477
const issues = result.data.issues as Record<string, fg.ValidationIssue>;

0 commit comments

Comments
 (0)