Skip to content

chore(deps): bump the mantine group across 1 directory with 3 updates - #351

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/mantine-dd6ba314f9
Closed

chore(deps): bump the mantine group across 1 directory with 3 updates#351
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/mantine-dd6ba314f9

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the mantine group with 3 updates in the / directory: @mantine/core, @mantine/hooks and @mantine/notifications.

Updates @mantine/core from 8.3.18 to 9.5.0

Release notes

Sourced from @​mantine/core's releases.

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

Migration to oxc

Mantine has migrated its linting and formatting toolchain from ESLint and Prettier to oxcoxlint is now used as the linter and oxfmt as the formatter. Both tools are written in Rust and are significantly faster than their predecessors, which makes linting and formatting the entire codebase almost instant.

The shared configuration is available as a new oxc-config-mantine package (a replacement for the previous eslint-config-mantine). You can use it in your own projects to follow the same code style and conventions as Mantine.

Native level select in date pickers

DatePicker and all other date picker components (DatePickerInput, MonthPicker, YearPicker, DateTimePicker, etc.) now support the withNativeLevelSelect prop. When enabled, it replaces the calendar header level button with native <select> elements, making it easy to quickly navigate to a specific month and year.

import { DatePicker } from '@mantine/dates';
function Demo() {
return <DatePicker withNativeLevelSelect yearsSelectRange={[2020, 2035]} />;
}

Timeline opposite and alternate content

Timeline Timeline.Item component now supports the opposite prop that allows rendering content on the opposite side of the timeline. When any item has the opposite prop, the timeline switches to a centered layout with content on both sides of the line.

