Skip to content

build(deps): bump the mantine group across 1 directory with 4 updates#6300

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/frontend/mantine-d9e590c18d
Open

build(deps): bump the mantine group across 1 directory with 4 updates#6300
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/frontend/mantine-d9e590c18d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps the mantine group with 4 updates in the /frontend directory: @mantine/core, @mantine/dates, @mantine/dropzone 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/dates from 8.3.18 to 9.1.0

Release notes

Sourced from @​mantine/dates'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
  • 0e8827f Merge branch master into 9.1
  • 2293743 [core] Update minor dependencies version
  • c6eaf30 [release] Version: 9.0.2
  • 191c7a9 Merge branch 'master' into 9.1
  • 6a5711f [@​mantine/dates] DateTimePicker: Fix formatting not working with `withSeconds...
  • 2b945f7 Merge branch 'master' into 9.1
  • 755b941 [refactor] Fix release script
  • c5b157f [core] Fix types not being compatible with typecheck used in js files
  • edabb9d [@​mantine/core] Fix incorrect default placeholder size in PasswordInput and o...
  • Additional commits viewable in compare view

Updates @mantine/dropzone from 8.3.18 to 9.1.0

Release notes

Sourced from @​mantine/dropzone'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
  • 2293743 [core] Update minor dependencies version
  • c6eaf30 [release] Version: 9.0.2
  • 755b941 [refactor] Fix release script
  • c5b157f [core] Fix types not being compatible with typecheck used in js files
  • b90d9b8 [core] Fix typos, update versions
  • a097b0c [release] Version: 9.0.0-alpha.6
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • f6427cb [core] Update minor dependencies version
  • e77af46 [refactor] Prettier write
  • 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 dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 1, 2026
@dependabot dependabot Bot requested a review from reecebrowne as a code owner May 1, 2026 10:43
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label May 1, 2026
@dependabot dependabot Bot added the javascript Pull requests that update javascript code label May 1, 2026
@dependabot dependabot Bot requested review from Frooodle and jbrunton96 as code owners May 1, 2026 10:43
@dosubot dosubot Bot added the size:XS This PR changes 0-9 lines ignoring generated files. label May 1, 2026
@stirlingbot stirlingbot Bot added Front End Issues or pull requests related to front-end development build Changes that affect the build system or external dependencies labels May 1, 2026
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

Frontend Check Failed

There are issues with your frontend code that will need to be fixed before they can be merged in.

Run task frontend:fix to auto-fix what can be fixed automatically, then run task frontend:check:all to see what still needs fixing manually.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 1, 2026

📦 Tauri Desktop Builds Ready!

The desktop applications have been built and are ready for testing.

Download Artifacts:

🐧 Linux x64: Download Stirling-PDF-linux-x86_64 (.deb, .rpm, .AppImage) - 730.0 MB
🪟 Windows x64: Download Stirling-PDF-windows-x86_64 (.exe, .msi) - 211.1 MB


Built from commit e2af7b0
Artifacts expire in 7 days

Bumps the mantine group with 4 updates in the /frontend directory: [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core), [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates), [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone) 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/dates` 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/dates)

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

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/dates"
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mantine
- dependency-name: "@mantine/dropzone"
  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 force-pushed the dependabot/npm_and_yarn/frontend/mantine-d9e590c18d branch from 9c0ef57 to c7dc8e2 Compare May 2, 2026 22:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

build Changes that affect the build system or external dependencies dependencies Pull requests that update a dependency file Front End Issues or pull requests related to front-end development javascript Pull requests that update javascript code size:XS This PR changes 0-9 lines ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants