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 52 updates #263

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 25, 2024

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

Package From To
@codemirror/autocomplete 6.18.1 6.18.3
@codemirror/lang-liquid 6.2.1 6.2.2
@codemirror/language 6.10.3 6.10.4
@codemirror/lint 6.8.1 6.8.3
@codemirror/search 6.5.6 6.5.8
@emotion/react 11.13.3 11.13.5
@fortawesome/fontawesome-svg-core 6.6.0 6.7.1
@fortawesome/free-regular-svg-icons 6.6.0 6.7.1
@fortawesome/free-solid-svg-icons 6.6.0 6.7.1
@lingui/core 4.11.4 4.14.0
@lingui/react 4.11.4 4.14.0
@mantine/carousel 7.12.2 7.14.2
@mantine/charts 7.12.2 7.14.2
@mantine/core 7.12.2 7.14.2
@mantine/dates 7.12.2 7.14.2
@mantine/dropzone 7.12.2 7.14.2
@mantine/form 7.12.2 7.14.2
@mantine/hooks 7.12.2 7.14.2
@mantine/modals 7.12.2 7.14.2
@mantine/notifications 7.12.2 7.14.2
@mantine/spotlight 7.12.2 7.14.2
@mantine/vanilla-extract 7.12.2 7.14.2
@sentry/react 8.31.0 8.40.0
@tabler/icons-react 3.17.0 3.22.0
@tanstack/react-query 5.56.2 5.61.3
@uiw/codemirror-theme-vscode 4.23.3 4.23.6
@uiw/react-codemirror 4.23.3 4.23.6
@vanilla-extract/css 1.15.5 1.16.1
dompurify 3.1.7 3.2.1
@types/dompurify 3.0.5 3.2.0
embla-carousel-react 8.3.0 8.5.1
react-grid-layout 1.4.4 1.5.0
react-hook-form 7.53.0 7.53.2
react-router-dom 6.26.2 7.0.1
react-select 5.8.1 5.8.3
recharts 2.12.7 2.13.3
zustand 4.5.5 5.0.1
@babel/core 7.25.2 7.26.0
@babel/preset-react 7.24.7 7.25.9
@babel/preset-typescript 7.24.7 7.26.0
@codecov/vite-plugin 1.2.0 1.4.0
@lingui/cli 4.11.4 4.14.0
@lingui/macro 4.11.4 4.14.0
@playwright/test 1.47.2 1.49.0
@types/node 22.6.0 22.9.3
@types/react 18.3.8 18.3.12
@types/react-dom 18.3.0 18.3.1
@vanilla-extract/vite-plugin 4.0.15 4.0.18
@vitejs/plugin-react 4.3.1 4.3.3
typescript 5.6.2 5.7.2
vite 5.4.7 5.4.11

Updates @codemirror/autocomplete from 6.18.1 to 6.18.3

Changelog

Sourced from @​codemirror/autocomplete's changelog.

6.18.3 (2024-11-13)

Bug fixes

Backspacing to the start of the completed range will no longer close the completion tooltip when it was triggered implicitly by typing the character before that range.

6.18.2 (2024-10-30)

Bug fixes

Don't immediately show synchronously updated completions when there are some sources that still need to return.

Commits
  • 3030765 Mark version 6.18.3
  • c1ba835 Allow backspacing to the start of the completion for implicit completions ena...
  • d0c97d3 Mark version 6.18.2
  • 5e97bd6 Make updateSyncTime apply to synchronously updates completion sources
  • See full diff in compare view

Updates @codemirror/lang-liquid from 6.2.1 to 6.2.2

Changelog

Sourced from @​codemirror/lang-liquid's changelog.

6.2.2 (2024-11-14)

Bug fixes

Support filter syntax after assign directives.

Commits

Updates @codemirror/language from 6.10.3 to 6.10.4

Changelog

Sourced from @​codemirror/language's changelog.

6.10.4 (2024-11-24)

Bug fixes

Join adjacent tokens of the same type into a single token in .

Call stream language indent functions even when the language is used as a nested parser.

Fix a crash in StreamParser when a parse was resumed with different input ranges.

Commits
  • a7a19f5 Mark version 6.10.4
  • 96ca637 Avoid starting the parse at a bogus position when the input ranges change in ...
  • 017bb93 Use a syntax node prop to wire up stream language indent logic
  • 396019f Merge adjacent tokens created by stream parsers
  • See full diff in compare view

Updates @codemirror/lint from 6.8.1 to 6.8.3

Changelog

Sourced from @​codemirror/lint's changelog.

6.8.3 (2024-11-21)

Bug fixes

Fix an issue that prevented tooltips in the lint gutter from being displayed.

