Skip to content

chore(frontend)(deps): bump the mantine group across 1 directory with 2 updates#40

Merged
aksOps merged 1 commit into
mainfrom
dependabot/npm_and_yarn/ui/mantine-be5b17fd63
Apr 28, 2026
Merged

chore(frontend)(deps): bump the mantine group across 1 directory with 2 updates#40
aksOps merged 1 commit into
mainfrom
dependabot/npm_and_yarn/ui/mantine-be5b17fd63

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the mantine group with 2 updates in the /ui directory: @mantine/core and @mantine/hooks.

Updates @mantine/core from 8.3.18 to 9.1.0

Release notes

Sourced from @​mantine/core'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
  • fe2acf2 MMerge branch '9.1' of gitlab.com:rtivital/mantine-private into 9.1
  • 0e8827f Merge branch master into 9.1
  • 2293743 [core] Update minor dependencies version
  • 9519fc8 [@​mantine/core] SemiCircleProgress: Fix incorrect SVG dimensions (#8842)
  • f9461c1 [@​mantine/core] Tabs: Add keepMountedMode prop support
  • 4e5760a Merge branch 'master' into 9.1
  • c6eaf30 [release] Version: 9.0.2
  • 48543d7 [@​mantine/core] Tree: Fix performance issues with virtualized tree items
  • 191c7a9 Merge branch 'master' into 9.1
  • Additional commits viewable in compare view

Updates @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 @github

dependabot Bot commented on behalf of github Apr 26, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: area:frontend, type:dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@socket-security

socket-security Bot commented Apr 26, 2026

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatednpm/​@​mantine/​hooks@​8.3.18 ⏵ 9.1.09910081 +196100
Updatednpm/​@​mantine/​core@​8.3.18 ⏵ 9.1.099 +11008396100

View full report

… 2 updates

Bumps the mantine group with 2 updates in the /ui directory: [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) and [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks).


Updates `@mantine/core` 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/core)

Updates `@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/core"
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mantine
- dependency-name: "@mantine/hooks"
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mantine
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(frontend)(deps): bump the mantine group in /ui with 2 updates chore(frontend)(deps): bump the mantine group across 1 directory with 2 updates Apr 27, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/ui/mantine-be5b17fd63 branch from 2a653dd to 665eedf Compare April 27, 2026 09:04
@sonarqubecloud

Copy link
Copy Markdown

@aksOps

aksOps commented Apr 28, 2026

Copy link
Copy Markdown
Contributor

@dependabot rebase

@aksOps aksOps enabled auto-merge (squash) April 28, 2026 00:50
@aksOps aksOps merged commit b367d70 into main Apr 28, 2026
12 checks passed
@aksOps aksOps deleted the dependabot/npm_and_yarn/ui/mantine-be5b17fd63 branch April 28, 2026 00:50
@dependabot @github

dependabot Bot commented on behalf of github Apr 28, 2026

Copy link
Copy Markdown
Contributor Author

Oh no! Something went wrong on our end. Please try again later.

If the problem persists, please contact GitHub support for assistance 🙇

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant