refactor(web): migrate legacy forms to TanStack Form (#30631)

This commit is contained in:
yyh
2026-01-06 20:18:27 +08:00
committed by GitHub
parent 64bfcbc4a9
commit 7beed12eab
9 changed files with 551 additions and 202 deletions

View File

@ -4,7 +4,7 @@ import type {
GetValuesOptions,
} from '../types'
import { useCallback } from 'react'
import { getTransformedValuesWhenSecretInputPristine } from '../utils'
import { getTransformedValuesWhenSecretInputPristine } from '../utils/secret-input'
import { useCheckValidated } from './use-check-validated'
export const useGetFormValues = (form: AnyFormApi, formSchemas: FormSchema[]) => {