Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2025

Bumps the npm-production group in /web with 10 updates:

Package From To
@mantine/code-highlight 8.1.2 8.2.2
@mantine/core 8.1.2 8.2.2
@mantine/hooks 8.1.2 8.2.2
@mantine/notifications 8.1.2 8.2.2
@tabler/icons-react 3.34.0 3.34.1
react 19.1.0 19.1.1
@types/react 19.1.8 19.1.9
react-dom 19.1.0 19.1.1
@types/react-dom 19.1.6 19.1.7
react-router-dom 7.6.3 7.7.1

Updates @mantine/code-highlight from 8.1.2 to 8.2.2

Release notes

Sourced from @​mantine/code-highlight's releases.

8.2.2

What's Changed

  • [@mantine/core] Menu: Fix incorrect overflow handling of submenu (#8123)
  • [@mantine/hooks] use-merged-ref: Fix incorrect handling of React 19 cleanup ref callback (#8118)
  • [@mantine/dates] TimePicker: Fix incorrect leading zero handling in 12h format (#8120)
  • [@mantine/dates] TimePicker: Fix min/max values not being enforced for 12h time format (#8107)
  • [@mantine/core] HoverCard: Improve outside clicks handling (#8097)
  • [@mantine/dates] Add month and year switching with keyboard to Calendar-based components (#7959)
  • [@mantine/core] ScrollArea: Add onOverflowChange prop support to ScrollArea.Autosize (#7972)
  • [@mantine/core] MultiSelect: Add clearSearchOnChange prop support (#8068)
  • [@mantine/core] Select: Fix caret being visible in Firefox when the component is read only (#8063)

New Contributors

Full Changelog: mantinedev/mantine@8.2.0...8.2.2

8.2.0 🔥

View changelog with demos on mantine.dev website

Styles API attributes

You now can pass attributes to inner elements of all components that support Styles API with attributes prop. For example, it can be used to add data attributes for testing purposes:

import { Button } from '@mantine/core';
function Demo() {
return (
<Button
attributes={{
root: { 'data-test-id': 'root' },
label: { 'data-test-id': 'label' },
inner: { 'data-test-id': 'inner' },
}}
>
Button
</Button>
);
}

Container grid strategy

... (truncated)

Commits
  • da0fbca [release] Version: 8.2.2
  • 8a27807 [release] Version: 8.2.1
  • 6545583 [release] Version: 8.2.0
  • 755cf14 Merge branch master into 8.2
  • c2a603d [release] Version: 8.1.3
  • 4f59bb6 Merge branch master into 8.2
  • a5d951b Merge branch master into 8.2
  • a2b389a Merge branch master into 8.2
  • 7369947 [@​mantine/core] Add attributes support for Styles API
  • c0077cf [mantine.dev] Fix missing code highlight is some props descriptions
  • Additional commits viewable in compare view

Updates @mantine/core from 8.1.2 to 8.2.2

Release notes

Sourced from @​mantine/core's releases.

8.2.2

What's Changed

  • [@mantine/core] Menu: Fix incorrect overflow handling of submenu (#8123)
  • [@mantine/hooks] use-merged-ref: Fix incorrect handling of React 19 cleanup ref callback (#8118)
  • [@mantine/dates] TimePicker: Fix incorrect leading zero handling in 12h format (#8120)
  • [@mantine/dates] TimePicker: Fix min/max values not being enforced for 12h time format (#8107)
  • [@mantine/core] HoverCard: Improve outside clicks handling (#8097)
  • [@mantine/dates] Add month and year switching with keyboard to Calendar-based components (#7959)
  • [@mantine/core] ScrollArea: Add onOverflowChange prop support to ScrollArea.Autosize (#7972)
  • [@mantine/core] MultiSelect: Add clearSearchOnChange prop support (#8068)
  • [@mantine/core] Select: Fix caret being visible in Firefox when the component is read only (#8063)

New Contributors

Full Changelog: mantinedev/mantine@8.2.0...8.2.2

8.2.0 🔥

View changelog with demos on mantine.dev website

Styles API attributes

You now can pass attributes to inner elements of all components that support Styles API with attributes prop. For example, it can be used to add data attributes for testing purposes:

import { Button } from '@mantine/core';
function Demo() {
return (
<Button
attributes={{
root: { 'data-test-id': 'root' },
label: { 'data-test-id': 'label' },
inner: { 'data-test-id': 'inner' },
}}
>
Button
</Button>
);
}

Container grid strategy

... (truncated)

Commits
  • da0fbca [release] Version: 8.2.2
  • 6f1d835 [@​mantine/core] Menu: Fix incorrect overflow handling of submenu (#8123)
  • 6979187 [@​mantine/core] HoverCard: Improve outside clicks handling (#8097)
  • 1839f9c [@​mantine/core] ScrollArea: Add onOverflowChange prop support to `ScrollAre...
  • bfea56b [@​mantine/core] MultiSelect: Add clearSearchOnChange prop support (#8068)
  • ddf7ad8 [@​mantine/core] Select: Fix caret being visible in Firefox when the component...
  • 8a27807 [release] Version: 8.2.1
  • 6545583 [release] Version: 8.2.0
  • 755cf14 Merge branch master into 8.2
  • c2a603d [release] Version: 8.1.3
  • Additional commits viewable in compare view

Updates @mantine/hooks from 8.1.2 to 8.2.2

Release notes

Sourced from @​mantine/hooks's releases.

8.2.2

What's Changed

  • [@mantine/core] Menu: Fix incorrect overflow handling of submenu (#8123)
  • [@mantine/hooks] use-merged-ref: Fix incorrect handling of React 19 cleanup ref callback (#8118)
  • [@mantine/dates] TimePicker: Fix incorrect leading zero handling in 12h format (#8120)
  • [@mantine/dates] TimePicker: Fix min/max values not being enforced for 12h time format (#8107)
  • [@mantine/core] HoverCard: Improve outside clicks handling (#8097)
  • [@mantine/dates] Add month and year switching with keyboard to Calendar-based components (#7959)
  • [@mantine/core] ScrollArea: Add onOverflowChange prop support to ScrollArea.Autosize (#7972)
  • [@mantine/core] MultiSelect: Add clearSearchOnChange prop support (#8068)
  • [@mantine/core] Select: Fix caret being visible in Firefox when the component is read only (#8063)

New Contributors

Full Changelog: mantinedev/mantine@8.2.0...8.2.2

8.2.0 🔥

View changelog with demos on mantine.dev website

Styles API attributes

You now can pass attributes to inner elements of all components that support Styles API with attributes prop. For example, it can be used to add data attributes for testing purposes:

import { Button } from '@mantine/core';
function Demo() {
return (
<Button
attributes={{
root: { 'data-test-id': 'root' },
label: { 'data-test-id': 'label' },
inner: { 'data-test-id': 'inner' },
}}
>
Button
</Button>
);
}

Container grid strategy

... (truncated)

Commits
  • da0fbca [release] Version: 8.2.2
  • abd9d54 [@​mantine/hooks] use-merged-ref: Fix incorrect handling of React 19 cleanup r...
  • 8a27807 [release] Version: 8.2.1
  • 6545583 [release] Version: 8.2.0
  • 755cf14 Merge branch master into 8.2
  • c2a603d [release] Version: 8.1.3
  • ce8a611 [@​mantine/hooks] use-set: Add intersection
  • 29930ad Merge branch 'master' of github.com:mantinedev/mantine into 8.2
  • 293c5a4 [@​mantine/hooks] use-move: Fix React 18 compatibility (#8018)
  • 4f59bb6 Merge branch master into 8.2
  • Additional commits viewable in compare view

Updates @mantine/notifications from 8.1.2 to 8.2.2

Release notes

Sourced from @​mantine/notifications's releases.

8.2.2

What's Changed

  • [@mantine/core] Menu: Fix incorrect overflow handling of submenu (#8123)
  • [@mantine/hooks] use-merged-ref: Fix incorrect handling of React 19 cleanup ref callback (#8118)
  • [@mantine/dates] TimePicker: Fix incorrect leading zero handling in 12h format (#8120)
  • [@mantine/dates] TimePicker: Fix min/max values not being enforced for 12h time format (#8107)
  • [@mantine/core] HoverCard: Improve outside clicks handling (#8097)
  • [@mantine/dates] Add month and year switching with keyboard to Calendar-based components (#7959)
  • [@mantine/core] ScrollArea: Add onOverflowChange prop support to ScrollArea.Autosize (#7972)
  • [@mantine/core] MultiSelect: Add clearSearchOnChange prop support (#8068)
  • [@mantine/core] Select: Fix caret being visible in Firefox when the component is read only (#8063)

New Contributors

Full Changelog: mantinedev/mantine@8.2.0...8.2.2

8.2.0 🔥

View changelog with demos on mantine.dev website

Styles API attributes

You now can pass attributes to inner elements of all components that support Styles API with attributes prop. For example, it can be used to add data attributes for testing purposes:

import { Button } from '@mantine/core';
function Demo() {
return (
<Button
attributes={{
root: { 'data-test-id': 'root' },
label: { 'data-test-id': 'label' },
inner: { 'data-test-id': 'inner' },
}}
>
Button
</Button>
);
}

Container grid strategy

... (truncated)

Commits
  • da0fbca [release] Version: 8.2.2
  • 8a27807 [release] Version: 8.2.1
  • 6545583 [release] Version: 8.2.0
  • 755cf14 Merge branch master into 8.2
  • c2a603d [release] Version: 8.1.3
  • 4f59bb6 Merge branch master into 8.2
  • a5d951b Merge branch master into 8.2
  • a2b389a Merge branch master into 8.2
  • e495709 [mantine.dev] Migrated remaining components props descriptions to @default
  • 6e0eca8 [mantine.dev] Cleanup props descriptions up to Popover
  • See full diff in compare view

Updates @tabler/icons-react from 3.34.0 to 3.34.1

Release notes

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

Release 3.34.1

Improvements

  • Allow support for React 19 for React Native package
  • Add subpath imports to React Native package
  • Fix build script python errors
  • Improve icons loading in Vite development mode

1 new icon:

  • outline/brand-dropbox

Fixed icons: outline/language-off, outline/language

Commits

Updates react from 19.1.0 to 19.1.1

Release notes

Sourced from react's releases.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Changelog

Sourced from react's changelog.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Commits

Updates @types/react from 19.1.8 to 19.1.9

Commits

Updates react-dom from 19.1.0 to 19.1.1

Release notes

Sourced from react-dom's releases.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Changelog

Sourced from react-dom's changelog.

19.1.1 (July 28, 2025)

React

  • Fixed Owner Stacks to work with ES2015 function.name semantics (#33680 by @​hoxyq)
Commits

Updates @types/react-dom from 19.1.6 to 19.1.7

Commits

Updates react-router-dom from 7.6.3 to 7.7.1

Release notes

Sourced from react-router-dom's releases.

react-router-dom-v5-compat@6.4.0-pre.15

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.15
    • react-router-dom@6.4.0-pre.15

react-router-dom-v5-compat@6.4.0-pre.11

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.11
    • react-router-dom@6.4.0-pre.11

react-router-dom-v5-compat@6.4.0-pre.10

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.10
    • react-router-dom@6.4.0-pre.10

react-router-dom-v5-compat@6.4.0-pre.9

Patch Changes

  • Updated dependencies
    • react-router@6.4.0-pre.9
    • react-router-dom@6.4.0-pre.9
Changelog

Sourced from react-router-dom's changelog.

7.7.1

Patch Changes

  • Updated dependencies:
    • react-router@7.7.1

7.7.0

Patch Changes

  • Updated dependencies:
    • react-router@7.7.0
Commits

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

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

@dependabot dependabot bot requested a review from tarampampam as a code owner August 1, 2025 07:39
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Aug 1, 2025
@tarampampam
Copy link
Owner

@dependabot rebase

Bumps the npm-production group in /web with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@mantine/code-highlight](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/code-highlight) | `8.1.2` | `8.2.2` |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `8.1.2` | `8.2.2` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `8.1.2` | `8.2.2` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `8.1.2` | `8.2.2` |
| [@tabler/icons-react](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-react) | `3.34.0` | `3.34.1` |
| [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.1.0` | `19.1.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.1.9` |
| [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.1.1` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.1.7` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.6.3` | `7.7.1` |


Updates `@mantine/code-highlight` from 8.1.2 to 8.2.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/8.2.2/packages/@mantine/code-highlight)

Updates `@mantine/core` from 8.1.2 to 8.2.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/8.2.2/packages/@mantine/core)

Updates `@mantine/hooks` from 8.1.2 to 8.2.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/8.2.2/packages/@mantine/hooks)

Updates `@mantine/notifications` from 8.1.2 to 8.2.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/8.2.2/packages/@mantine/notifications)

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

Updates `react` from 19.1.0 to 19.1.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/v19.1.1/packages/react)

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

Updates `react-dom` from 19.1.0 to 19.1.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/v19.1.1/packages/react-dom)

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

Updates `react-router-dom` from 7.6.3 to 7.7.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@7.7.1/packages/react-router-dom)

---
updated-dependencies:
- dependency-name: "@mantine/code-highlight"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
- dependency-name: "@mantine/core"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
- dependency-name: "@mantine/hooks"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
- dependency-name: "@mantine/notifications"
  dependency-version: 8.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
- dependency-name: "@tabler/icons-react"
  dependency-version: 3.34.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
- dependency-name: react
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
- dependency-name: "@types/react"
  dependency-version: 19.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-production
- dependency-name: react-dom
  dependency-version: 19.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-production
- dependency-name: "@types/react-dom"
  dependency-version: 19.1.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-production
- dependency-name: react-router-dom
  dependency-version: 7.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/web/npm-production-962b61a808 branch from b13292b to ac06ca4 Compare August 1, 2025 07:51
@tarampampam
Copy link
Owner

@dependabot squash and merge

@dependabot dependabot bot merged commit a76ad99 into master Aug 1, 2025
18 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/web/npm-production-962b61a808 branch August 1, 2025 07:58
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.

1 participant