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.
Sourced from View changelog with
demos on mantine.dev website New 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 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, }, child: {
// Assign selector to a ref to reference it in other styles
</tr></table>
Release notes
@mantine/dates's
releases.
7.9.0 ✨
@mantine/emotion package@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.@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';
// 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
[`& .${u.ref('child')}`]: {
fontSize: theme.fontSizes.xs,
},
},
... (truncated)
94c053e
[release] Version: 7.9.0faf096f
[core] Remove additional React imports97eb4d4
[core] Init new jsx transformb95051c
[release] Version: 7.8.1d372b39
[@mantine/dates] DatePicker: Fix date range being stuck in
incorrect state wh...94051f5
[mantine.dev] Fix typo (#6075)afc9929
[release] Version: 7.8.0c6da05e
Merge branch 'master' of github.com-rtivital:mantinedev/mantine into
7.8b2af7f8
[release] Version: 7.7.26d195cb
[core] Migrate to auto-rem