fix(deps): update mantine monorepo to v9 - #567
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
from
April 6, 2026 09:58
1dc93ac to
66c7692
Compare
|
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
from
April 13, 2026 09:48
66c7692 to
27f4979
Compare
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
2 times, most recently
from
April 27, 2026 18:12
c8f58a2 to
6f412fc
Compare
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
from
May 11, 2026 17:00
6f412fc to
2376858
Compare
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
from
May 14, 2026 14:03
2376858 to
973154e
Compare
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
3 times, most recently
from
June 2, 2026 12:02
0f2f705 to
c42fb4e
Compare
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
from
June 8, 2026 21:40
c42fb4e to
d23c354
Compare
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
2 times, most recently
from
June 22, 2026 17:15
38cd529 to
0ff68a2
Compare
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
from
June 28, 2026 13:03
0ff68a2 to
9956944
Compare
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
from
July 12, 2026 16:48
9956944 to
b7dfad3
Compare
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
from
July 21, 2026 09:53
b7dfad3 to
4ac8328
Compare
renovate
Bot
force-pushed
the
renovate/major-mantine-monorepo
branch
from
July 27, 2026 09:41
4ac8328 to
8e54d42
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
8.3.18→9.5.08.3.18→9.5.08.3.18→9.5.08.3.18→9.5.0^8.3.18→^9.0.08.3.18→9.5.0Release Notes
mantinedev/mantine (@mantine/core)
v9.5.0: 🤖Compare Source
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 oxc – oxlint 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 samecode 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
withNativeLevelSelectprop. When enabled, it replaces the calendar header level buttonwith native
<select>elements, making it easy to quickly navigate to a specific month and year.Timeline opposite and alternate content
Timeline
Timeline.Itemcomponent now supports theoppositeprop that allowsrendering content on the opposite side of the timeline. When any item has the
oppositeprop,the timeline switches to a centered layout with content on both sides of the line.
Set the
alternateprop on individualTimeline.Itemcomponents to switchthe position of content and opposite:
FloatingWindow resize handle
FloatingWindow now supports a
ResizeHandlecompound componentthat allows users to resize the floating window by dragging a handle element.
Set the
dimensionsprop onFloatingWindowto control resize constraints for bothwidth (
initialWidth,minWidth,maxWidth) and height (initialHeight,minHeight,maxHeight).The resize handle is fully accessible – it supports keyboard interaction with
Arrow Left/Arrow Rightkeys for width,Arrow Up/Arrow Downfor height (10px steps),and
Home/Endkeys (jump to min/max size).Cascader component
New Cascader component allows selecting a value from hierarchical data
by drilling down through cascading columns. Picking an option in one column reveals its
children in a new column to the right, and the value is an ordered path from the root option
to the selected node. It supports
changeOnSelect,hoverexpand trigger, search, a flat listlayout for mobile, and full keyboard navigation.
SunburstChart component
New SunburstChart component displays hierarchical data
as concentric rings, similar to a treemap plotted in polar coordinates.
BulletChart component
New BulletChart component displays a single measure against
a qualitative range, useful for comparing a primary value (such as revenue) against
a target and qualitative thresholds like poor, average, and good.
Charts keyboard navigation
All @mantine/charts components now expose the
accessibilityLayerprop (trueby default) that makes charts navigable with the keyboard.The chart surface is focusable and displays the Mantine focus ring; once focused, the arrow keys
move the active tooltip point-by-point and Enter toggles the tooltip, so users who do not
use a mouse can read the underlying values. The prop is supported by
AreaChart,BarChart,LineChart,CompositeChart,ScatterChart,BubbleChart,PieChart,DonutChart,RadarChart,RadialBarChartandFunnelChartcomponents.Charts brush
AreaChart, BarChart, LineChart
and CompositeChart now support the
withBrushprop that displays abrush (range selector) under the chart. Drag the brush handles to zoom into a subset of the data.
Use the
brushPropsprop to customize the underlying rechartsBrush, or render the newthemed
ChartBrushcomponent as a child of the chart for full control.Heatmap month labels position
Heatmap now supports
monthLabelsPositionprop that allowsdisplaying month labels at the bottom of the heatmap instead of the top (default).
Accordion disable collapse
Accordion now supports the
disableCollapseprop. When enabled in singlemode (
multiple={false}), the open item cannot be collapsed by clicking it again, so one itemalways stays open. Pair it with
defaultValueorvalueto guarantee that a section is openfrom the start – useful for settings panels, stepper-style flows and FAQ pages.
ScrollArea vertical scrollbar position
ScrollArea now supports the
verticalScrollbarPositionprop that pins thevertical scrollbar to a physical side (
leftorright) regardless of direction. This is usefulfor RTL applications where users expect the vertical scrollbar to stay on the right, matching the
behavior of most desktop software. The prop also realigns the offset padding, the corner and the
horizontal scrollbar gap, so it works correctly with
offsetScrollbarsandscrollbars="xy".Schedule intervals larger than one hour
ResourcesDayView and
ResourcesWeekView now support
intervalMinutesvalueslarger than 60. Previously the interval was capped at one hour – you can now set it to any
whole number of hours (for example
120or240) to display multi-hour time slots. Valuesof 60 or less must still divide evenly into an hour; any value that does not keep the grid on
hour boundaries falls back to
60.New example: Table virtualization
New Table example demonstrates how to use
Table.ScrollContainerwith@tanstack/react-virtualto efficiently render large datasets with 5,000 rows.v9.4.2Compare Source
What's Changed
[@mantine/schedule]Fix 1-3 minutes events not aligning correctly in ResourcesWeekView and ResourcesDayView (#9057)[@mantine/form]Fix async validation with debounce on initial keystroke of empty input (#9068)[@mantine/core]AddkeepMountedModeprop to Modal and Drawer components (#9056)[@mantine/core]Menubar: Fix menu requiring two clicks to dismiss after switching menus with hover (#9050)[@mantine/core]AppShell: Fixbreakpoint={0}not working correctly (#9042)[@mantine/core]Tree: Fix keyboard navigation not working on Safari (#9049)[@mantine/notifications]NotificationContainer: FixautoCloseleak (#9048)[@mantine/core]Collapse: AddkeepMountedModeprop (#9021)[@mantine/dates]TimePicker: Fix incorrectwithSecondshandling when pasting partial values (#9041)[@mantine/schedule]Add option to customize current time in ResourcesDayView and ResourcesWeekView components[@mantine/core]TreeSelect: Addexpandcallback torenderNodepayload[@mantine/core]Fix incorrect empty children arrays handling in Tree and TreeSelect[@mantine/hooks]Fix unstablescrollIntoViewfor some bundlers (#9035)[@mantine/schedule]AddintervalMinutesmore than 60 support to ResourcesDayView and ResourcesWeekView[@mantine/schedule]ResourcesWeekView: Fix incorrect handling of events with small duration[@mantine/schedule]ResourcesDayView: Fix events with small durations not being visibleNew Contributors
Full Changelog: mantinedev/mantine@9.4.1...9.4.2
v9.4.1Compare Source
What's Changed
[@mantine/form]Fix some functions not working correctly with react compiler (#9007)[@mantine/charts]Heatmap: Fix values outside the provided domain rendering with no fill (#8982)[@mantine/core]RollingNumber: Fix rendering-0for values that round to zero (#8983)[@mantine/core]Slider: Fix incorrect marks labels position in RTL layouts (#8996)[@mantine/hooks]Fix use-set and use-map hooks using stale values when used with React compiler (#9008)[@mantine/form]AddFormProviderPropstype export (#9009)[@mantine/schedule]ResourcesDayView: Fix incorrect multiday events rendering (#9014)[@mantine/dates]TimePicker: Fix duration values greater than 9999 hours not working (#9002)[@mantine/core]Menu: Marknon-menuitemdropdown children as presentational (#9004)[@mantine/core]Collapse: Fixrefandstyleprops not working whentransitionDuration: 0(#9013)[@mantine/core]Textarea: Fix autosize not working correctly withminRowson initial render[@mantine/schedule]ResourcesWeekView: Add events resizing supportNew Contributors
Full Changelog: mantinedev/mantine@9.4.0...9.4.1
v9.4.0: 🥵Compare Source
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.
ComboboxPopover component
New ComboboxPopover component allows adding a combobox dropdown
with selectable options to any button element. Unlike
SelectandMultiSelect, it does notrender an input – you provide your own target element via
ComboboxPopover.Target. Supportssingle and multiple selection modes with the same
dataformat asSelect.DataList component
New DataList component displays label-value pairs as a semantic description
list using
dl,dt, andddHTML elements. Supports vertical and horizontal orientations,dividers between items, and all standard Mantine features like Styles API and size prop.
EmptyState component
New EmptyState component displays a placeholder for "no data" situations:
empty search results, empty tables and lists, first-run states or error illustrations with an
optional call to action. It can be used with
icon,titleanddescriptionshorthand propsor with
EmptyState.Indicator,EmptyState.Title,EmptyState.DescriptionandEmptyState.Actionscompound components for full control.Menubar component
New Menubar component adds a desktop-application style menu bar: a horizontal row
of top-level menu triggers (File, Edit, View, …) where each trigger opens a dropdown. Arrow keys
move between the top-level menus, and once one menu is opened, moving to a sibling opens it
immediately.
Menubaris built on top ofMenuand follows the WAI-ARIA menubar pattern.ResourcesDayView component
New ResourcesDayView component displays resources as rows and
time slots as columns. Each row represents a resource (conference room, person, equipment) and
shows events assigned to that resource. Supports drag and drop across resources, business hours
highlighting, and slot drag select.
ResourcesWeekView component
New ResourcesWeekView component displays resources as rows
and a full week of time slots as columns with a two-level header showing day names and time
labels. Supports drag and drop, slot selection, business hours, and current time indicator.
ResourcesMonthView component
New ResourcesMonthView component displays resources as rows
and days of the month as columns. Events are shown as colored indicators within each
resource-day cell for easy visualization of resource utilization across the month.
ResourcesSchedule component
New ResourcesSchedule wrapper component combines
ResourcesDayView,ResourcesWeekViewandResourcesMonthViewinto a single component with view switching, similarto how
Schedulecombines day, week, month and year views.AgendaView component
New AgendaView component renders a vertical list of events for a specified
time period. Events are grouped by date in chronological order.
withAgenda prop for DayView, WeekView, MonthView and Schedule
DayView,WeekView,MonthViewandSchedulecomponents now supportwithAgendaprop.When enabled, an "Agenda" button is displayed in the header. Clicking it opens an
AgendaViewfor the currently visible date range.
MonthView hide weekend days
MonthView now supports
withWeekendDaysprop. Set it tofalseto hide weekend days: the grid shrinks to the remaining columns and events that span hidden
days are clipped to the visible days. The days that are considered weekend are controlled by
the
weekendDaysprop (orDatesProvider,[0, 6]by default).DayView and WeekView sub-hour grid lines
DayView and WeekView now support
withSubHourGridLinesprop. When
intervalMinutesis smaller than60, setwithSubHourGridLines={false}to display onlyone grid line per hour while keeping the smaller interval for creating and resizing events. This is
useful to achieve a Google Calendar like layout: events snap to 15 or 30 minutes increments, but the
grid stays clean with hourly lines.
Input success state
All inputs based on
InputandInput.Wrappernow support asuccessprop. When set, it changes theinput border color to green (
--mantine-color-success). You can also pass a React node to displaya success message below the input. If both
errorandsuccessprops are set,errortakes precedence.New
--mantine-color-successCSS variable has been added (resolves toteal-6in light mode andteal-8in dark mode).Splitter CSS units
Splitter.Pane
defaultSize,minandmaxprops now accept CSS units inaddition to plain numbers. A plain
numberor%string is a flexible size that shares theleftover space, while a
pxorremstring is a fixed size that keeps its pixel size when thecontainer is resized. This makes it possible to mix a fixed-width sidebar with a fluid content pane:
Notifications priority
Notifications now support a
priorityproperty. When the number of active notifications exceedsthe
limit, notifications with a higherprioritytake the visible slots and lower priority onesare pushed into the queue. Notifications with equal priority keep insertion order (FIFO), so the
default behavior is unchanged (
prioritydefaults to0).