-
-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: mention standard schema in basic-concepts
- Loading branch information
1 parent
3e5db25
commit aeac868
Showing
14 changed files
with
72 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
.../react/community/balastrongs-tutorials.md → ...k/react/community/balastrongs-tutorial.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,7 +81,7 @@ export class AppComponent { | |
// Do something with form data | ||
console.log(value) | ||
}, | ||
// Add a validator to support Zod usage in Form and Field | ||
// Add a validator to support Zod usage in Form and Field (no longer needed with [email protected] or higher) | ||
validatorAdapter: valibotValidator(), | ||
}) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,7 @@ export class AppComponent { | |
// Do something with form data | ||
console.log(value) | ||
}, | ||
// Add a validator to support Zod usage in Form and Field | ||
// Add a validator to support Zod usage in Form and Field (no longer needed with [email protected] or higher) | ||
validatorAdapter: zodValidator(), | ||
}) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ export default function App() { | |
// Do something with form data | ||
console.log(value) | ||
}, | ||
// Add a validator to support Valibot usage in Form and Field | ||
// Add a validator to support Valibot usage in Form and Field (no longer needed with [email protected] or higher) | ||
validatorAdapter: valibotValidator(), | ||
}) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ export default function App() { | |
// Do something with form data | ||
console.log(value) | ||
}, | ||
// Add a validator to support Zod usage in Form and Field | ||
// Add a validator to support Zod usage in Form and Field (no longer needed with [email protected] or higher) | ||
validatorAdapter: zodValidator(), | ||
validators: { | ||
onChange: userSchema, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ function App() { | |
// Do something with form data | ||
console.log(value) | ||
}, | ||
// Add a validator to support Valibot usage in Form and Field | ||
// Add a validator to support Valibot usage in Form and Field (no longer needed with [email protected] or higher) | ||
validatorAdapter: valibotValidator(), | ||
})) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ function App() { | |
// Do something with form data | ||
console.log(value) | ||
}, | ||
// Add a validator to support Zod usage in Form and Field | ||
// Add a validator to support Zod usage in Form and Field (no longer needed with [email protected] or higher) | ||
validatorAdapter: zodValidator(), | ||
})) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ const form = useForm({ | |
// Do something with form data | ||
alert(JSON.stringify(value)) | ||
}, | ||
// Add a validator to support Valibot usage in Form and Field | ||
// Add a validator to support Valibot usage in Form and Field (no longer needed with [email protected] or higher) | ||
validatorAdapter: valibotValidator(), | ||
}) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ const form = useForm({ | |
// Do something with form data | ||
alert(JSON.stringify(value)) | ||
}, | ||
// Add a validator to support Zod usage in Form and Field | ||
// Add a validator to support Zod usage in Form and Field (no longer needed with [email protected] or higher) | ||
validatorAdapter: zodValidator(), | ||
}) | ||
|