Skip to content

chore(deps): bump the dependencies group across 1 directory with 30 updates#11726

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/src/frontend/dependencies-d1aceeae03
Open

chore(deps): bump the dependencies group across 1 directory with 30 updates#11726
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/src/frontend/dependencies-d1aceeae03

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 11, 2026

Bumps the dependencies group with 30 updates in the /src/frontend directory:

Package From To
@codemirror/view 6.40.0 6.41.0
@lingui/core 5.9.3 5.9.4
@lingui/react 5.9.3 5.9.4
@mantine/carousel 8.3.18 9.0.0
@mantine/charts 8.3.18 9.0.0
@mantine/core 8.3.18 9.0.0
@mantine/dates 8.3.18 9.0.0
@mantine/dropzone 8.3.18 9.0.0
@mantine/form 8.3.18 9.0.0
@mantine/hooks 8.3.18 9.0.0
@mantine/modals 8.3.18 9.0.0
@mantine/notifications 8.3.18 9.0.0
@mantine/spotlight 8.3.18 9.0.0
@mantine/vanilla-extract 8.3.18 9.0.0
@sentry/react 10.46.0 10.47.0
@tabler/icons-react 3.40.0 3.41.1
@tanstack/react-query 5.95.2 5.96.2
@vanilla-extract/css 1.20.0 1.20.1
fuse.js 7.1.0 7.2.0
react-hook-form 7.72.0 7.72.1
@lingui/babel-plugin-lingui-macro 5.9.3 5.9.4
@lingui/cli 5.9.3 5.9.4
@lingui/macro 5.9.3 5.9.4
@playwright/test 1.58.2 1.59.1
@types/node 25.5.0 25.5.2
@vanilla-extract/vite-plugin 5.2.1 5.2.2
@vitejs/plugin-react 5.2.0 6.0.1
rollup 4.60.0 4.60.1
typescript 5.9.3 6.0.2
vite 7.3.2 8.0.3

Updates @codemirror/view from 6.40.0 to 6.41.0

Changelog

Sourced from @​codemirror/view's changelog.

6.41.0 (2026-04-01)

Bug fixes

Fix an issue where EditorView.posAtCoords could incorrectly return a position near a higher element on the line, in mixed-font-size lines.

Expand the workaround for the Webkit bug that causes nonexistent selections to stay visible to be active on non-Safari Webkit browsers.

New features

The new EditorView.cursorScrollMargin facet can now be used to configure the extra space used when scrolling the cursor into view.

Commits
  • a0a5ed9 Mark version 6.41.0
  • c834ebf Enable the workaround for ghost selections in all forms of Webkit
  • 49d72c4 Improve posAtCoords in non-uniform height lines
  • 4935d24 Make the margin used when scrolling the cursor into view configurable
  • ed7d625 Remove duplicated slash in forum url in README
  • c3770d3 Fix forum link in readme
  • See full diff in compare view

Updates @lingui/core from 5.9.3 to 5.9.4

Release notes

Sourced from @​lingui/core's releases.

v5.9.4

5.9.4 (2026-03-27)

Bug Fixes

  • cli: really keep catalog extra from previous catalog (#2479) (c939113)
Changelog

Sourced from @​lingui/core's changelog.

5.9.4 (2026-03-27)

Note: Version bump only for package @​lingui/core

Commits

Updates @lingui/react from 5.9.3 to 5.9.4

Release notes

Sourced from @​lingui/react's releases.

v5.9.4

5.9.4 (2026-03-27)

Bug Fixes

  • cli: really keep catalog extra from previous catalog (#2479) (c939113)
Changelog

Sourced from @​lingui/react's changelog.

5.9.4 (2026-03-27)

Note: Version bump only for package @​lingui/react

Commits

Updates @mantine/carousel from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/carousel's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • a097b0c [release] Version: 9.0.0-alpha.6
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • f6427cb [core] Update minor dependencies version
  • e77af46 [refactor] Prettier write
  • 0cab72d [core] Update peer requirements to use React 19.2
  • 00e068a [release] Version: 9.0.0-alpha.4
  • 0706f97 [release] Version: 9.0.0-alpha.3
  • ad1a3f1 [release] Version: 9.0.0-alpha.2
  • f3b0ff8 [release] Version: 9.0.0-alpha.1
  • 4def3ff [release] Version: 9.0.0-alpha.0
  • Additional commits viewable in compare view

Updates @mantine/charts from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/charts's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • b57ea1f [core] Update README files
  • 21aa8ab Merge branch 'master' into 9.0
  • 50a9ce9 [@​mantine/charts] Heatmap: Fix incorrect values calculation when there is onl...
  • 5786d5e Merge branch 'master' into 9.0
  • 1cb55b4 [@​mantine/charts] FunnelChart: Prevent strokeColor and labelColor from being ...
  • 05d5d34 [@​mantine/charts] Replace deprecated Cell component
  • a097b0c [release] Version: 9.0.0-alpha.6
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • f6427cb [core] Update minor dependencies version
  • b6ffaec [core] Fix @types/react dependencies mismatch
  • Additional commits viewable in compare view

Updates @mantine/core from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/core's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • 26e66ee [@​mantine/core] Stepper: Fix missing stepperIconContent styles api selector
  • 8255d39 [@​mantine/core] Stepper: Fix loader not being aligned
  • 6e63e0f [@​mantine/core] Add text-box-trim styles to Badge, Button, Chip and Pill
  • b42ff5f [refactor] Fix failing tests
  • c75a1fc [@​mantine/core] Change default radius value to md
  • 79cfa90 [refactor] Fix failing tests
  • a1560f7 [@​mantine/core] Select: Fix number not working as values (#8780)
  • 3279ac3 [refactor] Fix tests
  • 21aa8ab Merge branch 'master' into 9.0
  • 3d07ff1 [@​mantine/core] Combobox: Fix incorrect role attribute (#8767)
  • Additional commits viewable in compare view

Updates @mantine/dates from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/dates's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • b42ff5f [refactor] Fix failing tests
  • c75a1fc [@​mantine/core] Change default radius value to md
  • a097b0c [release] Version: 9.0.0-alpha.6
  • 4470194 Merge branch 'master' into 9.0
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • aa1c9ce [@​mantine/dates] Fix incorrect range styles
  • f6427cb [core] Update minor dependencies version
  • e77af46 [refactor] Prettier write
  • 0cab72d [core] Update peer requirements to use React 19.2
  • 00e068a [release] Version: 9.0.0-alpha.4
  • Additional commits viewable in compare view

Updates @mantine/dropzone from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/dropzone's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • a097b0c [release] Version: 9.0.0-alpha.6
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • f6427cb [core] Update minor dependencies version
  • e77af46 [refactor] Prettier write
  • 0cab72d [core] Update peer requirements to use React 19.2
  • 00e068a [release] Version: 9.0.0-alpha.4
  • 0706f97 [release] Version: 9.0.0-alpha.3
  • ad1a3f1 [release] Version: 9.0.0-alpha.2
  • f3b0ff8 [release] Version: 9.0.0-alpha.1
  • a8d90a7 Merge branch master into 9.0
  • Additional commits viewable in compare view

Updates @mantine/form from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/form's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • 79cfa90 [refactor] Fix failing tests
  • 0fabf4e [@​mantine/form] Fix form.watch not working with arrays (#6996)
  • ac4aeb8 [@​mantine/form] Update types to use new React 19 features
  • 7aeb1ad [@​mantine/form] Make Values and TransformedValues covariant (#8198)
  • a097b0c [release] Version: 9.0.0-alpha.6
  • 81d8a54 [refactor] Fix tests
  • 0bf0b44 [@​mantine/form] Add standard schema resolvers support
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • 0cab72d [core] Update peer requirements to use React 19.2
  • 00e068a [release] Version: 9.0.0-alpha.4
  • Additional commits viewable in compare view

Updates @mantine/hooks from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/hooks's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • 9d010d5 [@​mantine/hooks] use-local-storage: Fix incorrect definition when defaultValu...
  • a097b0c [release] Version: 9.0.0-alpha.6
  • dc703c3 [@​mantine/hooks] Add local stories for browser hooks
  • 4470194 Merge branch 'master' into 9.0
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • f6427cb [core] Update minor dependencies version
  • 6abd06e [@​mantine/core] ScrollArea: refactor resize observer usage
  • a57d47c [@​mantine/hooks] Improve tests
  • 0b8cafb [@​mantine/hooks] Migrate to useEffectEvent
  • 074fa97 [@​mantine/hooks] use-hotkeys: Migrate to useEffectEvent, add tests
  • Additional commits viewable in compare view

Updates @mantine/modals from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/modals's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • a097b0c [release] Version: 9.0.0-alpha.6
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • f6427cb [core] Update minor dependencies version
  • 0cab72d [core] Update peer requirements to use React 19.2
  • 00e068a [release] Version: 9.0.0-alpha.4
  • 30877eb Merge branch master into 9.0
  • 0706f97 [release] Version: 9.0.0-alpha.3
  • ad1a3f1 [release] Version: 9.0.0-alpha.2
  • f3b0ff8 [release] Version: 9.0.0-alpha.1
  • 4def3ff [release] Version: 9.0.0-alpha.0
  • Additional commits viewable in compare view

Updates @mantine/notifications from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/notifications's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • 6f91e24 [@​mantine/notifications] Add new option to not close all notifications when h...
  • a097b0c [release] Version: 9.0.0-alpha.6
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • f6427cb [core] Update minor dependencies version
  • e77af46 [refactor] Prettier write
  • 0cab72d [core] Update peer requirements to use React 19.2
  • 00e068a [release] Version: 9.0.0-alpha.4
  • 0706f97 [release] Version: 9.0.0-alpha.3
  • ad1a3f1 [release] Version: 9.0.0-alpha.2
  • f3b0ff8 [release] Version: 9.0.0-alpha.1
  • Additional commits viewable in compare view

Updates @mantine/spotlight from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/spotlight's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • a097b0c [release] Version: 9.0.0-alpha.6
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • f6427cb [core] Update minor dependencies version
  • e77af46 [refactor] Prettier write
  • 0cab72d [core] Update peer requirements to use React 19.2
  • 00e068a [release] Version: 9.0.0-alpha.4
  • 30877eb Merge branch master into 9.0
  • 1dc04ec [@​mantine/core] ScrollArea: Add initialial scroll position support
  • 0706f97 [release] Version: 9.0.0-alpha.3
  • 2e49842 Merge branch master into 9.0
  • Additional commits viewable in compare view

Updates @mantine/vanilla-extract from 8.3.18 to 9.0.0

Release notes

Sourced from @​mantine/vanilla-extract's releases.

9.0.0 🤩

View changelog with demos on mantine.dev website

Migration guide

This changelog covers breaking changes and new features in Mantine 9.0. To migrate your application to Mantine 9.0, follow 8.x → 9.x migration guide.

Peer dependencies requirements updates

Starting from Mantine 9.0, the following dependencies are required:

  • React 19.2+ for all @mantine/* packages
  • Tiptap 3+ for @mantine/tiptap (migration guide)
  • Recharts 3+ for @mantine/charts (no migration required)

New @​mantine/schedule package

New @mantine/schedule package provides a complete set of calendar scheduling components for React applications. It includes multiple view levels, drag-and-drop event management, and extensive customization options.

Schedule

Schedule is a unified container component that combines all views with built-in navigation and view switching. Drag events to reschedule them:

import { useState } from 'react';
import dayjs from 'dayjs';
import { Schedule, ScheduleEventData } from '@mantine/schedule';
const today = dayjs().format('YYYY-MM-DD');
const tomorrow = dayjs().add(1, 'day').format('YYYY-MM-DD');
const initialEvents: ScheduleEventData[] = [
{
id: 1,
title: 'Morning Standup',
start: ${today} 09:00:00,
end: ${today} 09:30:00,
color: 'blue',
},
{
id: 2,
title: 'Team Meeting',
start: ${today} 10:00:00,
end: ${today} 11:30:00,
color: 'green',
},
{
</tr></table>

... (truncated)

Commits
  • a097b0c [release] Version: 9.0.0-alpha.6
  • 53c9a80 [release] Version: 9.0.0-alpha.5
  • f6427cb [core] Update minor dependencies version
  • 00e068a [release] Version: 9.0.0-alpha.4
  • 0706f97 [release] Version: 9.0.0-alpha.3
  • ad1a3f1 [release] Version: 9.0.0-alpha.2
  • f3b0ff8 [release] Version: 9.0.0-alpha.1
  • 4def3ff [release] Version: 9.0.0-alpha.0
  • b59e440 Merge branch master into 9.0
  • 68fee97 Merge branch master int 9.0
  • Additional commits viewable in compare view

Updates @sentry/react from 10.46.0 to 10.47.0

Release notes

Sourced from @​sentry/react's releases.

10.47.0

Important Changes

  • feat(node-core): Add OTLP integration for node-core/light (#19729)

    Added otlpIntegration at @sentry/node-core/light/otlp for users who manage their own OpenTelemetry setup and want to send trace data to Sentry without adopting the full @sentry/node SDK.

    import { NodeTracerProvider } from '@opentelemetry/sdk-trace-node';
    import * as Sentry from '@sentry/node-core/light';
    import { otlpIntegration } from '@sentry/node-core/light/otlp';
    const provider = new NodeTracerProvider();
    provider.register();
    Sentry.init({
    dsn: 'DSN',
    integrations: [
    otlpIntegration({
    // Export OTel spans to Sentry via OTLP (default: true)
    setupOtlpTracesExporter: true,
    }),
    ],
    });

    The integration links Sentry errors to OTel traces and exports spans to Sentry via OTLP.

  • feat(node, bun): Add runtime metrics integrations for Node.js and Bun (#19923, #19979)

    New nodeRuntimeMetricsIntegration and bunRuntimeMetricsIntegration automatically collect runtime health metrics and send them to Sentry on a configurable interval (default: 30s). Collected metrics include memory (RSS, heap used/total), CPU utilization, event loop utilization, and process uptime. Node additionally collects event loop delay percentiles (p50, p99). Extra metrics like CPU time and external memory are available as opt-in.

    // Node.js
    import * as Sentry from '@sentry/node';
    Sentry.init({
    dsn: '...',
    integrations: [Sentry.nodeRuntimeMetricsIntegration()],
    });
    // Bun
    import * as Sentry from '@​sentry/bun';
    Sentry.init({
    dsn: '...',
    integrations: [Sentry.bunRuntimeMetricsIntegration()],
    });

... (truncated)

Changelog

Sourced from @​sentry/react's changelog.

10.47.0

Important Changes

  • feat(node-core): Add OTLP integration for node-core/light (#19729)

    Added otlpIntegration at @sentry/node-core/light/otlp for users who manage their own OpenTelemetry setup and want to send trace data to Sentry without adopting the full @sentry/node SDK.

    import { NodeTracerProvider } from '@opentelemetry/sdk-trace-node';
    import * as Sentry from '@sentry/node-core/light';
    import { otlpIntegration } from '@sentry/node-core/light/otlp';
    const provider = new NodeTracerProvider();
    provider.register();
    Sentry.init({
    dsn: 'DSN',
    integrations: [
    otlpIntegration({
    // Export OTel spans to Sentry via OTLP (default: true)
    setupOtlpTracesExporter: true,
    }),
    ],
    });

    The integration links Sentry errors to OTel traces and exports spans to Sentry via OTLP.

  • feat(node, bun): Add runtime metrics integrations for Node.js and Bun (#19923, #19979)

    New nodeRuntimeMetricsIntegration and bunRuntimeMetricsIntegration automatically collect runtime health metrics and send them to Sentry on a configurable interval (default: 30s). Collected metrics include memory (RSS, heap used/total), CPU utilization, event loop utilization, and process uptime. Node additionally collects event loop delay percentiles (p50, p99). Extra metrics like CPU time and external memory are available as opt-in.

    // Node.js
    import * as Sentry from '@sentry/node';
    Sentry.init({
    dsn: '...',
    integrations: [Sentry.nodeRuntimeMetricsIntegration()],
    });
    // Bun
    import * as Sentry from '@​sentry/bun';
    Sentry.init({
    dsn: '...',
    integrations: [Sentry.bunRuntimeMetricsIntegration()],

... (truncated)

Commits
  • a5a4e73 release: 10.47.0
  • c7477bb Merge pull request #20050 from getsentry/prepare-release/10.47.0
  • 3d4e38d meta(changelog): Update changelog for 10.47.0
  • 2c0ce6f feat(deps): Bump OpenTelemetry dependencies (#20046)
  • 8f08fcb fix(browser-tests): Pin axios to 1.13.5 to avoid compromised 1.14.1 (#20047)
  • 3815492 fix(profiling): Disable profiling in worker threads (#20040)
  • 61edc25 Merge pull request #19890 from getsentry/fix/react-router-debug-id-double-inj...
  • 28f94f3 fix(react-router): Disable debug ID injection in Vite plugin to prevent doubl...
  • 9bfc682 ref(browser-tests): Add waitForMetricRequest helper (#20002)
  • 08cab24 fix(node): Deduplicate sentry-trace and baggage headers on outgoing reque...
  • Additional commits viewable in compare view

Updates @tabler/icons-react from 3.40.0 to 3.41.1

Release notes

Sourced from @​tabler/icons-react's releases.

Release 3.41.1

Fixed icon: outline/x-mark

Release 3.41.0

18 new icons:

  • outline/brand-jira
  • outline/car-off-road
  • outline/car-suspension
  • outline/credit-card-hand
  • outline/device-3d-camera
  • outline/device-3d-lens
  • outline/device-screen
  • outline/iceberg
  • outline/jetski
  • outline/olympic-torch
  • outline/parking-meter
  • outline/pillow
  • outline/pipeline
  • outline/quote-open
  • outline/scan-letter-a
  • outline/scan-letter-t
  • outline/segway
  • outline/x-mark

New features

  • Angular support: new @tabler/icons-angular package with components, build pipeline, unit tests, and test/test-angular sample app (#1091).
  • SVG validation: validation for <g> elements; broader SVG icon validation improvements (#1487); more consistent SVG path syntax (#1488).
  • icons-react: JSDoc with icon previews in generated output (#1472).
  • icons-react-native: react-native-svg added as a peer dependency (#1475).
  • icons-solidjs: SSR support via rollup-preset-solid and JSX/TSX component refactor (#1493).

Fixed icons

  • outline/brand-kbin and outline/volume-4: adjusted for compatibility with buildJsIcons (#1469).
  • outline/number-35-small through outline/number-50-small: updated Unicode values (#1494).
Commits

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 11, 2026
@dependabot dependabot bot requested a review from SchrodingersGat as a code owner April 11, 2026 09:17
@dependabot dependabot bot added javascript Pull requests that update Javascript code dependencies Pull requests that update a dependency file labels Apr 11, 2026
@netlify
Copy link
Copy Markdown

netlify bot commented Apr 11, 2026

Deploy Preview for inventree-web-pui-preview failed.

Name Link
🔨 Latest commit a1cd1c1
🔍 Latest deploy log https://app.netlify.com/projects/inventree-web-pui-preview/deploys/69dd490a25bfa90008819fea

…pdates

Bumps the dependencies group with 30 updates in the /src/frontend directory:

| Package | From | To |
| --- | --- | --- |
| [@codemirror/view](https://github.com/codemirror/view) | `6.40.0` | `6.41.0` |
| [@lingui/core](https://github.com/lingui/js-lingui/tree/HEAD/packages/core) | `5.9.3` | `5.9.4` |
| [@lingui/react](https://github.com/lingui/js-lingui/tree/HEAD/packages/react) | `5.9.3` | `5.9.4` |
| [@mantine/carousel](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/carousel) | `8.3.18` | `9.0.0` |
| [@mantine/charts](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/charts) | `8.3.18` | `9.0.0` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `8.3.18` | `9.0.0` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `8.3.18` | `9.0.0` |
| [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone) | `8.3.18` | `9.0.0` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `8.3.18` | `9.0.0` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.3.18` | `9.0.0` |
| [@mantine/modals](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/modals) | `8.3.18` | `9.0.0` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.3.18` | `9.0.0` |
| [@mantine/spotlight](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/spotlight) | `8.3.18` | `9.0.0` |
| [@mantine/vanilla-extract](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/vanilla-extract) | `8.3.18` | `9.0.0` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `10.46.0` | `10.47.0` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.40.0` | `3.41.1` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.95.2` | `5.96.2` |
| [@vanilla-extract/css](https://github.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/css) | `1.20.0` | `1.20.1` |
| [fuse.js](https://github.com/krisk/Fuse) | `7.1.0` | `7.2.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.72.0` | `7.72.1` |
| [@lingui/babel-plugin-lingui-macro](https://github.com/lingui/js-lingui/tree/HEAD/packages/babel-plugin-lingui-macro) | `5.9.3` | `5.9.4` |
| [@lingui/cli](https://github.com/lingui/js-lingui/tree/HEAD/packages/cli) | `5.9.3` | `5.9.4` |
| [@lingui/macro](https://github.com/lingui/js-lingui/tree/HEAD/packages/macro) | `5.9.3` | `5.9.4` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.58.2` | `1.59.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `25.5.0` | `25.5.2` |
| [@vanilla-extract/vite-plugin](https://github.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/vite-plugin) | `5.2.1` | `5.2.2` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `5.2.0` | `6.0.1` |
| [rollup](https://github.com/rollup/rollup) | `4.60.0` | `4.60.1` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.9.3` | `6.0.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.3.2` | `8.0.3` |



Updates `@codemirror/view` from 6.40.0 to 6.41.0
- [Changelog](https://github.com/codemirror/view/blob/main/CHANGELOG.md)
- [Commits](codemirror/view@6.40.0...6.41.0)

Updates `@lingui/core` from 5.9.3 to 5.9.4
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/packages/core/CHANGELOG.md)
- [Commits](https://github.com/lingui/js-lingui/commits/v5.9.4/packages/core)

Updates `@lingui/react` from 5.9.3 to 5.9.4
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/packages/react/CHANGELOG.md)
- [Commits](https://github.com/lingui/js-lingui/commits/v5.9.4/packages/react)

Updates `@mantine/carousel` from 8.3.18 to 9.0.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.0.0/packages/@mantine/carousel)

Updates `@mantine/charts` from 8.3.18 to 9.0.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.0.0/packages/@mantine/charts)

Updates `@mantine/core` from 8.3.18 to 9.0.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.0.0/packages/@mantine/core)

Updates `@mantine/dates` from 8.3.18 to 9.0.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.0.0/packages/@mantine/dates)

Updates `@mantine/dropzone` from 8.3.18 to 9.0.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.0.0/packages/@mantine/dropzone)

Updates `@mantine/form` from 8.3.18 to 9.0.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.0.0/packages/@mantine/form)

Updates `@mantine/hooks` from 8.3.18 to 9.0.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.0.0/packages/@mantine/hooks)

Updates `@mantine/modals` from 8.3.18 to 9.0.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.0.0/packages/@mantine/modals)

Updates `@mantine/notifications` from 8.3.18 to 9.0.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.0.0/packages/@mantine/notifications)

Updates `@mantine/spotlight` from 8.3.18 to 9.0.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.0.0/packages/@mantine/spotlight)

Updates `@mantine/vanilla-extract` from 8.3.18 to 9.0.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.0.0/packages/@mantine/vanilla-extract)

Updates `@sentry/react` from 10.46.0 to 10.47.0
- [Release notes](https://github.com/getsentry/sentry-javascript/releases)
- [Changelog](https://github.com/getsentry/sentry-javascript/blob/develop/CHANGELOG.md)
- [Commits](getsentry/sentry-javascript@10.46.0...10.47.0)

Updates `@tabler/icons-react` from 3.40.0 to 3.41.1
- [Release notes](https://github.com/tabler/tabler-icons/releases)
- [Commits](https://github.com/tabler/tabler-icons/commits/v3.41.1/packages/icons-react)

Updates `@tanstack/react-query` from 5.95.2 to 5.96.2
- [Release notes](https://github.com/TanStack/query/releases)
- [Changelog](https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md)
- [Commits](https://github.com/TanStack/query/commits/@tanstack/react-query@5.96.2/packages/react-query)

Updates `@vanilla-extract/css` from 1.20.0 to 1.20.1
- [Release notes](https://github.com/vanilla-extract-css/vanilla-extract/releases)
- [Changelog](https://github.com/vanilla-extract-css/vanilla-extract/blob/master/packages/css/CHANGELOG.md)
- [Commits](https://github.com/vanilla-extract-css/vanilla-extract/commits/@vanilla-extract/css@1.20.1/packages/css)

Updates `fuse.js` from 7.1.0 to 7.2.0
- [Release notes](https://github.com/krisk/Fuse/releases)
- [Changelog](https://github.com/krisk/Fuse/blob/main/CHANGELOG.md)
- [Commits](krisk/Fuse@v7.1.0...v7.2.0)

Updates `react-hook-form` from 7.72.0 to 7.72.1
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](react-hook-form/react-hook-form@v7.72.0...v7.72.1)

Updates `@lingui/babel-plugin-lingui-macro` from 5.9.3 to 5.9.4
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/packages/babel-plugin-lingui-macro/CHANGELOG.md)
- [Commits](https://github.com/lingui/js-lingui/commits/v5.9.4/packages/babel-plugin-lingui-macro)

Updates `@lingui/cli` from 5.9.3 to 5.9.4
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/packages/cli/CHANGELOG.md)
- [Commits](https://github.com/lingui/js-lingui/commits/v5.9.4/packages/cli)

Updates `@lingui/macro` from 5.9.3 to 5.9.4
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/packages/macro/CHANGELOG.md)
- [Commits](https://github.com/lingui/js-lingui/commits/v5.9.4/packages/macro)

Updates `@playwright/test` from 1.58.2 to 1.59.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.58.2...v1.59.1)

Updates `@types/node` from 25.5.0 to 25.5.2
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@vanilla-extract/vite-plugin` from 5.2.1 to 5.2.2
- [Release notes](https://github.com/vanilla-extract-css/vanilla-extract/releases)
- [Changelog](https://github.com/vanilla-extract-css/vanilla-extract/blob/master/packages/vite-plugin/CHANGELOG.md)
- [Commits](https://github.com/vanilla-extract-css/vanilla-extract/commits/@vanilla-extract/vite-plugin@5.2.2/packages/vite-plugin)

Updates `@vitejs/plugin-react` from 5.2.0 to 6.0.1
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/plugin-react@6.0.1/packages/plugin-react)

Updates `rollup` from 4.60.0 to 4.60.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.60.0...v4.60.1)

Updates `typescript` from 5.9.3 to 6.0.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Commits](microsoft/TypeScript@v5.9.3...v6.0.2)

Updates `vite` from 7.3.2 to 8.0.3
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/create-vite@8.0.3/packages/vite)

---
updated-dependencies:
- dependency-name: "@codemirror/view"
  dependency-version: 6.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@lingui/core"
  dependency-version: 5.9.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@lingui/react"
  dependency-version: 5.9.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mantine/carousel"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@mantine/charts"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@mantine/core"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@mantine/dates"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@mantine/dropzone"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@mantine/form"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@mantine/hooks"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@mantine/modals"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@mantine/notifications"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@mantine/spotlight"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@mantine/vanilla-extract"
  dependency-version: 9.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@sentry/react"
  dependency-version: 10.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.41.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tanstack/react-query"
  dependency-version: 5.96.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vanilla-extract/css"
  dependency-version: 1.20.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: fuse.js
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-hook-form
  dependency-version: 7.72.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@lingui/babel-plugin-lingui-macro"
  dependency-version: 5.9.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@lingui/cli"
  dependency-version: 5.9.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@lingui/macro"
  dependency-version: 5.9.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@playwright/test"
  dependency-version: 1.59.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-version: 25.5.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@vanilla-extract/vite-plugin"
  dependency-version: 5.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-version: 6.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: rollup
  dependency-version: 4.60.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 6.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: vite
  dependency-version: 8.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/src/frontend/dependencies-d1aceeae03 branch from df7b7f5 to a1cd1c1 Compare April 13, 2026 19:50
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