Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump @mantine/form from 7.12.1 to 7.13.0 in /frontend (#921)
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 <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> ); } </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 ( <CompositeChart h={300} data={data} dataKey="date" unit="$" maxBarWidth={30} </tr></table> </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