Skip to content

Commit

Permalink
Bump @mantine/form from 7.14.0 to 7.15.0 in /frontend (#1049)
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.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 (
&lt;Box className={classes.root} ref={ref} style={{ '--angle':
<code>${value}deg</code> }}&gt;
&lt;div className={classes.value}&gt;{value}°&lt;/div&gt;
&lt;div className={classes.thumb} /&gt;
&lt;/Box&gt;
);
}
</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 (
&lt;BarChart
h={300}
data={data}
dataKey=&quot;month&quot;
getBarColor={(value) =&gt; (value &gt; 700 ? 'teal.8' : 'red.8')}
series={[{ name: 'Laptops', color: 'gray.6' }]}
/&gt;
&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/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
dependabot[bot] authored Dec 11, 2024
1 parent c8a5873 commit d449c9f
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.14.0",
"@mantine/form": "7.15.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 @@ -892,10 +892,10 @@
dependencies:
react-dropzone-esm "15.0.1"

"@mantine/form@7.14.0":
version "7.14.0"
resolved "https://registry.yarnpkg.com/@mantine/form/-/form-7.14.0.tgz#991ecb3f600c599aa2f659c5b1138678dfecafe1"
integrity sha512-oZQuSiREcZLALTILUwovIc1GuNSQAZfFyhUCQE2MqF5tmjcy51HdeQ0kBtkjCylrc50v165KVtANuWhFwA/2dg==
"@mantine/form@7.15.0":
version "7.15.0"
resolved "https://registry.yarnpkg.com/@mantine/form/-/form-7.15.0.tgz#4894e2f79c0f2f563ef67b453eb109ce19a8cb6c"
integrity sha512-gTn68Y8zXGI8zRw9EdVA00tiS5V3nQ7VkGmyAC45ZOfOpP0H9bFhnqFLM8vQHEtnLCmI3oU93zyVBUgjwlF19A==
dependencies:
fast-deep-equal "^3.1.3"
klona "^2.0.6"
Expand Down

0 comments on commit d449c9f

Please sign in to comment.