Skip to content

chore(deps): bump @mantine/hooks from 8.3.18 to 9.4.0#5100

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

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

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps @mantine/hooks from 8.3.18 to 9.4.0.

Release notes

Sourced from @​mantine/hooks'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
  • d03d4a3 [@​mantine/core] Splitter: Fix inconsistent px mode detection
  • 791ac6a [@​mantine/hooks] use-splitter: Fix incorrect handling of overflowing panels w...
  • df5b0e4 Merge branch 'master' into 9.4
  • 73a04e0 [release] Version: 9.3.2
  • ff0782e [refactor] Fix ts errors
  • c7267a2 Merge branch 'master' into 9.4
  • bb00207 [@​mantine/core] Splitter: Add option to reset on double click (#8957)
  • 33b8c0f [release] Version: 9.3.1
  • 57dbd5b Merge branch 'master' into 9.4
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies javascript Pull requests that update Javascript code labels Jun 1, 2026
@dependabot dependabot Bot changed the title chore(deps): bump @mantine/hooks from 8.3.18 to 9.2.2 chore(deps): bump @mantine/hooks from 8.3.18 to 9.3.0 Jun 5, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/hooks-9.2.2 branch 3 times, most recently from e938edc to eed692c Compare June 8, 2026 03:02
@dependabot dependabot Bot changed the title chore(deps): bump @mantine/hooks from 8.3.18 to 9.3.0 chore(deps): bump @mantine/hooks from 8.3.18 to 9.3.1 Jun 13, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/hooks-9.2.2 branch from eed692c to b3d3e51 Compare June 13, 2026 01:34
@dependabot dependabot Bot changed the title chore(deps): bump @mantine/hooks from 8.3.18 to 9.3.1 chore(deps): bump @mantine/hooks from 8.3.18 to 9.3.2 Jun 21, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/hooks-9.2.2 branch 4 times, most recently from 8af1f0c to e220119 Compare June 21, 2026 17:50
@dependabot dependabot Bot changed the title chore(deps): bump @mantine/hooks from 8.3.18 to 9.3.2 chore(deps): bump @mantine/hooks from 8.3.18 to 9.4.0 Jun 23, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/hooks-9.2.2 branch 2 times, most recently from 13cc399 to 027b726 Compare June 23, 2026 21:26
Bumps [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) 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/hooks)

---
updated-dependencies:
- dependency-name: "@mantine/hooks"
  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 force-pushed the dependabot/npm_and_yarn/mantine/hooks-9.2.2 branch from 027b726 to c2dec98 Compare June 26, 2026 03:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants