Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 16, 2025

Bumps the ui-libraries group with 10 updates:

Package From To
@mantine/colors-generator 8.0.2 8.1.0
@mantine/core 8.0.2 8.1.0
@mantine/dates 8.0.2 8.1.0
@mantine/dropzone 8.0.2 8.1.0
@mantine/form 8.0.2 8.1.0
@mantine/hooks 8.0.2 8.1.0
@mantine/modals 8.0.2 8.1.0
@mantine/notifications 8.0.2 8.1.0
@mantine/nprogress 8.0.2 8.1.0
@mantine/spotlight 8.0.2 8.1.0

Updates @mantine/colors-generator from 8.0.2 to 8.1.0

Release notes

Sourced from @​mantine/colors-generator's releases.

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
return (
<DatePicker
type="range"
presets={[
{
value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last two days',
},
{
value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last 7 days',
},
{
value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'This month',
},
{
value: [
today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'),
today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'),
],
label: 'Last month',
},
{
value: [
today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'),
today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'),
],
label: 'Last year',
},
]}
/>
);
}

... (truncated)

Commits

Updates @mantine/core from 8.0.2 to 8.1.0

Release notes

Sourced from @​mantine/core's releases.

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
return (
<DatePicker
type="range"
presets={[
{
value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last two days',
},
{
value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last 7 days',
},
{
value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'This month',
},
{
value: [
today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'),
today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'),
],
label: 'Last month',
},
{
value: [
today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'),
today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'),
],
label: 'Last year',
},
]}
/>
);
}

... (truncated)

Commits
  • ee3bd37 [release] Version: 8.1.0
  • da92747 Merge branch 'master' of github.com:mantinedev/mantine into 8.1
  • 5b98552 [@​mantine/core] Fix toRgba function incorrectly handling values with zero t...
  • f7910a9 [@​mantine/core] Overlay: Fix blur not working in older browsers (#7907)
  • c514d24 [@​mantine/core] Collapse: Fix inert attribute being incompatible with React...
  • d411326 Merge branch 'master' into 8.1
  • e69f0f6 [@​mantine/core] Select: Fix failing tests
  • e08911b [@​mantine/core] Popover: Fix act errors in tests
  • edf0b07 Merge branch master into 8.1
  • 74a938e Merge branch into 8.1.0
  • Additional commits viewable in compare view

Updates @mantine/dates from 8.0.2 to 8.1.0

Release notes

Sourced from @​mantine/dates's releases.

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
return (
<DatePicker
type="range"
presets={[
{
value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last two days',
},
{
value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last 7 days',
},
{
value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'This month',
},
{
value: [
today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'),
today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'),
],
label: 'Last month',
},
{
value: [
today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'),
today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'),
],
label: 'Last year',
},
]}
/>
);
}

... (truncated)

Commits
  • ee3bd37 [release] Version: 8.1.0
  • d411326 Merge branch 'master' into 8.1
  • 8cd74e8 Merge branch 'master' of github.com:mantinedev/mantine into 8.1
  • 2697932 [@​mantine/dates] Add headerControlsOrder prop support to Calendar
  • 0ceb4e1 [@​mantine/dates] DatePicker: Fix others props not being passed to Calendar wh...
  • 7b331f0 [@​mantine/dates] Reset level to month when preset is selected
  • d896494 [@​mantine/dates] DatePicker: Fix incorrect handling of range preset
  • 68adaaf [@​mantine/dates] DatePicker: Fix size not being passed to calendar
  • 5521471 [@​mantine/dates] Fix jump to date not working when a preset is selected in Da...
  • d48aa9b [refactor] Fix ts errors
  • Additional commits viewable in compare view

Updates @mantine/dropzone from 8.0.2 to 8.1.0

Release notes

Sourced from @​mantine/dropzone's releases.

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
return (
<DatePicker
type="range"
presets={[
{
value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last two days',
},
{
value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last 7 days',
},
{
value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'This month',
},
{
value: [
today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'),
today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'),
],
label: 'Last month',
},
{
value: [
today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'),
today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'),
],
label: 'Last year',
},
]}
/>
);
}

... (truncated)

Commits
  • ee3bd37 [release] Version: 8.1.0
  • d411326 Merge branch 'master' into 8.1
  • 0c25d6e Merge branch master into 8.1
  • dffd60e Merge branch 'master' of github.com:mantinedev/mantine into 8.1
  • 0ad2bed [@​mantine/core] Add BasePortalProps type
  • 4423408 [refactor] Fix incorrect types usage with defaultProps
  • See full diff in compare view

Updates @mantine/form from 8.0.2 to 8.1.0

Release notes

Sourced from @​mantine/form's releases.

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
return (
<DatePicker
type="range"
presets={[
{
value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last two days',
},
{
value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last 7 days',
},
{
value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'This month',
},
{
value: [
today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'),
today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'),
],
label: 'Last month',
},
{
value: [
today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'),
today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'),
],
label: 'Last year',
},
]}
/>
);
}

... (truncated)

Commits
  • ee3bd37 [release] Version: 8.1.0
  • d411326 Merge branch 'master' into 8.1
  • 9023b6b Merge branch 'master' of github.com:mantinedev/mantine into 8.1
  • 0c25d6e Merge branch master into 8.1
  • f559894 Merge branch '8.1.0-contributions' of github.com:mantinedev/mantine into 8.1
  • 19f8343 [@​mantine/form] Add resetField method to form utilities (#7806)
  • 42f9b01 [refactor] Replace old MutableRefObject type with RefObject
  • See full diff in compare view

Updates @mantine/hooks from 8.0.2 to 8.1.0

Release notes

Sourced from @​mantine/hooks's releases.

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
return (
<DatePicker
type="range"
presets={[
{
value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last two days',
},
{
value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last 7 days',
},
{
value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'This month',
},
{
value: [
today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'),
today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'),
],
label: 'Last month',
},
{
value: [
today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'),
today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'),
],
label: 'Last year',
},
]}
/>
);
}

... (truncated)

Commits
  • ee3bd37 [release] Version: 8.1.0
  • da92747 Merge branch 'master' of github.com:mantinedev/mantine into 8.1
  • fe4603b [@​mantine/hooks] use-idle: Fix timeout not being cancelled when the parent co...
  • d411326 Merge branch 'master' into 8.1
  • 8cd74e8 Merge branch 'master' of github.com:mantinedev/mantine into 8.1
  • 0c25d6e Merge branch master into 8.1
  • 1e04f2a [core] Fix deprecation warnings in all packages
  • f34374f [@​mantine/hooks] use-long-press: Initialize hook
  • 60da723 [@​mantine/hooks] use-interval: Fix incorrect memoization
  • 20dc000 [@​mantine/hooks] use-window-scroll: Add types exports
  • Additional commits viewable in compare view

Updates @mantine/modals from 8.0.2 to 8.1.0

Release notes

Sourced from @​mantine/modals's releases.

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
return (
<DatePicker
type="range"
presets={[
{
value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last two days',
},
{
value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last 7 days',
},
{
value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'This month',
},
{
value: [
today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'),
today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'),
],
label: 'Last month',
},
{
value: [
today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'),
today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'),
],
label: 'Last year',
},
]}
/>
);
}

... (truncated)

Commits

Updates @mantine/notifications from 8.0.2 to 8.1.0

Release notes

Sourced from @​mantine/notifications's releases.

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
return (
<DatePicker
type="range"
presets={[
{
value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last two days',
},
{
value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last 7 days',
},
{
value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'This month',
},
{
value: [
today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'),
today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'),
],
label: 'Last month',
},
{
value: [
today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'),
today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'),
],
label: 'Last year',
},
]}
/>
);
}

... (truncated)

Commits
  • ee3bd37 [release] Version: 8.1.0
  • d411326 Merge branch 'master' into 8.1
  • 0c25d6e Merge branch master into 8.1
  • 0ad2bed [@​mantine/core] Add BasePortalProps type
  • 4423408 [refactor] Fix incorrect types usage with defaultProps
  • See full diff in compare view

Updates @mantine/nprogress from 8.0.2 to 8.1.0

Release notes

Sourced from @​mantine/nprogress's releases.

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
return (
<DatePicker
type="range"
presets={[
{
value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last two days',
},
{
value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last 7 days',
},
{
value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'This month',
},
{
value: [
today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'),
today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'),
],
label: 'Last month',
},
{
value: [
today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'),
today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'),
],
label: 'Last year',
},
]}
/>
);
}

... (truncated)

Commits

Updates @mantine/spotlight from 8.0.2 to 8.1.0

Release notes

Sourced from @​mantine/spotlight's releases.

8.1.0

View changelog with demos on mantine.dev website

DatePicker presets

