Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the dependencies group across 1 directory with 40 updates #7208

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 13, 2024

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

Package From To
@codemirror/lint 6.5.0 6.7.0
@lingui/core 4.10.0 4.10.1
@lingui/react 4.10.0 4.10.1
@mantine/carousel 7.8.0 7.9.1
@mantine/core 7.8.0 7.9.1
@mantine/dates 7.8.0 7.9.1
@mantine/dropzone 7.8.0 7.9.1
@mantine/form 7.8.0 7.9.1
@mantine/hooks 7.8.0 7.9.1
@mantine/modals 7.8.0 7.9.1
@mantine/notifications 7.8.0 7.9.1
@mantine/spotlight 7.8.0 7.9.1
@mantine/vanilla-extract 7.8.0 7.9.1
@sentry/react 7.110.1 8.0.0
@tabler/icons-react 3.2.0 3.3.0
@tanstack/react-query 5.29.2 5.36.0
@uiw/codemirror-theme-vscode 4.21.25 4.22.0
@uiw/react-codemirror 4.21.25 4.22.0
@vanilla-extract/css 1.14.2 1.15.1
clsx 2.1.0 2.1.1
dayjs 1.11.10 1.11.11
embla-carousel-react 8.0.2 8.0.4
mantine-datatable 7.8.1 7.9.1
react 18.2.0 18.3.1
@types/react 18.2.79 18.3.2
react-dom 18.2.0 18.3.1
@types/react-dom 18.2.25 18.3.0
react-hook-form 7.51.3 7.51.4
react-is 18.2.0 18.3.1
react-router-dom 6.22.3 6.23.1
recharts 2.12.5 2.12.7
styled-components 6.1.8 6.1.11
@babel/core 7.24.4 7.24.5
@lingui/cli 4.10.0 4.10.1
@lingui/macro 4.10.0 4.10.1
@playwright/test 1.43.1 1.44.0
@types/node 20.12.7 20.12.11
@vanilla-extract/vite-plugin 4.0.7 4.0.9
vite 5.2.8 5.2.11
vite-plugin-istanbul 6.0.0 6.0.2

Updates @codemirror/lint from 6.5.0 to 6.7.0

Changelog

Sourced from @​codemirror/lint's changelog.

6.7.0 (2024-04-30)

New features

The renderMessage function is now called with the editor view as first argument.

6.6.0 (2024-04-29)

New features

The new hideOn configuration option can be used to control in what circumstances lint tooltips get hidden by state changes.

Commits

Updates @lingui/core from 4.10.0 to 4.10.1

Release notes

Sourced from @​lingui/core's releases.

v4.10.1

4.10.1 (2024-05-03)

Bug Fixes

  • core: pound symbol being replaced outside plural and selectordinal (#1928) (e94c6fd)
Changelog

Sourced from @​lingui/core's changelog.

4.10.1 (2024-05-03)

Bug Fixes

  • core: pound symbol being replaced outside plural and selectordinal (#1928) (e94c6fd)
Commits

Updates @lingui/react from 4.10.0 to 4.10.1

Release notes

Sourced from @​lingui/react's releases.

v4.10.1

4.10.1 (2024-05-03)

Bug Fixes

  • core: pound symbol being replaced outside plural and selectordinal (#1928) (e94c6fd)
Changelog

Sourced from @​lingui/react's changelog.

4.10.1 (2024-05-03)

Bug Fixes

  • core: pound symbol being replaced outside plural and selectordinal (#1928) (e94c6fd)
Commits

Updates @mantine/carousel from 7.8.0 to 7.9.1

Release notes

Sourced from @​mantine/carousel's releases.

7.9.1

What's Changed

  • [@mantine/core] Fix theme.scale being ignored in Input, Paper and Table border styles
  • [@mantine/core] Fix virtualColor function requring use client in Next.js
  • [@mantine/core] FloatingIndicator: Fix incorrect resize observer logic (#6129)
  • [@mantine/core] NumberInput: Fix incorrect allowNegative handling with up/down arrows (#6170)
  • [@mantine/core] Fix error={true} prop set on Checkbox, Radio and Switch rendering unxpected error element with margin
  • [@mantine/core] SegmentedControl: Fix theme.primaryColor not being respected in the focus ring styles
  • [@mantine/core] CloseButton: Fix incorrect specificity of some selectors
  • [@mantine/core] Fix incorrect aria-label handling in Select, Autocomplete, MultiSelect and TagsInputs components (#6123)
  • [@mantine/core] Modal: Prevent onClose from being called when modal is not opened (#6156)
  • [@mantine/core] PasswordInput: Fix duplicated password visibility icon in Edge browser (#6126)
  • [@mantine/hooks] use-hash: Fix hash value not being updated correctly (#6145)
  • [@mantine/emotion] Fix incorrect transform logic that was causing extra hooks to render (#6159)

New Contributors

Full Changelog: mantinedev/mantine@7.9.0...7.9.1

7.9.0 ✨

View changelog with demos on mantine.dev website

@​mantine/emotion package

New @​mantine/emotion package is now available to simplify migration from 6.x to 7.x. It includes createStyles function and additional functionality for sx and styles props for all components similar to what was available in @mantine/core package in v6.

If you still haven't migrated to 7.x because of the change in styling approach, you can now have a smoother transition by using @mantine/emotion package. To learn more about the package, visit the documentation page and updated 6.x to 7.x migration guide.

import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
</tr></table>

... (truncated)

Commits

Updates @mantine/core from 7.8.0 to 7.9.1

Release notes

Sourced from @​mantine/core's releases.

7.9.1

What's Changed

  • [@mantine/core] Fix theme.scale being ignored in Input, Paper and Table border styles
  • [@mantine/core] Fix virtualColor function requring use client in Next.js
  • [@mantine/core] FloatingIndicator: Fix incorrect resize observer logic (#6129)
  • [@mantine/core] NumberInput: Fix incorrect allowNegative handling with up/down arrows (#6170)
  • [@mantine/core] Fix error={true} prop set on Checkbox, Radio and Switch rendering unxpected error element with margin
  • [@mantine/core] SegmentedControl: Fix theme.primaryColor not being respected in the focus ring styles
  • [@mantine/core] CloseButton: Fix incorrect specificity of some selectors
  • [@mantine/core] Fix incorrect aria-label handling in Select, Autocomplete, MultiSelect and TagsInputs components (#6123)
  • [@mantine/core] Modal: Prevent onClose from being called when modal is not opened (#6156)
  • [@mantine/core] PasswordInput: Fix duplicated password visibility icon in Edge browser (#6126)
  • [@mantine/hooks] use-hash: Fix hash value not being updated correctly (#6145)
  • [@mantine/emotion] Fix incorrect transform logic that was causing extra hooks to render (#6159)

New Contributors

Full Changelog: mantinedev/mantine@7.9.0...7.9.1

7.9.0 ✨

View changelog with demos on mantine.dev website

@​mantine/emotion package

New @​mantine/emotion package is now available to simplify migration from 6.x to 7.x. It includes createStyles function and additional functionality for sx and styles props for all components similar to what was available in @mantine/core package in v6.

If you still haven't migrated to 7.x because of the change in styling approach, you can now have a smoother transition by using @mantine/emotion package. To learn more about the package, visit the documentation page and updated 6.x to 7.x migration guide.

import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
</tr></table>

... (truncated)

Commits
  • 44c3ffd [release] Version: 7.9.1
  • 5405229 [@​mantine/core] Fix theme.scale being ignored in Input, Paper and Table bor...
  • b966327 [@​mantine/core] FloatingIndicator: Fix incorrect resize observer logic (#6129)
  • 3c8ca0d [@​mantine/core] NumberInput: Fix incorrect allowNegative handling with up/d...
  • bd73170 [@​mantine/core] Fix error={true} prop set on Checkbox, Radio and Switch ren...
  • decd973 [@​mantine/core] SegmentedControl: Fix theme.primaryColor not being respecte...
  • 3448c04 [@​mantine/core] CloseButton: Fix incorrect specificity of some selectors
  • 0adea71 Merge branch 'master' of github.com:mantinedev/mantine
  • 8f06f55 [@​mantine/core] Fix incorrect aria-label handling in Select, Autocomplete, ...
  • 5ba2259 [@​mantine/core] Modal: Prevent onClose from being called when modal is not ...
  • Additional commits viewable in compare view

Updates @mantine/dates from 7.8.0 to 7.9.1

Release notes

Sourced from @​mantine/dates's releases.

7.9.1

What's Changed

  • [@mantine/core] Fix theme.scale being ignored in Input, Paper and Table border styles
  • [@mantine/core] Fix virtualColor function requring use client in Next.js
  • [@mantine/core] FloatingIndicator: Fix incorrect resize observer logic (#6129)
  • [@mantine/core] NumberInput: Fix incorrect allowNegative handling with up/down arrows (#6170)
  • [@mantine/core] Fix error={true} prop set on Checkbox, Radio and Switch rendering unxpected error element with margin
  • [@mantine/core] SegmentedControl: Fix theme.primaryColor not being respected in the focus ring styles
  • [@mantine/core] CloseButton: Fix incorrect specificity of some selectors
  • [@mantine/core] Fix incorrect aria-label handling in Select, Autocomplete, MultiSelect and TagsInputs components (#6123)
  • [@mantine/core] Modal: Prevent onClose from being called when modal is not opened (#6156)
  • [@mantine/core] PasswordInput: Fix duplicated password visibility icon in Edge browser (#6126)
  • [@mantine/hooks] use-hash: Fix hash value not being updated correctly (#6145)
  • [@mantine/emotion] Fix incorrect transform logic that was causing extra hooks to render (#6159)

New Contributors

Full Changelog: mantinedev/mantine@7.9.0...7.9.1

7.9.0 ✨

View changelog with demos on mantine.dev website

@​mantine/emotion package

New @​mantine/emotion package is now available to simplify migration from 6.x to 7.x. It includes createStyles function and additional functionality for sx and styles props for all components similar to what was available in @mantine/core package in v6.

If you still haven't migrated to 7.x because of the change in styling approach, you can now have a smoother transition by using @mantine/emotion package. To learn more about the package, visit the documentation page and updated 6.x to 7.x migration guide.

import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
</tr></table>

... (truncated)

Commits
  • 44c3ffd [release] Version: 7.9.1
  • 94c053e [release] Version: 7.9.0
  • faf096f [core] Remove additional React imports
  • 97eb4d4 [core] Init new jsx transform
  • b95051c [release] Version: 7.8.1
  • d372b39 [@​mantine/dates] DatePicker: Fix date range being stuck in incorrect state wh...
  • 94051f5 [mantine.dev] Fix typo (#6075)
  • See full diff in compare view

Updates @mantine/dropzone from 7.8.0 to 7.9.1

Release notes

Sourced from @​mantine/dropzone's releases.

7.9.1

What's Changed

  • [@mantine/core] Fix theme.scale being ignored in Input, Paper and Table border styles
  • [@mantine/core] Fix virtualColor function requring use client in Next.js
  • [@mantine/core] FloatingIndicator: Fix incorrect resize observer logic (#6129)
  • [@mantine/core] NumberInput: Fix incorrect allowNegative handling with up/down arrows (#6170)
  • [@mantine/core] Fix error={true} prop set on Checkbox, Radio and Switch rendering unxpected error element with margin
  • [@mantine/core] SegmentedControl: Fix theme.primaryColor not being respected in the focus ring styles
  • [@mantine/core] CloseButton: Fix incorrect specificity of some selectors
  • [@mantine/core] Fix incorrect aria-label handling in Select, Autocomplete, MultiSelect and TagsInputs components (#6123)
  • [@mantine/core] Modal: Prevent onClose from being called when modal is not opened (#6156)
  • [@mantine/core] PasswordInput: Fix duplicated password visibility icon in Edge browser (#6126)
  • [@mantine/hooks] use-hash: Fix hash value not being updated correctly (#6145)
  • [@mantine/emotion] Fix incorrect transform logic that was causing extra hooks to render (#6159)

New Contributors

Full Changelog: mantinedev/mantine@7.9.0...7.9.1

7.9.0 ✨

View changelog with demos on mantine.dev website

@​mantine/emotion package

New @​mantine/emotion package is now available to simplify migration from 6.x to 7.x. It includes createStyles function and additional functionality for sx and styles props for all components similar to what was available in @mantine/core package in v6.

If you still haven't migrated to 7.x because of the change in styling approach, you can now have a smoother transition by using @mantine/emotion package. To learn more about the package, visit the documentation page and updated 6.x to 7.x migration guide.

import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
</tr></table>

... (truncated)

Commits

Updates @mantine/form from 7.8.0 to 7.9.1

Release notes

Sourced from @​mantine/form's releases.

7.9.1

What's Changed

  • [@mantine/core] Fix theme.scale being ignored in Input, Paper and Table border styles
  • [@mantine/core] Fix virtualColor function requring use client in Next.js
  • [@mantine/core] FloatingIndicator: Fix incorrect resize observer logic (#6129)
  • [@mantine/core] NumberInput: Fix incorrect allowNegative handling with up/down arrows (#6170)
  • [@mantine/core] Fix error={true} prop set on Checkbox, Radio and Switch rendering unxpected error element with margin
  • [@mantine/core] SegmentedControl: Fix theme.primaryColor not being respected in the focus ring styles
  • [@mantine/core] CloseButton: Fix incorrect specificity of some selectors
  • [@mantine/core] Fix incorrect aria-label handling in Select, Autocomplete, MultiSelect and TagsInputs components (#6123)
  • [@mantine/core] Modal: Prevent onClose from being called when modal is not opened (#6156)
  • [@mantine/core] PasswordInput: Fix duplicated password visibility icon in Edge browser (#6126)
  • [@mantine/hooks] use-hash: Fix hash value not being updated correctly (#6145)
  • [@mantine/emotion] Fix incorrect transform logic that was causing extra hooks to render (#6159)

New Contributors

Full Changelog: mantinedev/mantine@7.9.0...7.9.1

7.9.0 ✨

View changelog with demos on mantine.dev website

@​mantine/emotion package

New @​mantine/emotion package is now available to simplify migration from 6.x to 7.x. It includes createStyles function and additional functionality for sx and styles props for all components similar to what was available in @mantine/core package in v6.

If you still haven't migrated to 7.x because of the change in styling approach, you can now have a smoother transition by using @mantine/emotion package. To learn more about the package, visit the documentation page and updated 6.x to 7.x migration guide.

import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
</tr></table>

... (truncated)

Commits
  • 44c3ffd [release] Version: 7.9.1
  • 94c053e [release] Version: 7.9.0
  • faf096f [core] Remove additional React imports
  • 97eb4d4 [core] Init new jsx transform
  • 53213be [mantine.dev] Add use-field documentation
  • e0e6b18 [@​mantine/form] Add all tests and types to use-field
  • f7ea555 [@​mantine/form] Fix several issues with uncontrolled use-field
  • b6a2f0f [@​mantine/form] Fix several issues in use-field
  • c17d1c4 [@​mantine/form] Add use-field type exports
  • 2daca60 [@​mantine/form] Add getInputProps tests to use-field hook
  • Additional commits viewable in compare view

Updates @mantine/hooks from 7.8.0 to 7.9.1

Release notes

Sourced from @​mantine/hooks's releases.

7.9.1

What's Changed

  • [@mantine/core] Fix theme.scale being ignored in Input, Paper and Table border styles
  • [@mantine/core] Fix virtualColor function requring use client in Next.js
  • [@mantine/core] FloatingIndicator: Fix incorrect resize observer logic (#6129)
  • [@mantine/core] NumberInput: Fix incorrect allowNegative handling with up/down arrows (#6170)
  • [@mantine/core] Fix error={true} prop set on Checkbox, Radio and Switch rendering unxpected error element with margin
  • [@mantine/core] SegmentedControl: Fix theme.primaryColor not being respected in the focus ring styles
  • [@mantine/core] CloseButton: Fix incorrect specificity of some selectors
  • [@mantine/core] Fix incorrect aria-label handling in Select, Autocomplete, MultiSelect and TagsInputs components (#6123)
  • [@mantine/core] Modal: Prevent onClose from being called when modal is not opened (#6156)
  • [@mantine/core] PasswordInput: Fix duplicated password visibility icon in Edge browser (#6126)
  • [@mantine/hooks] use-hash: Fix hash value not being updated correctly (#6145)
  • [@mantine/emotion] Fix incorrect transform logic that was causing extra hooks to render (#6159)

New Contributors

Full Changelog: mantinedev/mantine@7.9.0...7.9.1

7.9.0 ✨

View changelog with demos on mantine.dev website

@​mantine/emotion package

New @​mantine/emotion package is now available to simplify migration from 6.x to 7.x. It includes createStyles function and additional functionality for sx and styles props for all components similar to what was available in @mantine/core package in v6.

If you still haven't migrated to 7.x because of the change in styling approach, you can now have a smoother transition by using @mantine/emotion package. To learn more about the package, visit the documentation page and updated 6.x to 7.x migration guide.

import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
</tr></table>

... (truncated)

Commits
  • 44c3ffd [release] Version: 7.9.1
  • f264ed1 [@​mantine/hooks] use-hash: Fix hash value not being updated correctly (#6145)
  • 94c053e [release] Version: 7.9.0
  • 1a5dfbc [core] Update testing dependencies to work with React 18.3
  • faf096f [core] Remove additional React imports
  • 97eb4d4 [core] Init new jsx transform
  • 4e50533 [@​mantine/hooks] Fix error thrown in react strict mode
  • b95051c [release] Version: 7.8.1
  • See full diff in compare view

Updates @mantine/modals from 7.8.0 to 7.9.1

Release notes

Sourced from @​mantine/modals's releases.

7.9.1

What's Changed

  • [@mantine/core] Fix theme.scale being ignored in Input, Paper and Table border styles
  • [@mantine/core] Fix virtualColor function requring use client in Next.js
  • [@mantine/core] FloatingIndicator: Fix incorrect resize observer logic (#6129)
  • [@mantine/core] NumberInput: Fix incorrect allowNegative handling with up/down arrows (#6170)
  • [@mantine/core] Fix error={true} prop set on Checkbox, Radio and Switch rendering unxpected error element with margin
  • [@mantine/core] SegmentedControl: Fix theme.primaryColor not being respected in the focus ring styles
  • [@mantine/core] CloseButton: Fix incorrect specificity of some selectors
  • [@mantine/core] Fix incorrect aria-label handling in Select, Autocomplete, MultiSelect and TagsInputs components (#6123)
  • [@mantine/core] Modal: Prevent onClose from being called when modal is not opened (#6156)
  • [@mantine/core] PasswordInput: Fix duplicated password visibility icon in Edge browser (#6126)
  • [@mantine/hooks] use-hash: Fix hash value not being updated correctly (#6145)
  • [@mantine/emotion] Fix incorrect transform logic that was causing extra hooks to render (#6159)

New Contributors

Full Changelog: mantinedev/mantine@7.9.0...7.9.1

7.9.0 ✨

View changelog with demos on mantine.dev website

@​mantine/emotion package

New @​mantine/emotion package is now available to simplify migration from 6.x to 7.x. It includes createStyles function and additional functionality for sx and styles props for all components similar to what was available in @mantine/core package in v6.

If you still haven't migrated to 7.x because of the change in styling approach, you can now have a smoother transition by using @mantine/emotion package. To learn more about the package, visit the documentation page and updated 6.x to 7.x migration guide.

import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignItems: 'center',
</tr></table>

... (truncated)

Commits

Updates @mantine/notifications from 7.8.0 to 7.9.1

Release notes

Sourced from @​mantine/notifications's releases.

7.9.1

What's Changed

  • [@mantine/core] Fix theme.scale being ignored in Input, Paper and Table border styles
  • [@mantine/core] Fix virtualColor function requring use client in Next.js
  • [@mantine/core] FloatingIndicator: Fix incorrect resize observer logic (#6129)
  • [@mantine/core] NumberInput: Fix incorrect allowNegative handling with up/down arrows (#6170)
  • [@mantine/core] Fix error={true} prop set on Checkbox, Radio and Switch rendering unxpected error element with margin
  • [@mantine/core] SegmentedControl: Fix theme.primaryColor not being respected in the focus ring styles
  • [@mantine/core] CloseButton: Fix incorrect specificity of some selectors
  • [@mantine/core] Fix incorrect aria-label handling in Select, Autocomplete, MultiSelect and TagsInputs components (#6123)
  • [@mantine/core] Modal: Prevent onClose from being called when modal is not opened (#6156)
  • [@mantine/core] PasswordInput: Fix duplicated password visibility icon in Edge browser (#6126)
  • [@mantine/hooks] use-hash: Fix hash value not being updated correctly (#6145)
  • [@mantine/emotion] Fix incorrect transform logic that was causing extra hooks to render (#6159)

New Contributors

Full Changelog: mantinedev/mantine@7.9.0...7.9.1

7.9.0 ✨

View changelog with demos on mantine.dev website

@​mantine/emotion package

New @​mantine/emotion package is now available to simplify migration from 6.x to 7.x. It includes createStyles function and additional functionality for sx and styles props for all components similar to what was available in @mantine/core package in v6.

If you still haven't migrated to 7.x because of the change in styling approach, you can now have a smoother transition by using @mantine/emotion package. To learn more about the package, visit the documentation page and updated 6.x to 7.x migration guide.

import { rem } from '@mantine/core';
import { createStyles } from '@mantine/emotion';
const useStyles = createStyles((theme, _, u) => ({
wrapper: {
maxWidth: rem(400),
width: '100%',
height: rem(180),
display: 'flex',
alignI...
Description has been truncated

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

| Package | From | To |
| --- | --- | --- |
| [@codemirror/lint](https://github.com/codemirror/lint) | `6.5.0` | `6.7.0` |
| [@lingui/core](https://github.com/lingui/js-lingui) | `4.10.0` | `4.10.1` |
| [@lingui/react](https://github.com/lingui/js-lingui) | `4.10.0` | `4.10.1` |
| [@mantine/carousel](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/carousel) | `7.8.0` | `7.9.1` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `7.8.0` | `7.9.1` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `7.8.0` | `7.9.1` |
| [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone) | `7.8.0` | `7.9.1` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `7.8.0` | `7.9.1` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `7.8.0` | `7.9.1` |
| [@mantine/modals](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/modals) | `7.8.0` | `7.9.1` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `7.8.0` | `7.9.1` |
| [@mantine/spotlight](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/spotlight) | `7.8.0` | `7.9.1` |
| [@mantine/vanilla-extract](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/vanilla-extract) | `7.8.0` | `7.9.1` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `7.110.1` | `8.0.0` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.2.0` | `3.3.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.29.2` | `5.36.0` |
| [@uiw/codemirror-theme-vscode](https://github.com/uiwjs/react-codemirror) | `4.21.25` | `4.22.0` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.21.25` | `4.22.0` |
| [@vanilla-extract/css](https://github.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/css) | `1.14.2` | `1.15.1` |
| [clsx](https://github.com/lukeed/clsx) | `2.1.0` | `2.1.1` |
| [dayjs](https://github.com/iamkun/dayjs) | `1.11.10` | `1.11.11` |
| [embla-carousel-react](https://github.com/davidjerleke/embla-carousel) | `8.0.2` | `8.0.4` |
| [mantine-datatable](https://github.com/icflorescu/mantine-datatable) | `7.8.1` | `7.9.1` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `18.2.0` | `18.3.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.2.79` | `18.3.2` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `18.2.0` | `18.3.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.2.25` | `18.3.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.51.3` | `7.51.4` |
| [react-is](https://github.com/facebook/react/tree/HEAD/packages/react-is) | `18.2.0` | `18.3.1` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.22.3` | `6.23.1` |
| [recharts](https://github.com/recharts/recharts) | `2.12.5` | `2.12.7` |
| [styled-components](https://github.com/styled-components/styled-components) | `6.1.8` | `6.1.11` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.24.4` | `7.24.5` |
| [@lingui/cli](https://github.com/lingui/js-lingui) | `4.10.0` | `4.10.1` |
| [@lingui/macro](https://github.com/lingui/js-lingui) | `4.10.0` | `4.10.1` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.43.1` | `1.44.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.12.7` | `20.12.11` |
| [@vanilla-extract/vite-plugin](https://github.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/vite-plugin) | `4.0.7` | `4.0.9` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.2.8` | `5.2.11` |
| [vite-plugin-istanbul](https://github.com/ifaxity/vite-plugin-istanbul) | `6.0.0` | `6.0.2` |



Updates `@codemirror/lint` from 6.5.0 to 6.7.0
- [Changelog](https://github.com/codemirror/lint/blob/main/CHANGELOG.md)
- [Commits](codemirror/lint@6.5.0...6.7.0)

Updates `@lingui/core` from 4.10.0 to 4.10.1
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/CHANGELOG.md)
- [Commits](lingui/js-lingui@v4.10.0...v4.10.1)

Updates `@lingui/react` from 4.10.0 to 4.10.1
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/CHANGELOG.md)
- [Commits](lingui/js-lingui@v4.10.0...v4.10.1)

Updates `@mantine/carousel` from 7.8.0 to 7.9.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/7.9.1/packages/@mantine/carousel)

Updates `@mantine/core` from 7.8.0 to 7.9.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/7.9.1/packages/@mantine/core)

Updates `@mantine/dates` from 7.8.0 to 7.9.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/7.9.1/packages/@mantine/dates)

Updates `@mantine/dropzone` from 7.8.0 to 7.9.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/7.9.1/packages/@mantine/dropzone)

Updates `@mantine/form` from 7.8.0 to 7.9.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/7.9.1/packages/@mantine/form)

Updates `@mantine/hooks` from 7.8.0 to 7.9.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/7.9.1/packages/@mantine/hooks)

Updates `@mantine/modals` from 7.8.0 to 7.9.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/7.9.1/packages/@mantine/modals)

Updates `@mantine/notifications` from 7.8.0 to 7.9.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/7.9.1/packages/@mantine/notifications)

Updates `@mantine/spotlight` from 7.8.0 to 7.9.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/7.9.1/packages/@mantine/spotlight)

Updates `@mantine/vanilla-extract` from 7.8.0 to 7.9.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/7.9.1/packages/@mantine/vanilla-extract)

Updates `@sentry/react` from 7.110.1 to 8.0.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@7.110.1...8.0.0)

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

Updates `@tanstack/react-query` from 5.29.2 to 5.36.0
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.36.0/packages/react-query)

Updates `@uiw/codemirror-theme-vscode` from 4.21.25 to 4.22.0
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.21.25...v4.22.0)

Updates `@uiw/react-codemirror` from 4.21.25 to 4.22.0
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.21.25...v4.22.0)

Updates `@vanilla-extract/css` from 1.14.2 to 1.15.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.15.1/packages/css)

Updates `clsx` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/lukeed/clsx/releases)
- [Commits](lukeed/clsx@v2.1.0...v2.1.1)

Updates `dayjs` from 1.11.10 to 1.11.11
- [Release notes](https://github.com/iamkun/dayjs/releases)
- [Changelog](https://github.com/iamkun/dayjs/blob/dev/CHANGELOG.md)
- [Commits](iamkun/dayjs@v1.11.10...v1.11.11)

Updates `embla-carousel-react` from 8.0.2 to 8.0.4
- [Release notes](https://github.com/davidjerleke/embla-carousel/releases)
- [Commits](davidjerleke/embla-carousel@v8.0.2...v8.0.4)

Updates `mantine-datatable` from 7.8.1 to 7.9.1
- [Changelog](https://github.com/icflorescu/mantine-datatable/blob/main/CHANGELOG.md)
- [Commits](https://github.com/icflorescu/mantine-datatable/commits)

Updates `react` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react)

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

Updates `react-dom` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react-dom)

Updates `@types/react-dom` from 18.2.25 to 18.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `react-hook-form` from 7.51.3 to 7.51.4
- [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.51.3...v7.51.4)

Updates `react-is` from 18.2.0 to 18.3.1
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react-is)

Updates `react-router-dom` from 6.22.3 to 6.23.1
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.23.1/packages/react-router-dom)

Updates `recharts` from 2.12.5 to 2.12.7
- [Release notes](https://github.com/recharts/recharts/releases)
- [Changelog](https://github.com/recharts/recharts/blob/3.x/CHANGELOG.md)
- [Commits](recharts/recharts@v2.12.5...v2.12.7)

Updates `styled-components` from 6.1.8 to 6.1.11
- [Release notes](https://github.com/styled-components/styled-components/releases)
- [Commits](styled-components/styled-components@v6.1.8...v6.1.11)

Updates `@babel/core` from 7.24.4 to 7.24.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.24.5/packages/babel-core)

Updates `@lingui/cli` from 4.10.0 to 4.10.1
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/CHANGELOG.md)
- [Commits](lingui/js-lingui@v4.10.0...v4.10.1)

Updates `@lingui/macro` from 4.10.0 to 4.10.1
- [Release notes](https://github.com/lingui/js-lingui/releases)
- [Changelog](https://github.com/lingui/js-lingui/blob/main/CHANGELOG.md)
- [Commits](lingui/js-lingui@v4.10.0...v4.10.1)

Updates `@playwright/test` from 1.43.1 to 1.44.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.43.1...v1.44.0)

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

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

Updates `@types/react-dom` from 18.2.25 to 18.3.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom)

Updates `@vanilla-extract/vite-plugin` from 4.0.7 to 4.0.9
- [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@4.0.9/packages/vite-plugin)

Updates `vite` from 5.2.8 to 5.2.11
- [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/v5.2.11/packages/vite)

Updates `vite-plugin-istanbul` from 6.0.0 to 6.0.2
- [Release notes](https://github.com/ifaxity/vite-plugin-istanbul/releases)
- [Changelog](https://github.com/iFaxity/vite-plugin-istanbul/blob/next/release.config.js)
- [Commits](iFaxity/vite-plugin-istanbul@v6.0.0...v6.0.2)

---
updated-dependencies:
- dependency-name: "@codemirror/lint"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@lingui/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@lingui/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@mantine/carousel"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/dates"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/dropzone"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/form"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/hooks"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/modals"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/notifications"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/spotlight"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/vanilla-extract"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@sentry/react"
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@tabler/icons-react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tanstack/react-query"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@uiw/codemirror-theme-vscode"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@uiw/react-codemirror"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vanilla-extract/css"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: clsx
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: dayjs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: embla-carousel-react
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mantine-datatable
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-hook-form
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: react-is
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: recharts
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: styled-components
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@lingui/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@lingui/macro"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@playwright/test"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@vanilla-extract/vite-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: vite-plugin-istanbul
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependency Relates to a project dependency javascript Pull requests that update Javascript code labels May 13, 2024
Copy link

netlify bot commented May 13, 2024

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

Name Link
🔨 Latest commit 0c5e98e
🔍 Latest deploy log https://app.netlify.com/sites/inventree-web-pui-preview/deploys/664258cdb825ce000842c616

Copy link
Contributor Author

dependabot bot commented on behalf of github May 20, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this May 20, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/src/frontend/dependencies-9e8bc5d25e branch May 20, 2024 18:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency Relates to a project dependency javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants