Skip to content

chore(deps): bump @mantine/hooks from 8.3.18 to 9.1.0#5016

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/mantine/hooks-9.0.0
Open

chore(deps): bump @mantine/hooks from 8.3.18 to 9.1.0#5016
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/mantine/hooks-9.0.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 1, 2026

Bumps @mantine/hooks from 8.3.18 to 9.1.0.

Release notes

Sourced from @​mantine/hooks's releases.

9.1.0

View changelog with demos on mantine.dev website

Support Mantine development

You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.

deduplicateInlineStyles

New deduplicateInlineStyles prop on MantineProvider enables React 19 style tag deduplication for responsive style props. When many components share the same responsive style prop values, only a single <style /> tag is generated and hoisted to <head /> instead of each component injecting its own:

import { MantineProvider } from '@mantine/core';
function Demo() {
return (
<MantineProvider deduplicateInlineStyles>
{/* Your app here */}
</MantineProvider>
);
}

This can significantly improve performance when rendering large lists of components with identical responsive style props. See the styles performance guide for more details.

use-mask hook

New use-mask hook attaches real-time input masking to any <input> element via a ref callback. It formats user input against a defined pattern and exposes both the masked display value and the raw unmasked value. The hook supports built-in and custom tokens, dynamic masks, character transforms, optional segments, and regex array format:

import { TextInput, Text } from '@mantine/core';
import { useMask } from '@mantine/hooks';
function Demo() {
const { ref, value, rawValue } = useMask({ mask: '(999) 999-9999' });
return (
<>
<TextInput ref={ref} label="Phone number" placeholder="(__) -" />
<Text size="sm" mt="sm">Masked value: {value}</Text>
<Text size="sm">Raw value: {rawValue}</Text>
</tr></table>

... (truncated)

Commits
  • f185553 [release] Version: 9.1.0
  • f03c34d [@​mantine/hooks] Fix use-focus-trap null ref race condition and use-headroom ...
  • 4e5760a Merge branch 'master' into 9.1
  • c6eaf30 [release] Version: 9.0.2
  • 70b4988 [@​mantine/hooks] use-move: Fix incorrect events removal handling
  • 3b32a9f [@​mantine/hooks] use-window-scroll: Add passive event listeners
  • 3b18850 [refactor] Fix typo in use-viewport-size
  • 95fa120 [@​mantine/hooks] use-timeout: Fix stale callback closures, fix incorrect mult...
  • 74d8c65 [@​mantine/hooks] use-throttled-callback: Fix stale callback being called afte...
  • c760bfe [refactor] use-set: Improve set like objects support
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies javascript Pull requests that update Javascript code labels Apr 1, 2026
@heath-freenome
Copy link
Copy Markdown
Member

@zfarhad What are your thoughts about whether doing this upgrade is considered a breaking change for users of the theme? If it is, then we'll have to schedule this for the 7.x release.

@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/hooks-9.0.0 branch 5 times, most recently from a2119b2 to 431920a Compare April 7, 2026 18:26
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/hooks-9.0.0 branch 2 times, most recently from 4e6acfa to 23d561f Compare April 15, 2026 22:37
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/hooks-9.0.0 branch 4 times, most recently from f74c765 to fddefe7 Compare April 19, 2026 19:50
Bumps [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) from 8.3.18 to 9.1.0.
- [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/9.1.0/packages/@mantine/hooks)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump @mantine/hooks from 8.3.18 to 9.0.0 chore(deps): bump @mantine/hooks from 8.3.18 to 9.1.0 Apr 24, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/hooks-9.0.0 branch from fddefe7 to 8edaf1f Compare April 24, 2026 19:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant