Skip to content

build(deps): bump @mantine/core from 8.3.18 to 9.4.0#136

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/mantine/core-9.2.2
Open

build(deps): bump @mantine/core from 8.3.18 to 9.4.0#136
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/mantine/core-9.2.2

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps @mantine/core from 8.3.18 to 9.4.0.

Release notes

Sourced from @​mantine/core's releases.

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

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

import { useState } from 'react';
import { Button, ComboboxPopover } from '@mantine/core';
function Demo() {
const [value, setValue] = useState<string | null>(null);
return (
<ComboboxPopover
data={['React', 'Angular', 'Vue', 'Svelte']}
value={value}
onChange={setValue}
>
<ComboboxPopover.Target>
<Button variant="default" miw={200}>{value || 'Select framework'}</Button>
</ComboboxPopover.Target>
</ComboboxPopover>
);
}

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.

import { DataList } from '@mantine/core';
const data = [
{ label: 'Name', value: 'John Doe' },
{ label: 'Email', value: 'john@example.com' },
{ label: 'Role', value: 'Software Engineer' },
{ label: 'Location', value: 'San Francisco, CA' },
</tr></table>

... (truncated)

Commits
  • 75d5ab5 [release] Version: 9.4.0
  • eb99900 Merge pull request #8992 from mantinedev/9.4
  • 6d27882 [mantine.dev] Fix typo (#8993)
  • 9bddf57 [refactor] Improve ActionIcon tests and docs
  • b32870a [refactor] Add missing Accordion tests
  • 5f982c2 [mantine.dev] Update stale documentation link, update Accordion props descrip...
  • 5ebd57c [@​mantine/core] Accordion: Add better scoped keydown handling to Home and End...
  • 2980174 [@​mantine/core] Input: Fix Input.Wrapper incorrectly setting aria-described b...
  • 552c3cc [@​mantine/core] Menubar: Fix incorrect escape key handling when used inside M...
  • f8792aa [@​mantine/core] Tabs: Fix aria-controls resolving to undefined on initial r...
  • Additional commits viewable in compare view

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot requested a review from anilguleroglu as a code owner May 27, 2026 15:09
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 27, 2026
@dependabot dependabot Bot changed the title build(deps): bump @mantine/core from 8.3.18 to 9.2.2 build(deps): bump @mantine/core from 8.3.18 to 9.3.0 Jun 3, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/core-9.2.2 branch 2 times, most recently from 2a76d6d to 67c28e4 Compare June 5, 2026 10:48
@dependabot dependabot Bot changed the title build(deps): bump @mantine/core from 8.3.18 to 9.3.0 Bump @mantine/core from 8.3.18 to 9.3.0 Jun 5, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/core-9.2.2 branch from 67c28e4 to b2a3553 Compare June 5, 2026 14:37
@dependabot dependabot Bot changed the title Bump @mantine/core from 8.3.18 to 9.3.0 build(deps): bump @mantine/core from 8.3.18 to 9.3.1 Jun 10, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/core-9.2.2 branch from b2a3553 to 60d3d4b Compare June 10, 2026 09:25
Bumps [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) from 8.3.18 to 9.4.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.4.0/packages/@mantine/core)

---
updated-dependencies:
- dependency-name: "@mantine/core"
  dependency-version: 9.2.2
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title build(deps): bump @mantine/core from 8.3.18 to 9.3.1 build(deps): bump @mantine/core from 8.3.18 to 9.4.0 Jun 25, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/core-9.2.2 branch from 60d3d4b to 3bfd200 Compare June 25, 2026 06:33
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