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.
Release notes

Sourced from @​mantine/form's releases.

8.0.0 🌶️

View changelog with demos on mantine.dev website

Migration guide

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.

Granular global styles exports

Global styles are now splitted between 3 files:

If you previously imported individual styles from @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';

If you imported @mantine/core/styles.css, no changes are required – all new files are already included in styles.css.

Menu with submenus

Menu component now supports submenus:

import { Button, Menu } from '@mantine/core';

function Demo() { return ( <Menu width={200} position="bottom-start"> <Menu.Target> <Button>Toggle Menu</Button> </Menu.Target>

  &lt;Menu.Dropdown&gt;
    &lt;Menu.Item&gt;Dashboard&lt;/Menu.Item&gt;

    &lt;Menu.Sub&gt;
      &lt;Menu.Sub.Target&gt;
&lt;Menu.Sub.Item&gt;Products&lt;/Menu.Sub.Item&gt;
      &lt;/Menu.Sub.Target&gt;

</tr></table>

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/form&package-manager=npm_and_yarn&previous-version=7.17.0&new-version=8.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend/package.json | 2 +- frontend/yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 38fed4ec..28906ce6 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -24,7 +24,7 @@ "@mantine/core": "7.12.1", "@mantine/dates": "7.12.1", "@mantine/dropzone": "7.12.1", - "@mantine/form": "7.17.0", + "@mantine/form": "8.0.0", "@mantine/hooks": "7.12.1", "@mantine/next": "^6.0.21", "@mantine/notifications": "7.12.1", diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 20692db1..2eef1746 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -895,10 +895,10 @@ dependencies: react-dropzone-esm "15.0.1" -"@mantine/form@7.17.0": - version "7.17.0" - resolved "https://registry.yarnpkg.com/@mantine/form/-/form-7.17.0.tgz#1129add79531d98b85ea98145caacc9a52e0f12d" - integrity sha512-LONdeb+wL8h9fvyQ339ZFLxqrvYff+b+H+kginZhnr45OBTZDLXNVAt/YoKVFEkynF9WDJjdBVrXKcOZvPgmrA== +"@mantine/form@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@mantine/form/-/form-8.0.0.tgz#c7489be7e3623c1fe1a1686d06deadc72c01b81b" + integrity sha512-ErbbEFMEiRsK2Rn0jmFE5ohNJXHSMSbuJsL2vDUVsbIaXo6svw6ockw1WWGdiU8oEGqxM6Pd618yI9cJWNHF3g== dependencies: fast-deep-equal "^3.1.3" klona "^2.0.6"