Skip to content

build(deps): bump the mantine group in /ui/mantine-ui with 3 updates#5276

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/ui/mantine-ui/mantine-8f8dbbd7a1
Open

build(deps): bump the mantine group in /ui/mantine-ui with 3 updates#5276
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/ui/mantine-ui/mantine-8f8dbbd7a1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 2, 2026

Copy link
Copy Markdown
Contributor

Bumps the mantine group in /ui/mantine-ui with 3 updates: @mantine/code-highlight, @mantine/core and @mantine/hooks.

Updates @mantine/code-highlight from 9.1.1 to 9.3.0

Release notes

Sourced from @​mantine/code-highlight's releases.

9.3.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.

Pagination responsive layout

Pagination component now supports layout="responsive" prop that uses CSS container queries to switch between page number buttons and a compact "Page X of Y" label based on the available width.

import { Box, Pagination } from '@mantine/core';
function Demo() {
return (
<Box style={{ resize: 'horizontal', overflow: 'auto', minWidth: 200, maxWidth: '100%' }}>
<Pagination total={20} layout="responsive" />
</Box>
);
}

Text textWrap prop

Text and Blockquote components now support textWrap prop that controls the text-wrap CSS property. You can use it to balance line lengths or prevent orphaned words in paragraphs.

import { Text } from '@mantine/core';
function Demo() {
return (
<Text textWrap="wrap">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quasi voluptatibus inventore iusto
cum dolore molestiae perspiciatis! Totam repudiandae impedit maxime!
</Text>
);
}

use-splitter hook

New use-splitter hook provides resizable split-pane functionality with pointer drag, keyboard navigation (WAI-ARIA Window Splitter pattern), collapsible panels and min/max constraints:

... (truncated)

Commits
  • bf03b9a [release] Version: 9.3.0
  • f2fb8fa Merge branch master into 9.3
  • 4685c41 [release] Version: 9.2.2
  • a5d5d61 Merge branch 'master' into 9.3
  • cd3bff3 [release] Version: 9.2.1
  • a73cdec [core] Update minor dependencies version
  • b07d290 [release] Version: 9.2.0
  • 9d2b0ca Merge branch '9.2' into 9.3
  • cdfc6d2 Merge branch '9.2' into 9.3
  • 4b753f9 Merge branch '9.2' into 9.3
  • Additional commits viewable in compare view

Updates @mantine/core from 9.1.1 to 9.3.0

Release notes

Sourced from @​mantine/core's releases.

9.3.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.

Pagination responsive layout

Pagination component now supports layout="responsive" prop that uses CSS container queries to switch between page number buttons and a compact "Page X of Y" label based on the available width.

import { Box, Pagination } from '@mantine/core';
function Demo() {
return (
<Box style={{ resize: 'horizontal', overflow: 'auto', minWidth: 200, maxWidth: '100%' }}>
<Pagination total={20} layout="responsive" />
</Box>
);
}

Text textWrap prop

Text and Blockquote components now support textWrap prop that controls the text-wrap CSS property. You can use it to balance line lengths or prevent orphaned words in paragraphs.

import { Text } from '@mantine/core';
function Demo() {
return (
<Text textWrap="wrap">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quasi voluptatibus inventore iusto
cum dolore molestiae perspiciatis! Totam repudiandae impedit maxime!
</Text>
);
}

use-splitter hook

New use-splitter hook provides resizable split-pane functionality with pointer drag, keyboard navigation (WAI-ARIA Window Splitter pattern), collapsible panels and min/max constraints:

... (truncated)

Commits
  • bf03b9a [release] Version: 9.3.0
  • 342e5ce [refactor] Finalize 9.3 release
  • 3db1f34 [@​mantine/core] OverflowList: Fix children changes not triggering recalculati...
  • 2b0d5a6 [@​mantine/core] Combobox: Cleanup floatingHeight usage
  • 439f764 [@​mantine/core] Menu: Reduce duplicated code
  • 2803bf3 [@​mantine/core] OverflowList: Fix incorrect index passed to renderItem when...
  • 6fa7bb5 [@​mantine/core] Pagination: Add missing namespace export
  • f2fb8fa Merge branch master into 9.3
  • 4685c41 [release] Version: 9.2.2
  • d21e393 [@​mantine/core] Pill: Fix incorrect overflow handling (#8929)
  • Additional commits viewable in compare view

Updates @mantine/hooks from 9.1.1 to 9.3.0

Release notes

Sourced from @​mantine/hooks's releases.

9.3.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.

Pagination responsive layout

Pagination component now supports layout="responsive" prop that uses CSS container queries to switch between page number buttons and a compact "Page X of Y" label based on the available width.

import { Box, Pagination } from '@mantine/core';
function Demo() {
return (
<Box style={{ resize: 'horizontal', overflow: 'auto', minWidth: 200, maxWidth: '100%' }}>
<Pagination total={20} layout="responsive" />
</Box>
);
}

Text textWrap prop

Text and Blockquote components now support textWrap prop that controls the text-wrap CSS property. You can use it to balance line lengths or prevent orphaned words in paragraphs.

import { Text } from '@mantine/core';
function Demo() {
return (
<Text textWrap="wrap">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quasi voluptatibus inventore iusto
cum dolore molestiae perspiciatis! Totam repudiandae impedit maxime!
</Text>
);
}

use-splitter hook

New use-splitter hook provides resizable split-pane functionality with pointer drag, keyboard navigation (WAI-ARIA Window Splitter pattern), collapsible panels and min/max constraints:

... (truncated)

Commits
  • bf03b9a [release] Version: 9.3.0
  • 342e5ce [refactor] Finalize 9.3 release
  • 9973490 [@​mantine/hooks] use-splitter: Add missing cleanup callbacks
  • f2fb8fa Merge branch master into 9.3
  • 4685c41 [release] Version: 9.2.2
  • 06177f5 [@​mantine/hooks] use-mask: Fix undo keyboard shortcut not working (#8927)
  • eb36e5b [@​mantine/hooks] use-mask: Fix cursor jumping on paste/cut (#8926)
  • 657a511 [refactor] Fix typo (#8897)
  • a5d5d61 Merge branch 'master' into 9.3
  • cd3bff3 [release] Version: 9.2.1
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the mantine group in /ui/mantine-ui with 3 updates: [@mantine/code-highlight](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/code-highlight), [@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/code-highlight` from 9.1.1 to 9.3.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.3.0/packages/@mantine/code-highlight)

Updates `@mantine/core` from 9.1.1 to 9.3.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.3.0/packages/@mantine/core)

Updates `@mantine/hooks` from 9.1.1 to 9.3.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.3.0/packages/@mantine/hooks)

---
updated-dependencies:
- dependency-name: "@mantine/code-highlight"
  dependency-version: 9.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/core"
  dependency-version: 9.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/hooks"
  dependency-version: 9.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 2, 2026
@dependabot dependabot Bot requested a review from a team as a code owner June 2, 2026 20:55
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 2, 2026
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