Skip to content

Bump the mantine group across 1 directory with 4 updates#25758

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a
Open

Bump the mantine group across 1 directory with 4 updates#25758
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the mantine group with 4 updates in the /graylog2-web-interface directory: @mantine/core, @mantine/dropzone, @mantine/hooks and @mantine/notifications.

Updates @mantine/core from 8.3.15 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

Updates @mantine/dropzone from 8.3.15 to 9.4.0

Release notes

Sourced from @​mantine/dropzone'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
  • 742ccdf [core] Minor dependencies updates
  • 73a04e0 [release] Version: 9.3.2
  • 33b8c0f [release] Version: 9.3.1
  • bf03b9a [release] Version: 9.3.0
  • 4685c41 [release] Version: 9.2.2
  • cd3bff3 [release] Version: 9.2.1
  • c8ac4e4 [refactor] Fix tests
  • a73cdec [core] Update minor dependencies version
  • 72629c3 [@​mantine/dropzone] Change useFsAccessApi to false by default to make Dropz...
  • Additional commits viewable in compare view

Updates @mantine/hooks from 8.3.15 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

Updates @mantine/notifications from 8.3.15 to 9.4.0

Release notes

Sourced from @​mantine/notifications'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
  • 96446c5 [@​mantine/notifications] Fix cleanNotificationsQueue clearing priority noti...
  • 742ccdf [core] Minor dependencies updates
  • df5b0e4 Merge branch 'master' into 9.4
  • 73a04e0 [release] Version: 9.3.2
  • c7267a2 Merge branch 'master' into 9.4
  • 33b8c0f [release] Version: 9.3.1
  • 9d26915 [@​mantine/notifications] Fix stale DOM nodes references not being cleaned up ...
  • 3f09946 [@​mantine/notifications] Add priority queue support
  • bf03b9a [release] Version: 9.3.0
  • Additional commits viewable in compare view

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Apr 22, 2026
@dependabot dependabot Bot changed the title Bump the mantine group in /graylog2-web-interface with 4 updates Bump the mantine group across 1 directory with 4 updates Apr 23, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 5 times, most recently from 1a8a060 to 96a9ac2 Compare April 29, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 5 times, most recently from 1de1bce to 266a4e5 Compare May 7, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 6 times, most recently from 58f9fb4 to 4e7a359 Compare May 15, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 7 times, most recently from 8174a24 to d265efa Compare May 25, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 4 times, most recently from 1036107 to 99e3675 Compare June 1, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch from 99e3675 to 0da40eb Compare June 3, 2026 17:57
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 7 times, most recently from 12ce39b to 49a5804 Compare June 11, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 7 times, most recently from 8a9371c to 66c59f6 Compare June 19, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 5 times, most recently from d2632a5 to 1047285 Compare June 26, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 3 times, most recently from d0ef381 to cd022dd Compare July 1, 2026 00:04
Bumps the mantine group with 4 updates in the /graylog2-web-interface directory: [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core), [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone), [@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.15 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)

Updates `@mantine/dropzone` from 8.3.15 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/dropzone)

Updates `@mantine/hooks` from 8.3.15 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)

Updates `@mantine/notifications` from 8.3.15 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/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/dropzone"
  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/graylog2-web-interface/mantine-90faef034a branch from cd022dd to 535a064 Compare July 2, 2026 00:04
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants