mirror of
https://github.com/evroon/bracket.git
synced 2026-06-11 18:24:38 -04:00
Bumps [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) from 8.0.0 to 8.1.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>8.1.0</h2> <p><a href="https://mantine.dev/changelog/8-1-0">View changelog with demos on mantine.dev website</a></p> <h2>DatePicker presets</h2> <p><a href="https://mantine.dev/dates/date-picker">DatePicker</a>, <a href="https://mantine.dev/dates/date-picker-input">DatePickerInput</a> and <a href="https://mantine.dev/dates/date-time-picker">DateTimePicker</a> now support <code>presets</code> prop that allows you to add custom date presets. Presets are displayed next to the calendar:</p> <pre lang="tsx"><code>import dayjs from 'dayjs'; import { DatePicker } from '@mantine/dates'; <p>function Demo() { const today = dayjs();</p> <p>return ( <DatePicker type="range" presets={[ { value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')], label: 'Last two days', }, { value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')], label: 'Last 7 days', }, { value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')], label: 'This month', }, { value: [ today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'), today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'), ], label: 'Last month', }, { value: [ today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'), today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'), ], label: 'Last year', }, ]} /> ); } </code></pre></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="ee3bd375cb"><code>ee3bd37</code></a> [release] Version: 8.1.0</li> <li><a href="d4113266ad"><code>d411326</code></a> Merge branch 'master' into 8.1</li> <li><a href="b9a4fdc09b"><code>b9a4fdc</code></a> [release] Version: 8.0.2</li> <li><a href="df2c90a42f"><code>df2c90a</code></a> [<code>@mantine/form</code>] Fix <code>form.reorderItem</code> reordering only the first item (<a href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/7892">#7892</a>)</li> <li><a href="9023b6bee2"><code>9023b6b</code></a> Merge branch 'master' of github.com:mantinedev/mantine into 8.1</li> <li><a href="6b18e290be"><code>6b18e29</code></a> [refactor] Add deprecation notice to resolvers exported from <code>@mantine/form</code> ...</li> <li><a href="0c25d6e341"><code>0c25d6e</code></a> Merge branch master into 8.1</li> <li><a href="57f637d6ba"><code>57f637d</code></a> [release] Version: 8.0.1</li> <li><a href="f559894ced"><code>f559894</code></a> Merge branch '8.1.0-contributions' of github.com:mantinedev/mantine into 8.1</li> <li><a href="19f8343273"><code>19f8343</code></a> [<code>@mantine/form</code>] Add <code>resetField</code> method to form utilities (<a href="https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form/issues/7806">#7806</a>)</li> <li>Additional commits viewable in <a href="https://github.com/mantinedev/mantine/commits/8.1.0/packages/@mantine/form">compare view</a></li> </ul> </details> <br /> [](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>