Support Mantine development
You can now sponsor Mantine development with OpenCollective. All funds are used to improve Mantine and create new features and components.
Sponsor MantineComboboxPopover component
New ComboboxPopover component allows adding a combobox dropdown
with selectable options to any button element. Unlike Select and MultiSelect, it does not
render an input – you provide your own target element via ComboboxPopover.Target. Supports
single and multiple selection modes with the same data format as Select.
DataList component
New DataList component displays label-value pairs as a semantic description
list using dl, dt, and dd HTML elements. Supports vertical and horizontal orientations,
dividers between items, and all standard Mantine features like Styles API and size prop.
- Name
- John Doe
- john@example.com
- Role
- Software Engineer
- Location
- San Francisco, CA
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, title and description shorthand props
or with EmptyState.Indicator, EmptyState.Title, EmptyState.Description and
EmptyState.Actions compound components for full control.
We couldn't find anything matching your search. Try adjusting your filters or searching with different keywords to see more results.
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. Menubar is built on top of Menu and 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,
ResourcesWeekView and ResourcesMonthView into a single component with view switching, similar
to how Schedule combines 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.
June 1, 2026 – June 30, 2026
Monday, June 1
Tuesday, June 2
Wednesday, June 3
Thursday, June 4
Friday, June 5
Monday, June 8
Tuesday, June 9
Wednesday, June 10
Thursday, June 11
Friday, June 12
Monday, June 15
Tuesday, June 16
Wednesday, June 17
Thursday, June 18
Friday, June 19
Monday, June 22
Tuesday, June 23
Wednesday, June 24
Thursday, June 25
Friday, June 26
Monday, June 29
Tuesday, June 30
withAgenda prop for DayView, WeekView, MonthView and Schedule
DayView, WeekView, MonthView and Schedule components now support withAgenda prop.
When enabled, an "Agenda" button is displayed in the header. Clicking it opens an AgendaView
for the currently visible date range.
MonthView hide weekend days
MonthView now supports withWeekendDays prop. Set it to false
to 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 weekendDays prop (or DatesProvider, [0, 6] by default).
DayView and WeekView sub-hour grid lines
DayView and WeekView now support withSubHourGridLines
prop. When intervalMinutes is smaller than 60, set withSubHourGridLines={false} to display only
one 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 Input and Input.Wrapper now support a success prop. When set, it changes the
input border color to green (--mantine-color-success). You can also pass a React node to display
a success message below the input. If both error and success props are set, error takes precedence.
New --mantine-color-success CSS variable has been added (resolves to teal-6 in light mode and teal-8 in dark mode).
Username is available
Splitter CSS units
Splitter.Pane defaultSize, min and max props now accept CSS units in
addition to plain numbers. A plain number or % string is a flexible size that shares the
leftover space, while a px or rem string is a fixed size that keeps its pixel size when the
container is resized. This makes it possible to mix a fixed-width sidebar with a fluid content pane:
Notifications priority
Notifications now support a priority property. When the number of active notifications exceeds
the limit, notifications with a higher priority take the visible slots and lower priority ones
are pushed into the queue. Notifications with equal priority keep insertion order (FIFO), so the
default behavior is unchanged (priority defaults to 0).
Legend support for PieChart, DonutChart and FunnelChart
PieChart, DonutChart and FunnelChart
now support the withLegend prop. When enabled, a legend with the name and color of each segment
is displayed. Hovering over a legend item highlights the corresponding segment. Use the legendProps
prop to pass props down to the underlying recharts Legend component.
autoContrast support for virtual colors
Virtual colors now support autoContrast.
Previously, filled components with a virtual color always used white text because the underlying color
could not be resolved on the JavaScript side. The contrast color is now calculated separately for each
color scheme based on the resolved background color, so text stays readable when the virtual color resolves
to a light color in one scheme and a dark color in another. Switch between light and dark color schemes
(Ctrl + J) to see the text color adjust:
Other changes
- Splitter now supports
resetOnDoubleClickprop. When enabled, double-clicking a resize handle restores the adjacent panes to their default ratio. - TimePicker now supports
closeDropdownOnPresetSelectprop. When set, the dropdown is closed once a value is selected from the presets list. - useLongPress hook now handles
onTouchCancelevents: the returned handlers include anonTouchCancelcallback so that a long press is correctly canceled when the touch is interrupted by the system (incoming call, browser gesture, etc.).