mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 07:55:52 +01:00
Merge branch 'dev' into change-title-icons
This commit is contained in:
7
.github/pull_request_template.md
vendored
7
.github/pull_request_template.md
vendored
@@ -14,10 +14,3 @@
|
|||||||
|
|
||||||
### Screenshot _(if applicable)_
|
### Screenshot _(if applicable)_
|
||||||
> If you've introduced any significant UI changes, please include a screenshot.
|
> If you've introduced any significant UI changes, please include a screenshot.
|
||||||
|
|
||||||
### Code Quality Checklist _(Please complete)_
|
|
||||||
- [ ] All changes are backwards compatible
|
|
||||||
- [ ] There are no (new) build warnings or errors
|
|
||||||
- [ ] _(If a new config option is added)_ Attribute is outlined in the schema and documented
|
|
||||||
- [ ] _(If a new dependency is added)_ Package is essential, and has been checked out for security or performance
|
|
||||||
- [ ] Bumps version, if new feature added
|
|
||||||
|
|||||||
20
package.json
20
package.json
@@ -24,27 +24,27 @@
|
|||||||
"ci": "yarn test && yarn lint --fix && yarn typecheck && yarn prettier:write"
|
"ci": "yarn test && yarn lint --fix && yarn typecheck && yarn prettier:write"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ctrl/deluge": "^4.0.0",
|
"@ctrl/deluge": "^4.1.0",
|
||||||
"@ctrl/qbittorrent": "^4.0.0",
|
"@ctrl/qbittorrent": "^4.0.0",
|
||||||
"@ctrl/shared-torrent": "^4.1.0",
|
"@ctrl/shared-torrent": "^4.1.0",
|
||||||
"@ctrl/transmission": "^4.1.1",
|
"@ctrl/transmission": "^4.1.1",
|
||||||
"@dnd-kit/core": "^6.0.1",
|
"@dnd-kit/core": "^6.0.1",
|
||||||
"@dnd-kit/sortable": "^7.0.0",
|
"@dnd-kit/sortable": "^7.0.0",
|
||||||
"@dnd-kit/utilities": "^3.2.0",
|
"@dnd-kit/utilities": "^3.2.0",
|
||||||
"@mantine/core": "^4.2.6",
|
"@mantine/core": "^4.2.8",
|
||||||
"@mantine/dates": "^4.2.6",
|
"@mantine/dates": "^4.2.8",
|
||||||
"@mantine/dropzone": "^4.2.6",
|
"@mantine/dropzone": "^4.2.8",
|
||||||
"@mantine/form": "^4.2.6",
|
"@mantine/form": "^4.2.8",
|
||||||
"@mantine/hooks": "^4.2.6",
|
"@mantine/hooks": "^4.2.8",
|
||||||
"@mantine/next": "^4.2.6",
|
"@mantine/next": "^4.2.8",
|
||||||
"@mantine/notifications": "^4.2.6",
|
"@mantine/notifications": "^4.2.8",
|
||||||
"@mantine/prism": "^4.2.6",
|
"@mantine/prism": "^4.2.8",
|
||||||
"@nivo/core": "^0.79.0",
|
"@nivo/core": "^0.79.0",
|
||||||
"@nivo/line": "^0.79.1",
|
"@nivo/line": "^0.79.1",
|
||||||
"@tabler/icons": "^1.68.0",
|
"@tabler/icons": "^1.68.0",
|
||||||
"axios": "^0.27.2",
|
"axios": "^0.27.2",
|
||||||
"cookies-next": "^2.0.4",
|
"cookies-next": "^2.0.4",
|
||||||
"dayjs": "^1.11.2",
|
"dayjs": "^1.11.3",
|
||||||
"framer-motion": "^6.3.1",
|
"framer-motion": "^6.3.1",
|
||||||
"js-file-download": "^0.4.12",
|
"js-file-download": "^0.4.12",
|
||||||
"next": "12.1.6",
|
"next": "12.1.6",
|
||||||
|
|||||||
@@ -300,21 +300,20 @@ export function AddAppShelfItemForm(props: { setOpened: (b: boolean) => void } &
|
|||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{form.values.type === 'Deluge' ||
|
{(form.values.type === 'Deluge' || form.values.type === 'Transmission') && (
|
||||||
(form.values.type === 'Transmission' && (
|
<>
|
||||||
<>
|
<TextInput
|
||||||
<TextInput
|
required
|
||||||
required
|
label="Password"
|
||||||
label="Password"
|
placeholder="password"
|
||||||
placeholder="password"
|
value={form.values.password}
|
||||||
value={form.values.password}
|
onChange={(event) => {
|
||||||
onChange={(event) => {
|
form.setFieldValue('password', event.currentTarget.value);
|
||||||
form.setFieldValue('password', event.currentTarget.value);
|
}}
|
||||||
}}
|
error={form.errors.password && 'Invalid password'}
|
||||||
error={form.errors.password && 'Invalid password'}
|
/>
|
||||||
/>
|
</>
|
||||||
</>
|
)}
|
||||||
))}
|
|
||||||
</Group>
|
</Group>
|
||||||
|
|
||||||
<Group grow position="center" mt="xl">
|
<Group grow position="center" mt="xl">
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ import { ModuleWrapper } from '../modules/moduleWrapper';
|
|||||||
import { DownloadsModule } from '../modules';
|
import { DownloadsModule } from '../modules';
|
||||||
|
|
||||||
const useStyles = createStyles((theme, _params) => ({
|
const useStyles = createStyles((theme, _params) => ({
|
||||||
|
|
||||||
item: {
|
item: {
|
||||||
borderBottom: 0,
|
borderBottom: 0,
|
||||||
overflow: 'hidden',
|
overflow: 'hidden',
|
||||||
@@ -31,7 +30,6 @@ const useStyles = createStyles((theme, _params) => ({
|
|||||||
itemOpened: {
|
itemOpened: {
|
||||||
borderColor: theme.colorScheme === 'dark' ? theme.colors.dark[5] : theme.colors.gray[3],
|
borderColor: theme.colorScheme === 'dark' ? theme.colors.dark[5] : theme.colors.gray[3],
|
||||||
},
|
},
|
||||||
|
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const AppShelf = (props: any) => {
|
const AppShelf = (props: any) => {
|
||||||
|
|||||||
@@ -1,4 +1,15 @@
|
|||||||
import { Table, Text, Tooltip, Title, Group, Progress, Skeleton, ScrollArea } from '@mantine/core';
|
import {
|
||||||
|
Table,
|
||||||
|
Text,
|
||||||
|
Tooltip,
|
||||||
|
Title,
|
||||||
|
Group,
|
||||||
|
Progress,
|
||||||
|
Skeleton,
|
||||||
|
ScrollArea,
|
||||||
|
Center,
|
||||||
|
Image,
|
||||||
|
} from '@mantine/core';
|
||||||
import { IconDownload as Download } from '@tabler/icons';
|
import { IconDownload as Download } from '@tabler/icons';
|
||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
@@ -34,14 +45,18 @@ export default function DownloadComponent() {
|
|||||||
(config?.modules?.[DownloadsModule.title]?.options?.hidecomplete?.value as boolean) ?? false;
|
(config?.modules?.[DownloadsModule.title]?.options?.hidecomplete?.value as boolean) ?? false;
|
||||||
const [torrents, setTorrents] = useState<NormalizedTorrent[]>([]);
|
const [torrents, setTorrents] = useState<NormalizedTorrent[]>([]);
|
||||||
const setSafeInterval = useSetSafeInterval();
|
const setSafeInterval = useSetSafeInterval();
|
||||||
|
const [isLoading, setIsLoading] = useState(true);
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
setIsLoading(true);
|
||||||
|
if (downloadServices.length === 0) return;
|
||||||
setSafeInterval(() => {
|
setSafeInterval(() => {
|
||||||
// Send one request with each download service inside
|
// Send one request with each download service inside
|
||||||
axios.post('/api/modules/downloads', { config }).then((response) => {
|
axios.post('/api/modules/downloads', { config }).then((response) => {
|
||||||
setTorrents(response.data);
|
setTorrents(response.data);
|
||||||
|
setIsLoading(false);
|
||||||
});
|
});
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}, [config.modules]);
|
}, [config.services]);
|
||||||
|
|
||||||
if (downloadServices.length === 0) {
|
if (downloadServices.length === 0) {
|
||||||
return (
|
return (
|
||||||
@@ -55,7 +70,7 @@ export default function DownloadComponent() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (torrents.length === 0) {
|
if (isLoading) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Skeleton height={40} mt={10} />
|
<Skeleton height={40} mt={10} />
|
||||||
@@ -115,14 +130,24 @@ export default function DownloadComponent() {
|
|||||||
</tr>
|
</tr>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const easteregg = (
|
||||||
|
<Center style={{ display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
|
||||||
|
<Image fit="cover" height={300} src="https://danjohnvelasco.github.io/images/empty.png" />
|
||||||
|
</Center>
|
||||||
|
);
|
||||||
return (
|
return (
|
||||||
<Group noWrap grow direction="column">
|
<Group noWrap grow direction="column">
|
||||||
<Title order={4}>Your torrents</Title>
|
<Title order={4}>Your torrents</Title>
|
||||||
<ScrollArea sx={{ height: 300 }}>
|
<ScrollArea sx={{ height: 300 }}>
|
||||||
<Table highlightOnHover>
|
{rows.length > 0 ? (
|
||||||
<thead>{ths}</thead>
|
<Table highlightOnHover>
|
||||||
<tbody>{rows}</tbody>
|
<thead>{ths}</thead>
|
||||||
</Table>
|
<tbody>{rows}</tbody>
|
||||||
|
</Table>
|
||||||
|
) : (
|
||||||
|
easteregg
|
||||||
|
)}
|
||||||
</ScrollArea>
|
</ScrollArea>
|
||||||
</Group>
|
</Group>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -73,12 +73,13 @@ export default function TotalDownloadsComponent() {
|
|||||||
const totalDownloadSpeed = torrents.reduce((acc, torrent) => acc + torrent.downloadSpeed, 0);
|
const totalDownloadSpeed = torrents.reduce((acc, torrent) => acc + torrent.downloadSpeed, 0);
|
||||||
const totalUploadSpeed = torrents.reduce((acc, torrent) => acc + torrent.uploadSpeed, 0);
|
const totalUploadSpeed = torrents.reduce((acc, torrent) => acc + torrent.uploadSpeed, 0);
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
if (downloadServices.length === 0) return;
|
||||||
setSafeInterval(() => {
|
setSafeInterval(() => {
|
||||||
axios.post('/api/modules/downloads', { config }).then((response) => {
|
axios.post('/api/modules/downloads', { config }).then((response) => {
|
||||||
setTorrents(response.data);
|
setTorrents(response.data);
|
||||||
});
|
});
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}, []);
|
}, [config.services]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
torrentHistoryHandlers.append({
|
torrentHistoryHandlers.append({
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ import Head from 'next/head';
|
|||||||
import { MantineProvider, ColorScheme, ColorSchemeProvider } from '@mantine/core';
|
import { MantineProvider, ColorScheme, ColorSchemeProvider } from '@mantine/core';
|
||||||
import { NotificationsProvider } from '@mantine/notifications';
|
import { NotificationsProvider } from '@mantine/notifications';
|
||||||
import { useHotkeys } from '@mantine/hooks';
|
import { useHotkeys } from '@mantine/hooks';
|
||||||
import Layout from '../components/layout/Layout';
|
|
||||||
import { ConfigProvider } from '../tools/state';
|
import { ConfigProvider } from '../tools/state';
|
||||||
import { theme } from '../tools/theme';
|
import { theme } from '../tools/theme';
|
||||||
import { styles } from '../tools/styles';
|
import { styles } from '../tools/styles';
|
||||||
|
|||||||
@@ -34,15 +34,13 @@ async function Post(req: NextApiRequest, res: NextApiResponse) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (delugeService) {
|
if (delugeService) {
|
||||||
const delugeTorrents = (
|
torrents.push(
|
||||||
await new Deluge({
|
...(
|
||||||
baseUrl: delugeService.url,
|
await new Deluge({
|
||||||
username: delugeService.username,
|
baseUrl: delugeService.url,
|
||||||
password: delugeService.password,
|
password: delugeService.password,
|
||||||
}).getAllData()
|
}).getAllData()
|
||||||
).torrents;
|
).torrents
|
||||||
delugeTorrents.forEach((delugeTorrent) =>
|
|
||||||
torrents.push({ ...delugeTorrent, progress: delugeTorrent.progress / 100 })
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (transmissionService) {
|
if (transmissionService) {
|
||||||
|
|||||||
155
yarn.lock
155
yarn.lock
@@ -1583,17 +1583,17 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@ctrl/deluge@npm:^4.0.0":
|
"@ctrl/deluge@npm:^4.1.0":
|
||||||
version: 4.0.0
|
version: 4.1.0
|
||||||
resolution: "@ctrl/deluge@npm:4.0.0"
|
resolution: "@ctrl/deluge@npm:4.1.0"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@ctrl/magnet-link": ^3.1.0
|
"@ctrl/magnet-link": ^3.1.1
|
||||||
"@ctrl/shared-torrent": ^4.1.0
|
"@ctrl/shared-torrent": ^4.1.1
|
||||||
"@ctrl/url-join": ^2.0.0
|
"@ctrl/url-join": ^2.0.0
|
||||||
formdata-node: ^4.3.2
|
formdata-node: ^4.3.2
|
||||||
got: ^12.0.1
|
got: ^12.1.0
|
||||||
tough-cookie: ^4.0.0
|
tough-cookie: ^4.0.0
|
||||||
checksum: d4b828fb580a3e4c589169044b78e74d2d1c6ea3ff24f24c9aba59a5fc88320c494eebe814aa0f048e772d698ddd5979f8cd92d4144b0550227bc502342c82ed
|
checksum: a17f974e1b98a9086e1036604a86d3e14b5cf9c8d0fd997357dd4522dc296f0ef92e2697231f97f7211c0224e35256af966f722b6b316a363533328908cd8d5e
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -1606,6 +1606,15 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
|
"@ctrl/magnet-link@npm:^3.1.1":
|
||||||
|
version: 3.1.1
|
||||||
|
resolution: "@ctrl/magnet-link@npm:3.1.1"
|
||||||
|
dependencies:
|
||||||
|
"@ctrl/ts-base32": ^2.1.1
|
||||||
|
checksum: 82533b50e2a60b2cfbad19879b0b16dbdbf2cfb633cda519d9cac7ab4039d52f98bc10185a5f6ffd29cfe415d709b8748ebe7cf763e522e0c4dcee8dde6506fe
|
||||||
|
languageName: node
|
||||||
|
linkType: hard
|
||||||
|
|
||||||
"@ctrl/qbittorrent@npm:^4.0.0":
|
"@ctrl/qbittorrent@npm:^4.0.0":
|
||||||
version: 4.0.0
|
version: 4.0.0
|
||||||
resolution: "@ctrl/qbittorrent@npm:4.0.0"
|
resolution: "@ctrl/qbittorrent@npm:4.0.0"
|
||||||
@@ -2218,130 +2227,130 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@mantine/core@npm:^4.2.6":
|
"@mantine/core@npm:^4.2.8":
|
||||||
version: 4.2.7
|
version: 4.2.8
|
||||||
resolution: "@mantine/core@npm:4.2.7"
|
resolution: "@mantine/core@npm:4.2.8"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@mantine/styles": 4.2.7
|
"@mantine/styles": 4.2.8
|
||||||
"@popperjs/core": ^2.9.3
|
"@popperjs/core": ^2.9.3
|
||||||
"@radix-ui/react-scroll-area": ^0.1.1
|
"@radix-ui/react-scroll-area": ^0.1.1
|
||||||
react-popper: ^2.2.5
|
react-popper: ^2.2.5
|
||||||
react-textarea-autosize: ^8.3.2
|
react-textarea-autosize: ^8.3.2
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@mantine/hooks": 4.2.7
|
"@mantine/hooks": 4.2.8
|
||||||
react: ">=16.8.0"
|
react: ">=16.8.0"
|
||||||
react-dom: ">=16.8.0"
|
react-dom: ">=16.8.0"
|
||||||
checksum: f86d17fe8793bf37ef40eba9bf369db268e64923fe907ebcd8d977685bf1efda8c2b6a0f490cc3de87212273e930107e7d9e7135e4babe087a3e40d0f85b44af
|
checksum: a7434d542657e5b196dc795503f667a4eff0cc4eed3870c3bd3ae1f645e01bc9c9e3dd32387907700cb96a41a70b836c0003756f5f488e7db7f61dee175386e6
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@mantine/dates@npm:^4.2.6":
|
"@mantine/dates@npm:^4.2.8":
|
||||||
version: 4.2.7
|
version: 4.2.8
|
||||||
resolution: "@mantine/dates@npm:4.2.7"
|
resolution: "@mantine/dates@npm:4.2.8"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@mantine/core": 4.2.7
|
"@mantine/core": 4.2.8
|
||||||
"@mantine/hooks": 4.2.7
|
"@mantine/hooks": 4.2.8
|
||||||
dayjs: ^1.10.5
|
dayjs: ^1.10.5
|
||||||
react: ">=16.8.0"
|
react: ">=16.8.0"
|
||||||
checksum: f343252c768928be72a35aed6522d5e73b10c2934b76cbc4761695087870bafd34f4491dbc55bd47ee5e399f995041044a41f3a8a2aa3b67d233d68c59ca7931
|
checksum: 8aa69e30da0269e259b129827cf1c4496cd9f1aef22fd709fb9ae76840be3377541d289ec0e630004aeb7647fdb08a1a84651d72cb539f3491d887f626dff298
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@mantine/dropzone@npm:^4.2.6":
|
"@mantine/dropzone@npm:^4.2.8":
|
||||||
version: 4.2.7
|
version: 4.2.8
|
||||||
resolution: "@mantine/dropzone@npm:4.2.7"
|
resolution: "@mantine/dropzone@npm:4.2.8"
|
||||||
dependencies:
|
dependencies:
|
||||||
react-dropzone: ^11.4.2
|
react-dropzone: ^11.4.2
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@mantine/core": 4.2.7
|
"@mantine/core": 4.2.8
|
||||||
"@mantine/hooks": 4.2.7
|
"@mantine/hooks": 4.2.8
|
||||||
react: ">=16.8.0"
|
react: ">=16.8.0"
|
||||||
react-dom: ">=16.8.0"
|
react-dom: ">=16.8.0"
|
||||||
checksum: 2b8d45a36f3d5275a1d03a0f595683f881c295137b46c2e08f73fa18a180b2ec125426e522c8fb822823666c72ae8c782f8855ea24586104fbf2c8ca9122652e
|
checksum: 219e5fcc576a8d734c509b9da1b8e7e52a3c1a4aff7b2dc018a191be333e03c08139dc9695edd9911709c1e3454fff3b70b42ab2ef0e9587d1c9ff3f4f5865a4
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@mantine/form@npm:^4.2.6":
|
"@mantine/form@npm:^4.2.8":
|
||||||
version: 4.2.7
|
version: 4.2.8
|
||||||
resolution: "@mantine/form@npm:4.2.7"
|
resolution: "@mantine/form@npm:4.2.8"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
react: ">=16.8.0"
|
react: ">=16.8.0"
|
||||||
checksum: d60cfd48ab4ef149df4dc68c3024428c51c5e1267af451882b68ef00162df2b7a07bd8fc5d734f8495957fa49769d6e444459ccf6e19e297c6737481ca85b4e1
|
checksum: 0b17d214b9e4aab58a41a7c44fa5618091b24fe95d9741c3c7aaea86cbc52f93668d35b363460f1fb278eda0482b7922c308e06e354ae2d9d49b45d9ddafaf67
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@mantine/hooks@npm:^4.2.6":
|
"@mantine/hooks@npm:^4.2.8":
|
||||||
version: 4.2.7
|
version: 4.2.8
|
||||||
resolution: "@mantine/hooks@npm:4.2.7"
|
resolution: "@mantine/hooks@npm:4.2.8"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
react: ">=16.8.0"
|
react: ">=16.8.0"
|
||||||
checksum: 66dc8887b7913334ed1ce6f4be0353f4273142b10d1e820d4395edbad5fc7dc7f8483e07abe5956d7463fc77365340765c80843d8f825dc00c447310eb58831d
|
checksum: 371bc3fa19130838d1a53454291b84c41390f9e8d4d89166c3ba36b60e5e671502b221a98834a42be3de0c6ab878eb0a950a58f8770e44ad6d9cba1468ef0aae
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@mantine/next@npm:^4.2.6":
|
"@mantine/next@npm:^4.2.8":
|
||||||
version: 4.2.7
|
version: 4.2.8
|
||||||
resolution: "@mantine/next@npm:4.2.7"
|
resolution: "@mantine/next@npm:4.2.8"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@mantine/ssr": 4.2.7
|
"@mantine/ssr": 4.2.8
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
next: "*"
|
next: "*"
|
||||||
react: ">=16.8.0"
|
react: ">=16.8.0"
|
||||||
react-dom: ">=16.8.0"
|
react-dom: ">=16.8.0"
|
||||||
checksum: 4aa9384559ca7882aa2719629a79e2eb8b60c8491a6a22ff12c535585701d9b7f2d577bc8c043c6ea7669e890440606c253fd7e4656b05b4f5d815db5c121b27
|
checksum: 48d658a6c1954a30906c34602a37da4b00ca3712819ba1cc1719045a95d412d1f3c6d847116b85f37c34dfdbac84929c525fdb20b4b93734f6016e1988924bfa
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@mantine/notifications@npm:^4.2.6":
|
"@mantine/notifications@npm:^4.2.8":
|
||||||
version: 4.2.7
|
version: 4.2.8
|
||||||
resolution: "@mantine/notifications@npm:4.2.7"
|
resolution: "@mantine/notifications@npm:4.2.8"
|
||||||
dependencies:
|
dependencies:
|
||||||
react-transition-group: ^4.4.2
|
react-transition-group: ^4.4.2
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@mantine/core": 4.2.7
|
"@mantine/core": 4.2.8
|
||||||
"@mantine/hooks": 4.2.7
|
"@mantine/hooks": 4.2.8
|
||||||
react: ">=16.8.0"
|
react: ">=16.8.0"
|
||||||
react-dom: ">=16.8.0"
|
react-dom: ">=16.8.0"
|
||||||
checksum: 576395cb60cd5cd0251f4c9542c4eb4c711fb542f0160c339f139ffb8eaeaf6ff440e73f9e0b9304a1f7ac2e8813db5817d2698ad1805f4593499f4816c0dcde
|
checksum: dc13bb2091526e7f2ca7eb06d82ee5b5305208b41cc3ec769fa2aac09908faf8bba3d36bd10c8098d7c1a9f0487b5da92ab443dd238a576903633153ccfc6605
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@mantine/prism@npm:^4.2.6":
|
"@mantine/prism@npm:^4.2.8":
|
||||||
version: 4.2.7
|
version: 4.2.8
|
||||||
resolution: "@mantine/prism@npm:4.2.7"
|
resolution: "@mantine/prism@npm:4.2.8"
|
||||||
dependencies:
|
dependencies:
|
||||||
prism-react-renderer: ^1.2.1
|
prism-react-renderer: ^1.2.1
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@mantine/core": 4.2.7
|
"@mantine/core": 4.2.8
|
||||||
"@mantine/hooks": 4.2.7
|
"@mantine/hooks": 4.2.8
|
||||||
react: ">=16.8.0"
|
react: ">=16.8.0"
|
||||||
react-dom: ">=16.8.0"
|
react-dom: ">=16.8.0"
|
||||||
checksum: 489b16b3ab775e8494b13b43eb588e79de858793b3a0fe0ce06194a163c66918a364a13822bc633f0b14091318085c1adac140650b50ab4acc2efcabb2226975
|
checksum: 0e4405993e772249633b1585db1266ea857e7b8ad21ef89a4cf78ce8e811f2be0461218ef97686a51bafd83ff41fb646f903ca587cebaae22629a8f5936c0ae2
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@mantine/ssr@npm:4.2.7":
|
"@mantine/ssr@npm:4.2.8":
|
||||||
version: 4.2.7
|
version: 4.2.8
|
||||||
resolution: "@mantine/ssr@npm:4.2.7"
|
resolution: "@mantine/ssr@npm:4.2.8"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@emotion/cache": 11.7.1
|
"@emotion/cache": 11.7.1
|
||||||
"@emotion/react": 11.7.1
|
"@emotion/react": 11.7.1
|
||||||
"@emotion/serialize": 1.0.2
|
"@emotion/serialize": 1.0.2
|
||||||
"@emotion/server": 11.4.0
|
"@emotion/server": 11.4.0
|
||||||
"@emotion/utils": 1.0.0
|
"@emotion/utils": 1.0.0
|
||||||
"@mantine/styles": 4.2.7
|
"@mantine/styles": 4.2.8
|
||||||
csstype: 3.0.9
|
csstype: 3.0.9
|
||||||
html-react-parser: 1.3.0
|
html-react-parser: 1.3.0
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
react: ">=16.8.0"
|
react: ">=16.8.0"
|
||||||
react-dom: ">=16.8.0"
|
react-dom: ">=16.8.0"
|
||||||
checksum: dcbbe3c4992f16c147ebb66fe156561cc1e6f6c0166ac33cc0d422c3250864c3d80773f32bd755e6c300f7035fe3341cffcd3a0ccb919775e782e227bd3876d1
|
checksum: f2588004ffa65890e4e88ff23aae54124ccc96edda8fcdf4fee9ec93219e156a9862ce6c8473c8096b4944858c56cd8268cd8451118ce55c8358f8c569699a54
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"@mantine/styles@npm:4.2.7":
|
"@mantine/styles@npm:4.2.8":
|
||||||
version: 4.2.7
|
version: 4.2.8
|
||||||
resolution: "@mantine/styles@npm:4.2.7"
|
resolution: "@mantine/styles@npm:4.2.8"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@emotion/cache": 11.7.1
|
"@emotion/cache": 11.7.1
|
||||||
"@emotion/react": 11.7.1
|
"@emotion/react": 11.7.1
|
||||||
@@ -2352,7 +2361,7 @@ __metadata:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
react: ">=16.8.0"
|
react: ">=16.8.0"
|
||||||
react-dom: ">=16.8.0"
|
react-dom: ">=16.8.0"
|
||||||
checksum: f8a1dc2ca9be269e249671b2dc8a5849e859775c133a607723313aa2978cd7b3669217749d9ce6a8abbecfdaab567e4549af9683383030236883dde777a8628c
|
checksum: 03bbddecb1837bca42e2667cb548d821adfb758c66d71c7719390b3921483d3d4997a03b1aaceccc4e557160522000e68978aa3c8b38f2ae3e4a9d85927e519d
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -6962,10 +6971,10 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"dayjs@npm:^1.11.2":
|
"dayjs@npm:^1.11.3":
|
||||||
version: 1.11.2
|
version: 1.11.3
|
||||||
resolution: "dayjs@npm:1.11.2"
|
resolution: "dayjs@npm:1.11.3"
|
||||||
checksum: 78f8bd04a9e5f5554aa06eacda65a7d59e162d39f621a46fd34fb3b51367c3662426d86b4e2f4ac535f81e0c4d5af3e8a83b37e672412eb556267d726c61f8f3
|
checksum: c87e06b562a51ae6568cc5b840c7579d82a0f8af7163128c858fe512d3d71d07bd8e8e464b8cc41b8698a9e26b80ab2c082d14a1cd4c33df5692d77ccdfc5a43
|
||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
@@ -9416,21 +9425,21 @@ __metadata:
|
|||||||
resolution: "homarr@workspace:."
|
resolution: "homarr@workspace:."
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/core": ^7.17.8
|
"@babel/core": ^7.17.8
|
||||||
"@ctrl/deluge": ^4.0.0
|
"@ctrl/deluge": ^4.1.0
|
||||||
"@ctrl/qbittorrent": ^4.0.0
|
"@ctrl/qbittorrent": ^4.0.0
|
||||||
"@ctrl/shared-torrent": ^4.1.0
|
"@ctrl/shared-torrent": ^4.1.0
|
||||||
"@ctrl/transmission": ^4.1.1
|
"@ctrl/transmission": ^4.1.1
|
||||||
"@dnd-kit/core": ^6.0.1
|
"@dnd-kit/core": ^6.0.1
|
||||||
"@dnd-kit/sortable": ^7.0.0
|
"@dnd-kit/sortable": ^7.0.0
|
||||||
"@dnd-kit/utilities": ^3.2.0
|
"@dnd-kit/utilities": ^3.2.0
|
||||||
"@mantine/core": ^4.2.6
|
"@mantine/core": ^4.2.8
|
||||||
"@mantine/dates": ^4.2.6
|
"@mantine/dates": ^4.2.8
|
||||||
"@mantine/dropzone": ^4.2.6
|
"@mantine/dropzone": ^4.2.8
|
||||||
"@mantine/form": ^4.2.6
|
"@mantine/form": ^4.2.8
|
||||||
"@mantine/hooks": ^4.2.6
|
"@mantine/hooks": ^4.2.8
|
||||||
"@mantine/next": ^4.2.6
|
"@mantine/next": ^4.2.8
|
||||||
"@mantine/notifications": ^4.2.6
|
"@mantine/notifications": ^4.2.8
|
||||||
"@mantine/prism": ^4.2.6
|
"@mantine/prism": ^4.2.8
|
||||||
"@next/bundle-analyzer": ^12.1.4
|
"@next/bundle-analyzer": ^12.1.4
|
||||||
"@next/eslint-plugin-next": ^12.1.4
|
"@next/eslint-plugin-next": ^12.1.4
|
||||||
"@nivo/core": ^0.79.0
|
"@nivo/core": ^0.79.0
|
||||||
@@ -9444,7 +9453,7 @@ __metadata:
|
|||||||
"@typescript-eslint/parser": ^5.16.0
|
"@typescript-eslint/parser": ^5.16.0
|
||||||
axios: ^0.27.2
|
axios: ^0.27.2
|
||||||
cookies-next: ^2.0.4
|
cookies-next: ^2.0.4
|
||||||
dayjs: ^1.11.2
|
dayjs: ^1.11.3
|
||||||
eslint: ^8.11.0
|
eslint: ^8.11.0
|
||||||
eslint-config-airbnb: ^19.0.4
|
eslint-config-airbnb: ^19.0.4
|
||||||
eslint-config-airbnb-typescript: ^16.1.0
|
eslint-config-airbnb-typescript: ^16.1.0
|
||||||
|
|||||||
Reference in New Issue
Block a user