6.8.2 (2024-09-24)

Bug fixes

Show lint markers for code replaced by a block widget.

When multiple linters are installed, start displaying results from ones that return quickly even if others are slow to return.

Commits
  • 334ad44 Mark version 6.8.3
  • e2d564f Set clip: false on gutter tooltips
  • 8d8a153 Mark version 6.8.2
  • 35644c1 Don't wait for the slowest linter before showing results
  • c13331c Add widgetMarker option to lint gutter
  • See full diff in compare view

Updates @codemirror/search from 6.5.6 to 6.5.8

Changelog

Sourced from @​codemirror/search's changelog.

6.5.8 (2024-11-22)

Bug fixes

Fix a bug that put the selection in the wrong place after running replaceNext with a regexp query that could match strings of different length.

6.5.7 (2024-11-01)

Bug fixes

Fix an issue where findNext and findPrevious would do nothing when the only match in the document was partially selected.

Fix an infinite loop in SearchCursor when the normalizer function deletes characters.

Commits
  • 210e839 Mark version 6.5.8
  • ff4dc94 Fix selection update after a replace with a variable-length query
  • 0ca3343 Mark version 6.5.7
  • 31d4bbc Avoid infinite loop when normalizer deletes characters
  • d0797ab Allow nextMatch/prevMatch to wrap around and grow the current selection
  • See full diff in compare view

Updates @codemirror/view from 6.33.0 to 6.35.0

Changelog

Sourced from @​codemirror/view's changelog.

6.35.0 (2024-11-21)

New features

Tooltips can now use the clip option to control whether they are hidden when outside the visible editor content.

6.34.3 (2024-11-15)

Bug fixes

Make sure positions covered by a gutter or a panel aren't treated as visible for the purpose of displaying tooltips.

Properly include the tooltip arrow height when checking whether a tooltip fits in its preferred above/below position.

Fix an issue with compositions on Chrome inserting their content in the wrong position when another document change came in during composition.

6.34.2 (2024-11-05)

Bug fixes

Fix the default cursor color for dark themes, which was way too dark.

6.34.1 (2024-09-27)

Bug fixes

Avoid a stack overflow that could happen when updating a line with a lot of text tokens.

Improve the way enormously long (non-wrapped) lines are displayed by making sure they stay shorter than the maximal pixel size the browser's CSS engine can handle.

6.34.0 (2024-09-25)

Bug fixes

Fix an issue where the dots past the wrapping point were displayed incorrectly when using highlightWhitespace with a wrapped sequence of spaces.

Improve performance of documents displaying lots of highlighted spaces by using a CSS background instead of pseudo-element.

New features

placeholder now allows a function that constructs the placedholder DOM to be passed in, and uses cloneNode when a raw element is passed in, to prevent adding the same element to multiple editors.

6.33.1 (2024-08-30)

Bug fixes

Work around odd behavior in Chrome's newly supported caretPositionFromPoint method, which could cause CodeMirror to crash with a null dereference.

Commits
  • f445c3c Mark version 6.35.0
  • f1c9aed Support a clip option on tooltips
  • 0cb99d9 Mark version 6.34.3
  • 9658d5e Freeze the edit context when non-typing changes come in during composition
  • 869252a Properly include arrow height when checking for tooltip space
  • e30c4ca Hide tooltips for positions covered by gutters or panels
  • db7b6b2 Mark version 6.34.2
  • 49e68f7 Make the dark theme cursor color a lot lighter
  • 1d9f008 Mark version 6.34.1
  • a5424ff Add support for basic scaling of horizontal gaps
  • Additional commits viewable in compare view

Updates @emotion/react from 11.13.3 to 11.13.5

Release notes

Sourced from @​emotion/react's releases.

@​emotion/react@​11.13.5

Patch Changes

  • #3270 77d930d Thanks @​emmatown! - Fix inconsistent hashes using development vs production bundles/exports conditions when using @emotion/babel-plugin with sourceMap: true (the default). This is particularly visible when using Emotion with the Next.js Pages router where the development condition is used when bundling code but not when importing external code with Node.js.

  • Updated dependencies [77d930d]:

    • @​emotion/serialize@​1.3.3
    • @​emotion/cache@​11.13.5
    • @​emotion/utils@​1.4.2
    • @​emotion/babel-plugin@​11.13.5
Commits

Updates @fortawesome/fontawesome-svg-core from 6.6.0 to 6.7.1

Release notes

Sourced from @​fortawesome/fontawesome-svg-core's releases.

Release 6.7.1

Change log available at https://fontawesome.com/docs/changelog/

Release 6.7.0

Change log available at https://fontawesome.com/docs/changelog/

