mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
refactor(Form)!: drop explicit support for zod and valibot (#3617)
This commit is contained in:
@@ -59,13 +59,6 @@ describe('Form', () => {
|
||||
})
|
||||
}
|
||||
],
|
||||
['valibot safeParser', {
|
||||
schema: valibot.safeParser(valibot.object({
|
||||
email: valibot.string(),
|
||||
password: valibot.pipe(valibot.string(), valibot.minLength(8, 'Must be at least 8 characters'))
|
||||
}))
|
||||
}
|
||||
],
|
||||
['superstruct', {
|
||||
schema: object({
|
||||
email: nonempty(string()),
|
||||
|
||||
Reference in New Issue
Block a user