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

Release notes

Sourced from @​mantine/core's releases.

9.4.1

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 -0 for 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] Add FormProviderProps type 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: Mark non-menuitem dropdown children as presentational (#9004)
  • [@mantine/core] Collapse: Fix ref and style props not working when transitionDuration: 0 (#9013)
  • [@mantine/core] Textarea: Fix autosize not working correctly with minRows on initial render
  • [@mantine/schedule] ResourcesWeekView: Add events resizing support

New Contributors

Full Changelog: mantinedev/mantine@9.4.0...9.4.1

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>
</tr></table>

... (truncated)

Commits
  • d709e0b [release] Version: 9.4.1
  • ed92b23 [@​mantine/core] RollingNumber: Fix rendering -0 for values that round to ze...
  • b41b4a4 [@​mantine/core] Slider: Fix incorrect marks labels position in RTL layouts (#...
  • 498c956 [@​mantine/core] Menu: Mark non-menuitem dropdown children as presentational...
  • aa11f2f [@​mantine/core] Collapse: Fix ref and style props not working when `trans...
  • fcfbbf3 [@​mantine/core] Textarea: Fix autosize not working correctly with minRows o...
  • 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
  • Additional commits viewable in compare view

Updates @mantine/dropzone from 8.3.15 to 9.4.1

Release notes

Sourced from @​mantine/dropzone's releases.

9.4.1

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 -0 for 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] Add FormProviderProps type 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: Mark non-menuitem dropdown children as presentational (#9004)
  • [@mantine/core] Collapse: Fix ref and style props not working when transitionDuration: 0 (#9013)
  • [@mantine/core] Textarea: Fix autosize not working correctly with minRows on initial render
  • [@mantine/schedule] ResourcesWeekView: Add events resizing support

New Contributors

Full Changelog: mantinedev/mantine@9.4.0...9.4.1

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>
</tr></table>

... (truncated)

Commits

Updates @mantine/hooks from 8.3.15 to 9.4.1

Release notes

Sourced from @​mantine/hooks's releases.

9.4.1

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 -0 for 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] Add FormProviderProps type 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: Mark non-menuitem dropdown children as presentational (#9004)
  • [@mantine/core] Collapse: Fix ref and style props not working when transitionDuration: 0 (#9013)
  • [@mantine/core] Textarea: Fix autosize not working correctly with minRows on initial render
  • [@mantine/schedule] ResourcesWeekView: Add events resizing support

New Contributors

Full Changelog: mantinedev/mantine@9.4.0...9.4.1

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>
</tr></table>

... (truncated)

Commits
  • d709e0b [release] Version: 9.4.1
  • 4f3d7d0 [@​mantine/hooks] Fix use-set and use-map hooks using stale values when used w...
  • 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)
  • Additional commits viewable in compare view

Updates @mantine/notifications from 8.3.15 to 9.4.1

Release notes

Sourced from @​mantine/notifications's releases.

9.4.1

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 -0 for 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] Add FormProviderProps type 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: Mark non-menuitem dropdown children as presentational (#9004)
  • [@mantine/core] Collapse: Fix ref and style props not working when transitionDuration: 0 (#9013)
  • [@mantine/core] Textarea: Fix autosize not working correctly with minRows on initial render
  • [@mantine/schedule] ResourcesWeekView: Add events resizing support

New Contributors

Full Changelog: mantinedev/mantine@9.4.0...9.4.1

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>
</tr></table>

... (truncated)

Commits
  • d709e0b [release] Version: 9.4.1
  • 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
  • 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 6 times, most recently from bf7fbae to eb8c5f4 Compare June 16, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 7 times, most recently from bfe4738 to fb06894 Compare June 24, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 6 times, most recently from cd022dd to 535a064 Compare July 2, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 5 times, most recently from 9bff8a6 to ef3b054 Compare July 9, 2026 00:04
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/graylog2-web-interface/mantine-90faef034a branch 4 times, most recently from bace1d4 to 162232e Compare July 15, 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.1
- [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.1/packages/@mantine/core)

Updates `@mantine/dropzone` from 8.3.15 to 9.4.1
- [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.1/packages/@mantine/dropzone)

Updates `@mantine/hooks` from 8.3.15 to 9.4.1
- [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.1/packages/@mantine/hooks)

Updates `@mantine/notifications` from 8.3.15 to 9.4.1
- [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.1/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 162232e to 513e194 Compare July 16, 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