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

[bot]: Bump the mantine group in /frontend with 6 updates #2608

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 5, 2024

Bumps the mantine group in /frontend with 6 updates:

Package From To
@mantine/core 7.11.2 7.12.0
@mantine/dropzone 7.11.2 7.12.0
@mantine/form 7.11.2 7.12.0
@mantine/hooks 7.11.2 7.12.0
@mantine/modals 7.11.2 7.12.0
@mantine/notifications 7.11.2 7.12.0

Updates @mantine/core from 7.11.2 to 7.12.0

Release notes

Sourced from @​mantine/core's releases.

7.12.0 🌟

View changelog with demos on mantine.dev website

Notifications at any position

It is now possible to display notifications at any position on the screen with @​mantine/notifications package:

import { Button } from '@mantine/core';
import { notifications } from '@mantine/notifications';
const positions = [
'top-left',
'top-right',
'bottom-left',
'bottom-right',
'top-center',
'bottom-center',
] as const;
function Demo() {
const buttons = positions.map((position) => (
<Button
key={position}
onClick={() =>
notifications.show({
title: Notification at ${position},
message: Notification at ${position} message,
position,
})
}
>
{position}
</Button>
));
return <Group>{buttons}</Group>;
}

Subscribe to notifications state

You can now subscribe to notifications state changes with useNotifications hook:

