Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Sep 8, 2025

Bumps @mantine/core from 7.17.8 to 8.3.0.

Release notes

Sourced from @​mantine/core's releases.

8.3.0 🔥

View changelog with demos on mantine.dev website

MiniCalendar component

New MiniCalendar component:

import { useState } from 'react';
import { MiniCalendar } from '@mantine/dates';
function Demo() {
const [value, onChange] = useState<string | null>('2025-04-15');
return <MiniCalendar value={value} onChange={onChange} numberOfDays={6} />;
}

Progress vertical orientation

Progress now supports vertical orientation:

import { Progress } from '@mantine/core';
function Demo() {
return (
<Group>
<Progress value={80} orientation="vertical" h={200} />
<Progress value={60} color="orange" size="xl" orientation="vertical" h={200} animated />
  &lt;Progress.Root size=&quot;xl&quot; autoContrast orientation=&quot;vertical&quot; h={200}&gt;
    &lt;Progress.Section value={40} color=&quot;lime.4&quot;&gt;
      &lt;Progress.Label&gt;Documents&lt;/Progress.Label&gt;
    &lt;/Progress.Section&gt;
    &lt;Progress.Section value={20} color=&quot;yellow.4&quot;&gt;
      &lt;Progress.Label&gt;Apps&lt;/Progress.Label&gt;
    &lt;/Progress.Section&gt;
    &lt;Progress.Section value={20} color=&quot;cyan.7&quot;&gt;
      &lt;Progress.Label&gt;Other&lt;/Progress.Label&gt;
    &lt;/Progress.Section&gt;
  &lt;/Progress.Root&gt;
&lt;/Group&gt;

);
}

Heatmap splitMonths

Heatmap now supports splitMonths prop to visually separate months with a spacer column and render only days that belong to each month in its columns.

... (truncated)

Commits
  • 081c992 [release] Version: 8.3.0
  • b7acae4 [core] Fix failing tests
  • d639d90 [@​mantine/core] Improve clearable prop handling in all inputs components
  • f5c7df6 [@​mantine/core] ColorPicker: Add highlight of the active color swatch
  • ddc074d [@​mantine/core] Popover: Fix position updates handling with keepMounted: false
  • 7af7bde [@​mantine/core] MultiSelect: Add selected values retaining logic
  • 4176385 [@​mantine/core] Select: Add selected options retaining
  • 58f6313 [@​mantine/core] Add dir attribute subscriptions to DirectionProvider
  • c3bbbd0 [core] Update minor dependencies
  • 4184ab7 Merge branch master into 8.3
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) from 7.17.8 to 8.3.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/8.3.0/packages/@mantine/core)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 8, 2025
Copy link
Author

dependabot bot commented on behalf of github Sep 15, 2025

Superseded by #39.

@dependabot dependabot bot closed this Sep 15, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/mantine/core-8.3.0 branch September 15, 2025 22:22
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