1
Fork 0
mirror of https://github.com/diced/zipline.git synced 2025-04-04 23:21:17 -05:00

fix: breaking changes in migrating mantine v6

This commit is contained in:
TacticalCoderJay 2023-03-04 16:07:43 -08:00
parent 2c24cafab8
commit b9a7da0cea
No known key found for this signature in database
GPG key ID: C5846689E9464EE5
7 changed files with 10 additions and 8 deletions

View file

@ -3,7 +3,7 @@ import { ArrowDownRight, ArrowUpRight } from 'react-feather';
const useStyles = createStyles((theme) => ({
root: {
padding: theme.spacing.xl * 1.5,
padding: `calc(${theme.spacing.xl} * 1.5)`,
},
value: {

View file

@ -112,8 +112,10 @@ export default function ZiplineTheming({ Component, pageProps, ...props }) {
},
LoadingOverlay: {
defaultProps: {
overlayBlur: 3,
overlayColor: theme.colorScheme === 'dark' ? theme.colors.dark[6] : 'white',
overlayProps: {
blur: 3,
color: theme.colorScheme === 'dark' ? theme.colors.dark[6] : 'white',
},
},
},
Loader: {

View file

@ -96,7 +96,7 @@ export default function FilePagation({ disableMediaPreview, exifEnabled, queryPa
}}
>
{!isMobile && <div></div>}
<Pagination total={numPages} page={page} onChange={setPage} withEdges />
<Pagination total={numPages} value={page} onChange={setPage} withEdges />
{!isMobile && (
<Checkbox
label='Show non-media files'

View file

@ -64,7 +64,7 @@ export default function Files({ disableMediaPreview, exifEnabled, queryPage }) {
paddingBottom: 3,
}}
>
<Pagination total={favoriteNumPages} page={favoritePage} onChange={setFavoritePage} />
<Pagination total={favoriteNumPages} value={favoritePage} onChange={setFavoritePage} />
</Box>
</Accordion.Panel>
</Accordion.Item>

View file

@ -132,7 +132,7 @@ export default function Invites() {
modals.openConfirmModal({
title: `Delete ${invite.code}?`,
centered: true,
overlayBlur: 3,
overlayProps: { blur: 3 },
labels: { confirm: 'Yes', cancel: 'No' },
onConfirm: async () => {
const res = await useFetch(`/api/auth/invite?code=${invite.code}`, 'DELETE');

View file

@ -55,7 +55,7 @@ export default function Users() {
title: `Delete ${user.username}'s files?`,
labels: { confirm: 'Yes', cancel: 'No' },
centered: true,
overlayBlur: 3,
overlayProps: { blur: 3 },
onConfirm: () => {
handleDelete(user, true);
modals.closeAll();

View file

@ -129,7 +129,7 @@ export default function EmbeddedFile({
withCloseButton={true}
closeOnEscape={false}
closeOnClickOutside={false}
overlayBlur={3}
overlayProps={{ blur: 3 }}
>
<PasswordInput
label='Password'