Commits

Updates @fortawesome/free-regular-svg-icons from 6.6.0 to 6.7.1

Release notes

Sourced from @​fortawesome/free-regular-svg-icons's releases.

Release 6.7.1

Change log available at https://fontawesome.com/docs/changelog/

Release 6.7.0

Change log available at https://fontawesome.com/docs/changelog/

Commits

Updates @fortawesome/free-solid-svg-icons from 6.6.0 to 6.7.1

Release notes

Sourced from @​fortawesome/free-solid-svg-icons's releases.

Release 6.7.1

Change log available at https://fontawesome.com/docs/changelog/

Release 6.7.0

Change log available at https://fontawesome.com/docs/changelog/

Commits

Updates @lingui/core from 4.11.4 to 4.14.0

Release notes

Sourced from @​lingui/core's releases.

v4.14.0

4.14.0 (2024-11-07)

Features

  • format-po-gettext: respect Plural-Forms header (#2070) (5d0516e)

Bug Fixes

  • extract: when files are used, don't overwrite obsolete (#1964) (e726b16)

v4.13.0

4.13.0 (2024-10-15)

Features

  • adds custom prefix support for gettext po (#2004) (25b3bc6)

v4.12.0

4.12.0 (2024-10-11)

Features

Bug Fixes

Changelog

Sourced from @​lingui/core's changelog.

4.14.0 (2024-11-07)

Bug Fixes

  • extract: when files are used, don't overwrite obsolete (#1964) (e726b16)

Features

  • format-po-gettext: respect Plural-Forms header (#2070) (5d0516e)

4.13.0 (2024-10-15)

Features

  • adds custom prefix support for gettext po (#2004) (25b3bc6)

4.12.0 (2024-10-11)

Bug Fixes

Features

  • add metro transformer (#1999) (cc7fe27)
  • enable importAttributes and explicitResourceManagement for extractor (#2009) (c20ce12)
Commits
  • 8dcb749 chore(release): published v4.14.0 [skip ci]
  • 5d0516e feat(format-po-gettext): respect Plural-Forms header (#2070)
  • d0e45bc docs: update react native guide according to example (#2071)
  • e726b16 fix(extract): when files are used, don't overwrite obsolete (#1964)
  • b8b4b19 docs: improve catalog format options description (#2050)
  • 263faa5 chore(release): published v4.13.0 [skip ci]
  • 75414db chore: use metro transformer in react native example (#2000)
  • 25b3bc6 feat: adds custom prefix support for gettext po (#2004)
  • 9699ade style(docs): minor refreshment of documentation styles (#2045)
  • 85873d9 docs: update ESLint plugin documentation (#2046)
  • Additional commits viewable in compare view

Updates @lingui/react from 4.11.4 to 4.14.0

Release notes

Sourced from @​lingui/react's releases.

v4.14.0

4.14.0 (2024-11-07)

Features

  • format-po-gettext: respect Plural-Forms header (#2070) (5d0516e)

Bug Fixes

  • extract: when files are used, don't overwrite obsolete (#1964) (e726b16)

v4.13.0

4.13.0 (2024-10-15)

Features

  • adds custom prefix support for gettext po (#2004) (25b3bc6)

v4.12.0

4.12.0 (2024-10-11)

Features

Bug Fixes

Changelog

Sourced from @​lingui/react's changelog.

4.14.0 (2024-11-07)

Bug Fixes

  • extract: when files are used, don't overwrite obsolete (#1964) (e726b16)

Features

  • format-po-gettext: respect Plural-Forms header (#2070) (5d0516e)

4.13.0 (2024-10-15)

Features

  • adds custom prefix support for gettext po (#2004) (25b3bc6)

4.12.0 (2024-10-11)

Bug Fixes

Features

  • add metro transformer (#1999) (cc7fe27)
  • enable importAttributes and explicitResourceManagement for extractor (#2009) (c20ce12)
Commits
  • 8dcb749 chore(release): published v4.14.0 [skip ci]
  • 5d0516e feat(format-po-gettext): respect Plural-Forms header (#2070)
  • d0e45bc docs: update react native guide according to example (#2071)
  • e726b16 fix(extract): when files are used, don't overwrite obsolete (#1964)
  • b8b4b19 docs: improve catalog format options description (#2050)
  • 263faa5 chore(release): published v4.13.0 [skip ci]
  • 75414db chore: use metro transformer in react native example (#2000)
  • 25b3bc6 feat: adds custom prefix support for gettext po (#2004)
  • 9699ade style(docs): minor refreshment of documentation styles (#2045)
  • 85873d9 docs: update ESLint plugin documentation (#2046)
  • Additional commits viewable in compare view

Updates @mantine/carousel from 7.12.2 to 7.14.2

Release notes

Sourced from @​mantine/carousel's releases.

7.14.2

What's Changed

  • [@mantine/core] Add onEnterTranstionEnd and onExitTransitionEnd props support to Modal, Drawer and Popover components
  • [@mantine/charts] DonutChart: Fix valueFormatter prop not working, add labelsType prop support (#7153)
  • [@mantine/charts] BarChart: Fix incorrect labels positions in some cases (#7160)
  • [@mantine/core] PasswordInput: Fix visibilityToggleButtonProps.variant prop being ignored (#7144)
  • [@mantine/core] Improve window.matchMedia usage to support test environments without matchMedia support (#7147)
  • [@mantine/core] Fix arrow overlaying Popover, Tooltip and HoverCard content in some cases (#7148)
  • [@mantine/form] Add onSubmitPreventDefault option support (#7142)
  • [@mantine/core] TypographyStylesProvider: Fix incorrect lists styles
  • [@mantine/notifications] Fix notifications with bottom-right and top-right positions shifting when modal/drawer is opened
  • [@mantine/core] FileInput: Add missing placeholder Styles API reference
  • [@mantine/core] Update floating-ui, react-textarea-autosize and type-fest dependencies to the latest version
  • [@mantine/modals] Add updateModal and updateContextModal functions (#7104)
  • [@mantine/tiptap] Fix too specific styles that prevented controls border-radius override without !important
  • [@mantine/tiptap] Fix disabled controls having hover effects and pointer cursor
  • [@mantine/core] FileInput: Add missing component prop
  • [@mantine/core] AngleSlider: Fix page being scrolled when the value is being changed on mobile
  • [@mantine/core] NumberInput: Fix increment/decrement controls not being visible if the value is number like string
  • [@mantine/core] NavLink: Fix collapse for nested links being rendered even if there are no child links (#7133)
  • [@mantine/dates] Fix defaultDate prop being ignore in YearPickerInput and MonthPickerInput components (#7108)
  • [@mantine/dropzone] Update react-dropzone-esm to the latest version

New Contributors

Full Changelog: mantinedev/mantine@7.14.1...7.14.2

7.14.1

What's Changed

  • [@mantine/hooks] use-hotkeys: Fix + sign not being supported (syntax: shift+[plus]) (#7123)
  • [@mantine/core] Popover: Fix styles prop being handled incorrectly (#7120)
  • [@mantine/charts] Fix valueFormatter not working in point labels of LineChant, AreaChart and CompositeChart components (#6989)
  • [@mantine/core] Popover: Fix onOpen and onClose callbacks being called on each render (#7022, #7111, #7115)
  • [@mantine/core] Menu: Fix Blocked aria-hidden warning when an interactive element is clicked outside of the Menu.Dropdown when the Menu is opened (#7035)
  • [@mantine/core] Fix top style prop not being conveted to rem (#7112)
  • [@mantine/dates] DateInput: Fix defaultDate prop not working when the value is set to null (#4426)
  • [@mantine/core] NumberInput: Remove increment/decrement control if value cannot be safely incremented (is larger than Number.MAX_SAFE_INTEGER) (#7033)
  • [@mantine/core] NumberInput: Fix value being reverted to start value if intial component value is a string
  • [@mantine/notifications] Fix NotificationData type being too broad (#7097)
  • [@mantine/core] RingProgress: Add transitionDuration prop support (#7103)
  • [@mantine/core] TagsInput: Fix incorrect tag remove logic with duplicated tags (#7105)
  • [@mantine/core] Combobox: Fix incorrect aria-controls attribute being set on the target element when the dropdown is closed (#7114)

New Contributors

Full Changelog: mantinedev/mantine@7.14.0...7.14.1

... (truncated)

Commits
  • c83f5b0 [release] Version: 7.14.2
  • 79280aa [release] Version: 7.14.2-alpha.0
  • 12adf69 [release] Version: 7.14.1
  • 811b104 [release] Version: 7.14.0
  • 1d07a31 [release] Version: 7.13.5
  • a56501b [release] Version: 7.13.5-alpha.2
  • 34ee3cd [release] Version: 7.13.5-alpha.1
  • f34ab08 [core] Replace versions for alpha patch release
  • e5a8d4f [@​mantine/core] Update peer dependencies range for react to allow react and r...
  • fbcee92 [release] Version: 7.13.4
  • Additional commits viewable in compare view

Updates @mantine/charts from 7.12.2 to 7.14.2

Release notes

Sourced from @​mantine/charts's releases.

7.14.2

What's Changed

  • [@mantine/core] Add onEnterTranstionEnd and onExitTransitionEnd props support to Modal, Drawer and Popover components
  • [@mantine/charts] DonutChart: Fix valueFormatter prop not working, add labelsType prop support (#7153)
  • [@mantine/charts] BarChart: Fix incorrect labels positions in some cases (#7160)
  • [@mantine/core] PasswordInput: Fix visibilityToggleButtonProps.variant prop being ignored (#7144)
  • [@mantine/core] Improve window.matchMedia usage to support test environments without matchMedia support (#7147)
  • [@mantine/core] Fix arrow overlaying Popover, Tooltip and HoverCard content in some cases (#7148)
  • [@mantine/form] Add onSubmitPreventDefault option support (#7142)
  • [@mantine/core] TypographyStylesProvider: Fix incorrect lists styles
  • [@mantine/notifications] Fix notifications with bottom-right and top-right positions shifting when modal/drawer is opened
  • [@mantine/core] FileInput: Add missing placeholder Styles API reference
  • [@mantine/core] Update floating-ui, react-textarea-autosize and type-fest dependencies to the latest version
  • [@mantine/modals] Add updateModal and updateContextModal functions (#7104)
  • [@mantine/tiptap] Fix too specific styles that prevented controls border-radius override without !important
  • [@mantine/tiptap] Fix disabled controls having hover effects and pointer cursor
  • [@mantine/core] FileInput: Add missing component prop
  • [@mantine/core] AngleSlider: Fix page being scrolled when the value is being changed on mobile
  • [@mantine/core] NumberInput: Fix increment/decrement controls not being visible if the value is number like string
  • [@mantine/core] NavLink: Fix collapse for nested links being rendered even if there are no child links (#7133)
  • [@mantine/dates] Fix defaultDate prop being ignore in YearPickerInput and MonthPickerInput components (#7108)
  • [@mantine/dropzone] Update react-dropzone-esm to the latest version

New Contributors

Full Changelog: mantinedev/mantine@7.14.1...7.14.2

7.14.1

What's Changed

  • [@mantine/hooks] use-hotkeys: Fix + sign not being supported (syntax: shift+[plus]) (#7123)
  • [@mantine/core] Popover: Fix styles prop being handled incorrectly (#7120)
  • [@mantine/charts] Fix valueFormatter not working in point labels of LineChant, AreaChart and CompositeChart components (#6989)
  • [@mantine/core] Popover: Fix onOpen and onClose callbacks being called on each render (#7022, #7111, #7115)
  • [@mantine/core] Menu: Fix Blocked aria-hidden warning when an interactive element is clicked outside of the Menu.Dropdown when the Menu is opened (#7035)
  • [@mantine/core] Fix top style prop not being conveted to rem (#7112)
  • [@mantine/dates] DateInput: Fix defaultDate prop not working when the value is set to null (#4426)
  • [@mantine/core] NumberInput: Remove increment/decrement control if value cannot be safely incremented (is larger than Number.MAX_SAFE_INTEGER) (#7033)
  • [@mantine/core] NumberInput: Fix value being reverted to start value if intial component value is a string
  • [@mantine/notifications] Fix NotificationData type being too broad (#7097)
  • [@mantine/core] RingProgress: Add transitionDuration prop support (#7103)
  • [@mantine/core] TagsInput: Fix incorrect tag remove logic with duplicated tags (#7105)
  • [@mantine/core] Combobox: Fix incorrect aria-controls attribute being set on the target element when the dropdown is closed (#7114)

New Contributors

Full Changelog: mantinedev/mantine@7.14.0...7.14.1

... (truncated)

Commits
  • c83f5b0 [release] Version: 7.14.2
  • d2c0f1b [@​mantine/charts] DonutChart: Fix valueFormatter prop not working, add `lab...
  • 931565c [@​mantine/charts] BarChart: Fix incorrect labels positions in some cases (#7160)
  • 79280aa [release] Version: 7.14.2-alpha.0
  • 12adf69 [release] Version: 7.14.1
  • ed68c87 [@​mantine/charts] Fix valueFormatter not working in point labels of LineCha...
  • 811b104 [release] Version: 7.14.0
  • 727c9e4 Merge branch master into 7.14
  • 1d07a31 [release] Version: 7.13.5
  • a56501b [release] Version: 7.13.5-alpha.2
  • Additional commits viewable in compare view

Updates @mantine/core from 7.12.2 to 7.14.2

Release notes

Sourced from @​mantine/core's releases.

7.14.2

What's Changed

  • [@mantine/core] Add onEnterTranstionEnd and onExitTransitionEnd props support to Modal, Drawer and Popover components
  • [@mantine/charts] DonutChart: Fix valueFormatter prop not working, add labelsType prop support (#7153)
  • [@mantine/charts] BarChart: Fix incorrect labels positions in some cases (#7160)
  • [@mantine/core] PasswordInput: Fix visibilityToggleButtonProps.variant prop being ignored (#7144)
  • [@mantine/core] Improve window.matchMedia usage to support test environments without matchMedia support (#7147)
  • [@mantine/core] Fix arrow overlaying Popover, Tooltip and HoverCard content in some cases (#7148)
  • [@mantine/form] Add onSubmitPreventDefault option support (#7142)
  • [@mantine/core] TypographyStylesProvider: Fix incorrect lists styles
  • [@mantine/notifications] Fix notifications with bottom-right and top-right positions shifting when modal/drawer is opened
  • [@mantine/core] FileInput: Add missing placeholder Styles API reference
  • [@mantine/core] Update floating-ui, react-textarea-autosize and type-fest dependencies to the latest version
  • [@mantine/modals] Add updateModal and updateContextModal functions (#7104)
  • [@mantine/tiptap] Fix too specific styles that prevented controls border-radius override without !important
  • [@mantine/tiptap] Fix disabled controls having hover effects and pointer cursor
  • [@mantine/core] FileInput: Add missing component prop
  • [@mantine/core] AngleSlider: Fix page being scrolled when the value is being changed on mobile
  • [@mantine/core] NumberInput: Fix increment/decrement controls not being visible if the value is number like string
  • [@mantine/core] NavLink: Fix collapse for nested links being rendered even if there are no child links (#7133)
  • [@mantine/dates] Fix defaultDate prop being ignore in YearPickerInput and MonthPickerInput components (#7108)
  • [@mantine/dropzone] Update react-dropzone-esm to the latest version

New Contributors

Full Changelog: mantinedev/mantine@7.14.1...7.14.2

7.14.1

What's Changed

  • [@mantine/hooks] use-hotkeys: Fix + sign not being supported (syntax: shift+[plus]) (#7123)
  • [@mantine/core] Popover: Fix styles prop being handled incorrectly (#7120)
  • [@mantine/charts] Fix valueFormatter not working in point labels of LineChant, AreaChart and CompositeChart components (#6989)
  • [@mantine/core] Popover: Fix onOpen and onClose callbacks being called on each render (#7022, #7111, #7115)
  • [@mantine/core] Menu: Fix Blocked aria-hidden warning when an interactive element is clicked outside of the Menu.Dropdown when the Menu is opened (#7035)
  • [@mantine/core] Fix top style prop not being conveted to rem (#7112)
  • [@mantine/dates] DateInput: Fix defaultDate prop not working when the value is set to null (

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

| Package | From | To |
| --- | --- | --- |
| [@codemirror/autocomplete](https://github.com/codemirror/autocomplete) | `6.18.1` | `6.18.3` |
| [@codemirror/lang-liquid](https://github.com/codemirror/lang-liquid) | `6.2.1` | `6.2.2` |
| [@codemirror/language](https://github.com/codemirror/language) | `6.10.3` | `6.10.4` |
| [@codemirror/lint](https://github.com/codemirror/lint) | `6.8.1` | `6.8.3` |
| [@codemirror/search](https://github.com/codemirror/search) | `6.5.6` | `6.5.8` |
| [@emotion/react](https://github.com/emotion-js/emotion) | `11.13.3` | `11.13.5` |
| [@fortawesome/fontawesome-svg-core](https://github.com/FortAwesome/Font-Awesome) | `6.6.0` | `6.7.1` |
| [@fortawesome/free-regular-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.6.0` | `6.7.1` |
| [@fortawesome/free-solid-svg-icons](https://github.com/FortAwesome/Font-Awesome) | `6.6.0` | `6.7.1` |
| [@lingui/core](https://github.com/lingui/js-lingui) | `4.11.4` | `4.14.0` |
| [@lingui/react](https://github.com/lingui/js-lingui) | `4.11.4` | `4.14.0` |
| [@mantine/carousel](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/carousel) | `7.12.2` | `7.14.2` |
| [@mantine/charts](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/charts) | `7.12.2` | `7.14.2` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `7.12.2` | `7.14.2` |
| [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) | `7.12.2` | `7.14.2` |
| [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone) | `7.12.2` | `7.14.2` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `7.12.2` | `7.14.2` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `7.12.2` | `7.14.2` |
| [@mantine/modals](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/modals) | `7.12.2` | `7.14.2` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `7.12.2` | `7.14.2` |
| [@mantine/spotlight](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/spotlight) | `7.12.2` | `7.14.2` |
| [@mantine/vanilla-extract](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/vanilla-extract) | `7.12.2` | `7.14.2` |
| [@sentry/react](https://github.com/getsentry/sentry-javascript) | `8.31.0` | `8.40.0` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.17.0` | `3.22.0` |
| [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.56.2` | `5.61.3` |
| [@uiw/codemirror-theme-vscode](https://github.com/uiwjs/react-codemirror) | `4.23.3` | `4.23.6` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.23.3` | `4.23.6` |
| [@vanilla-extract/css](https://github.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/css) | `1.15.5` | `1.16.1` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.1.7` | `3.2.1` |
| [@types/dompurify](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/dompurify) | `3.0.5` | `3.2.0` |
| [embla-carousel-react](https://github.com/davidjerleke/embla-carousel) | `8.3.0` | `8.5.1` |
| [react-grid-layout](https://github.com/STRML/react-grid-layout) | `1.4.4` | `1.5.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.53.0` | `7.53.2` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.26.2` | `7.0.1` |
| [react-select](https://github.com/JedWatson/react-select) | `5.8.1` | `5.8.3` |
| [recharts](https://github.com/recharts/recharts) | `2.12.7` | `2.13.3` |
| [zustand](https://github.com/pmndrs/zustand) | `4.5.5` | `5.0.1` |
| [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) | `7.25.2` | `7.26.0` |
| [@babel/preset-react](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-react) | `7.24.7` | `7.25.9` |
| [@babel/preset-typescript](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-typescript) | `7.24.7` | `7.26.0` |
| @codecov/vite-plugin | `1.2.0` | `1.4.0` |
| [@lingui/cli](https://github.com/lingui/js-lingui) | `4.11.4` | `4.14.0` |
| [@lingui/macro](https://github.com/lingui/js-lingui) | `4.11.4` | `4.14.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.47.2` | `1.49.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.6.0` | `22.9.3` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.8` | `18.3.12` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.3.0` | `18.3.1` |
| [@vanilla-extract/vite-plugin](https://github.com/vanilla-extract-css/vanilla-extract/tree/HEAD/packages/vite-plugin) | `4.0.15` | `4.0.18` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.1` | `4.3.3` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.7.2` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.7` | `5.4.11` |



Updates `@codemirror/autocomplete` from 6.18.1 to 6.18.3
- [Changelog](https://github.com/codemirror/autocomplete/blob/main/CHANGELOG.md)
- [Commits](codemirror/autocomplete@6.18.1...6.18.3)

Updates `@codemirror/lang-liquid` from 6.2.1 to 6.2.2
- [Changelog](https://github.com/codemirror/lang-liquid/blob/main/CHANGELOG.md)
- [Commits](codemirror/lang-liquid@6.2.1...6.2.2)

Updates `@codemirror/language` from 6.10.3 to 6.10.4
- [Changelog](https://github.com/codemirror/language/blob/main/CHANGELOG.md)
- [Commits](codemirror/language@6.10.3...6.10.4)

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

Updates `@codemirror/search` from 6.5.6 to 6.5.8
- [Changelog](https://github.com/codemirror/search/blob/main/CHANGELOG.md)
- [Commits](codemirror/search@6.5.6...6.5.8)

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

Updates `@emotion/react` from 11.13.3 to 11.13.5
- [Release notes](https://github.com/emotion-js/emotion/releases)
- [Changelog](https://github.com/emotion-js/emotion/blob/main/CHANGELOG.md)
- [Commits](https://github.com/emotion-js/emotion/compare/@emotion/[email protected]...@emotion/[email protected])

Updates `@fortawesome/fontawesome-svg-core` from 6.6.0 to 6.7.1
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.6.0...6.7.1)

Updates `@fortawesome/free-regular-svg-icons` from 6.6.0 to 6.7.1
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.6.0...6.7.1)

Updates `@fortawesome/free-solid-svg-icons` from 6.6.0 to 6.7.1
- [Release notes](https://github.com/FortAwesome/Font-Awesome/releases)
- [Changelog](https://github.com/FortAwesome/Font-Awesome/blob/6.x/CHANGELOG.md)
- [Commits](FortAwesome/Font-Awesome@6.6.0...6.7.1)

Updates `@lingui/core` from 4.11.4 to 4.14.0
- [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.11.4...v4.14.0)

Updates `@lingui/react` from 4.11.4 to 4.14.0
- [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.11.4...v4.14.0)

Updates `@mantine/carousel` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/carousel)

Updates `@mantine/charts` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/charts)

Updates `@mantine/core` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/core)

Updates `@mantine/dates` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/dates)

Updates `@mantine/dropzone` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/dropzone)

Updates `@mantine/form` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/form)

Updates `@mantine/hooks` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/hooks)

Updates `@mantine/modals` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/modals)

Updates `@mantine/notifications` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/notifications)

Updates `@mantine/spotlight` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/spotlight)

Updates `@mantine/vanilla-extract` from 7.12.2 to 7.14.2
- [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.14.2/packages/@mantine/vanilla-extract)

Updates `@sentry/react` from 8.31.0 to 8.40.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@8.31.0...8.40.0)

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

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

Updates `@uiw/codemirror-theme-vscode` from 4.23.3 to 4.23.6
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.23.3...v4.23.6)

Updates `@uiw/react-codemirror` from 4.23.3 to 4.23.6
- [Release notes](https://github.com/uiwjs/react-codemirror/releases)
- [Commits](uiwjs/react-codemirror@v4.23.3...v4.23.6)

Updates `@vanilla-extract/css` from 1.15.5 to 1.16.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/[email protected]/packages/css)

Updates `dompurify` from 3.1.7 to 3.2.1
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.1.7...3.2.1)

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

Updates `embla-carousel-react` from 8.3.0 to 8.5.1
- [Release notes](https://github.com/davidjerleke/embla-carousel/releases)
- [Commits](davidjerleke/embla-carousel@v8.3.0...v8.5.1)

Updates `react-grid-layout` from 1.4.4 to 1.5.0
- [Release notes](https://github.com/STRML/react-grid-layout/releases)
- [Changelog](https://github.com/react-grid-layout/react-grid-layout/blob/master/CHANGELOG.md)
- [Commits](react-grid-layout/react-grid-layout@1.4.4...1.5.0)

Updates `react-hook-form` from 7.53.0 to 7.53.2
- [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.53.0...v7.53.2)

Updates `react-router-dom` from 6.26.2 to 7.0.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/[email protected]/packages/react-router-dom)

Updates `react-select` from 5.8.1 to 5.8.3
- [Release notes](https://github.com/JedWatson/react-select/releases)
- [Changelog](https://github.com/JedWatson/react-select/blob/master/docs/CHANGELOG.md)
- [Commits](https://github.com/JedWatson/react-select/compare/[email protected]@5.8.3)

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

Updates `zustand` from 4.5.5 to 5.0.1
- [Release notes](https://github.com/pmndrs/zustand/releases)
- [Commits](pmndrs/zustand@v4.5.5...v5.0.1)

Updates `@babel/core` from 7.25.2 to 7.26.0
- [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.26.0/packages/babel-core)

Updates `@babel/preset-react` from 7.24.7 to 7.25.9
- [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.25.9/packages/babel-preset-react)

Updates `@babel/preset-typescript` from 7.24.7 to 7.26.0
- [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.26.0/packages/babel-preset-typescript)

Updates `@codecov/vite-plugin` from 1.2.0 to 1.4.0

Updates `@lingui/cli` from 4.11.4 to 4.14.0
- [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.11.4...v4.14.0)

Updates `@lingui/macro` from 4.11.4 to 4.14.0
- [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.11.4...v4.14.0)

Updates `@playwright/test` from 1.47.2 to 1.49.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.47.2...v1.49.0)

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

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

Updates `@types/react-dom` from 18.3.0 to 18.3.1
- [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.15 to 4.0.18
- [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/[email protected]/packages/vite-plugin)

Updates `@vitejs/plugin-react` from 4.3.1 to 4.3.3
- [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/v4.3.3/packages/plugin-react)

Updates `typescript` from 5.6.2 to 5.7.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.2...v5.7.2)

Updates `vite` from 5.4.7 to 5.4.11
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.11/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.11/packages/vite)

---
updated-dependencies:
- dependency-name: "@codemirror/autocomplete"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@codemirror/lang-liquid"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@codemirror/language"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@codemirror/lint"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@codemirror/search"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@codemirror/view"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@emotion/react"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@fortawesome/fontawesome-svg-core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@fortawesome/free-regular-svg-icons"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@fortawesome/free-solid-svg-icons"
  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-minor
  dependency-group: dependencies
- dependency-name: "@lingui/react"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/carousel"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@mantine/charts"
  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-minor
  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-patch
  dependency-group: dependencies
- dependency-name: "@uiw/react-codemirror"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@vanilla-extract/css"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: dompurify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@types/dompurify"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: embla-carousel-react
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-grid-layout
  dependency-type: direct:production
  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-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: react-select
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: recharts
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: zustand
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@babel/preset-react"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@babel/preset-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@codecov/vite-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@lingui/cli"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@lingui/macro"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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-minor
  dependency-group: dependencies
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@vanilla-extract/vite-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 25, 2024
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