import { Timeline, Text } from '@mantine/core';
import { GitBranchIcon, GitCommitIcon, GitPullRequestIcon, ChatCircleDotsIcon } from '@phosphor-icons/react';
function Demo() {
return (
<Timeline active={1} bulletSize={24} lineWidth={2}>
<Timeline.Item
</tr></table>

... (truncated)

Commits
  • f1d3306 [release] Version: 9.5.0
  • 7320562 [release] Version: 9.4.3
  • 170c45a Merge branch '9.5'
  • de21a82 [release] Version: 9.4.3-alpha.0
  • e5752de [release] Version: 9.4.2
  • 9dda4ca [@​mantine/core] Add keepMountedMode prop to Modal and Drawer components (#9...
  • dd3b692 [@​mantine/core] Menubar: Fix menu requiring two clicks to dismiss after switc...
  • 4b41d52 [@​mantine/core] AppShell: Fix breakpoint={0} not working correctly (#9042)
  • 02283e9 [@​mantine/core] Tree: Fix keyboard navigation not working on Safari (#9049)
  • 6312c97 [@​mantine/notifications] NotificationContainer: Fix autoClose leak (#9048)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​mantine/core since your current version.


Updates @mantine/hooks from 8.3.18 to 9.5.0

Release notes

Sourced from @​mantine/hooks's releases.

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

Migration to oxc

Mantine has migrated its linting and formatting toolchain from ESLint and Prettier to oxcoxlint is now used as the linter and oxfmt as the formatter. Both tools are written in Rust and are significantly faster than their predecessors, which makes linting and formatting the entire codebase almost instant.

The shared configuration is available as a new oxc-config-mantine package (a replacement for the previous eslint-config-mantine). You can use it in your own projects to follow the same code style and conventions as Mantine.

Native level select in date pickers

DatePicker and all other date picker components (DatePickerInput, MonthPicker, YearPicker, DateTimePicker, etc.) now support the withNativeLevelSelect prop. When enabled, it replaces the calendar header level button with native <select> elements, making it easy to quickly navigate to a specific month and year.

import { DatePicker } from '@mantine/dates';
function Demo() {
return <DatePicker withNativeLevelSelect yearsSelectRange={[2020, 2035]} />;
}

Timeline opposite and alternate content

Timeline Timeline.Item component now supports the opposite prop that allows rendering content on the opposite side of the timeline. When any item has the opposite prop, the timeline switches to a centered layout with content on both sides of the line.

import { Timeline, Text } from '@mantine/core';
import { GitBranchIcon, GitCommitIcon, GitPullRequestIcon, ChatCircleDotsIcon } from '@phosphor-icons/react';
function Demo() {
return (
<Timeline active={1} bulletSize={24} lineWidth={2}>
<Timeline.Item
</tr></table>

... (truncated)

Commits
  • f1d3306 [release] Version: 9.5.0
  • 7320562 [release] Version: 9.4.3
  • de21a82 [release] Version: 9.4.3-alpha.0
  • e5752de [release] Version: 9.4.2
  • 714b17e [@​mantine/hooks] Fix unstable scrollIntoView for some bundlers (#9035)
  • d709e0b [release] Version: 9.4.1
  • 4f3d7d0 [@​mantine/hooks] Fix use-set and use-map hooks using stale values when used w...
  • 75d5ab5 [release] Version: 9.4.0
  • d03d4a3 [@​mantine/core] Splitter: Fix inconsistent px mode detection
  • 791ac6a [@​mantine/hooks] use-splitter: Fix incorrect handling of overflowing panels w...
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​mantine/hooks since your current version.


Updates @mantine/notifications from 8.3.18 to 9.5.0

Release notes

Sourced from @​mantine/notifications's releases.

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

Migration to oxc

Mantine has migrated its linting and formatting toolchain from ESLint and Prettier to oxcoxlint is now used as the linter and oxfmt as the formatter. Both tools are written in Rust and are significantly faster than their predecessors, which makes linting and formatting the entire codebase almost instant.

The shared configuration is available as a new oxc-config-mantine package (a replacement for the previous eslint-config-mantine). You can use it in your own projects to follow the same code style and conventions as Mantine.

Native level select in date pickers

DatePicker and all other date picker components (DatePickerInput, MonthPicker, YearPicker, DateTimePicker, etc.) now support the withNativeLevelSelect prop. When enabled, it replaces the calendar header level button with native <select> elements, making it easy to quickly navigate to a specific month and year.

import { DatePicker } from '@mantine/dates';
function Demo() {
return <DatePicker withNativeLevelSelect yearsSelectRange={[2020, 2035]} />;
}

Timeline opposite and alternate content

Timeline Timeline.Item component now supports the opposite prop that allows rendering content on the opposite side of the timeline. When any item has the opposite prop, the timeline switches to a centered layout with content on both sides of the line.

import { Timeline, Text } from '@mantine/core';
import { GitBranchIcon, GitCommitIcon, GitPullRequestIcon, ChatCircleDotsIcon } from '@phosphor-icons/react';
function Demo() {
return (
<Timeline active={1} bulletSize={24} lineWidth={2}>
<Timeline.Item
</tr></table>

... (truncated)

Commits
  • f1d3306 [release] Version: 9.5.0
  • 7320562 [release] Version: 9.4.3
  • de21a82 [release] Version: 9.4.3-alpha.0
  • e5752de [release] Version: 9.4.2
  • 6312c97 [@​mantine/notifications] NotificationContainer: Fix autoClose leak (#9048)
  • d709e0b [release] Version: 9.4.1
  • 75d5ab5 [release] Version: 9.4.0
  • 96446c5 [@​mantine/notifications] Fix cleanNotificationsQueue clearing priority noti...
  • 742ccdf [core] Minor dependencies updates
  • df5b0e4 Merge branch 'master' into 9.4
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​mantine/notifications since your current version.


@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Apr 13, 2026
@dependabot dependabot Bot changed the title chore(deps): bump the mantine group with 3 updates chore(deps): bump the mantine group across 1 directory with 3 updates Apr 16, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine-dd6ba314f9 branch 3 times, most recently from 1affa73 to ed571cf Compare April 21, 2026 21:33
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine-dd6ba314f9 branch from ed571cf to 70c1059 Compare April 28, 2026 14:01
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine-dd6ba314f9 branch from 70c1059 to 21bc6a1 Compare July 27, 2026 12:33
Bumps the mantine group with 3 updates in the / directory: [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core), [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) and [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications).


Updates `@mantine/core` from 8.3.18 to 9.5.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.5.0/packages/@mantine/core)

Updates `@mantine/hooks` from 8.3.18 to 9.5.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.5.0/packages/@mantine/hooks)

Updates `@mantine/notifications` from 8.3.18 to 9.5.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.5.0/packages/@mantine/notifications)

---
updated-dependencies:
- dependency-name: "@mantine/core"
  dependency-version: 9.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mantine
- dependency-name: "@mantine/hooks"
  dependency-version: 9.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: mantine
- dependency-name: "@mantine/notifications"
  dependency-version: 9.0.2
  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/mantine-dd6ba314f9 branch from 21bc6a1 to 85d3c4c Compare July 31, 2026 12:09
@dependabot @github

dependabot Bot commented on behalf of github Jul 31, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/mantine-dd6ba314f9 branch July 31, 2026 12:26
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.

1 participant