From 10ee24f71ecedcfa679fa8fc45ee791a0d19dfd0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 May 2024 08:24:22 +0200 Subject: [PATCH] Bump @mantine/dates from 7.6.0 to 7.9.0 in /frontend (#713) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [@mantine/dates](https://github.com/mantinedev/mantine/tree/HEAD/packages/@mantine/dates) from 7.6.0 to 7.9.0.
Release notes

Sourced from @​mantine/dates's releases.

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', justifyContent: 'center', marginLeft: 'auto', marginRight: 'auto', borderRadius: theme.radius.sm,

// Use light and dark selectors to change styles based on
color scheme
[u.light]: {
  backgroundColor: theme.colors.gray[1],
},

[u.dark]: {
  backgroundColor: theme.colors.dark[5],
},

// Reference theme.breakpoints in smallerThan and largerThan functions
[u.smallerThan('sm')]: {
  // Child reference in nested selectors via ref
  [`&amp; .${u.ref('child')}`]: {
    fontSize: theme.fontSizes.xs,
  },
},

},

child: { // Assign selector to a ref to reference it in other styles </tr></table>

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@mantine/dates&package-manager=npm_and_yarn&previous-version=7.6.0&new-version=7.9.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) ---
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- frontend/package.json | 2 +- frontend/yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 17ce321f..56bc6d9f 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -22,7 +22,7 @@ "@hcaptcha/react-hcaptcha": "^1.10.1", "@hello-pangea/dnd": "^16.6.0", "@mantine/core": "7.6.0", - "@mantine/dates": "7.6.0", + "@mantine/dates": "7.9.0", "@mantine/dropzone": "7.6.0", "@mantine/form": "7.9.0", "@mantine/hooks": "7.6.0", diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 40f570b8..4ce96663 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -827,10 +827,10 @@ react-textarea-autosize "8.5.3" type-fest "^3.13.1" -"@mantine/dates@7.6.0": - version "7.6.0" - resolved "https://registry.yarnpkg.com/@mantine/dates/-/dates-7.6.0.tgz#2e10dbcfb48ad784aa0459c3fff79228201a11de" - integrity sha512-7EbdMBzYiyBMlCw3T81jXWxkCfs5Al1ULwVN0Hb33WEXxertcPawoQO4crkHcc9jLYvpf0D64dwUJf62uqVeyQ== +"@mantine/dates@7.9.0": + version "7.9.0" + resolved "https://registry.yarnpkg.com/@mantine/dates/-/dates-7.9.0.tgz#0dde0847fef452ae01daf6eeab98be5ecb2fb6cc" + integrity sha512-+OOM8w6uZfBvlqPtwGIjG0Ef3z4E5QyWVmh7AhevgRS9RBdfa1YpxfRweDTDmrY9qYnim7fyM097Rwe30q/kpA== dependencies: clsx "2.1.0"