-
-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Type problems after update resolver to 1.3.0 #97
Comments
👋🏻 Hi |
I forgot. Sorry! |
Thanks! You get this error because your type MySchema = yup.InferType<typeof schema>; You can see You've a second TS error because you're using TypeScript enum but const schema = object({
exibitionMode: string().oneOf(["infinity", "limited"]).required(),
});
type Schema = InferType<typeof schema>;
// Schema['exibitionMode'] = string instead of 'infinity' | 'limited' |
|
|
I don't know why but with version 1.2.0 I'm not seeing those problems. |
@william-hotmart with version 1.2.0, types was wrong see above ⬇️ It returns multiples EDIT: I've an idea to improve this :) |
Yeah, I see! Do I just put it in the schema like |
Yes you can as a workaround solution |
Ok! Thanks 😄 |
i have some type errors too, and after fixing some of it i ended up having this error which i don't know how to solve: |
@vtrphan could you provide a codesandbox please ? |
i can't quite reproduce it in codeandsandbox, but i have included the schema definitions in a small snippet, and below is one of the errors i got: Schema definition: https://codesandbox.io/s/testhookformresolvers-meelj |
@jorisre I'm facing same problem as @vtrphan I think this is an issue with type definition. This happened just right after the update. const schema = yup.object().shape({
email: yup
.string()
.email('Please enter a valid email address')
.required('Please enter your email.'),
password: yup
.string()
.required('Please enter your password.')
.min(6, 'Password is too short!')
.max(40, 'Password is too long!'),
role: yup
.string()
.required('Please select a role.')
.nullable(),
});
interface FormInterface {
email: string;
password: string;
role: string;
}
const LoginForm = React.memo((props: LoginFormProps) => {
const { control, handleSubmit, errors } = useForm<FormInterface>({
resolver: yupResolver(schema),
}); Error when hovering on |
@seifsg Thanks for reporting. I'll fix it tonight |
@seifsg thanks for reporting |
Fixed in 1.3.2 Any feedback appreciated :) |
What a coincidence, I just encountered this exact same issue on a new project, 30 minutes ago. Thank you for your quick response and fix, it works now! 💪 |
Hey! I had the same issue and can confirm it's now fixed. However, I am seeing this error message when running unit tests.
Has something else changed since |
@mrlubos My solution to this problem was to the code below in my jest.config file
I don't know if is right, but it worked |
@mrlubos Yes since 1.3.0 something change in the module's output that's why you get this error. You can use the solution suggested by @william-hotmart or try the v2 beta, more info: #71 (comment) |
@william-hotmart @jorisre Thanks both! Will this new configuration be necessary in v2? |
* test: add components test to ensure TypeScript is working as expected Related to #97 * chore: improve zod resolvers types * chore(eslint): remove warnings * test: add severals tests & improve typings * chore: setup compressed-size * test: update describe
@jorisre the implication is that you made a breaking change, albeit unintentional, in a minor version, and that you're not planning to fix it in the v1 line. Can you confirm? (semver would dictate that you revert back to v1.2.x and publish it as a v1.3 latest, at the very least) |
Hi @ljharb 👋🏻 If we revert back to v1.2.x a new problem will occur for users which use webpacker. The V2 fix all of these issues. We are running the V2 beta since months with success, I think we can apply the same fix on the version 1. I keep an eye on this issue and I'll fix V1 on the weekend As a reminder:
|
👋🏻 |
* feat: V2 init BREAKING CHANGE: there will be some breaking changes in the next versions * feat: improve modules support * fix: yup resolver typescript errors * Fix: vest validate all criteria + better TypeSript support + add tests * test: add components test to ensure TypeScript is working as expected Related to #97 * chore: improve zod resolvers types * chore(eslint): remove warnings * test: add severals tests & improve typings * chore: setup compressed-size * test: update describe * feat: add Zod sync validation (#114) * feat: add Joi sync validation (#116) * feat: add Joi sync validation * fix(joi): sync error * test: add validateAllCriteria test * test(joi): update test description * feat: add Yup sync validation (#115) * feat: add Yup sync validation * test(zod): add tests * test(zod): update tests * test(yup): add validateAllCriteria test * feat: add Vest sync validation + update to v3 (#117) * feat: update to react-hook-form v7 BREAKING CHANGE: Require react-hook-form >= 7 * chore: fix typescript error (#123) * chore: update deps * chore: fix TypeScript error * refactor: replace deprecated transformToNestObject (#125) * fix: pass down Joi context (#124) * fix: zod union error + reduce size (#126) * test: extract fixtures * fix: zod resolver union error + reduce resolver size * feat: add error's ref (#127) * feat: add error's ref * test: add error's ref + extract fixtures * test: add nested test * refactor: rename toNestObject to toNestError * Reduce superstruct resolver size (#128) * test: extract test's fixtures * test: jest fixtures config * perf: reduce superstruct resolver size * feat: add error's ref * test: add error's ref + extract fixtures * test: add nested test * refactor: rename toNestObject to toNestError * refactor: remove duplicate line * chore: update superstruct peer dep * perf: reduce vest resolver size (#129) * test: extract test's fixtures * test: jest fixtures config * perf: reduce superstruct resolver size * feat: add error's ref * test: add error's ref + extract fixtures * test: add nested test * refactor: rename toNestObject to toNestError * refactor: remove duplicate line * perf: recude vest resolver bundle size * perf: reduce joi resolver's size (#131) * perf: reduce Joi resolver's size * perf: reduce Vest resolver's size * perf: reduce yup resolver's size (#130) * refactor: remove convertArrayToPathName (#132) * perf: reduce joi and yup bundle size (#134) * fix(types): add Lazy schema support to resolver * docs: v2 doc (#136)
I am getting this error in 2.8.1 again. 2.8.0 is fine. |
Can you open a new issue with a reproductible example please? |
Reproducible example here: |
Hello! I'm facing something like this. Error Message: Type 'Control<FormData, object>' cannot be assigned to type 'Control<any, any>'. `import React from 'react'; type FormData = { const schema = yup.object({ export function Form() { function handleUserRegister(data: FormData) { } return (
) Below you can see the index page, where I created the type Props: `import React from 'react'; type Props = InputProps & { import { Error } from './style'; export function ControlledInput({ control, name, error, ...rest }: Props){
}` |
I'm also getting a similar error while working with material UI and RHF useController.
|
same error |
Work around is adding
Same. My error message:
Code: import type { FC } from 'react';
import { yupResolver } from '@hookform/resolvers/yup';
import { TextField } from '@mui/material';
import Head from 'next/head';
import { useForm, Controller } from 'react-hook-form';
import type { SubmitHandler } from 'react-hook-form';
import * as yup from 'yup';
interface IFormInputs {
email: string;
password: string;
}
const schema = yup.object().shape({
email: yup.string().email(),
password: yup.string().min(4).max(20).required(),
});
const Home: FC = () => {
const {
register,
control,
handleSubmit,
watch,
formState: { errors },
} = useForm<IFormInputs>({
resolver: yupResolver(schema),
});
const onSubmit: SubmitHandler<IFormInputs> = (data) => console.log('data submitted: ', data);
console.log(watch('email'));
console.log('errors are', errors);
return (
<div>
<Head>
<title>ReceitaClient</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
<h1>
Welcome to <a href="https://nextjs.org">Next.js!</a>
</h1>
<p>
Get started by editing <code>pages/index.js</code>
</p>
<form onSubmit={handleSubmit(onSubmit)}>
<Controller
name="email"
control={control}
defaultValue="example@dev.com"
render={({ field }) => (
<TextField
{...field}
label="Email"
variant="outlined"
error={!!errors.email}
helperText={errors.email ? errors.email?.message : ''}
fullWidth
margin="dense"
/>
)}
/>
<br />
<Controller
name="password"
control={control}
defaultValue=""
render={({ field }) => (
<TextField
{...field}
type="password"
label="Password"
variant="outlined"
error={!!errors.password}
helperText={errors.password ? errors.password?.message : ''}
fullWidth
margin="dense"
/>
)}
/>
<input type="submit" />
</form>
</main>
</div>
);
};
export default Home; My dependencies:
|
After update @hookform/resolvers to the version 1.3.0, this code above no longer works.
The TS compiler points out the error:
If I comment the lines of exibitionMode and colorBackground the error disappears.
This is the code that I'm working with
The text was updated successfully, but these errors were encountered: