feat: add checkbox list

This commit is contained in:
yessenia
2025-09-28 11:45:12 +08:00
parent 4d49db0ff9
commit 3edf1e2f59
9 changed files with 249 additions and 66 deletions

View File

@ -12,7 +12,7 @@ export const useGetFormValues = (form: AnyFormApi, formSchemas: FormSchema[]) =>
const getFormValues = useCallback((
{
needCheckValidatedValues,
needCheckValidatedValues = true,
needTransformWhenSecretFieldIsPristine,
}: GetValuesOptions,
) => {
@ -20,7 +20,7 @@ export const useGetFormValues = (form: AnyFormApi, formSchemas: FormSchema[]) =>
if (!needCheckValidatedValues) {
return {
values,
isCheckValidated: false,
isCheckValidated: true,
}
}