react-hook-form / codemod

Migrate React Hook Form V6 to V7 made simple.
MIT License
26 stars 7 forks source link

npx @hookform/codemod v7/update-register not working for material ui #13

Open aubreyzulu opened 2 years ago

aubreyzulu commented 2 years ago

Describe the bug A clear and concise description of what the bug is.

The npx @hookform/codemod v7/update-register does not update material UI textfield with <TextField disabled fullWidth margin="normal" name="name" size="small" type="text" variant="outlined" error={!!errors.name} inputRef={register({ required: true })} /> Only works for `-

To Reproduce Steps to reproduce the behavior

Expected behavior A clear and concise description of what you expected to happen.

when I run npx @hookform/codemod v7/update-register it should update matatrial UI textfield input from <TextField disabled fullWidth margin="normal" name="name" size="small" type="text" variant="outlined" error={!!errors.name} inputRef={register({ required: true })} /> To <TextField disabled fullWidth margin="normal" size="small" type="text" variant="outlined" error={!!errors.name} {...register("name",{ required: true })} />

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information):

Additional context Add any other context about the problem here.

jorisre commented 2 years ago

Same as https://github.com/react-hook-form/codemod/issues/9

Sorry we can't do that