Skip to content

Commit

Permalink
Bump @mantine/form from 7.12.1 to 7.13.0 in /frontend (#921)
Browse files Browse the repository at this point in the history
Bumps
[@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form)
from 7.12.1 to 7.13.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mantinedev/mantine/releases"><code>@​mantine/form</code>'s
releases</a>.</em></p>
<blockquote>
<h2>7.13.0 🎇</h2>
<p><a href="https://mantine.dev/changelog/7-13-0">View changelog with
demos on mantine.dev website</a></p>
<h2>Container queries support in Grid</h2>
<p>You can now use <a
href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_containment/Container_queries">container
queries</a>
in <a href="https://mantine.dev/core/grid">Grid</a> component. With
container queries, all responsive values
are adjusted based on the container width, not the viewport width.</p>
<p>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:</p>
<pre lang="tsx"><code>import { Grid } from '@mantine/core';
<p>function Demo() {
return (
// Wrapper div is added for demonstration purposes only,
// it is not required in real projects
&lt;div style={{ resize: 'horizontal', overflow: 'hidden', maxWidth:
'100%' }}&gt;
&lt;Grid
type=&quot;container&quot;
breakpoints={{ xs: '100px', sm: '200px', md: '300px', lg: '400px', xl:
'500px' }}
&gt;
&lt;Col span={{ base: 12, md: 6, lg: 3 }}&gt;1&lt;/Col&gt;
&lt;Col span={{ base: 12, md: 6, lg: 3 }}&gt;2&lt;/Col&gt;
&lt;Col span={{ base: 12, md: 6, lg: 3 }}&gt;3&lt;/Col&gt;
&lt;Col span={{ base: 12, md: 6, lg: 3 }}&gt;4&lt;/Col&gt;
&lt;/Grid&gt;
&lt;/div&gt;
);
}
</code></pre></p>
<h2>CompositeChart component</h2>
<p>New <a
href="https://mantine.dev/charts/composite-chart">CompositeChart</a>
component allows using <code>Line</code>, <code>Area</code> and
<code>Bar</code> charts together in a single chart:</p>
<pre lang="tsx"><code>import { CompositeChart } from '@mantine/charts';
import { data } from './data';
<p>function Demo() {
return (
&lt;CompositeChart
h={300}
data={data}
dataKey=&quot;date&quot;
unit=&quot;$&quot;
maxBarWidth={30}
&lt;/tr&gt;&lt;/table&gt;
</code></pre></p>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mantinedev/mantine/commit/8b1859682c81f5c3d264e5c2ecd7714bc9c6134b"><code>8b18596</code></a>
[release] Version: 7.13.0</li>
<li><a
href="https://github.com/mantinedev/mantine/commit/e5f3a537153a5fab3718e2ba195269f7c84207e6"><code>e5f3a53</code></a>
[core] Migrate to eslint 9</li>
<li><a
href="https://github.com/mantinedev/mantine/commit/133b7bf0c739c865e299e4886b22e086d975bd0b"><code>133b7bf</code></a>
[release] Version: 7.12.2</li>
<li><a
href="https://github.com/mantinedev/mantine/commit/e10e3bf52a8151c6899e56502781638ba952a361"><code>e10e3bf</code></a>
[<code>@​mantine/form</code>] Fix error thrown for nullable values dirty
status check (<a
href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/6672">#6672</a>)</li>
<li>See full diff in <a
href="https://github.com/mantinedev/mantine/commits/7.13.0/packages/@mantine/form">compare
view</a></li>
</ul>
</details>
<br />


[![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)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 <dependency name> 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)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 26, 2024
1 parent bf91d6d commit 898b0dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions frontend/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 898b0dc

Please sign in to comment.