Skip to content
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

chore(mantine): downgrade mantine versions #2869

Merged
merged 1 commit into from Oct 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/rotten-monkeys-swim.md
@@ -0,0 +1,5 @@
---
"@pankod/refine-mantine": patch
---

chore: @mantine/\* package version fixed to 5.5.6 due to [useForm issue](https://github.com/mantinedev/mantine/pull/2758)
10 changes: 5 additions & 5 deletions packages/mantine/package.json
Expand Up @@ -42,10 +42,10 @@
},
"dependencies": {
"@emotion/react": "^11.8.2",
"@mantine/core": "^5.2.3",
"@mantine/hooks": "^5.2.3",
"@mantine/form": "^5.2.3",
"@mantine/notifications": "^5.2.3",
"@mantine/core": "5.5.6",
"@mantine/hooks": "5.5.6",
"@mantine/form": "5.5.6",
"@mantine/notifications": "5.5.6",
"@pankod/refine-ui-types": "^0.14.0",
"dayjs": "^1.10.7",
"react-markdown": "^6.0.1",
Expand All @@ -64,4 +64,4 @@
"publishConfig": {
"access": "public"
}
}
}
2 changes: 1 addition & 1 deletion packages/mantine/src/components/pages/auth/index.tsx
Expand Up @@ -10,7 +10,7 @@ import {
UpdatePasswordPage,
} from "./components";

export type FormPropsType = UseFormInput<{}, any> & {
export type FormPropsType = UseFormInput<{}> & {
onSubmit: (values: any) => void;
};

Expand Down