Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jun 17, 2025

Bumps @mantine/hooks from 7.17.8 to 8.1.1.

Release notes

Sourced from @​mantine/hooks's releases.

8.1.1

What's Changed

  • [@mantine/hooks] use-set: Fix union method not working correctly (#7981)
  • [@mantine/core] Popover: Fix incorrect position handling (#7955, #7953)
  • [@mantine/dates] TimePicker: Fix incorrect empty string handling (#7927)
  • [@mantine/dates] DatePickerInput: Fix incorrect onChange type (#7943)
  • [@mantine/dates] TimePicker: Fix incorrect handling of min/max values in some cases (#7904)
  • [@mantine/hooks] use-hotkeys: Fix Escape key not being handled correctly in some browsers (#7928)
  • [@mantine/core] Tree: Fix detached DOM nodes memory leak (#7940)
  • [@mantine/hooks] use-debounced-callback: Add cancel method support (#7965)
  • [@mantine/dates] DatePicker: Fix incorrect value type for type="range" ([#7937](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks/issues/7937))
  • [@mantine/dates] DatePicker: Fix className and style props not working when presets prop is set (#7960)

New Contributors

Full Changelog: mantinedev/mantine@8.1.0...8.1.1

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
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: [
</tr></table>

... (truncated)

Commits
  • 610942e [release] Version: 8.1.1
  • 060bca5 [@​mantine/hooks] use-set: Fix union method not working correctly (#7981)
  • d44e808 [@​mantine/hooks] use-hotkeys: Fix Escape key not being handled correctly in s...
  • 959453d [@​mantine/hooks] use-debounced-callback: Add cancel method support (#7965)
  • ee3bd37 [release] Version: 8.1.0
  • da92747 Merge branch 'master' of github.com:mantinedev/mantine into 8.1
  • d411326 Merge branch 'master' into 8.1
  • 8cd74e8 Merge branch 'master' of github.com:mantinedev/mantine into 8.1
  • 0c25d6e Merge branch master into 8.1
  • 1e04f2a [core] Fix deprecation warnings in all packages
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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)

Bumps [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) from 7.17.8 to 8.1.1.
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/8.1.1/packages/@mantine/hooks)

---
updated-dependencies:
- dependency-name: "@mantine/hooks"
  dependency-version: 8.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 17, 2025
Copy link
Author

dependabot bot commented on behalf of github Aug 12, 2025

Superseded by #23.

@dependabot dependabot bot closed this Aug 12, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/mantine/hooks-8.1.1 branch August 12, 2025 06:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants