From b98bfe7f5fe7f48ca2c4b6ee94e22d9fb05bca96 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 6 May 2025 04:10:22 +0000
Subject: [PATCH] Bump @mantine/form from 7.17.0 to 8.0.0 in /frontend (#1204)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps
[@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form)
from 7.17.0 to 8.0.0.
Sourced from View changelog with
demos on mantine.dev website This changelog covers breaking changes and new features in Mantine
8.0.
To migrate your application to Mantine 8.0, follow 7.x → 8.x migration
guide. Global styles are now splitted between 3 files: If you previously imported individual styles from
If you imported Menu component now
supports submenus: function Demo() {
return (
<Menu width={200} position="bottom-start">
<Menu.Target>
<Button>Toggle Menu</Button>
</Menu.Target> </tr></table>
Release notes
@​mantine/form's
releases.
8.0.0 🌶️
Migration guide
Granular global styles exports
baseline.css – a minimal CSS reset, sets
box-sizing: border-box and changes font propertiesdefault-css-variables.css – contains all CSS variables
generated from the default themeglobal.css – global classes used in Mantine
components@mantine/core package, you need to update imports
to use new files:import '@mantine/core/styles/baseline.css';
import '@mantine/core/styles/default-css-variables.css';
import '@mantine/core/styles/global.css';
@mantine/core/styles.css, no changes are
required –
all new files are already included in styles.css.Menu with submenus
import { Button, Menu } from '@mantine/core';
<Menu.Dropdown>
<Menu.Item>Dashboard</Menu.Item>
<Menu.Sub>
<Menu.Sub.Target>
<Menu.Sub.Item>Products</Menu.Sub.Item>
</Menu.Sub.Target>
... (truncated)
b1997c7
[release] Version: 8.0.07bc3344
Merge branch master into 8.0a3b5452
[release] Version: 7.17.51526191
[@​mantine/form] Add form.getInitialValues
handlerfc94243
[release] Version: 8.0.0-alpha.35c80395
Merge branch 'master' of github.com:mantinedev/mantine into 8.0839e2d6
[@​maintine/core] use-field: Fix onValueChange
always using stale function (...e41bdc3
[@​mantine/form] Fix incorrect circular types resolving (#7668)38359b0
Merge branch "master" into "8.0"2833831
[@​mantine/form] Add defaultChecked to
form.getInputProps return type (#7702)