function Demo() {
  const [counter, { increment }] = useCounter();
  const notificationsStore = useNotifications();
</tr></table>

... (truncated)

Commits
  • 2ae72db [release] Version: 7.12.0
  • 46d906b [@​mantine/core] Tree: Fix incorrect uncheck logic
  • 6815051 [@​mantine/core] Tree: Add memoization to is-node-checked and to is-node-indet...
  • 043708b [@​mantine/core] Tree: Fix checked state changes not working correctly
  • fffd72a [@​mantine/core] Tree: Add checked logic
  • c6a28eb [mantine.dev] Add SemiCircleProgress documentation
  • 47f5f9e [@​mantine/core] SemiCircleProgress: Fix incorrect label position styles
  • 498848b [mantine.dev] Add SemiCircleProgress demos
  • 048e119 [@​mantine/core] SemiCircleProgress: Init component
  • 8b96449 [@​mantine/core] Accordion: Add onTransitionEnd prop support to `Accordion.P...
  • Additional commits viewable in compare view

Updates @mantine/dropzone from 7.11.2 to 7.12.0

Release notes

Sourced from @​mantine/dropzone's releases.

7.12.0 🌟

View changelog with demos on mantine.dev website

Notifications at any position

It is now possible to display notifications at any position on the screen with @​mantine/notifications package:

import { Button } from '@mantine/core';
import { notifications } from '@mantine/notifications';
const positions = [
'top-left',
'top-right',
'bottom-left',
'bottom-right',
'top-center',
'bottom-center',
] as const;
function Demo() {
const buttons = positions.map((position) => (
<Button
key={position}
onClick={() =>
notifications.show({
title: Notification at ${position},
message: Notification at ${position} message,
position,
})
}
>
{position}
</Button>
));
return <Group>{buttons}</Group>;
}

Subscribe to notifications state

You can now subscribe to notifications state changes with useNotifications hook:

function Demo() {
  const [counter, { increment }] = useCounter();
  const notificationsStore = useNotifications();
</tr></table>

... (truncated)

Commits

Updates @mantine/form from 7.11.2 to 7.12.0

Release notes

Sourced from @​mantine/form's releases.

7.12.0 🌟

View changelog with demos on mantine.dev website

Notifications at any position

It is now possible to display notifications at any position on the screen with @​mantine/notifications package:

import { Button } from '@mantine/core';
import { notifications } from '@mantine/notifications';
const positions = [
'top-left',
'top-right',
'bottom-left',
'bottom-right',
'top-center',
'bottom-center',
] as const;
function Demo() {
const buttons = positions.map((position) => (
<Button
key={position}
onClick={() =>
notifications.show({
title: Notification at ${position},
message: Notification at ${position} message,
position,
})
}
>
{position}
</Button>
));
return <Group>{buttons}</Group>;
}

Subscribe to notifications state

You can now subscribe to notifications state changes with useNotifications hook:

function Demo() {
  const [counter, { increment }] = useCounter();
  const notificationsStore = useNotifications();
</tr></table>

... (truncated)

Commits
  • 2ae72db [release] Version: 7.12.0
  • 73827b3 [@​mantine/form] Allow subsribing to form.isDirty in uncontrolled mode
  • See full diff in compare view

Updates @mantine/hooks from 7.11.2 to 7.12.0

Release notes

Sourced from @​mantine/hooks's releases.

7.12.0 🌟

View changelog with demos on mantine.dev website

Notifications at any position

It is now possible to display notifications at any position on the screen with @​mantine/notifications package:

import { Button } from '@mantine/core';
import { notifications } from '@mantine/notifications';
const positions = [
'top-left',
'top-right',
'bottom-left',
'bottom-right',
'top-center',
'bottom-center',
] as const;
function Demo() {
const buttons = positions.map((position) => (
<Button
key={position}
onClick={() =>
notifications.show({
title: Notification at ${position},
message: Notification at ${position} message,
position,
})
}
>
{position}
</Button>
));
return <Group>{buttons}</Group>;
}

Subscribe to notifications state

You can now subscribe to notifications state changes with useNotifications hook:

function Demo() {
  const [counter, { increment }] = useCounter();
  const notificationsStore = useNotifications();
</tr></table>

... (truncated)

Commits

Updates @mantine/modals from 7.11.2 to 7.12.0

Release notes

Sourced from @​mantine/modals's releases.

7.12.0 🌟

View changelog with demos on mantine.dev website

Notifications at any position

It is now possible to display notifications at any position on the screen with @​mantine/notifications package:

import { Button } from '@mantine/core';
import { notifications } from '@mantine/notifications';
const positions = [
'top-left',
'top-right',
'bottom-left',
'bottom-right',
'top-center',
'bottom-center',
] as const;
function Demo() {
const buttons = positions.map((position) => (
<Button
key={position}
onClick={() =>
notifications.show({
title: Notification at ${position},
message: Notification at ${position} message,
position,
})
}
>
{position}
</Button>
));
return <Group>{buttons}</Group>;
}

Subscribe to notifications state

You can now subscribe to notifications state changes with useNotifications hook:

function Demo() {
  const [counter, { increment }] = useCounter();
  const notificationsStore = useNotifications();
</tr></table>

... (truncated)

Commits

Updates @mantine/notifications from 7.11.2 to 7.12.0

Release notes

Sourced from @​mantine/notifications's releases.

7.12.0 🌟

View changelog with demos on mantine.dev website

Notifications at any position

It is now possible to display notifications at any position on the screen with @​mantine/notifications package:

import { Button } from '@mantine/core';
import { notifications } from '@mantine/notifications';
const positions = [
'top-left',
'top-right',
'bottom-left',
'bottom-right',
'top-center',
'bottom-center',
] as const;
function Demo() {
const buttons = positions.map((position) => (
<Button
key={position}
onClick={() =>
notifications.show({
title: Notification at ${position},
message: Notification at ${position} message,
position,
})
}
>
{position}
</Button>
));
return <Group>{buttons}</Group>;
}

Subscribe to notifications state

You can now subscribe to notifications state changes with useNotifications hook:

function Demo() {
  const [counter, { increment }] = useCounter();
  const notificationsStore = useNotifications();
</tr></table>

... (truncated)

Commits
  • 2ae72db [release] Version: 7.12.0
  • 4d2a344 [mantine.dev] Add notifications state subscriptions documentation
  • b2d1302 [@​mantine/notifications] Allow displaying notifications at any position
  • See full diff in compare view

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

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

Bumps the mantine group in /frontend with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [@mantine/core](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/core) | `7.11.2` | `7.12.0` |
| [@mantine/dropzone](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dropzone) | `7.11.2` | `7.12.0` |
| [@mantine/form](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/form) | `7.11.2` | `7.12.0` |
| [@mantine/hooks](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/hooks) | `7.11.2` | `7.12.0` |
| [@mantine/modals](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/modals) | `7.11.2` | `7.12.0` |
| [@mantine/notifications](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/notifications) | `7.11.2` | `7.12.0` |


Updates `@mantine/core` from 7.11.2 to 7.12.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.12.0/packages/@mantine/core)

Updates `@mantine/dropzone` from 7.11.2 to 7.12.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.12.0/packages/@mantine/dropzone)

Updates `@mantine/form` from 7.11.2 to 7.12.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.12.0/packages/@mantine/form)

Updates `@mantine/hooks` from 7.11.2 to 7.12.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.12.0/packages/@mantine/hooks)

Updates `@mantine/modals` from 7.11.2 to 7.12.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.12.0/packages/@mantine/modals)

Updates `@mantine/notifications` from 7.11.2 to 7.12.0
- [Release notes](https://github.com/mantinedev/mantine/releases)
- [Changelog](https://github.com/mantinedev/mantine/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mantinedev/mantine/commits/7.12.0/packages/@mantine/notifications)

---
updated-dependencies:
- dependency-name: "@mantine/core"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/dropzone"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/form"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/hooks"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/modals"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
- dependency-name: "@mantine/notifications"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mantine
...

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 Aug 5, 2024
@anderson-oki anderson-oki merged commit 88f5d1c into development Aug 7, 2024
2 checks passed
@anderson-oki anderson-oki deleted the dependabot/npm_and_yarn/frontend/development/mantine-2c04c9445e branch August 7, 2024 00:08
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