mirror of
https://github.com/emuplace/sudachi.emuplace.app.git
synced 2025-05-10 10:46:26 +02:00
Compare commits
16 commits
Author | SHA1 | Date | |
---|---|---|---|
|
33f5808d8f | ||
|
43e9d5aeee | ||
|
fbf743f5cb | ||
|
777a49771a | ||
|
f948baa5d9 | ||
|
6edf53fdd5 | ||
|
c8388354ce | ||
|
72e8875c91 | ||
|
6235064068 | ||
|
5e1ace873c | ||
|
8dee372884 | ||
|
a8049cd29a | ||
|
b429abd84c | ||
|
f4f6a9e7cc | ||
|
28a8eb1370 | ||
|
9293106723 |
5 changed files with 5335 additions and 5263 deletions
9559
package-lock.json
generated
9559
package-lock.json
generated
File diff suppressed because it is too large
Load diff
75
package.json
75
package.json
|
@ -1,38 +1,39 @@
|
||||||
{
|
{
|
||||||
"name": "vite-min-template",
|
"name": "vite-min-template",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite dev",
|
"dev": "vite dev",
|
||||||
"build": "tsc && vite build",
|
"build": "tsc && vite build",
|
||||||
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
||||||
"preview": "vite preview"
|
"preview": "vite preview",
|
||||||
},
|
"emulate": "npm run build && firebase emulators:start --only hosting"
|
||||||
"dependencies": {
|
},
|
||||||
"@mantine/core": "7.11.1",
|
"dependencies": {
|
||||||
"@mantine/hooks": "7.11.1",
|
"@mantine/core": "7.11.1",
|
||||||
"@mantine/vanilla-extract": "7.11.1",
|
"@mantine/hooks": "7.11.1",
|
||||||
"@tabler/icons-react": "^3.11.0",
|
"@mantine/vanilla-extract": "7.11.1",
|
||||||
"@vanilla-extract/css": "^1.15.3",
|
"@tabler/icons-react": "^3.11.0",
|
||||||
"react": "^18.3.1",
|
"@vanilla-extract/css": "^1.15.3",
|
||||||
"react-dom": "^18.3.1"
|
"react": "^18.3.1",
|
||||||
},
|
"react-dom": "^18.3.1"
|
||||||
"devDependencies": {
|
},
|
||||||
"@types/react": "^18.3.3",
|
"devDependencies": {
|
||||||
"@types/react-dom": "^18.3.0",
|
"@types/react": "^18.3.3",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
"@types/react-dom": "^18.3.0",
|
||||||
"@typescript-eslint/parser": "^7.13.1",
|
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
||||||
"@vanilla-extract/vite-plugin": "^4.0.11",
|
"@typescript-eslint/parser": "^7.13.1",
|
||||||
"@vitejs/plugin-react": "^4.3.1",
|
"@vanilla-extract/vite-plugin": "^4.0.11",
|
||||||
"eslint": "^8.57.0",
|
"@vitejs/plugin-react": "^4.3.1",
|
||||||
"eslint-plugin-react-hooks": "^4.6.2",
|
"eslint": "^8.57.0",
|
||||||
"eslint-plugin-react-refresh": "^0.4.7",
|
"eslint-plugin-react-hooks": "^4.6.2",
|
||||||
"postcss": "^8.4.38",
|
"eslint-plugin-react-refresh": "^0.4.7",
|
||||||
"postcss-preset-mantine": "1.15.0",
|
"postcss": "^8.4.38",
|
||||||
"postcss-simple-vars": "^7.0.1",
|
"postcss-preset-mantine": "1.15.0",
|
||||||
"typescript": "^5.5.2",
|
"postcss-simple-vars": "^7.0.1",
|
||||||
"vite": "^5.3.1"
|
"typescript": "^5.5.2",
|
||||||
},
|
"vite": "^5.3.1"
|
||||||
"packageManager": "yarn@4.3.1"
|
},
|
||||||
}
|
"packageManager": "yarn@4.3.1"
|
||||||
|
}
|
|
@ -1,5 +1,5 @@
|
||||||
.root {
|
.root {
|
||||||
border-radius: var(--mantine-radius-md);
|
border-radius: var(--mantine-radius-lg);
|
||||||
background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-6));
|
background-color: light-dark(var(--mantine-color-gray-0), var(--mantine-color-dark-6));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
background-color: var(--mantine-color-body);
|
background-color: var(--mantine-color-body);
|
||||||
border-color: light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-4));
|
border-color: light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-4));
|
||||||
box-shadow: var(--mantine-shadow-md);
|
box-shadow: var(--mantine-shadow-md);
|
||||||
border-radius: var(--mantine-radius-md);
|
border-radius: var(--mantine-radius-lg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
294
src/App.tsx
294
src/App.tsx
|
@ -1,111 +1,146 @@
|
||||||
import "@mantine/core/styles.css";
|
import "@mantine/core/styles.css";
|
||||||
import {
|
import {
|
||||||
Accordion, Anchor, Badge, Button, Container,
|
Accordion, Anchor, Badge, Button, Container,
|
||||||
Flex, Group, List, MantineProvider, Menu,
|
Flex,
|
||||||
Space, Stack, Text, Title, rem
|
Group,
|
||||||
|
List,
|
||||||
|
MantineProvider,
|
||||||
|
Space,
|
||||||
|
Stack, Text, Title
|
||||||
} from "@mantine/core";
|
} from "@mantine/core";
|
||||||
import {
|
|
||||||
IconDeviceMobile,
|
|
||||||
IconDeviceTablet,
|
|
||||||
IconDeviceLaptop,
|
|
||||||
IconCardboards
|
|
||||||
} from '@tabler/icons-react';
|
|
||||||
import { useState } from "react";
|
|
||||||
import { theme } from "./theme";
|
import { theme } from "./theme";
|
||||||
import classes from './App.module.css';
|
|
||||||
|
|
||||||
export default function App() {
|
export default function App() {
|
||||||
const changes = [
|
const changes = [
|
||||||
{
|
{
|
||||||
text: 'v1.0.8',
|
version: 'v1.0.15',
|
||||||
sha: '450b52f',
|
sha: 'c7431bd',
|
||||||
isLatest: true,
|
isLatest: true,
|
||||||
isUpcoming: false,
|
isUpcoming: false,
|
||||||
details: [
|
details: [
|
||||||
{
|
{
|
||||||
system: "Android",
|
title: 'Added support for XCX:DE by stubbing ssl:s',
|
||||||
items: [
|
subtitles: [
|
||||||
{
|
'Currently the menu and a small section of the game has been tested'
|
||||||
primaryText: 'Improved memory accuracy and sizing',
|
|
||||||
secondaryText: null
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
system: "Windows",
|
title: 'Changed how MoltenVK is obtained for macOS to get newer versions',
|
||||||
items: [
|
subtitles: [
|
||||||
{
|
'Artifacts are now used which can now be updated more frequently'
|
||||||
primaryText: 'Improved memory accuracy and sizing',
|
|
||||||
secondaryText: null
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Changed from SDL2 to SDL3 bringing over its improvements',
|
||||||
|
subtitles: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Fixed issues related to caps by reverting the rewrite temporarily',
|
||||||
|
subtitles: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Fixed several compilation errors on macOS',
|
||||||
|
subtitles: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Updated vcpkg to the latest version',
|
||||||
|
subtitles: []
|
||||||
|
},
|
||||||
|
],
|
||||||
|
downloads: [
|
||||||
|
{
|
||||||
|
color: 'green',
|
||||||
|
platform: 'Android',
|
||||||
|
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.15/app-mainline-release.apk'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color: 'orange',
|
||||||
|
platform: 'Linux',
|
||||||
|
url: ''
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color: 'violet',
|
||||||
|
platform: 'macOS',
|
||||||
|
url: ''
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color: 'blue',
|
||||||
|
platform: 'Windows',
|
||||||
|
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.15/sudachi-windows-v1.0.15.7z'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color: 'gray',
|
||||||
|
platform: 'Source Code',
|
||||||
|
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.15/latest.zip'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: 'v1.0.7',
|
version: 'v1.0.14',
|
||||||
sha: 'xxxxxxx',
|
sha: '6178075',
|
||||||
isLatest: false,
|
isLatest: false,
|
||||||
isUpcoming: false,
|
isUpcoming: false,
|
||||||
details: [
|
details: [
|
||||||
{
|
{
|
||||||
system: 'Windows',
|
title: 'Added support for booting the initial setup screen via -setup',
|
||||||
items: [
|
subtitles: [
|
||||||
{
|
'Only available on Linux, macOS and Windows via Terminal or Tools > Open Initial Setup',
|
||||||
primaryText: 'Fixed an issue in Super Bomberman R 2 that caused the game to not boot due to an error in the Friend service',
|
'Only partial support for now, will be improved in the future'
|
||||||
secondaryText: null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
primaryText: 'Fixed an issue in Animal Well that caused the game to not boot due to the audio core revision number being too low',
|
|
||||||
secondaryText: null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
primaryText: 'Fixed an issue in Princess Peach: Showtime! that caused the game to run into a black screen',
|
|
||||||
secondaryText: 'Please be aware this fix is not complete and Princess Peach: Showtime! will still drop to 0fps occasionally'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
primaryText: 'Fixed an issue in Paper Mario: The Thousand Year Door that caused the sewers to be black when using an AMD graphics card',
|
|
||||||
secondaryText: 'Thank you to Ryujinx for the pointer towards LogicOp'
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Added several missing functions to allow the initial setup screen to be launched',
|
||||||
|
subtitles: [
|
||||||
|
'Fixes an issue where some newer games would not boot'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Fixed an issue with mm:u where Get and GetOld would not return after pushing a found session\'s minimum value',
|
||||||
|
subtitles: []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Started rewrite of caps, caps:a and caps:su to improve accuracy',
|
||||||
|
subtitles: []
|
||||||
|
}
|
||||||
|
],
|
||||||
|
downloads: [
|
||||||
|
{
|
||||||
|
color: 'green',
|
||||||
|
platform: 'Android',
|
||||||
|
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.14/app-mainline-release.apk'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color: 'orange',
|
||||||
|
platform: 'Linux',
|
||||||
|
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.14/sudachi-linux-v1.0.14.7z'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color: 'violet',
|
||||||
|
platform: 'macOS',
|
||||||
|
url: ''
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color: 'blue',
|
||||||
|
platform: 'Windows',
|
||||||
|
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.14/sudachi-windows-v1.0.14.7z'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
color: 'gray',
|
||||||
|
platform: 'Source Code',
|
||||||
|
url: 'https://github.com/emuplace/sudachi.emuplace.app/releases/download/v1.0.14/latest.zip'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
]
|
||||||
|
|
||||||
const items = changes.map((item) => {
|
const items = changes.map((item) => {
|
||||||
const listItems = item.details.map((detail, index) => {
|
|
||||||
const detailItems = detail.items.map((item) => (
|
|
||||||
<>
|
|
||||||
<List.Item>
|
|
||||||
<Text>{item.primaryText}</Text>
|
|
||||||
<Text c={'dimmed'} size="sm" hidden={item.secondaryText == '' || item.secondaryText == null}>
|
|
||||||
{item.secondaryText}
|
|
||||||
</Text>
|
|
||||||
</List.Item>
|
|
||||||
</>
|
|
||||||
));
|
|
||||||
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<Title order={3}>
|
|
||||||
{detail.system}
|
|
||||||
</Title>
|
|
||||||
<List>
|
|
||||||
{detailItems}
|
|
||||||
</List>
|
|
||||||
<Space h={index === changes.length ? 0 : 'md'} />
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Accordion.Item key={item.text} value={item.text}>
|
<Accordion.Item key={item.version} value={item.version}>
|
||||||
<Accordion.Control>
|
<Accordion.Control>
|
||||||
<Group justify='space-between' pr={'md'}>
|
<Group justify='space-between' pr={'md'}>
|
||||||
<Group gap={'sm'}>
|
<Group gap={'sm'}>
|
||||||
<Text>
|
<Text>
|
||||||
{item.text}
|
{item.version}
|
||||||
</Text>
|
</Text>
|
||||||
<Text c={'dimmed'}>
|
<Text c={'dimmed'}>
|
||||||
{`(${item.sha})`}
|
{`(${item.sha})`}
|
||||||
|
@ -117,78 +152,61 @@ export default function App() {
|
||||||
</Group>
|
</Group>
|
||||||
</Accordion.Control>
|
</Accordion.Control>
|
||||||
<Accordion.Panel>
|
<Accordion.Panel>
|
||||||
{...listItems}
|
<List>
|
||||||
|
{item.details.map((detail) => (
|
||||||
|
<List.Item>
|
||||||
|
<Text>
|
||||||
|
{detail.title}
|
||||||
|
</Text>
|
||||||
|
<List>
|
||||||
|
{detail.subtitles.map((subtitle) => (
|
||||||
|
<List.Item>
|
||||||
|
<Text c={'dimmed'} size="sm">
|
||||||
|
{subtitle}
|
||||||
|
</Text>
|
||||||
|
</List.Item>
|
||||||
|
))}
|
||||||
|
</List>
|
||||||
|
</List.Item>
|
||||||
|
))}
|
||||||
|
</List>
|
||||||
|
<Space h={'md'} />
|
||||||
|
<Flex gap={'md'} wrap={'wrap'} justify="flex-start"
|
||||||
|
align="flex-start">
|
||||||
|
{item.downloads.map((download) => (
|
||||||
|
<Button color={download.color} radius={'md'} component="a" disabled={download.url == '' || download.url == null} href={download.url}>
|
||||||
|
{download.platform}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
</Flex>
|
||||||
</Accordion.Panel>
|
</Accordion.Panel>
|
||||||
</Accordion.Item>
|
</Accordion.Item>
|
||||||
);
|
)
|
||||||
});
|
})
|
||||||
|
|
||||||
const [opened, setOpened] = useState(false);
|
const date = new Date()
|
||||||
|
|
||||||
const date = new Date();
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<MantineProvider theme={theme} forceColorScheme={date.getHours() >= 7 && date.getHours() <= 19 ? "light" : "dark"}>
|
<MantineProvider theme={theme} forceColorScheme={date.getHours() >= 7 && date.getHours() <= 19 ? "light" : "dark"}>
|
||||||
<Container>
|
<Container my={'xl'}>
|
||||||
<Flex align={'center'} justify={'center'} h={'100vh'}>
|
<Stack>
|
||||||
<Stack>
|
<Anchor href='https://twitter.com/antique_codes' ta={'center'} target='_blank'>
|
||||||
<Anchor href='https://twitter.com/antique_codes' ta={'center'} target='_blank'>
|
@antique_codes
|
||||||
@antique_codes
|
</Anchor>
|
||||||
</Anchor>
|
<Title order={1} ta={'center'}>
|
||||||
<Title order={1} ta={'center'}>
|
Sudachi, a Nintendo Switch emulator
|
||||||
Sudachi, a Nintendo Switch emulator
|
</Title>
|
||||||
</Title>
|
<Text c={'dimmed'} ta={'center'}>
|
||||||
<Text c={'dimmed'} ta={'center'}>
|
Nintendo Switch emulation without the iffy bits and support for more games
|
||||||
Nintendo Switch emulation without the iffy bits and support for more games
|
</Text>
|
||||||
</Text>
|
<Title order={2}>
|
||||||
<Flex align={'center'} justify={'center'}>
|
Changes
|
||||||
<Group ta={'center'}>
|
</Title>
|
||||||
<Button component="a" href="https://drive.google.com/file/d/1L_gb5v22wgxhNAOWasEAIwZm2WRvXKxE/view?usp=sharing" color="green" radius={'xl'} variant="filled">Android</Button>
|
<Accordion radius={'lg'} variant="contained">
|
||||||
<Menu opened={opened} onChange={setOpened}>
|
{items}
|
||||||
<Menu.Target>
|
</Accordion>
|
||||||
<Button radius={'xl'} variant="filled" disabled>Apple</Button>
|
</Stack>
|
||||||
</Menu.Target>
|
|
||||||
|
|
||||||
<Menu.Dropdown>
|
|
||||||
<Menu.Label>iOS, iPadOS</Menu.Label>
|
|
||||||
<Menu.Item leftSection={<IconDeviceTablet style={{ width: rem(14), height: rem(14) }} />}>
|
|
||||||
iPad
|
|
||||||
</Menu.Item>
|
|
||||||
<Menu.Item leftSection={<IconDeviceMobile style={{ width: rem(14), height: rem(14) }} />}>
|
|
||||||
iPhone
|
|
||||||
</Menu.Item>
|
|
||||||
<Menu.Divider />
|
|
||||||
<Menu.Label>macOS</Menu.Label>
|
|
||||||
<Menu.Item leftSection={<IconDeviceLaptop style={{ width: rem(14), height: rem(14) }} />} disabled>
|
|
||||||
Apple Silicon
|
|
||||||
</Menu.Item>
|
|
||||||
<Menu.Item leftSection={<IconDeviceLaptop style={{ width: rem(14), height: rem(14) }} />} disabled>
|
|
||||||
Intel
|
|
||||||
</Menu.Item>
|
|
||||||
<Menu.Divider />
|
|
||||||
<Menu.Label>visionOS</Menu.Label>
|
|
||||||
<Menu.Item leftSection={<IconCardboards style={{ width: rem(14), height: rem(14) }} />} disabled>
|
|
||||||
Apple Vision Pro
|
|
||||||
</Menu.Item>
|
|
||||||
</Menu.Dropdown>
|
|
||||||
</Menu>
|
|
||||||
<Button color="orange" radius={'xl'} variant="filled" disabled>Linux</Button>
|
|
||||||
<Button color="blue" component="a" href="https://drive.google.com/file/d/1bMWQtBkQwU7_oPjL0NGllOOMVyS_YV4j/view?usp=sharing" radius={'xl'} variant="filled">Windows</Button>
|
|
||||||
<Button color="gray" component="a" href="https://drive.google.com/file/d/149zdnytWES7-2f8SpXuceVBz--xKgp2c/view?usp=sharing" radius={'xl'} variant="filled">Source Code</Button>
|
|
||||||
</Group>
|
|
||||||
</Flex>
|
|
||||||
<Title order={2}>
|
|
||||||
Changes
|
|
||||||
</Title>
|
|
||||||
<Accordion classNames={classes} radius={'md'} variant="contained">
|
|
||||||
{items}
|
|
||||||
</Accordion>
|
|
||||||
<Text c={'red'}>
|
|
||||||
Please backup and delete all folders within the Sudachi directory, this will fix the downloadable content and updates issue
|
|
||||||
</Text>
|
|
||||||
</Stack>
|
|
||||||
</Flex>
|
|
||||||
</Container>
|
</Container>
|
||||||
</MantineProvider>
|
</MantineProvider>
|
||||||
);
|
)
|
||||||
}
|
}
|
||||||
|
|
666
yarn.lock
666
yarn.lock
|
@ -18,75 +18,53 @@
|
||||||
"@babel/highlight" "^7.24.7"
|
"@babel/highlight" "^7.24.7"
|
||||||
picocolors "^1.0.0"
|
picocolors "^1.0.0"
|
||||||
|
|
||||||
"@babel/compat-data@^7.24.7":
|
"@babel/compat-data@^7.25.2":
|
||||||
version "7.24.7"
|
version "7.25.2"
|
||||||
resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.2.tgz"
|
||||||
integrity sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==
|
integrity sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==
|
||||||
|
|
||||||
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.23.9", "@babel/core@^7.24.5":
|
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.23.9", "@babel/core@^7.24.5":
|
||||||
version "7.24.7"
|
version "7.25.2"
|
||||||
resolved "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz"
|
||||||
integrity sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==
|
integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@ampproject/remapping" "^2.2.0"
|
"@ampproject/remapping" "^2.2.0"
|
||||||
"@babel/code-frame" "^7.24.7"
|
"@babel/code-frame" "^7.24.7"
|
||||||
"@babel/generator" "^7.24.7"
|
"@babel/generator" "^7.25.0"
|
||||||
"@babel/helper-compilation-targets" "^7.24.7"
|
"@babel/helper-compilation-targets" "^7.25.2"
|
||||||
"@babel/helper-module-transforms" "^7.24.7"
|
"@babel/helper-module-transforms" "^7.25.2"
|
||||||
"@babel/helpers" "^7.24.7"
|
"@babel/helpers" "^7.25.0"
|
||||||
"@babel/parser" "^7.24.7"
|
"@babel/parser" "^7.25.0"
|
||||||
"@babel/template" "^7.24.7"
|
"@babel/template" "^7.25.0"
|
||||||
"@babel/traverse" "^7.24.7"
|
"@babel/traverse" "^7.25.2"
|
||||||
"@babel/types" "^7.24.7"
|
"@babel/types" "^7.25.2"
|
||||||
convert-source-map "^2.0.0"
|
convert-source-map "^2.0.0"
|
||||||
debug "^4.1.0"
|
debug "^4.1.0"
|
||||||
gensync "^1.0.0-beta.2"
|
gensync "^1.0.0-beta.2"
|
||||||
json5 "^2.2.3"
|
json5 "^2.2.3"
|
||||||
semver "^6.3.1"
|
semver "^6.3.1"
|
||||||
|
|
||||||
"@babel/generator@^7.24.7":
|
"@babel/generator@^7.25.0":
|
||||||
version "7.24.7"
|
version "7.25.0"
|
||||||
resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.25.0.tgz"
|
||||||
integrity sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==
|
integrity sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/types" "^7.24.7"
|
"@babel/types" "^7.25.0"
|
||||||
"@jridgewell/gen-mapping" "^0.3.5"
|
"@jridgewell/gen-mapping" "^0.3.5"
|
||||||
"@jridgewell/trace-mapping" "^0.3.25"
|
"@jridgewell/trace-mapping" "^0.3.25"
|
||||||
jsesc "^2.5.1"
|
jsesc "^2.5.1"
|
||||||
|
|
||||||
"@babel/helper-compilation-targets@^7.24.7":
|
"@babel/helper-compilation-targets@^7.25.2":
|
||||||
version "7.24.7"
|
version "7.25.2"
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz"
|
||||||
integrity sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==
|
integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/compat-data" "^7.24.7"
|
"@babel/compat-data" "^7.25.2"
|
||||||
"@babel/helper-validator-option" "^7.24.7"
|
"@babel/helper-validator-option" "^7.24.8"
|
||||||
browserslist "^4.22.2"
|
browserslist "^4.23.1"
|
||||||
lru-cache "^5.1.1"
|
lru-cache "^5.1.1"
|
||||||
semver "^6.3.1"
|
semver "^6.3.1"
|
||||||
|
|
||||||
"@babel/helper-environment-visitor@^7.24.7":
|
|
||||||
version "7.24.7"
|
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz"
|
|
||||||
integrity sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==
|
|
||||||
dependencies:
|
|
||||||
"@babel/types" "^7.24.7"
|
|
||||||
|
|
||||||
"@babel/helper-function-name@^7.24.7":
|
|
||||||
version "7.24.7"
|
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz"
|
|
||||||
integrity sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==
|
|
||||||
dependencies:
|
|
||||||
"@babel/template" "^7.24.7"
|
|
||||||
"@babel/types" "^7.24.7"
|
|
||||||
|
|
||||||
"@babel/helper-hoist-variables@^7.24.7":
|
|
||||||
version "7.24.7"
|
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz"
|
|
||||||
integrity sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==
|
|
||||||
dependencies:
|
|
||||||
"@babel/types" "^7.24.7"
|
|
||||||
|
|
||||||
"@babel/helper-module-imports@^7.24.7":
|
"@babel/helper-module-imports@^7.24.7":
|
||||||
version "7.24.7"
|
version "7.24.7"
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz"
|
||||||
|
@ -95,21 +73,20 @@
|
||||||
"@babel/traverse" "^7.24.7"
|
"@babel/traverse" "^7.24.7"
|
||||||
"@babel/types" "^7.24.7"
|
"@babel/types" "^7.24.7"
|
||||||
|
|
||||||
"@babel/helper-module-transforms@^7.24.7":
|
"@babel/helper-module-transforms@^7.25.2":
|
||||||
version "7.24.7"
|
version "7.25.2"
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz"
|
||||||
integrity sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==
|
integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/helper-environment-visitor" "^7.24.7"
|
|
||||||
"@babel/helper-module-imports" "^7.24.7"
|
"@babel/helper-module-imports" "^7.24.7"
|
||||||
"@babel/helper-simple-access" "^7.24.7"
|
"@babel/helper-simple-access" "^7.24.7"
|
||||||
"@babel/helper-split-export-declaration" "^7.24.7"
|
|
||||||
"@babel/helper-validator-identifier" "^7.24.7"
|
"@babel/helper-validator-identifier" "^7.24.7"
|
||||||
|
"@babel/traverse" "^7.25.2"
|
||||||
|
|
||||||
"@babel/helper-plugin-utils@^7.24.7":
|
"@babel/helper-plugin-utils@^7.24.7":
|
||||||
version "7.24.7"
|
version "7.24.8"
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz"
|
||||||
integrity sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==
|
integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==
|
||||||
|
|
||||||
"@babel/helper-simple-access@^7.24.7":
|
"@babel/helper-simple-access@^7.24.7":
|
||||||
version "7.24.7"
|
version "7.24.7"
|
||||||
|
@ -119,35 +96,28 @@
|
||||||
"@babel/traverse" "^7.24.7"
|
"@babel/traverse" "^7.24.7"
|
||||||
"@babel/types" "^7.24.7"
|
"@babel/types" "^7.24.7"
|
||||||
|
|
||||||
"@babel/helper-split-export-declaration@^7.24.7":
|
"@babel/helper-string-parser@^7.24.8":
|
||||||
version "7.24.7"
|
version "7.24.8"
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz"
|
||||||
integrity sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==
|
integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==
|
||||||
dependencies:
|
|
||||||
"@babel/types" "^7.24.7"
|
|
||||||
|
|
||||||
"@babel/helper-string-parser@^7.24.7":
|
|
||||||
version "7.24.7"
|
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz"
|
|
||||||
integrity sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==
|
|
||||||
|
|
||||||
"@babel/helper-validator-identifier@^7.24.7":
|
"@babel/helper-validator-identifier@^7.24.7":
|
||||||
version "7.24.7"
|
version "7.24.7"
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz"
|
||||||
integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==
|
integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==
|
||||||
|
|
||||||
"@babel/helper-validator-option@^7.24.7":
|
"@babel/helper-validator-option@^7.24.8":
|
||||||
version "7.24.7"
|
version "7.24.8"
|
||||||
resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz"
|
||||||
integrity sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==
|
integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==
|
||||||
|
|
||||||
"@babel/helpers@^7.24.7":
|
"@babel/helpers@^7.25.0":
|
||||||
version "7.24.7"
|
version "7.25.0"
|
||||||
resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz"
|
||||||
integrity sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==
|
integrity sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/template" "^7.24.7"
|
"@babel/template" "^7.25.0"
|
||||||
"@babel/types" "^7.24.7"
|
"@babel/types" "^7.25.0"
|
||||||
|
|
||||||
"@babel/highlight@^7.24.7":
|
"@babel/highlight@^7.24.7":
|
||||||
version "7.24.7"
|
version "7.24.7"
|
||||||
|
@ -159,10 +129,12 @@
|
||||||
js-tokens "^4.0.0"
|
js-tokens "^4.0.0"
|
||||||
picocolors "^1.0.0"
|
picocolors "^1.0.0"
|
||||||
|
|
||||||
"@babel/parser@^7.1.0", "@babel/parser@^7.20.7", "@babel/parser@^7.24.7":
|
"@babel/parser@^7.1.0", "@babel/parser@^7.20.7", "@babel/parser@^7.25.0", "@babel/parser@^7.25.3":
|
||||||
version "7.24.7"
|
version "7.25.3"
|
||||||
resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.25.3.tgz"
|
||||||
integrity sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==
|
integrity sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==
|
||||||
|
dependencies:
|
||||||
|
"@babel/types" "^7.25.2"
|
||||||
|
|
||||||
"@babel/plugin-syntax-typescript@^7.23.3":
|
"@babel/plugin-syntax-typescript@^7.23.3":
|
||||||
version "7.24.7"
|
version "7.24.7"
|
||||||
|
@ -186,55 +158,57 @@
|
||||||
"@babel/helper-plugin-utils" "^7.24.7"
|
"@babel/helper-plugin-utils" "^7.24.7"
|
||||||
|
|
||||||
"@babel/runtime@^7.12.5", "@babel/runtime@^7.20.13":
|
"@babel/runtime@^7.12.5", "@babel/runtime@^7.20.13":
|
||||||
version "7.24.7"
|
version "7.25.0"
|
||||||
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.0.tgz"
|
||||||
integrity sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==
|
integrity sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==
|
||||||
dependencies:
|
dependencies:
|
||||||
regenerator-runtime "^0.14.0"
|
regenerator-runtime "^0.14.0"
|
||||||
|
|
||||||
"@babel/template@^7.24.7":
|
"@babel/template@^7.25.0":
|
||||||
version "7.24.7"
|
version "7.25.0"
|
||||||
resolved "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz"
|
||||||
integrity sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==
|
integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/code-frame" "^7.24.7"
|
"@babel/code-frame" "^7.24.7"
|
||||||
"@babel/parser" "^7.24.7"
|
"@babel/parser" "^7.25.0"
|
||||||
"@babel/types" "^7.24.7"
|
"@babel/types" "^7.25.0"
|
||||||
|
|
||||||
"@babel/traverse@^7.24.7":
|
"@babel/traverse@^7.24.7", "@babel/traverse@^7.25.2":
|
||||||
version "7.24.7"
|
version "7.25.3"
|
||||||
resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.3.tgz"
|
||||||
integrity sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==
|
integrity sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/code-frame" "^7.24.7"
|
"@babel/code-frame" "^7.24.7"
|
||||||
"@babel/generator" "^7.24.7"
|
"@babel/generator" "^7.25.0"
|
||||||
"@babel/helper-environment-visitor" "^7.24.7"
|
"@babel/parser" "^7.25.3"
|
||||||
"@babel/helper-function-name" "^7.24.7"
|
"@babel/template" "^7.25.0"
|
||||||
"@babel/helper-hoist-variables" "^7.24.7"
|
"@babel/types" "^7.25.2"
|
||||||
"@babel/helper-split-export-declaration" "^7.24.7"
|
|
||||||
"@babel/parser" "^7.24.7"
|
|
||||||
"@babel/types" "^7.24.7"
|
|
||||||
debug "^4.3.1"
|
debug "^4.3.1"
|
||||||
globals "^11.1.0"
|
globals "^11.1.0"
|
||||||
|
|
||||||
"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7":
|
"@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.2":
|
||||||
version "7.24.7"
|
version "7.25.2"
|
||||||
resolved "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz"
|
resolved "https://registry.npmjs.org/@babel/types/-/types-7.25.2.tgz"
|
||||||
integrity sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==
|
integrity sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/helper-string-parser" "^7.24.7"
|
"@babel/helper-string-parser" "^7.24.8"
|
||||||
"@babel/helper-validator-identifier" "^7.24.7"
|
"@babel/helper-validator-identifier" "^7.24.7"
|
||||||
to-fast-properties "^2.0.0"
|
to-fast-properties "^2.0.0"
|
||||||
|
|
||||||
"@emotion/hash@^0.9.0":
|
"@emotion/hash@^0.9.0":
|
||||||
version "0.9.1"
|
version "0.9.2"
|
||||||
resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz"
|
resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz"
|
||||||
integrity sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==
|
integrity sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==
|
||||||
|
|
||||||
"@esbuild/linux-x64@0.21.5":
|
"@esbuild/win32-x64@0.21.5":
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz"
|
resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz"
|
||||||
integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==
|
integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==
|
||||||
|
|
||||||
|
"@esbuild/win32-x64@0.23.1":
|
||||||
|
version "0.23.1"
|
||||||
|
resolved "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz"
|
||||||
|
integrity sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==
|
||||||
|
|
||||||
"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
|
"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0":
|
||||||
version "4.4.0"
|
version "4.4.0"
|
||||||
|
@ -269,19 +243,19 @@
|
||||||
integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==
|
integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==
|
||||||
|
|
||||||
"@floating-ui/core@^1.6.0":
|
"@floating-ui/core@^1.6.0":
|
||||||
version "1.6.4"
|
version "1.6.7"
|
||||||
resolved "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.4.tgz"
|
resolved "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.7.tgz"
|
||||||
integrity sha512-a4IowK4QkXl4SCWTGUR0INAfEOX3wtsYw3rKK5InQEHMGObkR8Xk44qYQD9P4r6HHw0iIfK6GUKECmY8sTkqRA==
|
integrity sha512-yDzVT/Lm101nQ5TCVeK65LtdN7Tj4Qpr9RTXJ2vPFLqtLxwOrpoxAHAJI8J3yYWUc40J0BDBheaitK5SJmno2g==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@floating-ui/utils" "^0.2.4"
|
"@floating-ui/utils" "^0.2.7"
|
||||||
|
|
||||||
"@floating-ui/dom@^1.0.0":
|
"@floating-ui/dom@^1.0.0":
|
||||||
version "1.6.7"
|
version "1.6.10"
|
||||||
resolved "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.7.tgz"
|
resolved "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.10.tgz"
|
||||||
integrity sha512-wmVfPG5o2xnKDU4jx/m4w5qva9FWHcnZ8BvzEe90D/RpwsJaTAVYPEPdQ8sbr/N8zZTAHlZUTQdqg8ZUbzHmng==
|
integrity sha512-fskgCFv8J8OamCmyun8MfjB1Olfn+uZKjOKZ0vhYF3gRmEUXcGOjxWL8bBr7i4kIuPZ2KD2S3EUIOxnjC8kl2A==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@floating-ui/core" "^1.6.0"
|
"@floating-ui/core" "^1.6.0"
|
||||||
"@floating-ui/utils" "^0.2.4"
|
"@floating-ui/utils" "^0.2.7"
|
||||||
|
|
||||||
"@floating-ui/react-dom@^2.1.1":
|
"@floating-ui/react-dom@^2.1.1":
|
||||||
version "2.1.1"
|
version "2.1.1"
|
||||||
|
@ -291,18 +265,18 @@
|
||||||
"@floating-ui/dom" "^1.0.0"
|
"@floating-ui/dom" "^1.0.0"
|
||||||
|
|
||||||
"@floating-ui/react@^0.26.9":
|
"@floating-ui/react@^0.26.9":
|
||||||
version "0.26.19"
|
version "0.26.22"
|
||||||
resolved "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.19.tgz"
|
resolved "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.22.tgz"
|
||||||
integrity sha512-Jk6zITdjjIvjO/VdQFvpRaD3qPwOHH6AoDHxjhpy+oK4KFgaSP871HYWUAPdnLmx1gQ+w/pB312co3tVml+BXA==
|
integrity sha512-LNv4azPt8SpT4WW7Kku5JNVjLk2GcS0bGGjFTAgqOONRFo9r/aaGHHPpdiIuQbB1t8shmWyWqTTUDmZ9fcNshg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@floating-ui/react-dom" "^2.1.1"
|
"@floating-ui/react-dom" "^2.1.1"
|
||||||
"@floating-ui/utils" "^0.2.4"
|
"@floating-ui/utils" "^0.2.7"
|
||||||
tabbable "^6.0.0"
|
tabbable "^6.0.0"
|
||||||
|
|
||||||
"@floating-ui/utils@^0.2.4":
|
"@floating-ui/utils@^0.2.7":
|
||||||
version "0.2.4"
|
version "0.2.7"
|
||||||
resolved "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.4.tgz"
|
resolved "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.7.tgz"
|
||||||
integrity sha512-dWO2pw8hhi+WrXq1YJy2yCuWoL20PddgGaqTgVe4cOS9Q6qklXCiA1tJEqX6BEwRNSCP84/afac9hd4MS+zEUA==
|
integrity sha512-X8R8Oj771YRl/w+c1HqAC1szL8zWQRwFvgDwT129k9ACdBoud/+/rX9V0qiMl6LWUdP9voC2nDVZYPMQQsb6eA==
|
||||||
|
|
||||||
"@humanwhocodes/config-array@^0.11.14":
|
"@humanwhocodes/config-array@^0.11.14":
|
||||||
version "0.11.14"
|
version "0.11.14"
|
||||||
|
@ -398,27 +372,22 @@
|
||||||
"@nodelib/fs.scandir" "2.1.5"
|
"@nodelib/fs.scandir" "2.1.5"
|
||||||
fastq "^1.6.0"
|
fastq "^1.6.0"
|
||||||
|
|
||||||
"@rollup/rollup-linux-x64-gnu@4.18.1":
|
"@rollup/rollup-win32-x64-msvc@4.31.0":
|
||||||
version "4.18.1"
|
version "4.31.0"
|
||||||
resolved "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.1.tgz"
|
resolved "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.31.0.tgz"
|
||||||
integrity sha512-7O5u/p6oKUFYjRbZkL2FLbwsyoJAjyeXHCU3O4ndvzg2OFO2GinFPSJFGbiwFDaCFc+k7gs9CF243PwdPQFh5g==
|
integrity sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==
|
||||||
|
|
||||||
"@rollup/rollup-linux-x64-musl@4.18.1":
|
|
||||||
version "4.18.1"
|
|
||||||
resolved "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.1.tgz"
|
|
||||||
integrity sha512-pDLkYITdYrH/9Cv/Vlj8HppDuLMDUBmgsM0+N+xLtFd18aXgM9Nyqupb/Uw+HeidhfYg2lD6CXvz6CjoVOaKjQ==
|
|
||||||
|
|
||||||
"@tabler/icons-react@^3.11.0":
|
"@tabler/icons-react@^3.11.0":
|
||||||
version "3.11.0"
|
version "3.12.0"
|
||||||
resolved "https://registry.npmjs.org/@tabler/icons-react/-/icons-react-3.11.0.tgz"
|
resolved "https://registry.npmjs.org/@tabler/icons-react/-/icons-react-3.12.0.tgz"
|
||||||
integrity sha512-xHNBi9mns1slvqos+7LkP3ube4CjWrANMbxMaorzwzO9J/+y1sAEG/sN8CV8FmtpYW/9/gDR+OWCjjLLg0RmAw==
|
integrity sha512-RnJl3HrCqInuC8JJEUxWuYP4OFNYnY2EUtBqZFSpYatPKY3AnvJBIrShJLHf3fiLPpo6xEYAIoB7Qow93JX0fQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@tabler/icons" "3.11.0"
|
"@tabler/icons" "3.12.0"
|
||||||
|
|
||||||
"@tabler/icons@3.11.0":
|
"@tabler/icons@3.12.0":
|
||||||
version "3.11.0"
|
version "3.12.0"
|
||||||
resolved "https://registry.npmjs.org/@tabler/icons/-/icons-3.11.0.tgz"
|
resolved "https://registry.npmjs.org/@tabler/icons/-/icons-3.12.0.tgz"
|
||||||
integrity sha512-/vZinJNvCYhdAB+RUsyCpanSPuOEKHHIZi4Uu0Bw7ilewHnQhCWUPrT704uHCRli2ROl7spADPmWzAqOganA5A==
|
integrity sha512-Im37ar/mQkqLb6XUXsU7nOc4/66VB9/3KLuZ+6tUsJKHHNLaDUkYfCTNG3pnGDI03laByxVf5+umSNK2yPTx8A==
|
||||||
|
|
||||||
"@types/babel__core@^7.20.5":
|
"@types/babel__core@^7.20.5":
|
||||||
version "7.20.5"
|
version "7.20.5"
|
||||||
|
@ -453,17 +422,17 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/types" "^7.20.7"
|
"@babel/types" "^7.20.7"
|
||||||
|
|
||||||
"@types/estree@1.0.5":
|
"@types/estree@1.0.6":
|
||||||
version "1.0.5"
|
version "1.0.6"
|
||||||
resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz"
|
resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz"
|
||||||
integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==
|
integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==
|
||||||
|
|
||||||
"@types/node@*", "@types/node@^18.0.0 || >=20.0.0":
|
"@types/node@*", "@types/node@^18.0.0 || >=20.0.0":
|
||||||
version "20.14.10"
|
version "22.4.2"
|
||||||
resolved "https://registry.npmjs.org/@types/node/-/node-20.14.10.tgz"
|
resolved "https://registry.npmjs.org/@types/node/-/node-22.4.2.tgz"
|
||||||
integrity sha512-MdiXf+nDuMvY0gJKxyfZ7/6UFsETO7mGKF54MVD/ekJS6HdFtpZFBgrh6Pseu64XTb2MLyFPlbW6hj8HYRQNOQ==
|
integrity sha512-nAvM3Ey230/XzxtyDcJ+VjvlzpzoHwLsF7JaDRfoI0ytO0mVheerNmM45CtA0yOILXwXXxOrcUWH3wltX+7PSw==
|
||||||
dependencies:
|
dependencies:
|
||||||
undici-types "~5.26.4"
|
undici-types "~6.19.2"
|
||||||
|
|
||||||
"@types/prop-types@*":
|
"@types/prop-types@*":
|
||||||
version "15.7.12"
|
version "15.7.12"
|
||||||
|
@ -478,69 +447,69 @@
|
||||||
"@types/react" "*"
|
"@types/react" "*"
|
||||||
|
|
||||||
"@types/react@*", "@types/react@^16.8.0 || ^17.0.0 || ^18.0.0", "@types/react@^16.9.0 || ^17.0.0 || ^18.0.0", "@types/react@^18.3.3":
|
"@types/react@*", "@types/react@^16.8.0 || ^17.0.0 || ^18.0.0", "@types/react@^16.9.0 || ^17.0.0 || ^18.0.0", "@types/react@^18.3.3":
|
||||||
version "18.3.3"
|
version "18.3.4"
|
||||||
resolved "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz"
|
resolved "https://registry.npmjs.org/@types/react/-/react-18.3.4.tgz"
|
||||||
integrity sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==
|
integrity sha512-J7W30FTdfCxDDjmfRM+/JqLHBIyl7xUIp9kwK637FGmY7+mkSFSe6L4jpZzhj5QMfLssSDP4/i75AKkrdC7/Jw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/prop-types" "*"
|
"@types/prop-types" "*"
|
||||||
csstype "^3.0.2"
|
csstype "^3.0.2"
|
||||||
|
|
||||||
"@typescript-eslint/eslint-plugin@^7.13.1":
|
"@typescript-eslint/eslint-plugin@^7.13.1":
|
||||||
version "7.16.0"
|
version "7.18.0"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.16.0.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.18.0.tgz"
|
||||||
integrity sha512-py1miT6iQpJcs1BiJjm54AMzeuMPBSPuKPlnT8HlfudbcS5rYeX5jajpLf3mrdRh9dA/Ec2FVUY0ifeVNDIhZw==
|
integrity sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@eslint-community/regexpp" "^4.10.0"
|
"@eslint-community/regexpp" "^4.10.0"
|
||||||
"@typescript-eslint/scope-manager" "7.16.0"
|
"@typescript-eslint/scope-manager" "7.18.0"
|
||||||
"@typescript-eslint/type-utils" "7.16.0"
|
"@typescript-eslint/type-utils" "7.18.0"
|
||||||
"@typescript-eslint/utils" "7.16.0"
|
"@typescript-eslint/utils" "7.18.0"
|
||||||
"@typescript-eslint/visitor-keys" "7.16.0"
|
"@typescript-eslint/visitor-keys" "7.18.0"
|
||||||
graphemer "^1.4.0"
|
graphemer "^1.4.0"
|
||||||
ignore "^5.3.1"
|
ignore "^5.3.1"
|
||||||
natural-compare "^1.4.0"
|
natural-compare "^1.4.0"
|
||||||
ts-api-utils "^1.3.0"
|
ts-api-utils "^1.3.0"
|
||||||
|
|
||||||
"@typescript-eslint/parser@^7.0.0", "@typescript-eslint/parser@^7.13.1":
|
"@typescript-eslint/parser@^7.0.0", "@typescript-eslint/parser@^7.13.1":
|
||||||
version "7.16.0"
|
version "7.18.0"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.16.0.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.18.0.tgz"
|
||||||
integrity sha512-ar9E+k7CU8rWi2e5ErzQiC93KKEFAXA2Kky0scAlPcxYblLt8+XZuHUZwlyfXILyQa95P6lQg+eZgh/dDs3+Vw==
|
integrity sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/scope-manager" "7.16.0"
|
"@typescript-eslint/scope-manager" "7.18.0"
|
||||||
"@typescript-eslint/types" "7.16.0"
|
"@typescript-eslint/types" "7.18.0"
|
||||||
"@typescript-eslint/typescript-estree" "7.16.0"
|
"@typescript-eslint/typescript-estree" "7.18.0"
|
||||||
"@typescript-eslint/visitor-keys" "7.16.0"
|
"@typescript-eslint/visitor-keys" "7.18.0"
|
||||||
debug "^4.3.4"
|
debug "^4.3.4"
|
||||||
|
|
||||||
"@typescript-eslint/scope-manager@7.16.0":
|
"@typescript-eslint/scope-manager@7.18.0":
|
||||||
version "7.16.0"
|
version "7.18.0"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.16.0.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.18.0.tgz"
|
||||||
integrity sha512-8gVv3kW6n01Q6TrI1cmTZ9YMFi3ucDT7i7aI5lEikk2ebk1AEjrwX8MDTdaX5D7fPXMBLvnsaa0IFTAu+jcfOw==
|
integrity sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/types" "7.16.0"
|
"@typescript-eslint/types" "7.18.0"
|
||||||
"@typescript-eslint/visitor-keys" "7.16.0"
|
"@typescript-eslint/visitor-keys" "7.18.0"
|
||||||
|
|
||||||
"@typescript-eslint/type-utils@7.16.0":
|
"@typescript-eslint/type-utils@7.18.0":
|
||||||
version "7.16.0"
|
version "7.18.0"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.16.0.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.18.0.tgz"
|
||||||
integrity sha512-j0fuUswUjDHfqV/UdW6mLtOQQseORqfdmoBNDFOqs9rvNVR2e+cmu6zJu/Ku4SDuqiJko6YnhwcL8x45r8Oqxg==
|
integrity sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/typescript-estree" "7.16.0"
|
"@typescript-eslint/typescript-estree" "7.18.0"
|
||||||
"@typescript-eslint/utils" "7.16.0"
|
"@typescript-eslint/utils" "7.18.0"
|
||||||
debug "^4.3.4"
|
debug "^4.3.4"
|
||||||
ts-api-utils "^1.3.0"
|
ts-api-utils "^1.3.0"
|
||||||
|
|
||||||
"@typescript-eslint/types@7.16.0":
|
"@typescript-eslint/types@7.18.0":
|
||||||
version "7.16.0"
|
version "7.18.0"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.16.0.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz"
|
||||||
integrity sha512-fecuH15Y+TzlUutvUl9Cc2XJxqdLr7+93SQIbcZfd4XRGGKoxyljK27b+kxKamjRkU7FYC6RrbSCg0ALcZn/xw==
|
integrity sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==
|
||||||
|
|
||||||
"@typescript-eslint/typescript-estree@7.16.0":
|
"@typescript-eslint/typescript-estree@7.18.0":
|
||||||
version "7.16.0"
|
version "7.18.0"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.16.0.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.18.0.tgz"
|
||||||
integrity sha512-a5NTvk51ZndFuOLCh5OaJBELYc2O3Zqxfl3Js78VFE1zE46J2AaVuW+rEbVkQznjkmlzWsUI15BG5tQMixzZLw==
|
integrity sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/types" "7.16.0"
|
"@typescript-eslint/types" "7.18.0"
|
||||||
"@typescript-eslint/visitor-keys" "7.16.0"
|
"@typescript-eslint/visitor-keys" "7.18.0"
|
||||||
debug "^4.3.4"
|
debug "^4.3.4"
|
||||||
globby "^11.1.0"
|
globby "^11.1.0"
|
||||||
is-glob "^4.0.3"
|
is-glob "^4.0.3"
|
||||||
|
@ -548,22 +517,22 @@
|
||||||
semver "^7.6.0"
|
semver "^7.6.0"
|
||||||
ts-api-utils "^1.3.0"
|
ts-api-utils "^1.3.0"
|
||||||
|
|
||||||
"@typescript-eslint/utils@7.16.0":
|
"@typescript-eslint/utils@7.18.0":
|
||||||
version "7.16.0"
|
version "7.18.0"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.16.0.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.18.0.tgz"
|
||||||
integrity sha512-PqP4kP3hb4r7Jav+NiRCntlVzhxBNWq6ZQ+zQwII1y/G/1gdIPeYDCKr2+dH6049yJQsWZiHU6RlwvIFBXXGNA==
|
integrity sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@eslint-community/eslint-utils" "^4.4.0"
|
"@eslint-community/eslint-utils" "^4.4.0"
|
||||||
"@typescript-eslint/scope-manager" "7.16.0"
|
"@typescript-eslint/scope-manager" "7.18.0"
|
||||||
"@typescript-eslint/types" "7.16.0"
|
"@typescript-eslint/types" "7.18.0"
|
||||||
"@typescript-eslint/typescript-estree" "7.16.0"
|
"@typescript-eslint/typescript-estree" "7.18.0"
|
||||||
|
|
||||||
"@typescript-eslint/visitor-keys@7.16.0":
|
"@typescript-eslint/visitor-keys@7.18.0":
|
||||||
version "7.16.0"
|
version "7.18.0"
|
||||||
resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.16.0.tgz"
|
resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.18.0.tgz"
|
||||||
integrity sha512-rMo01uPy9C7XxG7AFsxa8zLnWXTF8N3PYclekWSrurvhwiw1eW88mrKiAYe6s53AUY57nTRz8dJsuuXdkAhzCg==
|
integrity sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@typescript-eslint/types" "7.16.0"
|
"@typescript-eslint/types" "7.18.0"
|
||||||
eslint-visitor-keys "^3.4.3"
|
eslint-visitor-keys "^3.4.3"
|
||||||
|
|
||||||
"@ungap/structured-clone@^1.2.0":
|
"@ungap/structured-clone@^1.2.0":
|
||||||
|
@ -578,34 +547,35 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/core" "^7.23.9"
|
"@babel/core" "^7.23.9"
|
||||||
|
|
||||||
"@vanilla-extract/css@^1.15.3":
|
"@vanilla-extract/css@^1.15.3", "@vanilla-extract/css@^1.15.5":
|
||||||
version "1.15.3"
|
version "1.15.5"
|
||||||
resolved "https://registry.npmjs.org/@vanilla-extract/css/-/css-1.15.3.tgz"
|
resolved "https://registry.npmjs.org/@vanilla-extract/css/-/css-1.15.5.tgz"
|
||||||
integrity sha512-mxoskDAxdQAspbkmQRxBvolUi1u1jnyy9WZGm+GeH8V2wwhEvndzl1QoK7w8JfA0WFevTxbev5d+i+xACZlPhA==
|
integrity sha512-N1nQebRWnXvlcmu9fXKVUs145EVwmWtMD95bpiEKtvehHDpUhmO1l2bauS7FGYKbi3dU1IurJbGpQhBclTr1ng==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@emotion/hash" "^0.9.0"
|
"@emotion/hash" "^0.9.0"
|
||||||
"@vanilla-extract/private" "^1.0.5"
|
"@vanilla-extract/private" "^1.0.6"
|
||||||
css-what "^6.1.0"
|
css-what "^6.1.0"
|
||||||
cssesc "^3.0.0"
|
cssesc "^3.0.0"
|
||||||
csstype "^3.0.7"
|
csstype "^3.0.7"
|
||||||
dedent "^1.5.3"
|
dedent "^1.5.3"
|
||||||
deep-object-diff "^1.1.9"
|
deep-object-diff "^1.1.9"
|
||||||
deepmerge "^4.2.2"
|
deepmerge "^4.2.2"
|
||||||
|
lru-cache "^10.4.3"
|
||||||
media-query-parser "^2.0.2"
|
media-query-parser "^2.0.2"
|
||||||
modern-ahocorasick "^1.0.0"
|
modern-ahocorasick "^1.0.0"
|
||||||
picocolors "^1.0.0"
|
picocolors "^1.0.0"
|
||||||
|
|
||||||
"@vanilla-extract/integration@^7.1.7":
|
"@vanilla-extract/integration@^7.1.9":
|
||||||
version "7.1.7"
|
version "7.1.9"
|
||||||
resolved "https://registry.npmjs.org/@vanilla-extract/integration/-/integration-7.1.7.tgz"
|
resolved "https://registry.npmjs.org/@vanilla-extract/integration/-/integration-7.1.9.tgz"
|
||||||
integrity sha512-xKwrCtmiBq6QzRNj+IOg5cAMRQRXkFnnvcE374MROJPnVvDX0d+lrIQapFGt64F0H8Gjk4kVl4slvCiV3ECQ4w==
|
integrity sha512-bkikYnUdEiUoUZGX3tErmkpU43M4Q0McZcSUHutP/pQCeuDB29t8brLOLzdkahwD+RteX2/R3ukmIm3lAYzUnA==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/core" "^7.23.9"
|
"@babel/core" "^7.23.9"
|
||||||
"@babel/plugin-syntax-typescript" "^7.23.3"
|
"@babel/plugin-syntax-typescript" "^7.23.3"
|
||||||
"@vanilla-extract/babel-plugin-debug-ids" "^1.0.6"
|
"@vanilla-extract/babel-plugin-debug-ids" "^1.0.6"
|
||||||
"@vanilla-extract/css" "^1.15.3"
|
"@vanilla-extract/css" "^1.15.5"
|
||||||
dedent "^1.5.3"
|
dedent "^1.5.3"
|
||||||
esbuild "npm:esbuild@~0.17.6 || ~0.18.0 || ~0.19.0 || ~0.20.0 || ~0.21.0"
|
esbuild "npm:esbuild@>=0.17.6 <0.24.0"
|
||||||
eval "0.1.8"
|
eval "0.1.8"
|
||||||
find-up "^5.0.0"
|
find-up "^5.0.0"
|
||||||
javascript-stringify "^2.0.1"
|
javascript-stringify "^2.0.1"
|
||||||
|
@ -613,17 +583,17 @@
|
||||||
vite "^5.0.11"
|
vite "^5.0.11"
|
||||||
vite-node "^1.2.0"
|
vite-node "^1.2.0"
|
||||||
|
|
||||||
"@vanilla-extract/private@^1.0.5":
|
"@vanilla-extract/private@^1.0.6":
|
||||||
version "1.0.5"
|
version "1.0.6"
|
||||||
resolved "https://registry.npmjs.org/@vanilla-extract/private/-/private-1.0.5.tgz"
|
resolved "https://registry.npmjs.org/@vanilla-extract/private/-/private-1.0.6.tgz"
|
||||||
integrity sha512-6YXeOEKYTA3UV+RC8DeAjFk+/okoNz/h88R+McnzA2zpaVqTR/Ep+vszkWYlGBcMNO7vEkqbq5nT/JMMvhi+tw==
|
integrity sha512-ytsG/JLweEjw7DBuZ/0JCN4WAQgM9erfSTdS1NQY778hFQSZ6cfCDEZZ0sgVm4k54uNz6ImKB33AYvSR//fjxw==
|
||||||
|
|
||||||
"@vanilla-extract/vite-plugin@^4.0.11":
|
"@vanilla-extract/vite-plugin@^4.0.11":
|
||||||
version "4.0.13"
|
version "4.0.15"
|
||||||
resolved "https://registry.npmjs.org/@vanilla-extract/vite-plugin/-/vite-plugin-4.0.13.tgz"
|
resolved "https://registry.npmjs.org/@vanilla-extract/vite-plugin/-/vite-plugin-4.0.15.tgz"
|
||||||
integrity sha512-JeACJlPtsWp/73Ke1Px/QvDA8M3GlBt4ZjWytSm7rYoKv1qEANSnvAZsAevIp56tTMJaqs++R3L7OkmnFeKhlw==
|
integrity sha512-kl0EJ0DGRA3/cuZeXfBu4C9oPnkCr1PJIAr1/7Fu1mCrlE+fC6DCriPY2cRuGbbBE/ZhXryUSNT7rWjqAyHlkw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@vanilla-extract/integration" "^7.1.7"
|
"@vanilla-extract/integration" "^7.1.9"
|
||||||
|
|
||||||
"@vitejs/plugin-react@^4.3.1":
|
"@vitejs/plugin-react@^4.3.1":
|
||||||
version "4.3.1"
|
version "4.3.1"
|
||||||
|
@ -712,14 +682,14 @@ braces@^3.0.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
fill-range "^7.1.1"
|
fill-range "^7.1.1"
|
||||||
|
|
||||||
browserslist@^4.22.2, "browserslist@>= 4.21.0":
|
browserslist@^4.23.1, "browserslist@>= 4.21.0":
|
||||||
version "4.23.2"
|
version "4.23.3"
|
||||||
resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.23.2.tgz"
|
resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz"
|
||||||
integrity sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA==
|
integrity sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==
|
||||||
dependencies:
|
dependencies:
|
||||||
caniuse-lite "^1.0.30001640"
|
caniuse-lite "^1.0.30001646"
|
||||||
electron-to-chromium "^1.4.820"
|
electron-to-chromium "^1.5.4"
|
||||||
node-releases "^2.0.14"
|
node-releases "^2.0.18"
|
||||||
update-browserslist-db "^1.1.0"
|
update-browserslist-db "^1.1.0"
|
||||||
|
|
||||||
cac@^6.7.14:
|
cac@^6.7.14:
|
||||||
|
@ -737,10 +707,10 @@ camelcase-css@^2.0.1:
|
||||||
resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz"
|
resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz"
|
||||||
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
|
integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
|
||||||
|
|
||||||
caniuse-lite@^1.0.30001640:
|
caniuse-lite@^1.0.30001646:
|
||||||
version "1.0.30001641"
|
version "1.0.30001651"
|
||||||
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001641.tgz"
|
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001651.tgz"
|
||||||
integrity sha512-Phv5thgl67bHYo1TtMY/MurjkHhV4EDaCosezRXgZ8jzA/Ub+wjxAvbGvjoFENStinwi5kCyOYV3mi5tOGykwA==
|
integrity sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==
|
||||||
|
|
||||||
chalk@^2.4.2:
|
chalk@^2.4.2:
|
||||||
version "2.4.2"
|
version "2.4.2"
|
||||||
|
@ -804,9 +774,9 @@ convert-source-map@^2.0.0:
|
||||||
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
|
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
|
||||||
|
|
||||||
cross-spawn@^7.0.2:
|
cross-spawn@^7.0.2:
|
||||||
version "7.0.3"
|
version "7.0.6"
|
||||||
resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
|
resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz"
|
||||||
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
|
integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
|
||||||
dependencies:
|
dependencies:
|
||||||
path-key "^3.1.0"
|
path-key "^3.1.0"
|
||||||
shebang-command "^2.0.0"
|
shebang-command "^2.0.0"
|
||||||
|
@ -828,9 +798,9 @@ csstype@^3.0.2, csstype@^3.0.7:
|
||||||
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
|
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
|
||||||
|
|
||||||
debug@^4.1.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4:
|
debug@^4.1.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4:
|
||||||
version "4.3.5"
|
version "4.3.6"
|
||||||
resolved "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz"
|
resolved "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz"
|
||||||
integrity sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==
|
integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==
|
||||||
dependencies:
|
dependencies:
|
||||||
ms "2.1.2"
|
ms "2.1.2"
|
||||||
|
|
||||||
|
@ -873,12 +843,12 @@ doctrine@^3.0.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
esutils "^2.0.2"
|
esutils "^2.0.2"
|
||||||
|
|
||||||
electron-to-chromium@^1.4.820:
|
electron-to-chromium@^1.5.4:
|
||||||
version "1.4.823"
|
version "1.5.13"
|
||||||
resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.823.tgz"
|
resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz"
|
||||||
integrity sha512-4h+oPeAiGQOHFyUJOqpoEcPj/xxlicxBzOErVeYVMMmAiXUXsGpsFd0QXBMaUUbnD8hhSfLf9uw+MlsoIA7j5w==
|
integrity sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==
|
||||||
|
|
||||||
esbuild@^0.21.3, "esbuild@npm:esbuild@~0.17.6 || ~0.18.0 || ~0.19.0 || ~0.20.0 || ~0.21.0":
|
esbuild@^0.21.3:
|
||||||
version "0.21.5"
|
version "0.21.5"
|
||||||
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz"
|
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz"
|
||||||
integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==
|
integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==
|
||||||
|
@ -907,6 +877,36 @@ esbuild@^0.21.3, "esbuild@npm:esbuild@~0.17.6 || ~0.18.0 || ~0.19.0 || ~0.20.0 |
|
||||||
"@esbuild/win32-ia32" "0.21.5"
|
"@esbuild/win32-ia32" "0.21.5"
|
||||||
"@esbuild/win32-x64" "0.21.5"
|
"@esbuild/win32-x64" "0.21.5"
|
||||||
|
|
||||||
|
"esbuild@npm:esbuild@>=0.17.6 <0.24.0":
|
||||||
|
version "0.23.1"
|
||||||
|
resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz"
|
||||||
|
integrity sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==
|
||||||
|
optionalDependencies:
|
||||||
|
"@esbuild/aix-ppc64" "0.23.1"
|
||||||
|
"@esbuild/android-arm" "0.23.1"
|
||||||
|
"@esbuild/android-arm64" "0.23.1"
|
||||||
|
"@esbuild/android-x64" "0.23.1"
|
||||||
|
"@esbuild/darwin-arm64" "0.23.1"
|
||||||
|
"@esbuild/darwin-x64" "0.23.1"
|
||||||
|
"@esbuild/freebsd-arm64" "0.23.1"
|
||||||
|
"@esbuild/freebsd-x64" "0.23.1"
|
||||||
|
"@esbuild/linux-arm" "0.23.1"
|
||||||
|
"@esbuild/linux-arm64" "0.23.1"
|
||||||
|
"@esbuild/linux-ia32" "0.23.1"
|
||||||
|
"@esbuild/linux-loong64" "0.23.1"
|
||||||
|
"@esbuild/linux-mips64el" "0.23.1"
|
||||||
|
"@esbuild/linux-ppc64" "0.23.1"
|
||||||
|
"@esbuild/linux-riscv64" "0.23.1"
|
||||||
|
"@esbuild/linux-s390x" "0.23.1"
|
||||||
|
"@esbuild/linux-x64" "0.23.1"
|
||||||
|
"@esbuild/netbsd-x64" "0.23.1"
|
||||||
|
"@esbuild/openbsd-arm64" "0.23.1"
|
||||||
|
"@esbuild/openbsd-x64" "0.23.1"
|
||||||
|
"@esbuild/sunos-x64" "0.23.1"
|
||||||
|
"@esbuild/win32-arm64" "0.23.1"
|
||||||
|
"@esbuild/win32-ia32" "0.23.1"
|
||||||
|
"@esbuild/win32-x64" "0.23.1"
|
||||||
|
|
||||||
escalade@^3.1.2:
|
escalade@^3.1.2:
|
||||||
version "3.1.2"
|
version "3.1.2"
|
||||||
resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz"
|
resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz"
|
||||||
|
@ -928,9 +928,9 @@ eslint-plugin-react-hooks@^4.6.2:
|
||||||
integrity sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==
|
integrity sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==
|
||||||
|
|
||||||
eslint-plugin-react-refresh@^0.4.7:
|
eslint-plugin-react-refresh@^0.4.7:
|
||||||
version "0.4.8"
|
version "0.4.10"
|
||||||
resolved "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.8.tgz"
|
resolved "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.10.tgz"
|
||||||
integrity sha512-MIKAclwaDFIiYtVBLzDdm16E+Ty4GwhB6wZlCAG1R3Ur+F9Qbo6PRxpA5DK7XtDgm+WlCoAY2WxAwqhmIDHg6Q==
|
integrity sha512-I39s6G9We7ZxbCRxTTM5XX4KJV2cfWhFbHF4kTuL0ygdEVdQXtCNGqUQ43sBOCbTC/N6dEZXoQKFHr8gp1VHrQ==
|
||||||
|
|
||||||
eslint-scope@^7.2.2:
|
eslint-scope@^7.2.2:
|
||||||
version "7.2.2"
|
version "7.2.2"
|
||||||
|
@ -1180,9 +1180,9 @@ has-flag@^4.0.0:
|
||||||
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
||||||
|
|
||||||
ignore@^5.2.0, ignore@^5.3.1:
|
ignore@^5.2.0, ignore@^5.3.1:
|
||||||
version "5.3.1"
|
version "5.3.2"
|
||||||
resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz"
|
resolved "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz"
|
||||||
integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==
|
integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==
|
||||||
|
|
||||||
import-fresh@^3.2.1:
|
import-fresh@^3.2.1:
|
||||||
version "3.3.0"
|
version "3.3.0"
|
||||||
|
@ -1320,6 +1320,11 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
js-tokens "^3.0.0 || ^4.0.0"
|
js-tokens "^3.0.0 || ^4.0.0"
|
||||||
|
|
||||||
|
lru-cache@^10.4.3:
|
||||||
|
version "10.4.3"
|
||||||
|
resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz"
|
||||||
|
integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
|
||||||
|
|
||||||
lru-cache@^5.1.1:
|
lru-cache@^5.1.1:
|
||||||
version "5.1.1"
|
version "5.1.1"
|
||||||
resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"
|
resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"
|
||||||
|
@ -1340,9 +1345,9 @@ merge2@^1.3.0, merge2@^1.4.1:
|
||||||
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
||||||
|
|
||||||
micromatch@^4.0.4:
|
micromatch@^4.0.4:
|
||||||
version "4.0.7"
|
version "4.0.8"
|
||||||
resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz"
|
resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz"
|
||||||
integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==
|
integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
|
||||||
dependencies:
|
dependencies:
|
||||||
braces "^3.0.3"
|
braces "^3.0.3"
|
||||||
picomatch "^2.3.1"
|
picomatch "^2.3.1"
|
||||||
|
@ -1395,20 +1400,20 @@ ms@2.1.2:
|
||||||
resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
|
resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
|
||||||
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
|
||||||
|
|
||||||
nanoid@^3.3.7:
|
nanoid@^3.3.8:
|
||||||
version "3.3.7"
|
version "3.3.8"
|
||||||
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz"
|
resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz"
|
||||||
integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==
|
integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==
|
||||||
|
|
||||||
natural-compare@^1.4.0:
|
natural-compare@^1.4.0:
|
||||||
version "1.4.0"
|
version "1.4.0"
|
||||||
resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
|
resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
|
||||||
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
|
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
|
||||||
|
|
||||||
node-releases@^2.0.14:
|
node-releases@^2.0.18:
|
||||||
version "2.0.14"
|
version "2.0.18"
|
||||||
resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz"
|
resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz"
|
||||||
integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==
|
integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==
|
||||||
|
|
||||||
object-assign@^4.1.1:
|
object-assign@^4.1.1:
|
||||||
version "4.1.1"
|
version "4.1.1"
|
||||||
|
@ -1480,10 +1485,10 @@ pathe@^1.1.1, pathe@^1.1.2:
|
||||||
resolved "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz"
|
resolved "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz"
|
||||||
integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==
|
integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==
|
||||||
|
|
||||||
picocolors@^1.0.0, picocolors@^1.0.1:
|
picocolors@^1.0.0, picocolors@^1.0.1, picocolors@^1.1.1:
|
||||||
version "1.0.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz"
|
resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz"
|
||||||
integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==
|
integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
|
||||||
|
|
||||||
picomatch@^2.3.1:
|
picomatch@^2.3.1:
|
||||||
version "2.3.1"
|
version "2.3.1"
|
||||||
|
@ -1517,11 +1522,11 @@ postcss-mixins@^9.0.4:
|
||||||
sugarss "^4.0.1"
|
sugarss "^4.0.1"
|
||||||
|
|
||||||
postcss-nested@^6.0.1:
|
postcss-nested@^6.0.1:
|
||||||
version "6.0.1"
|
version "6.2.0"
|
||||||
resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz"
|
resolved "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz"
|
||||||
integrity sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==
|
integrity sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
postcss-selector-parser "^6.0.11"
|
postcss-selector-parser "^6.1.1"
|
||||||
|
|
||||||
postcss-preset-mantine@1.15.0:
|
postcss-preset-mantine@1.15.0:
|
||||||
version "1.15.0"
|
version "1.15.0"
|
||||||
|
@ -1531,10 +1536,10 @@ postcss-preset-mantine@1.15.0:
|
||||||
postcss-mixins "^9.0.4"
|
postcss-mixins "^9.0.4"
|
||||||
postcss-nested "^6.0.1"
|
postcss-nested "^6.0.1"
|
||||||
|
|
||||||
postcss-selector-parser@^6.0.11:
|
postcss-selector-parser@^6.1.1:
|
||||||
version "6.1.0"
|
version "6.1.2"
|
||||||
resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz"
|
resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz"
|
||||||
integrity sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==
|
integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==
|
||||||
dependencies:
|
dependencies:
|
||||||
cssesc "^3.0.0"
|
cssesc "^3.0.0"
|
||||||
util-deprecate "^1.0.2"
|
util-deprecate "^1.0.2"
|
||||||
|
@ -1544,14 +1549,14 @@ postcss-simple-vars@^7.0.0, postcss-simple-vars@^7.0.1:
|
||||||
resolved "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-7.0.1.tgz"
|
resolved "https://registry.npmjs.org/postcss-simple-vars/-/postcss-simple-vars-7.0.1.tgz"
|
||||||
integrity sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==
|
integrity sha512-5GLLXaS8qmzHMOjVxqkk1TZPf1jMqesiI7qLhnlyERalG0sMbHIbJqrcnrpmZdKCLglHnRHoEBB61RtGTsj++A==
|
||||||
|
|
||||||
postcss@^8.2.1, postcss@^8.2.14, postcss@^8.3.3, postcss@^8.4.21, postcss@^8.4.38, postcss@^8.4.39, postcss@>=8.0.0:
|
postcss@^8.2.1, postcss@^8.2.14, postcss@^8.3.3, postcss@^8.4.21, postcss@^8.4.38, postcss@^8.4.43, postcss@>=8.0.0:
|
||||||
version "8.4.39"
|
version "8.5.1"
|
||||||
resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.39.tgz"
|
resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz"
|
||||||
integrity sha512-0vzE+lAiG7hZl1/9I8yzKLx3aR9Xbof3fBHKunvMfOCYAtMhrsnccJY2iTURb9EZd5+pLuiNV9/c/GZJOHsgIw==
|
integrity sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==
|
||||||
dependencies:
|
dependencies:
|
||||||
nanoid "^3.3.7"
|
nanoid "^3.3.8"
|
||||||
picocolors "^1.0.1"
|
picocolors "^1.1.1"
|
||||||
source-map-js "^1.2.0"
|
source-map-js "^1.2.1"
|
||||||
|
|
||||||
prelude-ls@^1.2.1:
|
prelude-ls@^1.2.1:
|
||||||
version "1.2.1"
|
version "1.2.1"
|
||||||
|
@ -1673,29 +1678,32 @@ rimraf@^3.0.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
glob "^7.1.3"
|
glob "^7.1.3"
|
||||||
|
|
||||||
rollup@^4.13.0:
|
rollup@^4.20.0:
|
||||||
version "4.18.1"
|
version "4.31.0"
|
||||||
resolved "https://registry.npmjs.org/rollup/-/rollup-4.18.1.tgz"
|
resolved "https://registry.npmjs.org/rollup/-/rollup-4.31.0.tgz"
|
||||||
integrity sha512-Elx2UT8lzxxOXMpy5HWQGZqkrQOtrVDDa/bm9l10+U4rQnVzbL/LgZ4NOM1MPIDyHk69W4InuYDF5dzRh4Kw1A==
|
integrity sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@types/estree" "1.0.5"
|
"@types/estree" "1.0.6"
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
"@rollup/rollup-android-arm-eabi" "4.18.1"
|
"@rollup/rollup-android-arm-eabi" "4.31.0"
|
||||||
"@rollup/rollup-android-arm64" "4.18.1"
|
"@rollup/rollup-android-arm64" "4.31.0"
|
||||||
"@rollup/rollup-darwin-arm64" "4.18.1"
|
"@rollup/rollup-darwin-arm64" "4.31.0"
|
||||||
"@rollup/rollup-darwin-x64" "4.18.1"
|
"@rollup/rollup-darwin-x64" "4.31.0"
|
||||||
"@rollup/rollup-linux-arm-gnueabihf" "4.18.1"
|
"@rollup/rollup-freebsd-arm64" "4.31.0"
|
||||||
"@rollup/rollup-linux-arm-musleabihf" "4.18.1"
|
"@rollup/rollup-freebsd-x64" "4.31.0"
|
||||||
"@rollup/rollup-linux-arm64-gnu" "4.18.1"
|
"@rollup/rollup-linux-arm-gnueabihf" "4.31.0"
|
||||||
"@rollup/rollup-linux-arm64-musl" "4.18.1"
|
"@rollup/rollup-linux-arm-musleabihf" "4.31.0"
|
||||||
"@rollup/rollup-linux-powerpc64le-gnu" "4.18.1"
|
"@rollup/rollup-linux-arm64-gnu" "4.31.0"
|
||||||
"@rollup/rollup-linux-riscv64-gnu" "4.18.1"
|
"@rollup/rollup-linux-arm64-musl" "4.31.0"
|
||||||
"@rollup/rollup-linux-s390x-gnu" "4.18.1"
|
"@rollup/rollup-linux-loongarch64-gnu" "4.31.0"
|
||||||
"@rollup/rollup-linux-x64-gnu" "4.18.1"
|
"@rollup/rollup-linux-powerpc64le-gnu" "4.31.0"
|
||||||
"@rollup/rollup-linux-x64-musl" "4.18.1"
|
"@rollup/rollup-linux-riscv64-gnu" "4.31.0"
|
||||||
"@rollup/rollup-win32-arm64-msvc" "4.18.1"
|
"@rollup/rollup-linux-s390x-gnu" "4.31.0"
|
||||||
"@rollup/rollup-win32-ia32-msvc" "4.18.1"
|
"@rollup/rollup-linux-x64-gnu" "4.31.0"
|
||||||
"@rollup/rollup-win32-x64-msvc" "4.18.1"
|
"@rollup/rollup-linux-x64-musl" "4.31.0"
|
||||||
|
"@rollup/rollup-win32-arm64-msvc" "4.31.0"
|
||||||
|
"@rollup/rollup-win32-ia32-msvc" "4.31.0"
|
||||||
|
"@rollup/rollup-win32-x64-msvc" "4.31.0"
|
||||||
fsevents "~2.3.2"
|
fsevents "~2.3.2"
|
||||||
|
|
||||||
run-parallel@^1.1.9:
|
run-parallel@^1.1.9:
|
||||||
|
@ -1718,9 +1726,9 @@ semver@^6.3.1:
|
||||||
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
|
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
|
||||||
|
|
||||||
semver@^7.6.0:
|
semver@^7.6.0:
|
||||||
version "7.6.2"
|
version "7.6.3"
|
||||||
resolved "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz"
|
resolved "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz"
|
||||||
integrity sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==
|
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
|
||||||
|
|
||||||
shebang-command@^2.0.0:
|
shebang-command@^2.0.0:
|
||||||
version "2.0.0"
|
version "2.0.0"
|
||||||
|
@ -1739,10 +1747,10 @@ slash@^3.0.0:
|
||||||
resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
|
resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
|
||||||
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
|
integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
|
||||||
|
|
||||||
source-map-js@^1.2.0:
|
source-map-js@^1.2.1:
|
||||||
version "1.2.0"
|
version "1.2.1"
|
||||||
resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz"
|
resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz"
|
||||||
integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==
|
integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
|
||||||
|
|
||||||
strip-ansi@^6.0.1:
|
strip-ansi@^6.0.1:
|
||||||
version "6.0.1"
|
version "6.0.1"
|
||||||
|
@ -1820,24 +1828,24 @@ type-fest@^0.20.2:
|
||||||
integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
|
integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
|
||||||
|
|
||||||
type-fest@^4.12.0:
|
type-fest@^4.12.0:
|
||||||
version "4.21.0"
|
version "4.25.0"
|
||||||
resolved "https://registry.npmjs.org/type-fest/-/type-fest-4.21.0.tgz"
|
resolved "https://registry.npmjs.org/type-fest/-/type-fest-4.25.0.tgz"
|
||||||
integrity sha512-ADn2w7hVPcK6w1I0uWnM//y1rLXZhzB9mr0a3OirzclKF1Wp6VzevUmzz/NRAWunOT6E8HrnpGY7xOfc6K57fA==
|
integrity sha512-bRkIGlXsnGBRBQRAY56UXBm//9qH4bmJfFvq83gSz41N282df+fjy8ofcEgc1sM8geNt5cl6mC2g9Fht1cs8Aw==
|
||||||
|
|
||||||
typescript@^5.5.2, typescript@>=4.2.0:
|
typescript@^5.5.2, typescript@>=4.2.0:
|
||||||
version "5.5.3"
|
version "5.5.4"
|
||||||
resolved "https://registry.npmjs.org/typescript/-/typescript-5.5.3.tgz"
|
resolved "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz"
|
||||||
integrity sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==
|
integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==
|
||||||
|
|
||||||
ufo@^1.5.3:
|
ufo@^1.5.3:
|
||||||
version "1.5.3"
|
version "1.5.4"
|
||||||
resolved "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz"
|
resolved "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz"
|
||||||
integrity sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==
|
integrity sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==
|
||||||
|
|
||||||
undici-types@~5.26.4:
|
undici-types@~6.19.2:
|
||||||
version "5.26.5"
|
version "6.19.8"
|
||||||
resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz"
|
resolved "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz"
|
||||||
integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==
|
integrity sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==
|
||||||
|
|
||||||
update-browserslist-db@^1.1.0:
|
update-browserslist-db@^1.1.0:
|
||||||
version "1.1.0"
|
version "1.1.0"
|
||||||
|
@ -1903,13 +1911,13 @@ vite-node@^1.2.0:
|
||||||
vite "^5.0.0"
|
vite "^5.0.0"
|
||||||
|
|
||||||
"vite@^4.0.3 || ^5.0.0", "vite@^4.2.0 || ^5.0.0", vite@^5.0.0, vite@^5.0.11, vite@^5.3.1:
|
"vite@^4.0.3 || ^5.0.0", "vite@^4.2.0 || ^5.0.0", vite@^5.0.0, vite@^5.0.11, vite@^5.3.1:
|
||||||
version "5.3.3"
|
version "5.4.11"
|
||||||
resolved "https://registry.npmjs.org/vite/-/vite-5.3.3.tgz"
|
resolved "https://registry.npmjs.org/vite/-/vite-5.4.11.tgz"
|
||||||
integrity sha512-NPQdeCU0Dv2z5fu+ULotpuq5yfCS1BzKUIPhNbP3YBfAMGJXbt2nS+sbTFu+qchaqWTD+H3JK++nRwr6XIcp6A==
|
integrity sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==
|
||||||
dependencies:
|
dependencies:
|
||||||
esbuild "^0.21.3"
|
esbuild "^0.21.3"
|
||||||
postcss "^8.4.39"
|
postcss "^8.4.43"
|
||||||
rollup "^4.13.0"
|
rollup "^4.20.0"
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
fsevents "~2.3.3"
|
fsevents "~2.3.3"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue