Skip to content

build(deps): bump @mantine/form from 8.3.18 to 9.4.0#135

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

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

Conversation

@dependabot

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

Copy link
Copy Markdown

Bumps @mantine/form from 8.3.18 to 9.4.0.

Release notes

Sourced from @​mantine/form'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
  • 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
  • a73cdec [core] Update minor dependencies version
  • 1aa4848 [@​mantine/form] Fix some handlers not being stable reference (#8891)
  • d6691cc [@​mantine/form] Fix default validators making form.validate return value asyn...
  • b07d290 [release] Version: 9.2.0
  • 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 added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 27, 2026
@dependabot dependabot Bot requested a review from anilguleroglu as a code owner May 27, 2026 15:08
@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/form from 8.3.18 to 9.2.2 Bump @mantine/form from 8.3.18 to 9.3.0 Jun 5, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/form-9.2.2 branch from dc0c2a5 to 65163b0 Compare June 5, 2026 14:37
@dependabot dependabot Bot changed the title Bump @mantine/form from 8.3.18 to 9.3.0 build(deps): bump @mantine/form from 8.3.18 to 9.3.1 Jun 10, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/form-9.2.2 branch from 65163b0 to 31bce01 Compare June 10, 2026 09:25
Bumps [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) 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/form)

---
updated-dependencies:
- dependency-name: "@mantine/form"
  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/form from 8.3.18 to 9.3.1 build(deps): bump @mantine/form from 8.3.18 to 9.4.0 Jun 25, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/mantine/form-9.2.2 branch from 31bce01 to e1bf878 Compare June 25, 2026 06:32
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