From 898b0dcc95a19da5fb928df479a8a58f83f47667 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 10:07:09 +0200 Subject: [PATCH] Bump @mantine/form from 7.12.1 to 7.13.0 in /frontend (#921) 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.12.1 to 7.13.0.
Release notes

Sourced from @​mantine/form's releases.

7.13.0 🎇

View changelog with demos on mantine.dev website

Container queries support in Grid

You can now use container queries in Grid component. With container queries, all responsive values are adjusted based on the container width, not the viewport width.

Example of using container queries. To see how the grid changes, resize the root element of the demo with the resize handle located at the bottom right corner of the demo:

import { Grid } from '@mantine/core';

function Demo() { return ( // Wrapper div is added for demonstration purposes only, // it is not required in real projects <div style={{ resize: 'horizontal', overflow: 'hidden', maxWidth: '100%' }}> <Grid type="container" breakpoints={{ xs: '100px', sm: '200px', md: '300px', lg: '400px', xl: '500px' }} > <Col span={{ base: 12, md: 6, lg: 3 }}>1</Col> <Col span={{ base: 12, md: 6, lg: 3 }}>2</Col> <Col span={{ base: 12, md: 6, lg: 3 }}>3</Col> <Col span={{ base: 12, md: 6, lg: 3 }}>4</Col> </Grid> </div> ); }

CompositeChart component

New CompositeChart component allows using Line, Area and Bar charts together in a single chart:

import { CompositeChart } from '@mantine/charts';
import { data } from './data';

function Demo() { return ( <CompositeChart h={300} data={data} dataKey="date" unit="$" maxBarWidth={30} </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.12.1&new-version=7.13.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 c2748915..0088799e 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.12.1", + "@mantine/form": "7.13.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 cb5d42e7..fa17f8d5 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -875,10 +875,10 @@ dependencies: react-dropzone-esm "15.0.1" -"@mantine/form@7.12.1": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@mantine/form/-/form-7.12.1.tgz#b8647c0e5915ae170936c390bc0b81031c6b2594" - integrity sha512-Q+lpgG9N8srlsI0IPnD1V1c2ZaI0xmR3bBEVm+LttSos6Q5zkG49Yy011mc0cXzEKUk2h48j8PLoPHfSEzO03g== +"@mantine/form@7.13.0": + version "7.13.0" + resolved "https://registry.yarnpkg.com/@mantine/form/-/form-7.13.0.tgz#e1c0e07262eba631d6c4fcc33fc51f1501e5a4ec" + integrity sha512-CeQbE08D7JNA+YyaGKAdFj40rp0JDFobcobIgNZzIyzXX8QNxIrtGhX3QqKIiwiFcjJi4WCxUSzDrd6vOKaEmA== dependencies: fast-deep-equal "^3.1.3" klona "^2.0.6"