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.14.0 to 7.15.0 in /frontend (#1049)
Bumps [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) from 7.14.0 to 7.15.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.15.0 💋</h2> <p><a href="https://mantine.dev/changelog/7-15-0">View changelog with demos on mantine.dev website</a></p> <h2>Support Mantine development</h2> <p>You can now sponsor Mantine development with <a href="https://opencollective.com/mantinedev">OpenCollective</a>. All funds will be used to improve Mantine and create new features and components.</p> <h2>use-radial-move hook</h2> <p>New <a href="https://mantine.dev/hooks/use-radial-move">use-radial-move</a> hook can be used to create custom radial sliders:</p> <pre lang="tsx"><code>import { useState } from 'react'; import { Box } from '@mantine/core'; import { useRadialMove } from '@mantine/hooks'; import classes from './Demo.module.css'; <p>function Demo() { const [value, setValue] = useState(115); const { ref } = useRadialMove(setValue);</p> <p>return ( <Box className={classes.root} ref={ref} style={{ '--angle': <code>${value}deg</code> }}> <div className={classes.value}>{value}°</div> <div className={classes.thumb} /> </Box> ); } </code></pre></p> <h2>BarChart color based on value</h2> <p><a href="https://mantine.dev/charts/bar-chart">BarChart</a> component now supports <code>getBarColor</code> prop to assign color based on value. <code>getBarColor</code> function is called with two arguments: value and series object. It should return a color string (theme color reference or any valid CSS color value).</p> <pre lang="tsx"><code>import { BarChart } from '@mantine/charts'; import { data } from './data'; <p>function Demo() { return ( <BarChart h={300} data={data} dataKey="month" getBarColor={(value) => (value > 700 ? 'teal.8' : 'red.8')} series={[{ name: 'Laptops', color: 'gray.6' }]} /> </tr></table> </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mantinedev/mantine/commit/aae7b81cc3cd3ad897a970bb6233148813990da7"><code>aae7b81</code></a> [release] Version: 7.15.0</li> <li><a href="https://github.com/mantinedev/mantine/commit/d0e70b620876d3dff39d3a2116df3b803e674f75"><code>d0e70b6</code></a> Merge branch master into 7.15</li> <li><a href="https://github.com/mantinedev/mantine/commit/29f5df2167e482daa8d68d01371a0a35b3878395"><code>29f5df2</code></a> [release] Version: 7.14.3</li> <li><a href="https://github.com/mantinedev/mantine/commit/44407dbda752d9646ddac48b17d83cba112fb4b7"><code>44407db</code></a> [<code>@mantine/core</code>] Replace global <code>JSX</code> types with <code>React.JSX</code> to support React ...</li> <li><a href="https://github.com/mantinedev/mantine/commit/1f4bb71972d1716a60ab2f7c81e366de3ebb60b2"><code>1f4bb71</code></a> Merge branch master into 7.15</li> <li><a href="https://github.com/mantinedev/mantine/commit/c83f5b0a371512623f1324dcf888d1db1570e92a"><code>c83f5b0</code></a> [release] Version: 7.14.2</li> <li><a href="https://github.com/mantinedev/mantine/commit/b07b2753fe1ef9a9311ccdb8f2a24f6303830ba7"><code>b07b275</code></a> [<code>@mantine/form</code>] Add submitting state support</li> <li><a href="https://github.com/mantinedev/mantine/commit/7fad3d6160d96bf3b3056c8e49f28ee9fd49f97d"><code>7fad3d6</code></a> [<code>@mantine/form</code>] Add <code>onSubmitPreventDefault</code> option support (<a href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/7142">#7142</a>)</li> <li><a href="https://github.com/mantinedev/mantine/commit/79280aa4f0d188e302eb12f507e5bef16241bab8"><code>79280aa</code></a> [release] Version: 7.14.2-alpha.0</li> <li><a href="https://github.com/mantinedev/mantine/commit/12adf699eb630bb1d2693a68382774b894e7423d"><code>12adf69</code></a> [release] Version: 7.14.1</li> <li>See full diff in <a href="https://github.com/mantinedev/mantine/commits/7.15.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.14.0&new-version=7.15.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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information