DatePicker, DatePickerInput and DateTimePicker now support presets prop that allows you to add custom date presets. Presets are displayed next to the calendar:

import dayjs from 'dayjs';
import { DatePicker } from '@mantine/dates';
function Demo() {
const today = dayjs();
return (
<DatePicker
type="range"
presets={[
{
value: [today.subtract(2, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last two days',
},
{
value: [today.subtract(7, 'day').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'Last 7 days',
},
{
value: [today.startOf('month').format('YYYY-MM-DD'), today.format('YYYY-MM-DD')],
label: 'This month',
},
{
value: [
today.subtract(1, 'month').startOf('month').format('YYYY-MM-DD'),
today.subtract(1, 'month').endOf('month').format('YYYY-MM-DD'),
],
label: 'Last month',
},
{
value: [
today.subtract(1, 'year').startOf('year').format('YYYY-MM-DD'),
today.subtract(1, 'year').endOf('year').format('YYYY-MM-DD'),
],
label: 'Last year',
},
]}
/>
);
}

... (truncated)

Commits
  • ee3bd37 [release] Version: 8.1.0
  • d411326 Merge branch 'master' into 8.1
  • edf0b07 Merge branch master into 8.1
  • 0c25d6e Merge branch master into 8.1
  • 4423408 [refactor] Fix incorrect types usage with defaultProps
  • See full diff in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the ui-libraries group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@mantine/colors-generator](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/colors-generator) | `8.0.2` | `8.1.0` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `8.0.2` | `8.1.0` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `8.0.2` | `8.1.0` |
| [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone) | `8.0.2` | `8.1.0` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `8.0.2` | `8.1.0` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.0.2` | `8.1.0` |
| [@mantine/modals](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/modals) | `8.0.2` | `8.1.0` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.0.2` | `8.1.0` |
| [@mantine/nprogress](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/nprogress) | `8.0.2` | `8.1.0` |
| [@mantine/spotlight](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/spotlight) | `8.0.2` | `8.1.0` |


Updates `@mantine/colors-generator` from 8.0.2 to 8.1.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.1.0/packages/@mantine/colors-generator)

Updates `@mantine/core` from 8.0.2 to 8.1.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.1.0/packages/@mantine/core)

Updates `@mantine/dates` from 8.0.2 to 8.1.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.1.0/packages/@mantine/dates)

Updates `@mantine/dropzone` from 8.0.2 to 8.1.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.1.0/packages/@mantine/dropzone)

Updates `@mantine/form` from 8.0.2 to 8.1.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.1.0/packages/@mantine/form)

Updates `@mantine/hooks` from 8.0.2 to 8.1.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.1.0/packages/@mantine/hooks)

Updates `@mantine/modals` from 8.0.2 to 8.1.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.1.0/packages/@mantine/modals)

Updates `@mantine/notifications` from 8.0.2 to 8.1.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.1.0/packages/@mantine/notifications)

Updates `@mantine/nprogress` from 8.0.2 to 8.1.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.1.0/packages/@mantine/nprogress)

Updates `@mantine/spotlight` from 8.0.2 to 8.1.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.1.0/packages/@mantine/spotlight)

---
updated-dependencies:
- dependency-name: "@mantine/colors-generator"
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ui-libraries
- dependency-name: "@mantine/core"
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ui-libraries
- dependency-name: "@mantine/dates"
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ui-libraries
- dependency-name: "@mantine/dropzone"
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ui-libraries
- dependency-name: "@mantine/form"
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ui-libraries
- dependency-name: "@mantine/hooks"
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ui-libraries
- dependency-name: "@mantine/modals"
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ui-libraries
- dependency-name: "@mantine/notifications"
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ui-libraries
- dependency-name: "@mantine/nprogress"
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ui-libraries
- dependency-name: "@mantine/spotlight"
  dependency-version: 8.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: ui-libraries
...

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 Jun 16, 2025
@dependabot dependabot bot requested a review from adidahiya as a code owner June 16, 2025 09:20
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 16, 2025
@github-actions
Copy link

github-actions bot commented Jun 16, 2025

PR Preview Action v1.6.1
Preview removed because the pull request was closed.
2025-06-18 13:25 UTC

@adidahiya adidahiya merged commit 71c23d1 into main Jun 18, 2025
8 checks passed
@adidahiya adidahiya deleted the dependabot/npm_and_yarn/ui-libraries-3494fb9dbf branch June 18, 2025 13:24
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.

2 participants