diff --git a/lib/format.ts b/lib/format.ts
index ad974ab..c9bd072 100644
--- a/lib/format.ts
+++ b/lib/format.ts
@@ -1,5 +1,4 @@
export function formatBytes(bytes: number) {
- // format bytes in to a readable format like (MB, GB, etc), depending on how big the number is
if (bytes < 1024) {
return `${bytes} B`
}
diff --git a/lib/license.ts b/lib/license.ts
index dbf1bf3..f3955bf 100644
--- a/lib/license.ts
+++ b/lib/license.ts
@@ -3,16 +3,20 @@ import { fetch } from '@tauri-apps/plugin-http'
import { usePersistedStore } from './store'
export async function validateLicense(licenseKey: string) {
+ console.log('[validateLicense]')
+
let id
try {
id = await invoke('get_uid')
} catch (e) {
+ console.error('[validateLicense] failed to build unique identifier')
console.error(JSON.stringify(e))
throw new Error('Failed to build unique identifier. Please try again later.')
}
if (!id) {
+ console.error('[validateLicense] missing unique identifier')
throw new Error('Failed to build unique identifier. Please try again later.')
}
@@ -25,34 +29,41 @@ export async function validateLicense(licenseKey: string) {
})
.then((r) => r.json())
.catch((e) => {
+ console.error('[validateLicense] failed to validate license')
console.error(JSON.stringify(e))
throw new Error('Failed to validate license. Are you connected to the internet?')
})
- // console.log(JSON.stringify(validationResponse))
-
if (validationResponse.error) {
+ console.error('[validateLicense] failed to validate license')
throw new Error(validationResponse.error)
}
if (!validationResponse.valid) {
+ console.error('[validateLicense] invalid license key')
throw new Error('Invalid license key. Please check your license key and try again.')
}
usePersistedStore.setState({ licenseKey, licenseValid: true })
+
+ console.log('[validateLicense] license validated')
}
export async function revokeLicense(licenseKey: string) {
+ console.log('[revokeLicense]')
+
let id
try {
id = await invoke('get_uid')
} catch (e) {
+ console.error('[revokeLicense] failed to build unique identifier')
console.error(JSON.stringify(e))
throw new Error('Failed to build unique identifier. Please try again later.')
}
if (!id) {
+ console.error('[revokeLicense] missing unique identifier')
throw new Error('Failed to build unique identifier. Please try again later.')
}
@@ -65,19 +76,22 @@ export async function revokeLicense(licenseKey: string) {
})
.then((r) => r.json())
.catch((e) => {
+ console.error('[revokeLicense] failed to revoke license, fetch failed')
console.error(JSON.stringify(e))
throw new Error('Failed to revoke license. Are you connected to the internet?')
})
- // console.log(JSON.stringify(revocationResponse))
-
if (revocationResponse.error) {
+ console.error('[revokeLicense] failed to revoke license, has error response')
throw new Error(revocationResponse.error)
}
if (!revocationResponse.revoked) {
+ console.error('[revokeLicense] failed to revoke license, missing revoked response')
throw new Error('Failed to revoke license. Please check your license key and try again.')
}
usePersistedStore.setState({ licenseKey: undefined, licenseValid: false })
+
+ console.log('[revokeLicense] license revoked')
}
diff --git a/lib/menu.ts b/lib/menu.ts
index cd4ec1d..9edafb1 100644
--- a/lib/menu.ts
+++ b/lib/menu.ts
@@ -14,7 +14,6 @@ import { usePersistedStore, useStore } from './store'
import { getLoadingTray, getMainTray, rebuildTrayMenu } from './tray'
import { lockWindows, openFullWindow, openWindow, unlockWindows } from './window'
-// Function to rebuild and update the menu
export async function buildMenu() {
const storeState = useStore.getState()
diff --git a/lib/rclone/api.ts b/lib/rclone/api.ts
index a491844..346ff12 100644
--- a/lib/rclone/api.ts
+++ b/lib/rclone/api.ts
@@ -24,14 +24,17 @@ function getAuthHeader() {
/* DATA */
export async function listRemotes() {
+ console.log('[listRemotes] CALLED')
+
const r = await fetch('http://localhost:5572/config/listremotes', {
method: 'POST',
headers: getAuthHeader(),
- }).then((res) => res.json() as Promise<{ remotes: string[] }>)
- // .catch((e) => {
- // console.log("error", e);
- // throw e;
- // });
+ })
+ .catch((e) => {
+ console.log('error', e)
+ throw e
+ })
+ .then((res) => res.json() as Promise<{ remotes: string[] }>)
if (typeof r?.remotes === 'undefined') {
throw new Error('Failed to fetch remotes')
@@ -41,16 +44,14 @@ export async function listRemotes() {
}
export async function getRemote(remote: string) {
+ console.log('[getRemote]', remote)
+
const r = await fetch(`http://localhost:5572/config/get?name=${remote}`, {
method: 'POST',
headers: getAuthHeader(),
}).then(
(res) => res.json() as Promise<{ type: string } & Record>
)
- // .catch((e) => {
- // console.log("error", e);
- // throw e;
- // });
// console.log(JSON.stringify(r, null, 2))
@@ -61,7 +62,7 @@ export async function updateRemote(
remote: string,
parameters: Record
) {
- console.log('updateRemote', remote, parameters)
+ console.log('[updateRemote]', remote, parameters)
const options = new URLSearchParams()
options.set('name', remote)
@@ -80,7 +81,7 @@ export async function createRemote(
type: string,
parameters: Record
) {
- console.log('createRemote', name, type, parameters)
+ console.log('[createRemote]', name, type, parameters)
const options = new URLSearchParams()
options.set('name', name)
@@ -96,6 +97,8 @@ export async function createRemote(
}
export async function deleteRemote(remote: string) {
+ console.log('[deleteRemote]', remote)
+
await fetch(`http://localhost:5572/config/delete?name=${remote}`, {
method: 'POST',
headers: getAuthHeader(),
@@ -105,6 +108,8 @@ export async function deleteRemote(remote: string) {
}
export async function getMountPoints() {
+ console.log('[getMountPoints]')
+
const r = await fetch('http://localhost:5572/mount/listmounts', {
method: 'POST',
headers: getAuthHeader(),
@@ -115,8 +120,6 @@ export async function getMountPoints() {
}>
)
- // console.log('Mount points:', r)
-
if (!Array.isArray(r?.mountPoints)) {
throw new Error('Failed to get mount points')
}
@@ -125,6 +128,8 @@ export async function getMountPoints() {
}
export async function getBackends() {
+ console.log('[getBackends]')
+
const providers = await fetch('http://localhost:5572/config/providers', {
method: 'POST',
headers: getAuthHeader(),
@@ -149,6 +154,8 @@ export interface ListOptions {
}
export async function listPath(remote: string, path: string = '', options: ListOptions = {}) {
+ console.log('[listPath]', remote, path, options)
+
const params = new URLSearchParams()
params.set('fs', `${remote}:`)
params.set('remote', path)
@@ -190,9 +197,11 @@ export async function listPath(remote: string, path: string = '', options: ListO
return response?.list || []
}
-/* JOBS */
+/* JOBS */
export async function listJobs() {
+ console.log('[listJobs]')
+
const allStats = await fetch('http://localhost:5572/core/stats', {
method: 'POST',
headers: getAuthHeader(),
@@ -273,6 +282,8 @@ export async function listJobs() {
}
export async function stopJob(jobId: number) {
+ console.log('[stopJob]', jobId)
+
await fetch(`http://localhost:5572/job/stopgroup?group=job/${jobId}`, {
method: 'POST',
headers: getAuthHeader(),
@@ -291,6 +302,8 @@ export async function mountRemote({
mountOptions?: Record
vfsOptions?: Record
}) {
+ console.log('[mountRemote]', remotePath, mountPoint)
+
const options = new URLSearchParams()
options.set('fs', remotePath)
options.set('mountPoint', mountPoint)
@@ -325,6 +338,8 @@ export async function unmountRemote({
}: {
mountPoint: string
}) {
+ console.log('[unmountRemote]', mountPoint)
+
const options = new URLSearchParams()
options.set('mountPoint', mountPoint)
@@ -338,8 +353,6 @@ export async function unmountRemote({
throw e
})
- // console.log('unmountRemote', JSON.stringify(r, null, 2))
-
if ('error' in r) {
throw new Error(r.error)
}
@@ -348,6 +361,8 @@ export async function unmountRemote({
}
export async function unmountAllRemotes() {
+ console.log('[unmountAllRemotes]')
+
const r = await fetch('http://localhost:5572/mount/unmountall', {
method: 'POST',
headers: getAuthHeader(),
@@ -358,8 +373,6 @@ export async function unmountAllRemotes() {
throw e
})
- console.log('unmountAllRemotes', r)
-
if ('error' in r) {
throw new Error(r.error)
}
@@ -452,6 +465,8 @@ export async function startSync({
/* FLAGS */
export async function getGlobalFlags() {
+ console.log('[getGlobalFlags]')
+
const r = await fetch('http://localhost:5572/options/get', {
method: 'POST',
headers: getAuthHeader(),
@@ -461,6 +476,8 @@ export async function getGlobalFlags() {
}
export async function getCopyFlags() {
+ console.log('[getCopyFlags]')
+
const r = await fetch('http://localhost:5572/options/info', {
method: 'POST',
headers: getAuthHeader(),
@@ -476,6 +493,8 @@ export async function getCopyFlags() {
}
export async function getSyncFlags() {
+ console.log('[getSyncFlags]')
+
const r = await fetch('http://localhost:5572/options/info', {
method: 'POST',
headers: getAuthHeader(),
@@ -494,6 +513,8 @@ export async function getSyncFlags() {
}
export async function getFilterFlags() {
+ console.log('[getFilterFlags]')
+
const r = await fetch('http://localhost:5572/options/info', {
method: 'POST',
headers: getAuthHeader(),
@@ -508,6 +529,8 @@ export async function getFilterFlags() {
}
export async function getVfsFlags() {
+ console.log('[getVfsFlags]')
+
const r = await fetch('http://localhost:5572/options/info', {
method: 'POST',
headers: getAuthHeader(),
@@ -523,6 +546,8 @@ export async function getVfsFlags() {
}
export async function getMountFlags() {
+ console.log('[getMountFlags]')
+
const r = await fetch('http://localhost:5572/options/info', {
method: 'POST',
headers: getAuthHeader(),
diff --git a/lib/rclone/init.ts b/lib/rclone/init.ts
index 0b29108..72618f9 100644
--- a/lib/rclone/init.ts
+++ b/lib/rclone/init.ts
@@ -39,9 +39,10 @@ export async function initRclone() {
* @returns {Promise} True if rclone is installed and working
*/
export async function isSystemRcloneInstalled() {
+ console.log('[isSystemRcloneInstalled]')
+
try {
const output = await Command.create('rclone-system').execute()
- // console.log('[isSystemRcloneInstalled] output', output)
return (
output.stdout.includes('Available commands') ||
output.stderr.includes('Available commands')
@@ -56,6 +57,8 @@ export async function isSystemRcloneInstalled() {
* @returns {Promise} True if downloaded rclone is present and working
*/
export async function isInternalRcloneInstalled() {
+ console.log('[isInternalRcloneInstalled]')
+
try {
const output = await Command.create('rclone-internal').execute()
// console.log('[isInternalRcloneInstalled] output', output)
@@ -74,18 +77,21 @@ export async function isInternalRcloneInstalled() {
* @returns {Promise}
*/
export async function provisionRclone() {
+ console.log('[provisionRclone]')
+
const currentVersionString = await fetch('https://downloads.rclone.org/version.txt').then(
(res) => res.text()
)
- console.log('currentVersionString', currentVersionString)
+ console.log('[provisionRclone] currentVersionString', currentVersionString)
const currentVersion = currentVersionString.split('v')?.[1]?.trim()
if (!currentVersion) {
- console.error('Failed to get latest version')
+ console.error('[provisionRclone] failed to get latest version')
+ await message('Failed to get latest rclone version, please try again later.')
return
}
- console.log('currentVersion', currentVersion)
+ console.log('[provisionRclone] currentVersion', currentVersion)
const currentPlatform = platform()
console.log('currentPlatform', currentPlatform)
@@ -97,29 +103,31 @@ export async function provisionRclone() {
if (tempDirPath.endsWith('/') || tempDirPath.endsWith('\\')) {
tempDirPath = tempDirPath.slice(0, -1)
}
- console.log('tempDirPath', tempDirPath)
+ console.log('[provisionRclone] tempDirPath', tempDirPath)
const arch = (await invoke('get_arch')) as 'arm64' | 'amd64' | '386' | 'unknown'
- console.log('arch', arch)
+ console.log('[provisionRclone] arch', arch)
if (arch === 'unknown') {
- throw new Error('Failed to get architecture, please try again later.')
+ console.error('[provisionRclone] failed to get architecture')
+ await message('Failed to get current arch, please try again later.')
+ return
}
const downloadUrl = `https://downloads.rclone.org/v${currentVersion}/rclone-v${currentVersion}-${currentOs}-${arch}.zip`
- console.log('downloadUrl', downloadUrl)
+ console.log('[provisionRclone] downloadUrl', downloadUrl)
const downloadedFile = await fetch(downloadUrl).then((res) => res.arrayBuffer())
- console.log('downloadedFile')
+ console.log('[provisionRclone] downloadedFile')
let tempDirExists
try {
tempDirExists = await exists('rclone', {
baseDir: BaseDirectory.Temp,
})
- console.log('tempDirExists', tempDirExists)
+ console.log('[provisionRclone] tempDirExists', tempDirExists)
} catch (error) {
- console.error('Failed to check if rclone temp dir exists', error)
+ console.error('[provisionRclone] failed to check if rclone temp dir exists', error)
}
if (tempDirExists) {
@@ -128,9 +136,9 @@ export async function provisionRclone() {
recursive: true,
baseDir: BaseDirectory.Temp,
})
- console.log('removed rclone temp dir')
+ console.log('[provisionRclone] removed rclone temp dir')
} catch (error) {
- console.error('Failed to remove rclone temp dir', error)
+ console.error('[provisionRclone] failed to remove rclone temp dir', error)
await message('Failed to provision rclone.')
return
}
@@ -140,21 +148,21 @@ export async function provisionRclone() {
await mkdir('rclone', {
baseDir: BaseDirectory.Temp,
})
- console.log('created rclone temp dir')
+ console.log('[provisionRclone] created rclone temp dir')
} catch (error) {
- console.error('Failed to create rclone temp dir', error)
+ console.error('[provisionRclone] failed to create rclone temp dir', error)
await message('Failed to provision rclone.')
return
}
const zipPath = `${tempDirPath}/rclone/rclone-v${currentVersion}-${currentOs}-${arch}.zip`
- console.log('zipPath', zipPath)
+ console.log('[provisionRclone] zipPath', zipPath)
try {
await writeFile(zipPath, new Uint8Array(downloadedFile))
- console.log('wrote zip file')
+ console.log('[provisionRclone] wrote zip file')
} catch (error) {
- console.error('Failed to write zip file', error)
+ console.error('[provisionRclone] failed to write zip file', error)
await message('Failed to provision rclone.')
return
}
@@ -164,48 +172,48 @@ export async function provisionRclone() {
zipPath,
outputFolder: `${tempDirPath}/rclone/rclone-ui`,
})
- console.log('Successfully unzipped file')
+ console.log('[provisionRclone] successfully unzipped file')
} catch (error) {
- console.error('Failed to unzip file', error)
+ console.error('[provisionRclone] failed to unzip file', error)
await message('Failed to provision rclone.')
return
}
const unarchivedPath = `${tempDirPath}/rclone/rclone-ui/rclone-v${currentVersion}-${currentOs}-${arch}`
- console.log('unarchivedPath', unarchivedPath)
+ console.log('[provisionRclone] unarchivedPath', unarchivedPath)
const binaryName = currentPlatform === 'windows' ? 'rclone.exe' : 'rclone'
// "/" here looks to be working on windows
const rcloneBinaryPath = unarchivedPath + '/' + binaryName
- console.log('rcloneBinaryPath', rcloneBinaryPath)
+ console.log('[provisionRclone] rcloneBinaryPath', rcloneBinaryPath)
try {
const binaryExists = await exists(rcloneBinaryPath)
- console.log('rcloneBinaryPathExists', binaryExists)
+ console.log('[provisionRclone] rcloneBinaryPathExists', binaryExists)
if (!binaryExists) {
throw new Error('Could not find rclone binary in zip')
}
} catch (error) {
- console.error('Failed to check if rclone binary exists', error)
- throw new Error('Could not find rclone binary in zip')
+ console.error('[provisionRclone] failed to check if rclone binary exists', error)
+ await message('Failed to provision rclone.')
}
const appLocalDataDirPath = await appLocalDataDir()
- console.log('appLocalDataDirPath', appLocalDataDirPath)
+ console.log('[provisionRclone] appLocalDataDirPath', appLocalDataDirPath)
const appLocalDataDirPathExists = await exists(appLocalDataDirPath)
- console.log('appLocalDataDirPathExists', appLocalDataDirPathExists)
+ console.log('[provisionRclone] appLocalDataDirPathExists', appLocalDataDirPathExists)
if (!appLocalDataDirPathExists) {
await mkdir(appLocalDataDirPath, {
recursive: true,
})
- console.log('appLocalDataDirPath created')
+ console.log('[provisionRclone] appLocalDataDirPath created')
}
await copyFile(rcloneBinaryPath, `${appLocalDataDirPath}/${binaryName}`)
- console.log('copied rclone binary')
+ console.log('[provisionRclone] copied rclone binary')
const hasInstalled = await isInternalRcloneInstalled()
@@ -213,5 +221,6 @@ export async function provisionRclone() {
throw new Error('Failed to install rclone')
}
- console.log('rclone has been installed')
+ console.log('[provisionRclone] rclone has been installed')
+
}
diff --git a/lib/rclone/mount.ts b/lib/rclone/mount.ts
index d30cd60..2c988a6 100644
--- a/lib/rclone/mount.ts
+++ b/lib/rclone/mount.ts
@@ -8,13 +8,15 @@ import { exit } from '@tauri-apps/plugin-process'
import { Command } from '@tauri-apps/plugin-shell'
export async function needsMountPlugin() {
+ console.log('[needsMountPlugin]')
+
const currentPlatform = platform()
if (currentPlatform === 'macos') {
// check fuse-t or osxfuse
const hasFuseT = await exists('/Library/Application Support/fuse-t')
- console.log('hasFuseT', hasFuseT)
+ console.log('[needsMountPlugin] hasFuseT', hasFuseT)
const hasOsxFuse = await exists('/Library/Filesystems/macfuse.fs')
- console.log('hasOsxFuse', hasOsxFuse)
+ console.log('[needsMountPlugin] hasOsxFuse', hasOsxFuse)
return !hasFuseT && !hasOsxFuse
}
if (currentPlatform === 'windows') {
@@ -22,13 +24,15 @@ export async function needsMountPlugin() {
const hasWinFsp =
(await exists('C:\\Program Files\\WinFsp')) ||
(await exists('C:\\Program Files (x86)\\WinFsp'))
- console.log('hasWinFsp', hasWinFsp)
+ console.log('[needsMountPlugin] hasWinFsp', hasWinFsp)
return !hasWinFsp
}
return false
}
export async function dialogGetMountPlugin() {
+ console.log('[dialogGetMountPlugin]')
+
const currentPlatform = platform()
if (currentPlatform === 'macos') {
// download fuse-t or osxfuse
@@ -75,13 +79,12 @@ export async function dialogGetMountPlugin() {
}
export async function unmount(mountPoint: string, force = false) {
+ console.log('[unmount]', mountPoint, force)
+
const command = Command.create('umount', [force ? '-f' : '', mountPoint])
const output = await command.execute()
- // console.log('output')
- // console.log(JSON.stringify(output, null, 2))
-
if (output.code !== 0) {
if (output.stderr.toLowerCase().includes('busy')) {
const answer = await ask('This resource is busy, do you wish to force unmount?', {
@@ -97,9 +100,11 @@ export async function unmount(mountPoint: string, force = false) {
}
if (output.stderr.toLowerCase().includes('not currently mounted')) {
+ console.error('[unmount] not currently mounted')
return
}
+ console.error('[unmount] failed to unmount', output.stderr)
throw new Error(output.stderr)
}
diff --git a/lib/tray.ts b/lib/tray.ts
index 728949d..3d55776 100644
--- a/lib/tray.ts
+++ b/lib/tray.ts
@@ -24,19 +24,23 @@ export async function triggerTrayRebuild() {
})
}
-// Function to update the tray menu
export async function rebuildTrayMenu() {
+ console.log('[rebuildTrayMenu]')
+
const tray = await getMainTray()
if (!tray) {
+ console.error('[rebuildTrayMenu] tray not found')
return
}
const newMenu = await buildMenu()
await tray.setMenu(newMenu)
+
+ console.log('[rebuildTrayMenu] tray menu rebuilt')
}
async function onTrayAction(event: TrayIconEvent) {
if (event.type === 'Click') {
- console.log('Tray clicked:', event)
+ console.log('[onTrayAction] tray clicked:', event)
await resetMainWindow()
}
@@ -45,12 +49,12 @@ async function onTrayAction(event: TrayIconEvent) {
// Initialize the tray
export async function initTray(): Promise {
try {
- console.log('initTray')
+ console.log('[initTray]')
const menu = await buildMenu()
- console.log('built menu')
+ console.log('[initTray] built menu')
await TrayIcon.getById('loading-tray').then((t) => t?.setVisible(false))
- console.log('set loading tray to false')
+ console.log('[initTray] set loading tray to false')
await TrayIcon.new({
id: 'main-tray',
@@ -61,13 +65,18 @@ export async function initTray(): Promise {
action: onTrayAction,
})
} catch (error) {
- console.error('Failed to create tray')
+ console.error('[initTray] failed to create tray')
console.error(error)
}
}
export async function initLoadingTray() {
- if (platform() === 'linux') return
+ console.log('[initLoadingTray]')
+
+ if (platform() === 'linux') {
+ console.log('[initLoadingTray] platform is linux, skipping')
+ return
+ }
const globeIconPath = await resolveResource('icons/favicon/frame_00_delay-0.1s.png')
@@ -104,6 +113,6 @@ export async function initLoadingTray() {
`icons/favicon/frame_${currentIcon < 10 ? '0' : ''}${currentIcon}_delay-0.1s.png`
)
await loadingTray?.setIcon(globeIconPath)
- currentIcon = currentIcon + 1
+ currentIcon += 1
}, 200)
}
diff --git a/lib/window.ts b/lib/window.ts
index 6d8b755..f8f534e 100644
--- a/lib/window.ts
+++ b/lib/window.ts
@@ -21,6 +21,8 @@ export async function openFullWindow({
name: string
url: string
}) {
+ console.log('[openFullWindow]')
+
const w = new WebviewWindow(name, {
height: 0,
width: 0,
@@ -36,7 +38,10 @@ export async function openFullWindow({
const size = await currentMonitor().then((m) => m?.size)
- if (!size) return
+ if (!size) {
+ console.error('[openFullWindow] no monitor found')
+ throw new Error('No monitor found')
+ }
if (platform() === 'windows') {
// windows merges the space for the taskbar
@@ -55,14 +60,16 @@ export async function openFullWindow({
export async function openWindow({
name,
url,
- width = 740,
- height = 600,
+ width = 820,
+ height = 700,
}: {
name: string
url: string
width?: number
height?: number
}) {
+ console.log('[openWindow]')
+
const isFirstWindow = useStore.getState().firstWindow
const w = new WebviewWindow(name, {
diff --git a/main.ts b/main.ts
index 6377ae4..c29fe53 100644
--- a/main.ts
+++ b/main.ts
@@ -86,9 +86,11 @@ async function validateInstance() {
}
async function startRclone() {
+ console.log('[startRclone]')
+
try {
const remotes = await listRemotes()
- console.log('rclone rcd already running')
+ console.log('[startRclone] rclone rcd already running')
useStore.setState({ rcloneLoaded: true })
useStore.setState({ remotes: remotes })
return
@@ -99,7 +101,7 @@ async function startRclone() {
try {
rclone = await initRclone()
} catch (error) {
- await ask(error.message || 'Failed to provision rclone, please try again later.', {
+ await ask(error.message || 'Failed to start rclone, please try again later.', {
title: 'Error',
kind: 'error',
okLabel: 'Exit',
@@ -149,11 +151,12 @@ async function startRclone() {
console.log('error', event)
})
- console.log('running rclone')
+ console.log('[startRclone] starting rclone')
const childProcess = await command.spawn()
+ console.log('[startRclone] running rclone')
getCurrentWindow().listen('close-app', async (e) => {
- console.log('(main) window close-app requested')
+ console.log('[startRclone] (main) window close-app requested')
if (rclone.system) {
const answer = await ask('Unmount all remotes before exiting?', {
@@ -169,13 +172,15 @@ async function startRclone() {
await childProcess.kill()
})
+ console.log('[startRclone] set listener for close-app')
await new Promise((resolve) => setTimeout(resolve, 200))
useStore.setState({ rcloneLoaded: true })
+ console.log('[startRclone] listing remotes')
const remotes = await listRemotes()
- console.log('remotes', remotes)
+ console.log('[startRclone] got remotes')
useStore.setState({ remotes: remotes })
// console.log('childProcess', JSON.stringify(childProcess)) // prints `pid`
@@ -210,6 +215,17 @@ async function startupMounts() {
}
}
+async function onboardUser() {
+ const firstOpen = usePersistedStore.getState().isFirstOpen
+ if (firstOpen) {
+ await message('Rclone has initialized, you can now find it in the tray menu!', {
+ title: 'Welcome to Rclone UI',
+ kind: 'info',
+ okLabel: 'Got it',
+ })
+ usePersistedStore.setState({ isFirstOpen: false })
+ }
+}
getCurrentWindow().listen('tauri://close-requested', async (e) => {
console.log('(main) window close requested')
})
@@ -235,17 +251,7 @@ initLoadingTray()
.then(() => waitForHydration())
.then(() => validateInstance())
.then(() => startRclone())
- .then(async () => {
- const firstOpen = usePersistedStore.getState().isFirstOpen
- if (firstOpen) {
- await message('Rclone has initialized, you can now find it in the tray menu!', {
- title: 'Welcome',
- kind: 'info',
- okLabel: 'Got it',
- })
- usePersistedStore.setState({ isFirstOpen: false })
- }
- })
+ .then(() => onboardUser())
.then(() => startupMounts())
.then(() => initTray())
.catch(console.error)
diff --git a/package-lock.json b/package-lock.json
index 8af34fe..0c9a7ff 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -8,43 +8,46 @@
"name": "s-tray",
"version": "1.0.4",
"dependencies": {
- "@nextui-org/react": "^2.6.11",
- "@tauri-apps/api": "~2.2.0",
- "@tauri-apps/plugin-autostart": "^2.2.0",
- "@tauri-apps/plugin-dialog": "^2.2.0",
- "@tauri-apps/plugin-fs": "^2.2.0",
- "@tauri-apps/plugin-http": "^2.2.0",
- "@tauri-apps/plugin-log": "^2.2.0",
- "@tauri-apps/plugin-notification": "^2.2.1",
- "@tauri-apps/plugin-opener": "^2.2.5",
- "@tauri-apps/plugin-os": "^2.2.0",
- "@tauri-apps/plugin-process": "^2.2.0",
- "@tauri-apps/plugin-shell": "^2.2.0",
- "@tauri-apps/plugin-store": "^2.2.0",
- "@tauri-apps/plugin-updater": "^2.4.0",
- "@tauri-apps/plugin-window-state": "^2.2.0",
- "framer-motion": "^11.17.0",
- "lucide-react": "^0.471.0",
+ "@heroui/react": "^2.7.11",
+ "@tauri-apps/api": "~2.7.0",
+ "@tauri-apps/plugin-autostart": "^2.5.0",
+ "@tauri-apps/plugin-dialog": "^2.3.2",
+ "@tauri-apps/plugin-fs": "^2.4.1",
+ "@tauri-apps/plugin-http": "^2.5.1",
+ "@tauri-apps/plugin-log": "^2.6.0",
+ "@tauri-apps/plugin-notification": "^2.3.0",
+ "@tauri-apps/plugin-opener": "^2.4.0",
+ "@tauri-apps/plugin-os": "^2.3.0",
+ "@tauri-apps/plugin-process": "^2.3.0",
+ "@tauri-apps/plugin-shell": "^2.3.0",
+ "@tauri-apps/plugin-store": "^2.3.0",
+ "@tauri-apps/plugin-updater": "^2.9.0",
+ "@tauri-apps/plugin-window-state": "^2.4.0",
+ "cron-parser": "^5.3.0",
+ "cronstrue": "^3.2.0",
+ "date-fns": "^4.1.0",
+ "framer-motion": "^11.18.2",
+ "lucide-react": "^0.536.0",
"p-retry": "^6.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.1",
- "use-broadcast-ts": "^2.0.0",
- "zustand": "^5.0.3"
+ "use-broadcast-ts": "^2.0.1",
+ "zustand": "^5.0.7"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
- "@tauri-apps/cli": "~2.2.5",
+ "@tauri-apps/cli": "~2.7.1",
"@types/node": "^22.10.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
- "@vitejs/plugin-react": "^4.3.4",
- "autoprefixer": "^10.4.20",
- "esbuild": "^0.24.2",
- "postcss": "^8.4.49",
+ "@vitejs/plugin-react": "^4.7.0",
+ "autoprefixer": "^10.4.21",
+ "esbuild": "^0.25.8",
+ "postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
- "vite": "^6.0.3"
+ "vite": "^6.3.5"
}
},
"node_modules/@alloc/quick-lru": {
@@ -63,6 +66,7 @@
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dev": true,
+ "license": "Apache-2.0",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.24"
@@ -72,44 +76,47 @@
}
},
"node_modules/@babel/code-frame": {
- "version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
- "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
+ "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/helper-validator-identifier": "^7.25.9",
+ "@babel/helper-validator-identifier": "^7.27.1",
"js-tokens": "^4.0.0",
- "picocolors": "^1.0.0"
+ "picocolors": "^1.1.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
- "version": "7.26.3",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz",
- "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==",
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz",
+ "integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz",
- "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==",
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz",
+ "integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"@ampproject/remapping": "^2.2.0",
- "@babel/code-frame": "^7.26.0",
- "@babel/generator": "^7.26.0",
- "@babel/helper-compilation-targets": "^7.25.9",
- "@babel/helper-module-transforms": "^7.26.0",
- "@babel/helpers": "^7.26.0",
- "@babel/parser": "^7.26.0",
- "@babel/template": "^7.25.9",
- "@babel/traverse": "^7.25.9",
- "@babel/types": "^7.26.0",
+ "@babel/code-frame": "^7.27.1",
+ "@babel/generator": "^7.28.0",
+ "@babel/helper-compilation-targets": "^7.27.2",
+ "@babel/helper-module-transforms": "^7.27.3",
+ "@babel/helpers": "^7.27.6",
+ "@babel/parser": "^7.28.0",
+ "@babel/template": "^7.27.2",
+ "@babel/traverse": "^7.28.0",
+ "@babel/types": "^7.28.0",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
@@ -125,15 +132,16 @@
}
},
"node_modules/@babel/generator": {
- "version": "7.26.3",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz",
- "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==",
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz",
+ "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/parser": "^7.26.3",
- "@babel/types": "^7.26.3",
- "@jridgewell/gen-mapping": "^0.3.5",
- "@jridgewell/trace-mapping": "^0.3.25",
+ "@babel/parser": "^7.28.0",
+ "@babel/types": "^7.28.0",
+ "@jridgewell/gen-mapping": "^0.3.12",
+ "@jridgewell/trace-mapping": "^0.3.28",
"jsesc": "^3.0.2"
},
"engines": {
@@ -141,13 +149,14 @@
}
},
"node_modules/@babel/helper-compilation-targets": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz",
- "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==",
+ "version": "7.27.2",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
+ "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/compat-data": "^7.25.9",
- "@babel/helper-validator-option": "^7.25.9",
+ "@babel/compat-data": "^7.27.2",
+ "@babel/helper-validator-option": "^7.27.1",
"browserslist": "^4.24.0",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
@@ -156,28 +165,40 @@
"node": ">=6.9.0"
}
},
- "node_modules/@babel/helper-module-imports": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
- "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
+ "node_modules/@babel/helper-globals": {
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
+ "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
"dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
+ "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
+ "dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/traverse": "^7.25.9",
- "@babel/types": "^7.25.9"
+ "@babel/traverse": "^7.27.1",
+ "@babel/types": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
- "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
+ "version": "7.27.3",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz",
+ "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/helper-module-imports": "^7.25.9",
- "@babel/helper-validator-identifier": "^7.25.9",
- "@babel/traverse": "^7.25.9"
+ "@babel/helper-module-imports": "^7.27.1",
+ "@babel/helper-validator-identifier": "^7.27.1",
+ "@babel/traverse": "^7.27.3"
},
"engines": {
"node": ">=6.9.0"
@@ -187,61 +208,67 @@
}
},
"node_modules/@babel/helper-plugin-utils": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz",
- "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==",
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
+ "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
- "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
+ "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
- "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
+ "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
- "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
+ "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz",
- "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==",
+ "version": "7.28.2",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.2.tgz",
+ "integrity": "sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/template": "^7.25.9",
- "@babel/types": "^7.26.0"
+ "@babel/template": "^7.27.2",
+ "@babel/types": "^7.28.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
- "version": "7.26.3",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz",
- "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==",
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz",
+ "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/types": "^7.26.3"
+ "@babel/types": "^7.28.0"
},
"bin": {
"parser": "bin/babel-parser.js"
@@ -251,12 +278,13 @@
}
},
"node_modules/@babel/plugin-transform-react-jsx-self": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz",
- "integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==",
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
+ "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.25.9"
+ "@babel/helper-plugin-utils": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
@@ -266,12 +294,13 @@
}
},
"node_modules/@babel/plugin-transform-react-jsx-source": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz",
- "integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==",
+ "version": "7.27.1",
+ "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
+ "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/helper-plugin-utils": "^7.25.9"
+ "@babel/helper-plugin-utils": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
@@ -281,56 +310,57 @@
}
},
"node_modules/@babel/runtime": {
- "version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz",
- "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==",
- "dependencies": {
- "regenerator-runtime": "^0.14.0"
- },
+ "version": "7.28.2",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.2.tgz",
+ "integrity": "sha512-KHp2IflsnGywDjBWDkR9iEqiWSpc8GIi0lgTT3mOElT0PP1tG26P4tmFI2YvAdzgq9RGyoHZQEIEdZy6Ec5xCA==",
+ "license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
- "version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz",
- "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==",
+ "version": "7.27.2",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
+ "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.25.9",
- "@babel/parser": "^7.25.9",
- "@babel/types": "^7.25.9"
+ "@babel/code-frame": "^7.27.1",
+ "@babel/parser": "^7.27.2",
+ "@babel/types": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
- "version": "7.26.4",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz",
- "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==",
+ "version": "7.28.0",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz",
+ "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/code-frame": "^7.26.2",
- "@babel/generator": "^7.26.3",
- "@babel/parser": "^7.26.3",
- "@babel/template": "^7.25.9",
- "@babel/types": "^7.26.3",
- "debug": "^4.3.1",
- "globals": "^11.1.0"
+ "@babel/code-frame": "^7.27.1",
+ "@babel/generator": "^7.28.0",
+ "@babel/helper-globals": "^7.28.0",
+ "@babel/parser": "^7.28.0",
+ "@babel/template": "^7.27.2",
+ "@babel/types": "^7.28.0",
+ "debug": "^4.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
- "version": "7.26.3",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz",
- "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==",
+ "version": "7.28.2",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz",
+ "integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/helper-string-parser": "^7.25.9",
- "@babel/helper-validator-identifier": "^7.25.9"
+ "@babel/helper-string-parser": "^7.27.1",
+ "@babel/helper-validator-identifier": "^7.27.1"
},
"engines": {
"node": ">=6.9.0"
@@ -492,13 +522,14 @@
}
},
"node_modules/@esbuild/aix-ppc64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz",
- "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.8.tgz",
+ "integrity": "sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==",
"cpu": [
"ppc64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"aix"
@@ -508,13 +539,14 @@
}
},
"node_modules/@esbuild/android-arm": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz",
- "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.8.tgz",
+ "integrity": "sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==",
"cpu": [
"arm"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"android"
@@ -524,13 +556,14 @@
}
},
"node_modules/@esbuild/android-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz",
- "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.8.tgz",
+ "integrity": "sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"android"
@@ -540,13 +573,14 @@
}
},
"node_modules/@esbuild/android-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz",
- "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.8.tgz",
+ "integrity": "sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"android"
@@ -556,13 +590,14 @@
}
},
"node_modules/@esbuild/darwin-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz",
- "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.8.tgz",
+ "integrity": "sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"darwin"
@@ -572,13 +607,14 @@
}
},
"node_modules/@esbuild/darwin-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz",
- "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.8.tgz",
+ "integrity": "sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"darwin"
@@ -588,13 +624,14 @@
}
},
"node_modules/@esbuild/freebsd-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz",
- "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.8.tgz",
+ "integrity": "sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"freebsd"
@@ -604,13 +641,14 @@
}
},
"node_modules/@esbuild/freebsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz",
- "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.8.tgz",
+ "integrity": "sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"freebsd"
@@ -620,13 +658,14 @@
}
},
"node_modules/@esbuild/linux-arm": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz",
- "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.8.tgz",
+ "integrity": "sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==",
"cpu": [
"arm"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -636,13 +675,14 @@
}
},
"node_modules/@esbuild/linux-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz",
- "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.8.tgz",
+ "integrity": "sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -652,13 +692,14 @@
}
},
"node_modules/@esbuild/linux-ia32": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz",
- "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.8.tgz",
+ "integrity": "sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==",
"cpu": [
"ia32"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -668,13 +709,14 @@
}
},
"node_modules/@esbuild/linux-loong64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz",
- "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.8.tgz",
+ "integrity": "sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==",
"cpu": [
"loong64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -684,13 +726,14 @@
}
},
"node_modules/@esbuild/linux-mips64el": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz",
- "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.8.tgz",
+ "integrity": "sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==",
"cpu": [
"mips64el"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -700,13 +743,14 @@
}
},
"node_modules/@esbuild/linux-ppc64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz",
- "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.8.tgz",
+ "integrity": "sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==",
"cpu": [
"ppc64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -716,13 +760,14 @@
}
},
"node_modules/@esbuild/linux-riscv64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz",
- "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.8.tgz",
+ "integrity": "sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==",
"cpu": [
"riscv64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -732,13 +777,14 @@
}
},
"node_modules/@esbuild/linux-s390x": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz",
- "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.8.tgz",
+ "integrity": "sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==",
"cpu": [
"s390x"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -748,13 +794,14 @@
}
},
"node_modules/@esbuild/linux-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz",
- "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.8.tgz",
+ "integrity": "sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
@@ -764,13 +811,14 @@
}
},
"node_modules/@esbuild/netbsd-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz",
- "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.8.tgz",
+ "integrity": "sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"netbsd"
@@ -780,13 +828,14 @@
}
},
"node_modules/@esbuild/netbsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz",
- "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.8.tgz",
+ "integrity": "sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"netbsd"
@@ -796,13 +845,14 @@
}
},
"node_modules/@esbuild/openbsd-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz",
- "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.8.tgz",
+ "integrity": "sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"openbsd"
@@ -812,13 +862,14 @@
}
},
"node_modules/@esbuild/openbsd-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz",
- "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.8.tgz",
+ "integrity": "sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"openbsd"
@@ -827,14 +878,32 @@
"node": ">=18"
}
},
+ "node_modules/@esbuild/openharmony-arm64": {
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.8.tgz",
+ "integrity": "sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ],
+ "engines": {
+ "node": ">=18"
+ }
+ },
"node_modules/@esbuild/sunos-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz",
- "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.8.tgz",
+ "integrity": "sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"sunos"
@@ -844,13 +913,14 @@
}
},
"node_modules/@esbuild/win32-arm64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz",
- "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.8.tgz",
+ "integrity": "sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"win32"
@@ -860,13 +930,14 @@
}
},
"node_modules/@esbuild/win32-ia32": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz",
- "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.8.tgz",
+ "integrity": "sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==",
"cpu": [
"ia32"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"win32"
@@ -876,13 +947,14 @@
}
},
"node_modules/@esbuild/win32-x64": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz",
- "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.8.tgz",
+ "integrity": "sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"win32"
@@ -892,80 +964,1580 @@
}
},
"node_modules/@formatjs/ecma402-abstract": {
- "version": "2.3.2",
- "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.3.2.tgz",
- "integrity": "sha512-6sE5nyvDloULiyOMbOTJEEgWL32w+VHkZQs8S02Lnn8Y/O5aQhjOEXwWzvR7SsBE/exxlSpY2EsWZgqHbtLatg==",
+ "version": "2.3.4",
+ "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-2.3.4.tgz",
+ "integrity": "sha512-qrycXDeaORzIqNhBOx0btnhpD1c+/qFIHAN9znofuMJX6QBwtbrmlpWfD4oiUUD2vJUOIYFA/gYtg2KAMGG7sA==",
+ "license": "MIT",
"dependencies": {
- "@formatjs/fast-memoize": "2.2.6",
- "@formatjs/intl-localematcher": "0.5.10",
- "decimal.js": "10",
- "tslib": "2"
+ "@formatjs/fast-memoize": "2.2.7",
+ "@formatjs/intl-localematcher": "0.6.1",
+ "decimal.js": "^10.4.3",
+ "tslib": "^2.8.0"
}
},
"node_modules/@formatjs/fast-memoize": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.6.tgz",
- "integrity": "sha512-luIXeE2LJbQnnzotY1f2U2m7xuQNj2DA8Vq4ce1BY9ebRZaoPB1+8eZ6nXpLzsxuW5spQxr7LdCg+CApZwkqkw==",
+ "version": "2.2.7",
+ "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.7.tgz",
+ "integrity": "sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ==",
+ "license": "MIT",
"dependencies": {
- "tslib": "2"
+ "tslib": "^2.8.0"
}
},
"node_modules/@formatjs/icu-messageformat-parser": {
- "version": "2.9.8",
- "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.9.8.tgz",
- "integrity": "sha512-hZlLNI3+Lev8IAXuwehLoN7QTKqbx3XXwFW1jh0AdIA9XJdzn9Uzr+2LLBspPm/PX0+NLIfykj/8IKxQqHUcUQ==",
+ "version": "2.11.2",
+ "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.11.2.tgz",
+ "integrity": "sha512-AfiMi5NOSo2TQImsYAg8UYddsNJ/vUEv/HaNqiFjnI3ZFfWihUtD5QtuX6kHl8+H+d3qvnE/3HZrfzgdWpsLNA==",
+ "license": "MIT",
"dependencies": {
- "@formatjs/ecma402-abstract": "2.3.2",
- "@formatjs/icu-skeleton-parser": "1.8.12",
- "tslib": "2"
+ "@formatjs/ecma402-abstract": "2.3.4",
+ "@formatjs/icu-skeleton-parser": "1.8.14",
+ "tslib": "^2.8.0"
}
},
"node_modules/@formatjs/icu-skeleton-parser": {
- "version": "1.8.12",
- "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.12.tgz",
- "integrity": "sha512-QRAY2jC1BomFQHYDMcZtClqHR55EEnB96V7Xbk/UiBodsuFc5kujybzt87+qj1KqmJozFhk6n4KiT1HKwAkcfg==",
+ "version": "1.8.14",
+ "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.8.14.tgz",
+ "integrity": "sha512-i4q4V4qslThK4Ig8SxyD76cp3+QJ3sAqr7f6q9VVfeGtxG9OhiAk3y9XF6Q41OymsKzsGQ6OQQoJNY4/lI8TcQ==",
+ "license": "MIT",
"dependencies": {
- "@formatjs/ecma402-abstract": "2.3.2",
- "tslib": "2"
+ "@formatjs/ecma402-abstract": "2.3.4",
+ "tslib": "^2.8.0"
}
},
"node_modules/@formatjs/intl-localematcher": {
- "version": "0.5.10",
- "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.10.tgz",
- "integrity": "sha512-af3qATX+m4Rnd9+wHcjJ4w2ijq+rAVP3CCinJQvFv1kgSu1W6jypUmvleJxcewdxmutM8dmIRZFxO/IQBZmP2Q==",
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.6.1.tgz",
+ "integrity": "sha512-ePEgLgVCqi2BBFnTMWPfIghu6FkbZnnBVhO2sSxvLfrdFw7wCHAHiDoM2h4NRgjbaY7+B7HgOLZGkK187pZTZg==",
+ "license": "MIT",
"dependencies": {
- "tslib": "2"
+ "tslib": "^2.8.0"
+ }
+ },
+ "node_modules/@heroui/accordion": {
+ "version": "2.2.19",
+ "resolved": "https://registry.npmjs.org/@heroui/accordion/-/accordion-2.2.19.tgz",
+ "integrity": "sha512-WeQEdaxIUpWOTZC3aZJtScuLkcNUXOQneWGVAhBRHhkjEKtWlxxFf0AR5fTWeDkPNxI7rMrulA/d9vgKatHRvQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/aria-utils": "2.2.19",
+ "@heroui/divider": "2.2.15",
+ "@heroui/dom-animation": "2.1.9",
+ "@heroui/framer-utils": "2.1.18",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-aria-accordion": "2.2.14",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/tree": "3.9.0",
+ "@react-types/accordion": "3.0.0-alpha.26",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/alert": {
+ "version": "2.2.22",
+ "resolved": "https://registry.npmjs.org/@heroui/alert/-/alert-2.2.22.tgz",
+ "integrity": "sha512-iPwqktDGyugZZ3Ov0vuDaj1Ieb0kc0heeYL+G1vBUVOVpTfjbQW1JtVwG2t4iSfrW0iJmzHzA7mLunekBLX6Jw==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/button": "2.2.22",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/utils": "3.10.7"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/aria-utils": {
+ "version": "2.2.19",
+ "resolved": "https://registry.npmjs.org/@heroui/aria-utils/-/aria-utils-2.2.19.tgz",
+ "integrity": "sha512-DL4dxS2Nodi6Fy+Ukoqpg+eUlP7eMDxkXQfLk+EdkUx0uq1ACt2x9wWXWu0dqHAUvL3E6pzJ1r7F4rww6/VxOA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/system": "2.4.18",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/collections": "3.12.5",
+ "@react-types/overlays": "3.8.16",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/autocomplete": {
+ "version": "2.3.23",
+ "resolved": "https://registry.npmjs.org/@heroui/autocomplete/-/autocomplete-2.3.23.tgz",
+ "integrity": "sha512-5NAcfM9OxWunkk+kFzvTuvDiiFy5zZp9KPOWyR/JAqN62lruSbsWjNhUy0ZwZKTztEmj9y6cxU8/ZB6UW54oFw==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/aria-utils": "2.2.19",
+ "@heroui/button": "2.2.22",
+ "@heroui/form": "2.1.21",
+ "@heroui/input": "2.4.22",
+ "@heroui/listbox": "2.3.21",
+ "@heroui/popover": "2.3.22",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/scroll-shadow": "2.3.15",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-safe-layout-effect": "2.1.7",
+ "@react-aria/combobox": "3.12.5",
+ "@react-aria/i18n": "3.12.10",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/combobox": "3.10.6",
+ "@react-types/combobox": "3.13.6",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/avatar": {
+ "version": "2.2.18",
+ "resolved": "https://registry.npmjs.org/@heroui/avatar/-/avatar-2.2.18.tgz",
+ "integrity": "sha512-vmbC/vbmG7KWbllE5Od89NSz9YYfHDo4x27fhd7KEyS8LxygOTvPXWGPwiPJWrCjrmK7hrdf6RTPUe9g0j6xIw==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-image": "2.1.10",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/utils": "3.29.1"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/badge": {
+ "version": "2.2.14",
+ "resolved": "https://registry.npmjs.org/@heroui/badge/-/badge-2.2.14.tgz",
+ "integrity": "sha512-gEZMgvpk2vGgwRiJ+kNue+SRRwKvsIbIQPnETJzjb8dwo6STmNUe+jCQF0I9aIVeTTltsEjm8+XhdwmLSz7HSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/breadcrumbs": {
+ "version": "2.2.18",
+ "resolved": "https://registry.npmjs.org/@heroui/breadcrumbs/-/breadcrumbs-2.2.18.tgz",
+ "integrity": "sha512-kKRcjHiCt3/FsCEvUq22OLtiKH9AMU9wpXczBPoy7gsZYdN0y4RVO5ZwJWto0TZYVnUjXntz/tQptJAoM+d5NQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@react-aria/breadcrumbs": "3.5.26",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-types/breadcrumbs": "3.7.14"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/button": {
+ "version": "2.2.22",
+ "resolved": "https://registry.npmjs.org/@heroui/button/-/button-2.2.22.tgz",
+ "integrity": "sha512-uOSyUNOe4VpHur/IF/F6wmDplyHqifyNJs6D8umtzs9l5PfrKXGDHgRXBEBFhOKj2e4M9kM1BFPpWYW4f2zLEA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/ripple": "2.2.17",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/spinner": "2.2.19",
+ "@heroui/use-aria-button": "2.2.16",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/calendar": {
+ "version": "2.2.22",
+ "resolved": "https://registry.npmjs.org/@heroui/calendar/-/calendar-2.2.22.tgz",
+ "integrity": "sha512-5/hjKJIqKw+u/GiUcHVVVOXjYFCPp87n7mmFgmMgTd6hnncAnn+/jRmBkhLd4fxj3lBIhdoLX3RFu8Vp/zhQpQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/button": "2.2.22",
+ "@heroui/dom-animation": "2.1.9",
+ "@heroui/framer-utils": "2.1.18",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-aria-button": "2.2.16",
+ "@internationalized/date": "3.8.2",
+ "@react-aria/calendar": "3.8.3",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/i18n": "3.12.10",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-aria/visually-hidden": "3.8.25",
+ "@react-stately/calendar": "3.8.2",
+ "@react-stately/utils": "3.10.7",
+ "@react-types/button": "3.12.2",
+ "@react-types/calendar": "3.7.2",
+ "@react-types/shared": "3.30.0",
+ "scroll-into-view-if-needed": "3.0.10"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/card": {
+ "version": "2.2.21",
+ "resolved": "https://registry.npmjs.org/@heroui/card/-/card-2.2.21.tgz",
+ "integrity": "sha512-TMjsKNm4T9Cwk/9NC4hcF4o4zOLAZ1lXpP1aHvUZBYrg3DNFpz71EAevn+smKFcCcA7MsEIf4dt8pnyG+F/MTw==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/ripple": "2.2.17",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-aria-button": "2.2.16",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/checkbox": {
+ "version": "2.3.21",
+ "resolved": "https://registry.npmjs.org/@heroui/checkbox/-/checkbox-2.3.21.tgz",
+ "integrity": "sha512-j2fmBBD4FRzJAJErACsUBj+b0yQ7Cs3qnwSJJdK/j+5PEwBP+WYYWai9I4U9rNzhspWkk8naCI652asjRX1c4Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/form": "2.1.21",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-callback-ref": "2.1.7",
+ "@heroui/use-safe-layout-effect": "2.1.7",
+ "@react-aria/checkbox": "3.15.7",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/checkbox": "3.6.15",
+ "@react-stately/toggle": "3.8.5",
+ "@react-types/checkbox": "3.9.5",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.3",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/chip": {
+ "version": "2.2.18",
+ "resolved": "https://registry.npmjs.org/@heroui/chip/-/chip-2.2.18.tgz",
+ "integrity": "sha512-8v+/3PfrFfxSTd9+VlQZVLURvBRIof9TLMD2Y1X5ZlrFrwnLkQYHQVqLZVpIMG8+ood9Vy3rq/qbqCdCSJTlIQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/utils": "3.29.1"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/code": {
+ "version": "2.2.16",
+ "resolved": "https://registry.npmjs.org/@heroui/code/-/code-2.2.16.tgz",
+ "integrity": "sha512-SxmSy+zroy48NH4qgt/pF2QxFCmn1SfC0sV5YkceaBRRXS8oNi0Av/yIHq+nl1OCOgiIVHOnr7YuIackqhDFmg==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/system-rsc": "2.3.15"
+ },
+ "peerDependencies": {
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/date-input": {
+ "version": "2.3.21",
+ "resolved": "https://registry.npmjs.org/@heroui/date-input/-/date-input-2.3.21.tgz",
+ "integrity": "sha512-MrUqzAnYJmhFG7t/cuTmw3TOKJGpvQH3rJ7XRvD7KSyg7vRgoA4+s2gyyySpxuTi7LJ8GKH2XUjSkrBFAtx9/w==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/form": "2.1.21",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@internationalized/date": "3.8.2",
+ "@react-aria/datepicker": "3.14.5",
+ "@react-aria/i18n": "3.12.10",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/datepicker": "3.14.2",
+ "@react-types/datepicker": "3.12.2",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.16",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/date-picker": {
+ "version": "2.3.22",
+ "resolved": "https://registry.npmjs.org/@heroui/date-picker/-/date-picker-2.3.22.tgz",
+ "integrity": "sha512-gKhrk3X2koKGupqk0SyVaTBOhB7TFATbvcNO8EO4cspEEm+g235V8lNhwVOb6DxV/d1WuiwazkFfkkdbwMXc/A==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/aria-utils": "2.2.19",
+ "@heroui/button": "2.2.22",
+ "@heroui/calendar": "2.2.22",
+ "@heroui/date-input": "2.3.21",
+ "@heroui/form": "2.1.21",
+ "@heroui/popover": "2.3.22",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@internationalized/date": "3.8.2",
+ "@react-aria/datepicker": "3.14.5",
+ "@react-aria/i18n": "3.12.10",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/datepicker": "3.14.2",
+ "@react-stately/utils": "3.10.7",
+ "@react-types/datepicker": "3.12.2",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.9",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/divider": {
+ "version": "2.2.15",
+ "resolved": "https://registry.npmjs.org/@heroui/divider/-/divider-2.2.15.tgz",
+ "integrity": "sha512-RXtqRqZ78fDRhiKzY8qXOIDExfMf3YLnwWSv5ePcgG2GMQJiefd0WGV3RP6Jr2yaShFq85gpUKIoZzai1vsI+g==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-rsc-utils": "2.1.8",
+ "@heroui/system-rsc": "2.3.15",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/dom-animation": {
+ "version": "2.1.9",
+ "resolved": "https://registry.npmjs.org/@heroui/dom-animation/-/dom-animation-2.1.9.tgz",
+ "integrity": "sha512-uqYosEn7nDFWQnpZgLkI4AaaGyOpsHv1lQs8ONsaPdPd6FVJ8vfWw3V5/ofQ+nK4Kb66fU7ujlkx1uGoPxLC1Q==",
+ "license": "MIT",
+ "peerDependencies": {
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1"
+ }
+ },
+ "node_modules/@heroui/drawer": {
+ "version": "2.2.19",
+ "resolved": "https://registry.npmjs.org/@heroui/drawer/-/drawer-2.2.19.tgz",
+ "integrity": "sha512-wMxElkTz3aQIMSL22vryoXxB12enPVL2/2vqGN9110I9NBicfyn8qM+6Ye+DPK32S6MxVBSX4Nq7gDmwtLGBZA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/framer-utils": "2.1.18",
+ "@heroui/modal": "2.2.19",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/dropdown": {
+ "version": "2.3.22",
+ "resolved": "https://registry.npmjs.org/@heroui/dropdown/-/dropdown-2.3.22.tgz",
+ "integrity": "sha512-7C8PEJdyi2/b6Rk8HXAnQSQasOzchanrKAew38j655ORRNNlbieVn8xQya9IMsurHpzEyKLxSzTblue4S81D0Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/aria-utils": "2.2.19",
+ "@heroui/menu": "2.2.21",
+ "@heroui/popover": "2.3.22",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/menu": "3.18.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/menu": "3.9.5",
+ "@react-types/menu": "3.10.2"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/form": {
+ "version": "2.1.21",
+ "resolved": "https://registry.npmjs.org/@heroui/form/-/form-2.1.21.tgz",
+ "integrity": "sha512-LS3sNgrSTXUq8KDoiA8DLyMmVuMRBDyzk9TKLTml6rms2yLCXtN/7BaP1QVqzm7QDXD6GUGVVae5yBCJYNZwqg==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/system": "2.4.18",
+ "@heroui/theme": "2.4.17",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/form": "3.1.5",
+ "@react-types/form": "3.7.13",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@heroui/framer-utils": {
+ "version": "2.1.18",
+ "resolved": "https://registry.npmjs.org/@heroui/framer-utils/-/framer-utils-2.1.18.tgz",
+ "integrity": "sha512-H28VtN61PE+JkMzyZkseb7jZJQiQXAAF2NBw/jgDv2j7i9qyBAwB7DfiIcc+yrT4y7c+v3FZmDonggJAb6CRnA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/system": "2.4.18",
+ "@heroui/use-measure": "2.1.7"
+ },
+ "peerDependencies": {
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/image": {
+ "version": "2.2.14",
+ "resolved": "https://registry.npmjs.org/@heroui/image/-/image-2.2.14.tgz",
+ "integrity": "sha512-mC6p4VcQ9C2BrHOvx/u2BJKs6wbslwqegn/ql99QWs197D771nPz+/ahawZJqO5NG/p2KZrs31eUuqc1zbNhGQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-image": "2.1.10"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/input": {
+ "version": "2.4.22",
+ "resolved": "https://registry.npmjs.org/@heroui/input/-/input-2.4.22.tgz",
+ "integrity": "sha512-Mq4A6UwWqD3faC85sniFhFJJ1nq3Z64GzgVyAVPXCuRaSy4Y9rC4sh3EZHdap5s35w4Nde/H5ASZAtFhIUfOHg==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/form": "2.1.21",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-safe-layout-effect": "2.1.7",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/textfield": "3.17.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/utils": "3.10.7",
+ "@react-types/shared": "3.30.0",
+ "@react-types/textfield": "3.12.3",
+ "react-textarea-autosize": "^8.5.3"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.12",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/input-otp": {
+ "version": "2.1.21",
+ "resolved": "https://registry.npmjs.org/@heroui/input-otp/-/input-otp-2.1.21.tgz",
+ "integrity": "sha512-KidJ/SLGyhULPHxlZeMEOV7YwBh7VpHdvXYS65e0/bqkAwOF1GIvpHwwzOKnj0BTDkJJuMp647Jowe2N/hgcOA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/form": "2.1.21",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/form": "3.0.18",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/form": "3.1.5",
+ "@react-stately/utils": "3.10.7",
+ "@react-types/textfield": "3.12.3",
+ "input-otp": "1.4.1"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.16",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@heroui/kbd": {
+ "version": "2.2.17",
+ "resolved": "https://registry.npmjs.org/@heroui/kbd/-/kbd-2.2.17.tgz",
+ "integrity": "sha512-WqKRE7p4h0G/BWywqOiHYLUZB0/Zqb7FggCCEh8c3nOwwTi5mfkcNAT8BmYbp/nAEUJO3yVVWxQQ0SWtSNB2Dw==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/system-rsc": "2.3.15"
+ },
+ "peerDependencies": {
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/link": {
+ "version": "2.2.19",
+ "resolved": "https://registry.npmjs.org/@heroui/link/-/link-2.2.19.tgz",
+ "integrity": "sha512-vFURGYFmifYE7/tJdv5YmjfVD06BTzr3Y6WLMDUXz8WHVbcns8pNrpumQZslrbaTwb+ooouuHPzPepeN8L4c0w==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-aria-link": "2.2.17",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-types/link": "3.6.2"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/listbox": {
+ "version": "2.3.21",
+ "resolved": "https://registry.npmjs.org/@heroui/listbox/-/listbox-2.3.21.tgz",
+ "integrity": "sha512-j3S2mB56Y8xeoYc+XftYbdy1qKD7YWKFDxDdgWMCp/pSyrC/Igzkv8ld5DTICm/iSXBZp96klZQDA1u7DNmhQg==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/aria-utils": "2.2.19",
+ "@heroui/divider": "2.2.15",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-is-mobile": "2.2.10",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/listbox": "3.14.6",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/list": "3.12.3",
+ "@react-types/shared": "3.30.0",
+ "@tanstack/react-virtual": "3.11.3"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/menu": {
+ "version": "2.2.21",
+ "resolved": "https://registry.npmjs.org/@heroui/menu/-/menu-2.2.21.tgz",
+ "integrity": "sha512-JcH+qSn0B6J3mxIK5i0LP9ImhY7av5ZUxhnbV2yN+sFSDwroxpTdWDIusCyG9tMQnT/RzYQ/PnG3b2uqi2Q4VA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/aria-utils": "2.2.19",
+ "@heroui/divider": "2.2.15",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-is-mobile": "2.2.10",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/menu": "3.18.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/tree": "3.9.0",
+ "@react-types/menu": "3.10.2",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/modal": {
+ "version": "2.2.19",
+ "resolved": "https://registry.npmjs.org/@heroui/modal/-/modal-2.2.19.tgz",
+ "integrity": "sha512-yMxC7JX9zm5znJpODEx4sYiT9FFaCyf2nSao8Gp4MqyO7xcFf3kjhDcmOzgaqwD+wE8DIOHw7/sLPBp7SwajCA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/dom-animation": "2.1.9",
+ "@heroui/framer-utils": "2.1.18",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-aria-button": "2.2.16",
+ "@heroui/use-aria-modal-overlay": "2.2.15",
+ "@heroui/use-disclosure": "2.2.13",
+ "@heroui/use-draggable": "2.1.14",
+ "@react-aria/dialog": "3.5.27",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/overlays": "3.27.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/overlays": "3.6.17"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/navbar": {
+ "version": "2.2.20",
+ "resolved": "https://registry.npmjs.org/@heroui/navbar/-/navbar-2.2.20.tgz",
+ "integrity": "sha512-TNiPg48jhLjVE+S68bAqj1dGGxF3WAz65HsE2ggPtOyZ7/Nz2YBNgZhIwYSwzOKzK/VM0xC7tgzc0epBaBdgNQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/dom-animation": "2.1.9",
+ "@heroui/framer-utils": "2.1.18",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-scroll-position": "2.1.7",
+ "@react-aria/button": "3.13.3",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/overlays": "3.27.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/toggle": "3.8.5",
+ "@react-stately/utils": "3.10.7"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/number-input": {
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@heroui/number-input/-/number-input-2.0.12.tgz",
+ "integrity": "sha512-/OgpNAcM1YzuGR5yQzHbBn6D2W3zXFZbV1q8w7zzrcNMdWABY22DNIYc2mcamrg4+X1hcbJ3WuxB4sstVa80Zg==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/button": "2.2.22",
+ "@heroui/form": "2.1.21",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-safe-layout-effect": "2.1.7",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/i18n": "3.12.10",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/numberfield": "3.11.16",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/numberfield": "3.9.13",
+ "@react-types/button": "3.12.2",
+ "@react-types/numberfield": "3.8.12",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.16",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/pagination": {
+ "version": "2.2.20",
+ "resolved": "https://registry.npmjs.org/@heroui/pagination/-/pagination-2.2.20.tgz",
+ "integrity": "sha512-WpP9dRYt0IQ4esa8aa1uN5b4D8iIMxACqwI4QdzyB8Vzcjq54wLxgU4GvaSkraCqF7DeT+Z3VUc3t1cF2tTvmQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-intersection-observer": "2.2.13",
+ "@heroui/use-pagination": "2.2.14",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/i18n": "3.12.10",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/utils": "3.29.1",
+ "scroll-into-view-if-needed": "3.0.10"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/popover": {
+ "version": "2.3.22",
+ "resolved": "https://registry.npmjs.org/@heroui/popover/-/popover-2.3.22.tgz",
+ "integrity": "sha512-7eMfHlvPh44Fx9fXrigm6Z0HfIlASVv7jkM9LdAX6oB6eRMGObwSDd0Ci83x/F/i99HeFz9V6ijwnh961hAk9Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/aria-utils": "2.2.19",
+ "@heroui/button": "2.2.22",
+ "@heroui/dom-animation": "2.1.9",
+ "@heroui/framer-utils": "2.1.18",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-aria-button": "2.2.16",
+ "@heroui/use-safe-layout-effect": "2.1.7",
+ "@react-aria/dialog": "3.5.27",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/overlays": "3.27.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/overlays": "3.6.17",
+ "@react-types/overlays": "3.8.16"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/progress": {
+ "version": "2.2.18",
+ "resolved": "https://registry.npmjs.org/@heroui/progress/-/progress-2.2.18.tgz",
+ "integrity": "sha512-1/JEpbr/rxF4X8nkNwRGuDTp4ljjIWEdKkdg3ydWH93C4zJf3cyPKYw2eU26GnDPB7BypEgz0sc9eLp68RDohQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-is-mounted": "2.1.7",
+ "@react-aria/progress": "3.4.24",
+ "@react-aria/utils": "3.29.1",
+ "@react-types/progress": "3.5.13"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/radio": {
+ "version": "2.3.21",
+ "resolved": "https://registry.npmjs.org/@heroui/radio/-/radio-2.3.21.tgz",
+ "integrity": "sha512-NfdZEwKZffh91MLdhjd2Aux+GsSWrfNE/c9ZEdrwS3xlFiZqb02C250iQe42W8NofHZfd4ZxHnF1EtVqM2McPA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/form": "2.1.21",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/radio": "3.11.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-aria/visually-hidden": "3.8.25",
+ "@react-stately/radio": "3.10.14",
+ "@react-types/radio": "3.8.10",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.3",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/react": {
+ "version": "2.7.11",
+ "resolved": "https://registry.npmjs.org/@heroui/react/-/react-2.7.11.tgz",
+ "integrity": "sha512-nm5k3ifSnBqHxIB4p6c3/XNGNGcTMXKkQbdlCcMaY9I/EiODB4G9o/+35IjNN2BoH4BS+0JOMqFQ2GX8n6Xcww==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/accordion": "2.2.19",
+ "@heroui/alert": "2.2.22",
+ "@heroui/autocomplete": "2.3.23",
+ "@heroui/avatar": "2.2.18",
+ "@heroui/badge": "2.2.14",
+ "@heroui/breadcrumbs": "2.2.18",
+ "@heroui/button": "2.2.22",
+ "@heroui/calendar": "2.2.22",
+ "@heroui/card": "2.2.21",
+ "@heroui/checkbox": "2.3.21",
+ "@heroui/chip": "2.2.18",
+ "@heroui/code": "2.2.16",
+ "@heroui/date-input": "2.3.21",
+ "@heroui/date-picker": "2.3.22",
+ "@heroui/divider": "2.2.15",
+ "@heroui/drawer": "2.2.19",
+ "@heroui/dropdown": "2.3.22",
+ "@heroui/form": "2.1.21",
+ "@heroui/framer-utils": "2.1.18",
+ "@heroui/image": "2.2.14",
+ "@heroui/input": "2.4.22",
+ "@heroui/input-otp": "2.1.21",
+ "@heroui/kbd": "2.2.17",
+ "@heroui/link": "2.2.19",
+ "@heroui/listbox": "2.3.21",
+ "@heroui/menu": "2.2.21",
+ "@heroui/modal": "2.2.19",
+ "@heroui/navbar": "2.2.20",
+ "@heroui/number-input": "2.0.12",
+ "@heroui/pagination": "2.2.20",
+ "@heroui/popover": "2.3.22",
+ "@heroui/progress": "2.2.18",
+ "@heroui/radio": "2.3.21",
+ "@heroui/ripple": "2.2.17",
+ "@heroui/scroll-shadow": "2.3.15",
+ "@heroui/select": "2.4.22",
+ "@heroui/skeleton": "2.2.14",
+ "@heroui/slider": "2.4.19",
+ "@heroui/snippet": "2.2.23",
+ "@heroui/spacer": "2.2.16",
+ "@heroui/spinner": "2.2.19",
+ "@heroui/switch": "2.2.20",
+ "@heroui/system": "2.4.18",
+ "@heroui/table": "2.2.21",
+ "@heroui/tabs": "2.2.19",
+ "@heroui/theme": "2.4.17",
+ "@heroui/toast": "2.0.12",
+ "@heroui/tooltip": "2.2.19",
+ "@heroui/user": "2.2.18",
+ "@react-aria/visually-hidden": "3.8.25"
+ },
+ "peerDependencies": {
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/react-rsc-utils": {
+ "version": "2.1.8",
+ "resolved": "https://registry.npmjs.org/@heroui/react-rsc-utils/-/react-rsc-utils-2.1.8.tgz",
+ "integrity": "sha512-qFJ0EYg2hVrsotAurd09ga8jZv1jTS6VSz919oC9u4E9xfN5/gFtdtF3HMiTUYRyN2yCP9GEZwyE8T2Y16DDiA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/react-utils": {
+ "version": "2.1.11",
+ "resolved": "https://registry.npmjs.org/@heroui/react-utils/-/react-utils-2.1.11.tgz",
+ "integrity": "sha512-UZnZBlmmJKBo1YmGnlih5WbzR0m/Qr8GNFiY73C8NMcIuSjr3VQOjTDwRu1lerzCEDV/EEqvyu+MYySdkBUPXQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-rsc-utils": "2.1.8",
+ "@heroui/shared-utils": "2.1.9"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/ripple": {
+ "version": "2.2.17",
+ "resolved": "https://registry.npmjs.org/@heroui/ripple/-/ripple-2.2.17.tgz",
+ "integrity": "sha512-CGOfFtCLxR8NDoFWzOnmVSAtxSUaF/+7MJHNZdaqkWeoXJAVNGXGNohB9h1ZRnJYk0uVYR8dfQF2PtTqg4KUbQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/dom-animation": "2.1.9",
+ "@heroui/shared-utils": "2.1.9"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/scroll-shadow": {
+ "version": "2.3.15",
+ "resolved": "https://registry.npmjs.org/@heroui/scroll-shadow/-/scroll-shadow-2.3.15.tgz",
+ "integrity": "sha512-Dg2vLflo6CL70HclsyUkbbfji3/C8K7scoVyPhaVSL3DeHUq5qf7qNcpVqwYMcWv9kiI8EH8Vo+LUQcnjLNm1Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-data-scroll-overflow": "2.2.10"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/select": {
+ "version": "2.4.22",
+ "resolved": "https://registry.npmjs.org/@heroui/select/-/select-2.4.22.tgz",
+ "integrity": "sha512-vboIYkNLiFe32r+NyQpRejGuqnY0gaM3xOmUQsAPpvmaMbauYC9iynM9Z44ALeApWXyMuO2WU2rdlYfV0n540A==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/aria-utils": "2.2.19",
+ "@heroui/form": "2.1.21",
+ "@heroui/listbox": "2.3.21",
+ "@heroui/popover": "2.3.22",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/scroll-shadow": "2.3.15",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/spinner": "2.2.19",
+ "@heroui/use-aria-button": "2.2.16",
+ "@heroui/use-aria-multiselect": "2.4.15",
+ "@heroui/use-safe-layout-effect": "2.1.7",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/form": "3.0.18",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/overlays": "3.27.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-aria/visually-hidden": "3.8.25",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.12",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/shared-icons": {
+ "version": "2.1.9",
+ "resolved": "https://registry.npmjs.org/@heroui/shared-icons/-/shared-icons-2.1.9.tgz",
+ "integrity": "sha512-CuKB8bKtRrZzxhU0dpaM9ecJWbs3ZfgWIQG0neYcbEQse0rS83VsKLokh+nmL8fNl69gq1ykT+HYsURnDGyrMw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/shared-utils": {
+ "version": "2.1.9",
+ "resolved": "https://registry.npmjs.org/@heroui/shared-utils/-/shared-utils-2.1.9.tgz",
+ "integrity": "sha512-mM/Ep914cYMbw3T/b6+6loYhuNfzDaph76mzw/oIS05gw1Dhp9luCziSiIhqDGgzYck2d74oWTZlahyCsxf47w==",
+ "hasInstallScript": true,
+ "license": "MIT"
+ },
+ "node_modules/@heroui/skeleton": {
+ "version": "2.2.14",
+ "resolved": "https://registry.npmjs.org/@heroui/skeleton/-/skeleton-2.2.14.tgz",
+ "integrity": "sha512-IyQdT05ijquuzecJZgR7pdm4A/nxnATkMILgDC5rQDFnY9Ovq+9FbfGRgALjXxBPfk64nbjPAEe+mhcrZmzZhg==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/shared-utils": "2.1.9"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/slider": {
+ "version": "2.4.19",
+ "resolved": "https://registry.npmjs.org/@heroui/slider/-/slider-2.4.19.tgz",
+ "integrity": "sha512-q5aZX2o9sDezivW1GjEXsOPTZ3S2DPvNE56HJwucRe4UVjAQksymI8cQF+gkBs8pfOUMOhinFi8OV/iGGAxMbA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/tooltip": "2.2.19",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/i18n": "3.12.10",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/slider": "3.7.21",
+ "@react-aria/utils": "3.29.1",
+ "@react-aria/visually-hidden": "3.8.25",
+ "@react-stately/slider": "3.6.5"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/snippet": {
+ "version": "2.2.23",
+ "resolved": "https://registry.npmjs.org/@heroui/snippet/-/snippet-2.2.23.tgz",
+ "integrity": "sha512-yVDkSPbgG5np47qXftPI8JwJ3dcVnrzWml8LW0BHzLeheASMrqdB1nWX9FaTcvp7igB3XAGJ+xkMDxcGqzRLxg==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/button": "2.2.22",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/tooltip": "2.2.19",
+ "@heroui/use-clipboard": "2.1.8",
+ "@react-aria/focus": "3.20.5"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/spacer": {
+ "version": "2.2.16",
+ "resolved": "https://registry.npmjs.org/@heroui/spacer/-/spacer-2.2.16.tgz",
+ "integrity": "sha512-XS2XKN4nuc+l4oFG2YK8rniUlbd+lbY7pO94fvxnnqHl42iL6QH1lpSMSMfFlFJPOqDTRnkTFQ5l+79g4V43aA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/system-rsc": "2.3.15"
+ },
+ "peerDependencies": {
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/spinner": {
+ "version": "2.2.19",
+ "resolved": "https://registry.npmjs.org/@heroui/spinner/-/spinner-2.2.19.tgz",
+ "integrity": "sha512-qELUY0RlnBJeVXYwN6Ve4I92BkmNn375EftoXAg4rheM0DwGGxRMAVfiuLZJPGQe45HK8V5/GuyqkYagpvfVdQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/system": "2.4.18",
+ "@heroui/system-rsc": "2.3.15"
+ },
+ "peerDependencies": {
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/switch": {
+ "version": "2.2.20",
+ "resolved": "https://registry.npmjs.org/@heroui/switch/-/switch-2.2.20.tgz",
+ "integrity": "sha512-u4BSYVWIdwaUJg4EPnJ95q2wbsTGx+L/JS0CHWGVSJJz8Hj71yP7r9JoOhUPNGClslVzUiHJjX7ukDHUi7Ym6Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-safe-layout-effect": "2.1.7",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/switch": "3.7.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-aria/visually-hidden": "3.8.25",
+ "@react-stately/toggle": "3.8.5"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.3",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/system": {
+ "version": "2.4.18",
+ "resolved": "https://registry.npmjs.org/@heroui/system/-/system-2.4.18.tgz",
+ "integrity": "sha512-KYRCeA5JJXiGQZ1VJ1aHPOVy23U48Sf3z1ezVBZHnm6/7pn3c1lyqFapyL5qNkpzZ7c2s99b1Klik67KN8mLiQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/system-rsc": "2.3.15",
+ "@react-aria/i18n": "3.12.10",
+ "@react-aria/overlays": "3.27.3",
+ "@react-aria/utils": "3.29.1"
+ },
+ "peerDependencies": {
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/system-rsc": {
+ "version": "2.3.15",
+ "resolved": "https://registry.npmjs.org/@heroui/system-rsc/-/system-rsc-2.3.15.tgz",
+ "integrity": "sha512-IGMgGTv9AEtjnA3ao8b3moxTHOiyH88hEH2tKd9lA9qkrXzuN0F81L34QxQMX0Zw7FwuxBdPXRSqcAvYx7ElNA==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-types/shared": "3.30.0",
+ "clsx": "^1.2.1"
+ },
+ "peerDependencies": {
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/table": {
+ "version": "2.2.21",
+ "resolved": "https://registry.npmjs.org/@heroui/table/-/table-2.2.21.tgz",
+ "integrity": "sha512-W5y5QFbWShWDhfS9VTLxCEkpQZOWWX/M635G770I688nVpdYoTmQlr5fv2ijtnoMsnSMykM9S1DYoGbWP7r5HQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/checkbox": "2.3.21",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/spacer": "2.2.16",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/table": "3.17.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-aria/visually-hidden": "3.8.25",
+ "@react-stately/table": "3.14.3",
+ "@react-stately/virtualizer": "4.4.1",
+ "@react-types/grid": "3.3.3",
+ "@react-types/table": "3.13.1",
+ "@tanstack/react-virtual": "3.11.3"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/tabs": {
+ "version": "2.2.19",
+ "resolved": "https://registry.npmjs.org/@heroui/tabs/-/tabs-2.2.19.tgz",
+ "integrity": "sha512-0oDNCoi5Boku+om+k6ZsRTZNWH6JcSmHLgbw9UzpD6B+9RVvEs9pKbdPFt+b0YyKAmis34NNEmD6dSB7HRPitw==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/aria-utils": "2.2.19",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-is-mounted": "2.1.7",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/tabs": "3.10.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/tabs": "3.8.3",
+ "@react-types/shared": "3.30.0",
+ "scroll-into-view-if-needed": "3.0.10"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/theme": {
+ "version": "2.4.17",
+ "resolved": "https://registry.npmjs.org/@heroui/theme/-/theme-2.4.17.tgz",
+ "integrity": "sha512-I11ylsSsykVeQwEqMc8MyJy61zOOR68ilMCRXr7spQefSfwApuzQbFfxt5Tl/txlA3jo3j1Y97use0bm3stzCA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/shared-utils": "2.1.9",
+ "clsx": "^1.2.1",
+ "color": "^4.2.3",
+ "color2k": "^2.0.3",
+ "deepmerge": "4.3.1",
+ "flat": "^5.0.2",
+ "tailwind-merge": "2.5.4",
+ "tailwind-variants": "0.3.0"
+ },
+ "peerDependencies": {
+ "tailwindcss": ">=3.4.0"
+ }
+ },
+ "node_modules/@heroui/toast": {
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@heroui/toast/-/toast-2.0.12.tgz",
+ "integrity": "sha512-l0KxLhVnVIdYef4+5ptGz2ck5eKtWkicYiQA5ZQvR6+HXia7J/YeZ7BAvQ/tDT2hHcQkp0FjKqHO0FugK34mGg==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-icons": "2.1.9",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/spinner": "2.2.19",
+ "@heroui/use-is-mobile": "2.2.10",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/toast": "3.0.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/toast": "3.1.1"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.12",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/tooltip": {
+ "version": "2.2.19",
+ "resolved": "https://registry.npmjs.org/@heroui/tooltip/-/tooltip-2.2.19.tgz",
+ "integrity": "sha512-Kay20JRFHSSS/4BLlILJoPhXK7pto41o5/tGLy/yejd+nOonobtKwVjWDsJS0K+zirlPFE62zgqT29afUZch9g==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/aria-utils": "2.2.19",
+ "@heroui/dom-animation": "2.1.9",
+ "@heroui/framer-utils": "2.1.18",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@heroui/use-safe-layout-effect": "2.1.7",
+ "@react-aria/overlays": "3.27.3",
+ "@react-aria/tooltip": "3.8.5",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/tooltip": "3.5.5",
+ "@react-types/overlays": "3.8.16",
+ "@react-types/tooltip": "3.4.18"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-aria-accordion": {
+ "version": "2.2.14",
+ "resolved": "https://registry.npmjs.org/@heroui/use-aria-accordion/-/use-aria-accordion-2.2.14.tgz",
+ "integrity": "sha512-rd8K+ac4xcNVhN46IXLmWi+c/EYmhFXe6GGxntpGZjApjc/cxrxA3KIUSAk6ijy2dsKCZ5zNIIdw+eCOuqHcaQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-aria/button": "3.13.3",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/selection": "3.24.3",
+ "@react-stately/tree": "3.9.0",
+ "@react-types/accordion": "3.0.0-alpha.26",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-aria-button": {
+ "version": "2.2.16",
+ "resolved": "https://registry.npmjs.org/@heroui/use-aria-button/-/use-aria-button-2.2.16.tgz",
+ "integrity": "sha512-VR256E9OhUBnAP+vwfaL1HmJr7AzgSL5qP+OpvmjTnt6Ta1YcKEYkVf1unsfeOrR5Lj1KuQ0eA8McTdn/JwgsA==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-types/button": "3.12.2",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-aria-link": {
+ "version": "2.2.17",
+ "resolved": "https://registry.npmjs.org/@heroui/use-aria-link/-/use-aria-link-2.2.17.tgz",
+ "integrity": "sha512-13ze49kXxos4ziLIPRlcltscSvZKvubyuLJNTb7WhoCI840icyo8j1rstilA+Y6DY/5FLMOQeBENpJZMSNCJcA==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-types/link": "3.6.2",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-aria-modal-overlay": {
+ "version": "2.2.15",
+ "resolved": "https://registry.npmjs.org/@heroui/use-aria-modal-overlay/-/use-aria-modal-overlay-2.2.15.tgz",
+ "integrity": "sha512-npGHMpuEpWLkAj6O+cWR004j3NInIMKKEtc3yKMx+HSQA0zUAS9CPG/NKRxPZTg/00Ieg1w28yA/3r6voduayw==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-aria/overlays": "3.27.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/overlays": "3.6.17"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-aria-multiselect": {
+ "version": "2.4.15",
+ "resolved": "https://registry.npmjs.org/@heroui/use-aria-multiselect/-/use-aria-multiselect-2.4.15.tgz",
+ "integrity": "sha512-L2rGe9RHaNqvQfr3GFsrZDI14WmFoeEEvpyhDGdfgclawT7JswmU4XbqGn7FmBN2hI0B5dbxM20lhP6mC3zqlg==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-aria/i18n": "3.12.10",
+ "@react-aria/interactions": "3.25.3",
+ "@react-aria/label": "3.7.19",
+ "@react-aria/listbox": "3.14.6",
+ "@react-aria/menu": "3.18.5",
+ "@react-aria/selection": "3.24.3",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/form": "3.1.5",
+ "@react-stately/list": "3.12.3",
+ "@react-stately/menu": "3.9.5",
+ "@react-types/button": "3.12.2",
+ "@react-types/overlays": "3.8.16",
+ "@react-types/shared": "3.30.0"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-callback-ref": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@heroui/use-callback-ref/-/use-callback-ref-2.1.7.tgz",
+ "integrity": "sha512-AKMb+zV8um9y7gnsPgmVPm5WRx0oJc/3XU+banr8qla27+3HhnQZVqk3nlSHIplkseQzMRt3xHj5RPnwKbs71w==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/use-safe-layout-effect": "2.1.7"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-clipboard": {
+ "version": "2.1.8",
+ "resolved": "https://registry.npmjs.org/@heroui/use-clipboard/-/use-clipboard-2.1.8.tgz",
+ "integrity": "sha512-itT5PCoMRoa6rjV51Z9wxeDQpSYMZj2sDFYrM7anGFO/4CAsQ/NfQoPwl5+kX0guqCcCGMqgFnNzNyQuNNsPtg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-data-scroll-overflow": {
+ "version": "2.2.10",
+ "resolved": "https://registry.npmjs.org/@heroui/use-data-scroll-overflow/-/use-data-scroll-overflow-2.2.10.tgz",
+ "integrity": "sha512-Lza9S7ZWhY3PliahSgDRubrpeT7gnySH67GSTrGQMzYggTDMo2I1Pky7ZaHUnHHYB9Y7WHryB26ayWBOgRtZUQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/shared-utils": "2.1.9"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-disclosure": {
+ "version": "2.2.13",
+ "resolved": "https://registry.npmjs.org/@heroui/use-disclosure/-/use-disclosure-2.2.13.tgz",
+ "integrity": "sha512-Cj4oQtqEWmNOIyR7w3jaV9VfloVZxs+LcnqhmYfbFV8nrEQawDopTJYOGKpq75Eds97nEqMYSsXAYsITwra5jA==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/use-callback-ref": "2.1.7",
+ "@react-aria/utils": "3.29.1",
+ "@react-stately/utils": "3.10.7"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-draggable": {
+ "version": "2.1.14",
+ "resolved": "https://registry.npmjs.org/@heroui/use-draggable/-/use-draggable-2.1.14.tgz",
+ "integrity": "sha512-bQGCjwQkbdWvb+7XLsblNlVXOVwHNtwaFmhNbIJGwr/9g+Y92tvpoAcae0Omjh9XAFe2iO4P1YYIwAsofZ38rw==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-aria/interactions": "3.25.3"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-image": {
+ "version": "2.1.10",
+ "resolved": "https://registry.npmjs.org/@heroui/use-image/-/use-image-2.1.10.tgz",
+ "integrity": "sha512-I33fojDY/9MiXsJATO5nDVLlBhihQBdCeIQzPfZB5pUO1XQl193D0O1lUrYko9HyxbzYdiu2Ffmd0FC/NP/qlw==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/use-safe-layout-effect": "2.1.7"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-intersection-observer": {
+ "version": "2.2.13",
+ "resolved": "https://registry.npmjs.org/@heroui/use-intersection-observer/-/use-intersection-observer-2.2.13.tgz",
+ "integrity": "sha512-s7ZaIujBHDUZsGaYJt4Ce56kCjQHctophPuvpcKrM2itysKjwfdlLuIKm3YGyATCC4jUtN+qDxB3nS4A+81g7Q==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-is-mobile": {
+ "version": "2.2.10",
+ "resolved": "https://registry.npmjs.org/@heroui/use-is-mobile/-/use-is-mobile-2.2.10.tgz",
+ "integrity": "sha512-CzdzMcFI7NpLiF8GLDfZxcmRPuitzyLZmmEJN18IWRRaN7MTIriA9P3SNSkjR/d3CVX8DGTX8I3QBevS7nxz0w==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-aria/ssr": "3.9.9"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-is-mounted": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@heroui/use-is-mounted/-/use-is-mounted-2.1.7.tgz",
+ "integrity": "sha512-Msf4eWWUEDofPmvaFfS4azftO9rIuKyiagxsYE73PSMcdB+7+PJSMTY5ZTM3cf/lwUJzy1FQvyTiCKx0RQ5neA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-measure": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@heroui/use-measure/-/use-measure-2.1.7.tgz",
+ "integrity": "sha512-H586tr/bOH08MAufeiT35E1QmF8SPQy5Ghmat1Bb+vh/6KZ5S0K0o95BE2to7sXE9UCJWa7nDFuizXAGbveSiA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-pagination": {
+ "version": "2.2.14",
+ "resolved": "https://registry.npmjs.org/@heroui/use-pagination/-/use-pagination-2.2.14.tgz",
+ "integrity": "sha512-+N4+B8Xo4ZuBzvrCQ4zTsD0eX6l884J3Eazk9wbHsbkWvTzb1THe0bf94ajz7MNMp82BRzHZikHHFVb/aWOlFw==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/shared-utils": "2.1.9",
+ "@react-aria/i18n": "3.12.10"
+ },
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-safe-layout-effect": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@heroui/use-safe-layout-effect/-/use-safe-layout-effect-2.1.7.tgz",
+ "integrity": "sha512-ZiMc+nVjcE5aArC4PEmnLHSJj0WgAXq3udr7FZaosP/jrRdn5VPcfF9z9cIGNJD6MkZp+YP0XGslrIFKZww0Hw==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/use-scroll-position": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@heroui/use-scroll-position/-/use-scroll-position-2.1.7.tgz",
+ "integrity": "sha512-c91Elycrq51nhpWqFIEBy04P+KBJjnEz4u1+1c7txnjs/k0FOD5EBD8+Jf8GJbh4WYp5N936XFvCcE7gB1C9JQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18 || >=19.0.0-rc.0"
+ }
+ },
+ "node_modules/@heroui/user": {
+ "version": "2.2.18",
+ "resolved": "https://registry.npmjs.org/@heroui/user/-/user-2.2.18.tgz",
+ "integrity": "sha512-iq1EoF577t6Mb3Ml8HrOxfMr83IJPeLgGaetCd1hg065YI7nvVqqxpVNAnmZDhtrlpjrsICd97+BtvR39OSPBg==",
+ "license": "MIT",
+ "dependencies": {
+ "@heroui/avatar": "2.2.18",
+ "@heroui/react-utils": "2.1.11",
+ "@heroui/shared-utils": "2.1.9",
+ "@react-aria/focus": "3.20.5",
+ "@react-aria/utils": "3.29.1"
+ },
+ "peerDependencies": {
+ "@heroui/system": ">=2.4.17",
+ "@heroui/theme": ">=2.4.6",
+ "react": ">=18 || >=19.0.0-rc.0",
+ "react-dom": ">=18 || >=19.0.0-rc.0"
}
},
"node_modules/@internationalized/date": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.6.0.tgz",
- "integrity": "sha512-+z6ti+CcJnRlLHok/emGEsWQhe7kfSmEW+/6qCzvKY67YPh7YOBfvc7+/+NXq+zJlbArg30tYpqLjNgcAYv2YQ==",
+ "version": "3.8.2",
+ "resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.8.2.tgz",
+ "integrity": "sha512-/wENk7CbvLbkUvX1tu0mwq49CVkkWpkXubGel6birjRPyo6uQ4nQpnq5xZu823zRCwwn82zgHrvgF1vZyvmVgA==",
+ "license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/message": {
- "version": "3.1.6",
- "resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.1.6.tgz",
- "integrity": "sha512-JxbK3iAcTIeNr1p0WIFg/wQJjIzJt9l/2KNY/48vXV7GRGZSv3zMxJsce008fZclk2cDC8y0Ig3odceHO7EfNQ==",
+ "version": "3.1.8",
+ "resolved": "https://registry.npmjs.org/@internationalized/message/-/message-3.1.8.tgz",
+ "integrity": "sha512-Rwk3j/TlYZhn3HQ6PyXUV0XP9Uv42jqZGNegt0BXlxjE6G3+LwHjbQZAGHhCnCPdaA6Tvd3ma/7QzLlLkJxAWA==",
+ "license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0",
"intl-messageformat": "^10.1.0"
}
},
"node_modules/@internationalized/number": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.6.0.tgz",
- "integrity": "sha512-PtrRcJVy7nw++wn4W2OuePQQfTqDzfusSuY1QTtui4wa7r+rGVtR75pO8CyKvHvzyQYi3Q1uO5sY0AsB4e65Bw==",
+ "version": "3.6.4",
+ "resolved": "https://registry.npmjs.org/@internationalized/number/-/number-3.6.4.tgz",
+ "integrity": "sha512-P+/h+RDaiX8EGt3shB9AYM1+QgkvHmJ5rKi4/59k4sg9g58k9rqsRW0WxRO7jCoHyvVbFRRFKmVTdFYdehrxHg==",
+ "license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@internationalized/string": {
- "version": "3.2.5",
- "resolved": "https://registry.npmjs.org/@internationalized/string/-/string-3.2.5.tgz",
- "integrity": "sha512-rKs71Zvl2OKOHM+mzAFMIyqR5hI1d1O6BBkMK2/lkfg3fkmVh9Eeg0awcA8W2WqYqDOv6a86DIOlFpggwLtbuw==",
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/@internationalized/string/-/string-3.2.7.tgz",
+ "integrity": "sha512-D4OHBjrinH+PFZPvfCXvG28n2LSykWcJ7GIioQL+ok0LON15SdfoUssoHzzOUmVZLbRoREsQXVzA6r8JKsbP6A==",
+ "license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
@@ -987,16 +2559,13 @@
}
},
"node_modules/@jridgewell/gen-mapping": {
- "version": "0.3.8",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
- "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
+ "version": "0.3.12",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz",
+ "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==",
+ "license": "MIT",
"dependencies": {
- "@jridgewell/set-array": "^1.2.1",
- "@jridgewell/sourcemap-codec": "^1.4.10",
+ "@jridgewell/sourcemap-codec": "^1.5.0",
"@jridgewell/trace-mapping": "^0.3.24"
- },
- "engines": {
- "node": ">=6.0.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
@@ -1007,14 +2576,6 @@
"node": ">=6.0.0"
}
},
- "node_modules/@jridgewell/set-array": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
- "engines": {
- "node": ">=6.0.0"
- }
- },
"node_modules/@jridgewell/source-map": {
"version": "0.3.6",
"resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
@@ -1033,1435 +2594,15 @@
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ=="
},
"node_modules/@jridgewell/trace-mapping": {
- "version": "0.3.25",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
+ "version": "0.3.29",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz",
+ "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==",
+ "license": "MIT",
"dependencies": {
"@jridgewell/resolve-uri": "^3.1.0",
"@jridgewell/sourcemap-codec": "^1.4.14"
}
},
- "node_modules/@nextui-org/accordion": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/@nextui-org/accordion/-/accordion-2.2.7.tgz",
- "integrity": "sha512-jdobOwUxSi617m+LpxHFzg64UhDuOfDJI2CMk3MP+b2WBJ7SNW4hmN2NW5Scx5JiY+kyBGmlxJ4Y++jZpZgQjQ==",
- "dependencies": {
- "@nextui-org/aria-utils": "2.2.7",
- "@nextui-org/divider": "2.2.5",
- "@nextui-org/dom-animation": "2.1.1",
- "@nextui-org/framer-utils": "2.1.6",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-aria-accordion": "2.2.2",
- "@react-aria/button": "3.11.0",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "@react-stately/tree": "3.8.6",
- "@react-types/accordion": "3.0.0-alpha.25",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/alert": {
- "version": "2.2.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/alert/-/alert-2.2.9.tgz",
- "integrity": "sha512-SjMZewEqknx/jqmMcyQdbeo6RFg40+A3b1lGjnj/fdkiJozQoTesiOslzDsacqiSgvso2F+8u1emC2tFBAU3hw==",
- "dependencies": {
- "@nextui-org/button": "2.2.9",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/utils": "3.26.0",
- "@react-stately/utils": "3.10.5"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/aria-utils": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/@nextui-org/aria-utils/-/aria-utils-2.2.7.tgz",
- "integrity": "sha512-QgMZ8fii6BCI/+ZIkgXgkm/gMNQ92pQJn83q90fBT6DF+6j4hsCpJwLNCF5mIJkX/cQ/4bHDsDaj7w1OzkhQNg==",
- "dependencies": {
- "@nextui-org/react-rsc-utils": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/system": "2.4.6",
- "@react-aria/utils": "3.26.0",
- "@react-stately/collections": "3.12.0",
- "@react-stately/overlays": "3.6.12",
- "@react-types/overlays": "3.8.11",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/autocomplete": {
- "version": "2.3.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/autocomplete/-/autocomplete-2.3.9.tgz",
- "integrity": "sha512-1AizOvL8lERoWjm8WiA0NPJWB3h0gqYlbV/qGZeacac5356hb8cNzWUlxGzr9bNkhn9slIoEUyGMgtYeKq7ptg==",
- "dependencies": {
- "@nextui-org/aria-utils": "2.2.7",
- "@nextui-org/button": "2.2.9",
- "@nextui-org/form": "2.1.8",
- "@nextui-org/input": "2.4.8",
- "@nextui-org/listbox": "2.3.9",
- "@nextui-org/popover": "2.3.9",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/scroll-shadow": "2.3.5",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/spinner": "2.2.6",
- "@nextui-org/use-aria-button": "2.2.4",
- "@nextui-org/use-safe-layout-effect": "2.1.1",
- "@react-aria/combobox": "3.11.0",
- "@react-aria/focus": "3.19.0",
- "@react-aria/i18n": "3.12.4",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "@react-aria/visually-hidden": "3.8.18",
- "@react-stately/combobox": "3.10.1",
- "@react-types/combobox": "3.13.1",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/avatar": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/avatar/-/avatar-2.2.6.tgz",
- "integrity": "sha512-QRNCAMXnSZrFJYKo78lzRPiAPRq5pn1LIHUVvX/mCRiTvbu1FXrMakAvOWz/n1X1mLndnrfQMRNgmtC8YlHIdg==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-image": "2.1.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/badge": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@nextui-org/badge/-/badge-2.2.5.tgz",
- "integrity": "sha512-8pLbuY+RVCzI/00CzNudc86BiuXByPFz2yHh00djKvZAXbT0lfjvswClJxSC2FjUXlod+NtE+eHmlhSMo3gmpw==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/breadcrumbs": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/breadcrumbs/-/breadcrumbs-2.2.6.tgz",
- "integrity": "sha512-TlAUSiIClmm02tJqOvtwySpKDOENduXCXkKzCbmSaqEFhziHnhyE0eM8IVEprBoK6z1VP+sUrX6C2gZ871KUSw==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/breadcrumbs": "3.5.19",
- "@react-aria/focus": "3.19.0",
- "@react-aria/utils": "3.26.0",
- "@react-types/breadcrumbs": "3.7.9",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/button": {
- "version": "2.2.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/button/-/button-2.2.9.tgz",
- "integrity": "sha512-RrfjAZHoc6nmaqoLj40M0Qj3tuDdv2BMGCgggyWklOi6lKwtOaADPvxEorDwY3GnN54Xej+9SWtUwE8Oc3SnOg==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/ripple": "2.2.7",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/spinner": "2.2.6",
- "@nextui-org/use-aria-button": "2.2.4",
- "@react-aria/button": "3.11.0",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "@react-types/button": "3.10.1",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/calendar": {
- "version": "2.2.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/calendar/-/calendar-2.2.9.tgz",
- "integrity": "sha512-tx1401HLnwadoDHNkmEIZNeAw9uYW6KsgIRRQnXTNVstBXdMmPWjoMBj8fkQqF55+U58k6a+w3N4tTpgRGOpaQ==",
- "dependencies": {
- "@internationalized/date": "3.6.0",
- "@nextui-org/button": "2.2.9",
- "@nextui-org/dom-animation": "2.1.1",
- "@nextui-org/framer-utils": "2.1.6",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-aria-button": "2.2.4",
- "@react-aria/calendar": "3.6.0",
- "@react-aria/focus": "3.19.0",
- "@react-aria/i18n": "3.12.4",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "@react-aria/visually-hidden": "3.8.18",
- "@react-stately/calendar": "3.6.0",
- "@react-stately/utils": "3.10.5",
- "@react-types/button": "3.10.1",
- "@react-types/calendar": "3.5.0",
- "@react-types/shared": "3.26.0",
- "@types/lodash.debounce": "^4.0.7",
- "scroll-into-view-if-needed": "3.0.10"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/card": {
- "version": "2.2.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/card/-/card-2.2.9.tgz",
- "integrity": "sha512-Ltvb5Uy4wwkBJj3QvVQmoB6PwLYUNSoWAFo2xxu7LUHKWcETYI0YbUIuwL2nFU2xfJYeBTGjXGQO1ffBsowrtQ==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/ripple": "2.2.7",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-aria-button": "2.2.4",
- "@react-aria/button": "3.11.0",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/checkbox": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/@nextui-org/checkbox/-/checkbox-2.3.8.tgz",
- "integrity": "sha512-T5+AhzQfbg53qZnPn5rgMcJ7T5rnvSGYTx17wHWtdF9Q4QflZOmLGoxqoTWbTVpM4XzUUPyi7KVSKZScWdBDAA==",
- "dependencies": {
- "@nextui-org/form": "2.1.8",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-callback-ref": "2.1.1",
- "@nextui-org/use-safe-layout-effect": "2.1.1",
- "@react-aria/checkbox": "3.15.0",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "@react-aria/visually-hidden": "3.8.18",
- "@react-stately/checkbox": "3.6.10",
- "@react-stately/toggle": "3.8.0",
- "@react-types/checkbox": "3.9.0",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.3",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/chip": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/chip/-/chip-2.2.6.tgz",
- "integrity": "sha512-HrSYagbrD4u4nblsNMIu7WGnDj9A8YnYCt30tasJmNSyydUVHFkxKOc3S8k+VU3BHPxeENxeBT7w0OlYoKbFIQ==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "@react-types/checkbox": "3.9.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/code": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/code/-/code-2.2.6.tgz",
- "integrity": "sha512-8qvAywIKAVh1thy/YHNwqH2xjTcwPiOWwNdKqvJMSk0CNtLHYJmDK8i2vmKZTM3zfB08Q/G94H0Wf+YsyrZdDg==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/system-rsc": "2.3.5"
- },
- "peerDependencies": {
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/date-input": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/@nextui-org/date-input/-/date-input-2.3.8.tgz",
- "integrity": "sha512-phj0Y8F/GpsKjKSiratFwh7HDzmMsIf6G2L2ljgWqA79PvP+RYf/ogEfaMIq1knF8OlssMo5nsFFJNsNB+xKGg==",
- "dependencies": {
- "@internationalized/date": "3.6.0",
- "@nextui-org/form": "2.1.8",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/datepicker": "3.12.0",
- "@react-aria/i18n": "3.12.4",
- "@react-aria/utils": "3.26.0",
- "@react-stately/datepicker": "3.11.0",
- "@react-types/datepicker": "3.9.0",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/date-picker": {
- "version": "2.3.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/date-picker/-/date-picker-2.3.9.tgz",
- "integrity": "sha512-RzdVTl/tulTyE5fwGkQfn0is5hsTkPPRJFJZXMqYeci85uhpD+bCreWnTXrGFIXcqUo0ZBJWx3EdtBJZnGp4xQ==",
- "dependencies": {
- "@internationalized/date": "3.6.0",
- "@nextui-org/aria-utils": "2.2.7",
- "@nextui-org/button": "2.2.9",
- "@nextui-org/calendar": "2.2.9",
- "@nextui-org/date-input": "2.3.8",
- "@nextui-org/form": "2.1.8",
- "@nextui-org/popover": "2.3.9",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/datepicker": "3.12.0",
- "@react-aria/i18n": "3.12.4",
- "@react-aria/utils": "3.26.0",
- "@react-stately/datepicker": "3.11.0",
- "@react-stately/overlays": "3.6.12",
- "@react-stately/utils": "3.10.5",
- "@react-types/datepicker": "3.9.0",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/divider": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@nextui-org/divider/-/divider-2.2.5.tgz",
- "integrity": "sha512-OB8b3CU4nQ5ARIGL48izhzrAHR0mnwws+Kd5LqRCZ/1R9uRMqsq7L0gpG9FkuV2jf2FuA7xa/GLOLKbIl4CEww==",
- "dependencies": {
- "@nextui-org/react-rsc-utils": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/system-rsc": "2.3.5",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/dom-animation": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@nextui-org/dom-animation/-/dom-animation-2.1.1.tgz",
- "integrity": "sha512-xLrVNf1EV9zyyZjk6j3RptOvnga1WUCbMpDgJLQHp+oYwxTfBy0SkXHuN5pRdcR0XpR/IqRBDIobMdZI0iyQyg==",
- "peerDependencies": {
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1"
- }
- },
- "node_modules/@nextui-org/drawer": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/@nextui-org/drawer/-/drawer-2.2.7.tgz",
- "integrity": "sha512-a1Sr3sSjOZD0SiXDYSySKkOelTyCYExPvUsIckzjF5A3TNlBw4KFKnJzaXvabC3SNRy6/Ocq7oqz6VRv37wxQg==",
- "dependencies": {
- "@nextui-org/framer-utils": "2.1.6",
- "@nextui-org/modal": "2.2.7",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/dropdown": {
- "version": "2.3.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/dropdown/-/dropdown-2.3.9.tgz",
- "integrity": "sha512-ElZxiP+nG0CKC+tm6LMZX42cRWXQ0LLjWBZXymupPsEH3XcQpCF9GWb9efJ2hh+qGROg7i0bnFH7P0GTyCyNBA==",
- "dependencies": {
- "@nextui-org/aria-utils": "2.2.7",
- "@nextui-org/menu": "2.2.9",
- "@nextui-org/popover": "2.3.9",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/menu": "3.16.0",
- "@react-aria/utils": "3.26.0",
- "@react-stately/menu": "3.9.0",
- "@react-types/menu": "3.9.13"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/form": {
- "version": "2.1.8",
- "resolved": "https://registry.npmjs.org/@nextui-org/form/-/form-2.1.8.tgz",
- "integrity": "sha512-Xn/dUO5zDG7zukbql1MDYh4Xwe1vnIVMRTHgckbkBtXXVNqgoTU09TTfy8WOJ0pMDX4GrZSBAZ86o37O+IHbaA==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/system": "2.4.6",
- "@nextui-org/theme": "2.4.5",
- "@react-aria/utils": "3.26.0",
- "@react-stately/form": "3.1.0",
- "@react-types/form": "3.7.8",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18",
- "react-dom": ">=18"
- }
- },
- "node_modules/@nextui-org/framer-utils": {
- "version": "2.1.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/framer-utils/-/framer-utils-2.1.6.tgz",
- "integrity": "sha512-b+BxKFox8j9rNAaL+CRe2ZMb1/SKjz9Kl2eLjDSsq3q82K/Hg7lEjlpgE8cu41wIGjH1unQxtP+btiJgl067Ow==",
- "dependencies": {
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/system": "2.4.6",
- "@nextui-org/use-measure": "2.1.1"
- },
- "peerDependencies": {
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/image": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@nextui-org/image/-/image-2.2.5.tgz",
- "integrity": "sha512-A6DnEqG+/cMrfvqFKKJIdGD7gD88tVkqGxRkfysVMJJR96sDIYCJlP1jsAEtYKh4PfhmtJWclUvY/x9fMw0H1w==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-image": "2.1.2"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/input": {
- "version": "2.4.8",
- "resolved": "https://registry.npmjs.org/@nextui-org/input/-/input-2.4.8.tgz",
- "integrity": "sha512-wfkjyl7vRqT3HDXeybhfZ+IAz+Z02U5EiuWPpc9NbdwhJ/LpDRDa6fYcTDr/6j6MiyrEZsM24CtZZKAKBVBquQ==",
- "dependencies": {
- "@nextui-org/form": "2.1.8",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-safe-layout-effect": "2.1.1",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/textfield": "3.15.0",
- "@react-aria/utils": "3.26.0",
- "@react-stately/utils": "3.10.5",
- "@react-types/shared": "3.26.0",
- "@react-types/textfield": "3.10.0",
- "react-textarea-autosize": "^8.5.3"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/input-otp": {
- "version": "2.1.8",
- "resolved": "https://registry.npmjs.org/@nextui-org/input-otp/-/input-otp-2.1.8.tgz",
- "integrity": "sha512-J5Pz0aSfWD+2cSgLTKQamCNF/qHILIj8L0lY3t1R/sgK1ApN3kDNcUGnVm6EDh+dOXITKpCfnsCQw834nxZhsg==",
- "dependencies": {
- "@nextui-org/form": "2.1.8",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/form": "3.0.11",
- "@react-aria/utils": "3.26.0",
- "@react-stately/form": "3.1.0",
- "@react-stately/utils": "3.10.5",
- "@react-types/textfield": "3.10.0",
- "input-otp": "1.4.1"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18",
- "react-dom": ">=18"
- }
- },
- "node_modules/@nextui-org/kbd": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/kbd/-/kbd-2.2.6.tgz",
- "integrity": "sha512-IwzvvwYLMbhyqX5PjEZyDBO4iNEHY6Nek4ZrVR+Z2dOSj/oZXHWiabNDrvOcGKgUBE6xc95Fi1jVubE9b5ueuA==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/system-rsc": "2.3.5",
- "@react-aria/utils": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/link": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/@nextui-org/link/-/link-2.2.7.tgz",
- "integrity": "sha512-SAeBBCUtdaKtHfZgRD6OH0De/+cKUEuThiErSuFW+sNm/y8m3cUhQH8UqVBPu6HwmqVTEjvZzp/4uhG6lcSZjA==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-aria-link": "2.2.5",
- "@react-aria/focus": "3.19.0",
- "@react-aria/link": "3.7.7",
- "@react-aria/utils": "3.26.0",
- "@react-types/link": "3.5.9"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/listbox": {
- "version": "2.3.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/listbox/-/listbox-2.3.9.tgz",
- "integrity": "sha512-iGJ8xwkXf8K7chk1iZgC05KGpHiWJXY1dnV7ytIJ7yu4BbsRIHb0QknK5j8A74YeGpouJQ9+jsmCERmySxlqlg==",
- "dependencies": {
- "@nextui-org/aria-utils": "2.2.7",
- "@nextui-org/divider": "2.2.5",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-is-mobile": "2.2.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/listbox": "3.13.6",
- "@react-aria/utils": "3.26.0",
- "@react-stately/list": "3.11.1",
- "@react-types/menu": "3.9.13",
- "@react-types/shared": "3.26.0",
- "@tanstack/react-virtual": "3.11.2"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/menu": {
- "version": "2.2.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/menu/-/menu-2.2.9.tgz",
- "integrity": "sha512-Fztvi3GRYl5a5FO/0LRzcAdnw8Yeq6NX8yLQh8XmwkWCrH0S6nTn69CP/j+EMWQR6G2UK5AbNDmX1Sx9aTQdHQ==",
- "dependencies": {
- "@nextui-org/aria-utils": "2.2.7",
- "@nextui-org/divider": "2.2.5",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-is-mobile": "2.2.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/menu": "3.16.0",
- "@react-aria/utils": "3.26.0",
- "@react-stately/menu": "3.9.0",
- "@react-stately/tree": "3.8.6",
- "@react-types/menu": "3.9.13",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/modal": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/@nextui-org/modal/-/modal-2.2.7.tgz",
- "integrity": "sha512-xxk6B+5s8//qYI4waLjdWoJFwR6Zqym/VHFKkuZAMpNABgTB0FCK022iUdOIP2F2epG69un8zJF0qwMBJF8XAA==",
- "dependencies": {
- "@nextui-org/dom-animation": "2.1.1",
- "@nextui-org/framer-utils": "2.1.6",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-aria-button": "2.2.4",
- "@nextui-org/use-aria-modal-overlay": "2.2.3",
- "@nextui-org/use-disclosure": "2.2.2",
- "@nextui-org/use-draggable": "2.1.2",
- "@react-aria/dialog": "3.5.20",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/overlays": "3.24.0",
- "@react-aria/utils": "3.26.0",
- "@react-stately/overlays": "3.6.12",
- "@react-types/overlays": "3.8.11"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/navbar": {
- "version": "2.2.8",
- "resolved": "https://registry.npmjs.org/@nextui-org/navbar/-/navbar-2.2.8.tgz",
- "integrity": "sha512-XutioQ75jonZk6TBtjFdV6N3eLe8y85tetjOdOg6X3mKTPZlQuBb+rtb6pVNOOvcuQ7zKigWIq2ammvF9VNKaQ==",
- "dependencies": {
- "@nextui-org/dom-animation": "2.1.1",
- "@nextui-org/framer-utils": "2.1.6",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-scroll-position": "2.1.1",
- "@react-aria/button": "3.11.0",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/overlays": "3.24.0",
- "@react-aria/utils": "3.26.0",
- "@react-stately/toggle": "3.8.0",
- "@react-stately/utils": "3.10.5"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/pagination": {
- "version": "2.2.8",
- "resolved": "https://registry.npmjs.org/@nextui-org/pagination/-/pagination-2.2.8.tgz",
- "integrity": "sha512-sZcriQq/ssOItX3r54tysnItjcb7dw392BNulJxrMMXi6FA6sUGImpJF1jsbtYJvaq346IoZvMrcrba8PXEk0g==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-intersection-observer": "2.2.2",
- "@nextui-org/use-pagination": "2.2.3",
- "@react-aria/focus": "3.19.0",
- "@react-aria/i18n": "3.12.4",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "scroll-into-view-if-needed": "3.0.10"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/popover": {
- "version": "2.3.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/popover/-/popover-2.3.9.tgz",
- "integrity": "sha512-glLYKlFJ4EkFrNMBC3ediFPpQwKzaFlzKoaMum2G3HUtmC4d1HLTSOQJOd2scUzZxD3/K9dp1XHYbEcCnCrYpQ==",
- "dependencies": {
- "@nextui-org/aria-utils": "2.2.7",
- "@nextui-org/button": "2.2.9",
- "@nextui-org/dom-animation": "2.1.1",
- "@nextui-org/framer-utils": "2.1.6",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-aria-button": "2.2.4",
- "@nextui-org/use-safe-layout-effect": "2.1.1",
- "@react-aria/dialog": "3.5.20",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/overlays": "3.24.0",
- "@react-aria/utils": "3.26.0",
- "@react-stately/overlays": "3.6.12",
- "@react-types/button": "3.10.1",
- "@react-types/overlays": "3.8.11"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/progress": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/progress/-/progress-2.2.6.tgz",
- "integrity": "sha512-FTicOncNcXKpt9avxQWWlVATvhABKVMBgsB81SozFXRcn8QsFntjdMp0l3688DJKBY0GxT+yl/S/by0TwY1Z1A==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-is-mounted": "2.1.1",
- "@react-aria/i18n": "3.12.4",
- "@react-aria/progress": "3.4.18",
- "@react-aria/utils": "3.26.0",
- "@react-types/progress": "3.5.8"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/radio": {
- "version": "2.3.8",
- "resolved": "https://registry.npmjs.org/@nextui-org/radio/-/radio-2.3.8.tgz",
- "integrity": "sha512-ntwjpQ/WT8zQ3Fw5io65VeH2Q68LOgZ4lII7a6x35NDa7Eda1vlYroMAw/vxK8iyZYlUBSJdsoj2FU/10hBPmg==",
- "dependencies": {
- "@nextui-org/form": "2.1.8",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/radio": "3.10.10",
- "@react-aria/utils": "3.26.0",
- "@react-aria/visually-hidden": "3.8.18",
- "@react-stately/radio": "3.10.9",
- "@react-types/radio": "3.8.5",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.3",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/react": {
- "version": "2.6.11",
- "resolved": "https://registry.npmjs.org/@nextui-org/react/-/react-2.6.11.tgz",
- "integrity": "sha512-MOkBMWI+1nHB6A8YLXakdXrNRFvy5whjFJB1FthwqbP8pVEeksS1e29AbfEFkrzLc5zjN7i24wGNSJ8DKMt9WQ==",
- "dependencies": {
- "@nextui-org/accordion": "2.2.7",
- "@nextui-org/alert": "2.2.9",
- "@nextui-org/autocomplete": "2.3.9",
- "@nextui-org/avatar": "2.2.6",
- "@nextui-org/badge": "2.2.5",
- "@nextui-org/breadcrumbs": "2.2.6",
- "@nextui-org/button": "2.2.9",
- "@nextui-org/calendar": "2.2.9",
- "@nextui-org/card": "2.2.9",
- "@nextui-org/checkbox": "2.3.8",
- "@nextui-org/chip": "2.2.6",
- "@nextui-org/code": "2.2.6",
- "@nextui-org/date-input": "2.3.8",
- "@nextui-org/date-picker": "2.3.9",
- "@nextui-org/divider": "2.2.5",
- "@nextui-org/drawer": "2.2.7",
- "@nextui-org/dropdown": "2.3.9",
- "@nextui-org/form": "2.1.8",
- "@nextui-org/framer-utils": "2.1.6",
- "@nextui-org/image": "2.2.5",
- "@nextui-org/input": "2.4.8",
- "@nextui-org/input-otp": "2.1.8",
- "@nextui-org/kbd": "2.2.6",
- "@nextui-org/link": "2.2.7",
- "@nextui-org/listbox": "2.3.9",
- "@nextui-org/menu": "2.2.9",
- "@nextui-org/modal": "2.2.7",
- "@nextui-org/navbar": "2.2.8",
- "@nextui-org/pagination": "2.2.8",
- "@nextui-org/popover": "2.3.9",
- "@nextui-org/progress": "2.2.6",
- "@nextui-org/radio": "2.3.8",
- "@nextui-org/ripple": "2.2.7",
- "@nextui-org/scroll-shadow": "2.3.5",
- "@nextui-org/select": "2.4.9",
- "@nextui-org/skeleton": "2.2.5",
- "@nextui-org/slider": "2.4.7",
- "@nextui-org/snippet": "2.2.10",
- "@nextui-org/spacer": "2.2.6",
- "@nextui-org/spinner": "2.2.6",
- "@nextui-org/switch": "2.2.8",
- "@nextui-org/system": "2.4.6",
- "@nextui-org/table": "2.2.8",
- "@nextui-org/tabs": "2.2.7",
- "@nextui-org/theme": "2.4.5",
- "@nextui-org/tooltip": "2.2.7",
- "@nextui-org/user": "2.2.6",
- "@react-aria/visually-hidden": "3.8.18"
- },
- "peerDependencies": {
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/react-rsc-utils": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.1.1.tgz",
- "integrity": "sha512-9uKH1XkeomTGaswqlGKt0V0ooUev8mPXtKJolR+6MnpvBUrkqngw1gUGF0bq/EcCCkks2+VOHXZqFT6x9hGkQQ==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/react-utils": {
- "version": "2.1.3",
- "resolved": "https://registry.npmjs.org/@nextui-org/react-utils/-/react-utils-2.1.3.tgz",
- "integrity": "sha512-o61fOS+S8p3KtgLLN7ub5gR0y7l517l9eZXJabUdnVcZzZjTqEijWjzjIIIyAtYAlL4d+WTXEOROuc32sCmbqw==",
- "dependencies": {
- "@nextui-org/react-rsc-utils": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/ripple": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/@nextui-org/ripple/-/ripple-2.2.7.tgz",
- "integrity": "sha512-cphzlvCjdROh1JWQhO/wAsmBdlU9kv/UA2YRQS4viaWcA3zO+qOZVZ9/YZMan6LBlOLENCaE9CtV2qlzFtVpEg==",
- "dependencies": {
- "@nextui-org/dom-animation": "2.1.1",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/scroll-shadow": {
- "version": "2.3.5",
- "resolved": "https://registry.npmjs.org/@nextui-org/scroll-shadow/-/scroll-shadow-2.3.5.tgz",
- "integrity": "sha512-2H5qro6RHcWo6ZfcG2hHZHsR1LrV3FMZP5Lkc9ZwJdWPg4dXY4erGRE4U+B7me6efj5tBOFmZkIpxVUyMBLtZg==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-data-scroll-overflow": "2.2.2"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/select": {
- "version": "2.4.9",
- "resolved": "https://registry.npmjs.org/@nextui-org/select/-/select-2.4.9.tgz",
- "integrity": "sha512-R8HHKDH7dA4Dv73Pl80X7qfqdyl+Fw4gi/9bmyby0QJG8LN2zu51xyjjKphmWVkAiE3O35BRVw7vMptHnWFUgQ==",
- "dependencies": {
- "@nextui-org/aria-utils": "2.2.7",
- "@nextui-org/form": "2.1.8",
- "@nextui-org/listbox": "2.3.9",
- "@nextui-org/popover": "2.3.9",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/scroll-shadow": "2.3.5",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/spinner": "2.2.6",
- "@nextui-org/use-aria-button": "2.2.4",
- "@nextui-org/use-aria-multiselect": "2.4.3",
- "@nextui-org/use-safe-layout-effect": "2.1.1",
- "@react-aria/focus": "3.19.0",
- "@react-aria/form": "3.0.11",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "@react-aria/visually-hidden": "3.8.18",
- "@react-types/shared": "3.26.0",
- "@tanstack/react-virtual": "3.11.2"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/shared-icons": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@nextui-org/shared-icons/-/shared-icons-2.1.1.tgz",
- "integrity": "sha512-mkiTpFJnCzB2M8Dl7IwXVzDKKq9ZW2WC0DaQRs1eWgqboRCP8DDde+MJZq331hC7pfH8BC/4rxXsKECrOUUwCg==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/shared-utils": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.1.2.tgz",
- "integrity": "sha512-5n0D+AGB4P9lMD1TxwtdRSuSY0cWgyXKO9mMU11Xl3zoHNiAz/SbCSTc4VBJdQJ7Y3qgNXvZICzf08+bnjjqqA=="
- },
- "node_modules/@nextui-org/skeleton": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@nextui-org/skeleton/-/skeleton-2.2.5.tgz",
- "integrity": "sha512-CK1O9dqS0xPW3o1SIekEEOjSosJkXNzU0Zd538Nn1XhY1RjNuIPchpY9Pv5YZr2QSKy0zkwPQt/NalwErke0Jg==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/slider": {
- "version": "2.4.7",
- "resolved": "https://registry.npmjs.org/@nextui-org/slider/-/slider-2.4.7.tgz",
- "integrity": "sha512-/RnjnmAPvssebhtElG+ZI8CCot2dEBcEjw7LrHfmVnJOd5jgceMtnXhdJSppQuLvcC4fPpkhd6dY86IezOZwfw==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/tooltip": "2.2.7",
- "@react-aria/focus": "3.19.0",
- "@react-aria/i18n": "3.12.4",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/slider": "3.7.14",
- "@react-aria/utils": "3.26.0",
- "@react-aria/visually-hidden": "3.8.18",
- "@react-stately/slider": "3.6.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/snippet": {
- "version": "2.2.10",
- "resolved": "https://registry.npmjs.org/@nextui-org/snippet/-/snippet-2.2.10.tgz",
- "integrity": "sha512-mVjf8muq4TX2PlESN7EeHgFmjuz7PNhrKFP+fb8Lj9J6wvUIUDm5ENv9bs72cRsK+zse6OUNE4JF1er6HllKug==",
- "dependencies": {
- "@nextui-org/button": "2.2.9",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/tooltip": "2.2.7",
- "@nextui-org/use-clipboard": "2.1.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/utils": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/spacer": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/spacer/-/spacer-2.2.6.tgz",
- "integrity": "sha512-1qYtZ6xICfSrFV0MMB/nUH1K2X9mHzIikrjC/okzyzWywibsVNbyRfu5vObVClYlVGY0r4M4+7fpV2QV1tKRGw==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/system-rsc": "2.3.5"
- },
- "peerDependencies": {
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/spinner": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/spinner/-/spinner-2.2.6.tgz",
- "integrity": "sha512-0V0H8jVpgRolgLnCuKDbrQCSK0VFPAZYiyGOE1+dfyIezpta+Nglh+uEl2sEFNh6B9Z8mARB8YEpRnTcA0ePDw==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/system-rsc": "2.3.5"
- },
- "peerDependencies": {
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/switch": {
- "version": "2.2.8",
- "resolved": "https://registry.npmjs.org/@nextui-org/switch/-/switch-2.2.8.tgz",
- "integrity": "sha512-wk9qQSOfUEtmdWR1omKjmEYzgMjJhVizvfW6Z0rKOiMUuSud2d4xYnUmZhU22cv2WtoPV//kBjXkYD/E/t6rdg==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-safe-layout-effect": "2.1.1",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/switch": "3.6.10",
- "@react-aria/utils": "3.26.0",
- "@react-aria/visually-hidden": "3.8.18",
- "@react-stately/toggle": "3.8.0",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.3",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/system": {
- "version": "2.4.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.4.6.tgz",
- "integrity": "sha512-6ujAriBZMfQ16n6M6Ad9g32KJUa1CzqIVaHN/tymadr/3m8hrr7xDw6z50pVjpCRq2PaaA1hT8Hx7EFU3f2z3Q==",
- "dependencies": {
- "@internationalized/date": "3.6.0",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/system-rsc": "2.3.5",
- "@react-aria/i18n": "3.12.4",
- "@react-aria/overlays": "3.24.0",
- "@react-aria/utils": "3.26.0",
- "@react-stately/utils": "3.10.5",
- "@react-types/datepicker": "3.9.0"
- },
- "peerDependencies": {
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/system-rsc": {
- "version": "2.3.5",
- "resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.3.5.tgz",
- "integrity": "sha512-DpVLNV9LkeP1yDULFCXm2mxA9m4ygS7XYy3lwgcF9M1A8QAWB+ut+FcP+8a6va50oSHOqwvUwPDUslgXTPMBfQ==",
- "dependencies": {
- "@react-types/shared": "3.26.0",
- "clsx": "^1.2.1"
- },
- "peerDependencies": {
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/table": {
- "version": "2.2.8",
- "resolved": "https://registry.npmjs.org/@nextui-org/table/-/table-2.2.8.tgz",
- "integrity": "sha512-XNM0/Ed7Re3BA1eHL31rzALea9hgsBwD0rMR2qB2SAl2e8KaV2o+4bzgYhpISAzHQtlG8IsXanxiuNDH8OPVyw==",
- "dependencies": {
- "@nextui-org/checkbox": "2.3.8",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-icons": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/spacer": "2.2.6",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/table": "3.16.0",
- "@react-aria/utils": "3.26.0",
- "@react-aria/visually-hidden": "3.8.18",
- "@react-stately/table": "3.13.0",
- "@react-stately/virtualizer": "4.2.0",
- "@react-types/grid": "3.2.10",
- "@react-types/table": "3.10.3"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/tabs": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/@nextui-org/tabs/-/tabs-2.2.7.tgz",
- "integrity": "sha512-EDPK0MOR4DPTfud9Khr5AikLbyEhHTlkGfazbOxg7wFaHysOnV5Y/E6UfvaN69kgIeT7NQcDFdaCKJ/AX1N7AA==",
- "dependencies": {
- "@nextui-org/aria-utils": "2.2.7",
- "@nextui-org/framer-utils": "2.1.6",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-is-mounted": "2.1.1",
- "@nextui-org/use-update-effect": "2.1.1",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/tabs": "3.9.8",
- "@react-aria/utils": "3.26.0",
- "@react-stately/tabs": "3.7.0",
- "@react-types/shared": "3.26.0",
- "@react-types/tabs": "3.3.11",
- "scroll-into-view-if-needed": "3.0.10"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/theme": {
- "version": "2.4.5",
- "resolved": "https://registry.npmjs.org/@nextui-org/theme/-/theme-2.4.5.tgz",
- "integrity": "sha512-c7Y17n+hBGiFedxMKfg7Qyv93iY5MteamLXV4Po4c1VF1qZJI6I+IKULFh3FxPWzAoz96r6NdYT7OLFjrAJdWg==",
- "dependencies": {
- "@nextui-org/shared-utils": "2.1.2",
- "clsx": "^1.2.1",
- "color": "^4.2.3",
- "color2k": "^2.0.2",
- "deepmerge": "4.3.1",
- "flat": "^5.0.2",
- "tailwind-merge": "^2.5.2",
- "tailwind-variants": "^0.1.20"
- },
- "peerDependencies": {
- "tailwindcss": ">=3.4.0"
- }
- },
- "node_modules/@nextui-org/tooltip": {
- "version": "2.2.7",
- "resolved": "https://registry.npmjs.org/@nextui-org/tooltip/-/tooltip-2.2.7.tgz",
- "integrity": "sha512-NgoaxcNwuCq/jvp77dmGzyS7JxzX4dvD/lAYi/GUhyxEC3TK3teZ3ADRhrC6tb84OpaelPLaTkhRNSaxVAQzjQ==",
- "dependencies": {
- "@nextui-org/aria-utils": "2.2.7",
- "@nextui-org/dom-animation": "2.1.1",
- "@nextui-org/framer-utils": "2.1.6",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/use-safe-layout-effect": "2.1.1",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/overlays": "3.24.0",
- "@react-aria/tooltip": "3.7.10",
- "@react-aria/utils": "3.26.0",
- "@react-stately/tooltip": "3.5.0",
- "@react-types/overlays": "3.8.11",
- "@react-types/tooltip": "3.4.13"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-aria-accordion": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-accordion/-/use-aria-accordion-2.2.2.tgz",
- "integrity": "sha512-M8gjX6XmB83cIAZKV2zI1KvmTuuOh+Si50F3SWvYjBXyrDIM5775xCs2PG6AcLjf6OONTl5KwuZ2cbSDHiui6A==",
- "dependencies": {
- "@react-aria/button": "3.11.0",
- "@react-aria/focus": "3.19.0",
- "@react-aria/selection": "3.21.0",
- "@react-aria/utils": "3.26.0",
- "@react-stately/tree": "3.8.6",
- "@react-types/accordion": "3.0.0-alpha.25",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-aria-button": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-button/-/use-aria-button-2.2.4.tgz",
- "integrity": "sha512-Bz8l4JGzRKh6V58VX8Laq4rKZDppsnVuNCBHpMJuLo2F9ht7UKvZAEJwXcdbUZ87aui/ZC+IPYqgjvT+d8QlQg==",
- "dependencies": {
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "@react-types/button": "3.10.1",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-aria-link": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-link/-/use-aria-link-2.2.5.tgz",
- "integrity": "sha512-LBWXLecvuET4ZcpoHyyuS3yxvCzXdkmFcODhYwUmC8PiFSEUHkuFMC+fLwdXCP5GOqrv6wTGYHf41wNy1ugX1w==",
- "dependencies": {
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/utils": "3.26.0",
- "@react-types/link": "3.5.9",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-aria-modal-overlay": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-modal-overlay/-/use-aria-modal-overlay-2.2.3.tgz",
- "integrity": "sha512-55DIVY0u+Ynxy1/DtzZkMsdVW63wC0mafKXACwCi0xV64D0Ggi9MM7BRePLK0mOboSb3gjCwYqn12gmRiy+kmg==",
- "dependencies": {
- "@react-aria/overlays": "3.24.0",
- "@react-aria/utils": "3.26.0",
- "@react-stately/overlays": "3.6.12",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-aria-multiselect": {
- "version": "2.4.3",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-multiselect/-/use-aria-multiselect-2.4.3.tgz",
- "integrity": "sha512-PwDA4Y5DOx0SMxc277JeZi8tMtaINTwthPhk8SaDrtOBhP+r9owS3T/W9t37xKnmrTerHwaEq4ADGQtm5/VMXQ==",
- "dependencies": {
- "@react-aria/i18n": "3.12.4",
- "@react-aria/interactions": "3.22.5",
- "@react-aria/label": "3.7.13",
- "@react-aria/listbox": "3.13.6",
- "@react-aria/menu": "3.16.0",
- "@react-aria/selection": "3.21.0",
- "@react-aria/utils": "3.26.0",
- "@react-stately/form": "3.1.0",
- "@react-stately/list": "3.11.1",
- "@react-stately/menu": "3.9.0",
- "@react-types/button": "3.10.1",
- "@react-types/overlays": "3.8.11",
- "@react-types/select": "3.9.8",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-callback-ref": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-callback-ref/-/use-callback-ref-2.1.1.tgz",
- "integrity": "sha512-DzlKJ9p7Tm0x3HGjynZ/CgS1jfoBILXKFXnYPLr/SSETXqVaCguixolT/07BRB1yo9AGwELaCEt91BeI0Rb6hQ==",
- "dependencies": {
- "@nextui-org/use-safe-layout-effect": "2.1.1"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-clipboard": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-clipboard/-/use-clipboard-2.1.2.tgz",
- "integrity": "sha512-MUITEPaQAvu9VuMCUQXMc4j3uBgXoD8LVcuuvUVucg/8HK/Xia0dQ4QgK30QlCbZ/BwZ047rgMAgpMZeVKw4MQ==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-data-scroll-overflow": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-data-scroll-overflow/-/use-data-scroll-overflow-2.2.2.tgz",
- "integrity": "sha512-TFB6BuaLOsE++K1UEIPR9StkBgj9Cvvc+ccETYpmn62B7pK44DmxjkwhK0ei59wafJPIyytZ3DgdVDblfSyIXA==",
- "dependencies": {
- "@nextui-org/shared-utils": "2.1.2"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-disclosure": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-disclosure/-/use-disclosure-2.2.2.tgz",
- "integrity": "sha512-ka+5Fic2MIYtOMHi3zomtkWxCWydmJmcq7+fb6RHspfr0tGYjXWYO/lgtGeHFR1LYksMPLID3c7shT5bqzxJcA==",
- "dependencies": {
- "@nextui-org/use-callback-ref": "2.1.1",
- "@react-aria/utils": "3.26.0",
- "@react-stately/utils": "3.10.5"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-draggable": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-draggable/-/use-draggable-2.1.2.tgz",
- "integrity": "sha512-gN4G42uuRyFlAZ3FgMSeZLBg3LIeGlKTOLRe3JvyaBn1D1mA2+I3XONY1oKd9KKmtYCJNwY/2x6MVsBfy8nsgw==",
- "dependencies": {
- "@react-aria/interactions": "3.22.5"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-image": {
- "version": "2.1.2",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-image/-/use-image-2.1.2.tgz",
- "integrity": "sha512-I46M5gCJK4rZ0qYHPx3kVSF2M2uGaWPwzb3w4Cmx8K9QS+LbUQtRMbD8KOGTHZGA3kBDPvFbAi53Ert4eACrZQ==",
- "dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/use-safe-layout-effect": "2.1.1"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-intersection-observer": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-intersection-observer/-/use-intersection-observer-2.2.2.tgz",
- "integrity": "sha512-fS/4m8jnXO7GYpnp/Lp+7bfBEAXPzqsXgqGK6qrp7sfFEAbLzuJp0fONkbIB3F6F3FJrbFOlY+Y5qrHptO7U/Q==",
- "dependencies": {
- "@react-aria/interactions": "3.22.5",
- "@react-aria/ssr": "3.9.7",
- "@react-aria/utils": "3.26.0",
- "@react-types/shared": "3.26.0"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-is-mobile": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-is-mobile/-/use-is-mobile-2.2.2.tgz",
- "integrity": "sha512-gcmUL17fhgGdu8JfXF12FZCGATJIATxV4jSql+FNhR+gc+QRRWBRmCJSpMIE2RvGXL777tDvvoh/tjFMB3pW4w==",
- "dependencies": {
- "@react-aria/ssr": "3.9.7"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-is-mounted": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-is-mounted/-/use-is-mounted-2.1.1.tgz",
- "integrity": "sha512-osJB3E/DCu4Le0f+pb21ia9/TaSHwme4r0fHjO5/nUBYk/RCvGlRUUCJClf/wi9WfH8QyjuJ27+zBcUSm6AMMg==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-measure": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-measure/-/use-measure-2.1.1.tgz",
- "integrity": "sha512-2RVn90gXHTgt6fvzBH4fzgv3hMDz+SEJkqaCTbd6WUNWag4AaLb2WU/65CtLcexyu10HrgYf2xG07ZqtJv0zSg==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-pagination": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-pagination/-/use-pagination-2.2.3.tgz",
- "integrity": "sha512-V2WGIq4LLkTpq6EUhJg3MVvHY2ZJ63AYV9N0d52Dc3Qqok0tTRuY51dd1P+F58HyTPW84W2z4q2R8XALtzFxQw==",
- "dependencies": {
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/i18n": "3.12.4"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-safe-layout-effect": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-safe-layout-effect/-/use-safe-layout-effect-2.1.1.tgz",
- "integrity": "sha512-p0vezi2eujC3rxlMQmCLQlc8CNbp+GQgk6YcSm7Rk10isWVlUII5T1L3y+rcFYdgTPObCkCngPPciNQhD7Lf7g==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-scroll-position": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-scroll-position/-/use-scroll-position-2.1.1.tgz",
- "integrity": "sha512-RgY1l2POZbSjnEirW51gdb8yNPuQXHqJx3TS8Ut5dk+bhaX9JD3sUdEiJNb3qoHAJInzyjN+27hxnACSlW0gzg==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-update-effect": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/@nextui-org/use-update-effect/-/use-update-effect-2.1.1.tgz",
- "integrity": "sha512-fKODihHLWcvDk1Sm8xDua9zjdbstxTOw9shB7k/mPkeR3E7SouSpN0+LW67Bczh1EmbRg1pIrFpEOLnbpgMFzA==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/user": {
- "version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/user/-/user-2.2.6.tgz",
- "integrity": "sha512-iimFoP3DVK85p78r0ekC7xpVPQiBIbWnyBPdrnBj1UEgQdKoUzGhVbhYUnA8niBz/AS5xLt6aQixsv9/B0/msw==",
- "dependencies": {
- "@nextui-org/avatar": "2.2.6",
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/shared-utils": "2.1.2",
- "@react-aria/focus": "3.19.0",
- "@react-aria/utils": "3.26.0"
- },
- "peerDependencies": {
- "@nextui-org/system": ">=2.4.0",
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
@@ -2504,53 +2645,57 @@
}
},
"node_modules/@react-aria/breadcrumbs": {
- "version": "3.5.19",
- "resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.19.tgz",
- "integrity": "sha512-mVngOPFYVVhec89rf/CiYQGTfaLRfHFtX+JQwY7sNYNqSA+gO8p4lNARe3Be6bJPgH+LUQuruIY9/ZDL6LT3HA==",
+ "version": "3.5.26",
+ "resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.26.tgz",
+ "integrity": "sha512-jybk2jy3m9KNmTpzJu87C0nkcMcGbZIyotgK1s8st8aUE2aJlxPZrvGuJTO8GUFZn9TKnCg3JjBC8qS9sizKQg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/link": "^3.7.7",
- "@react-aria/utils": "^3.26.0",
- "@react-types/breadcrumbs": "^3.7.9",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/link": "^3.8.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-types/breadcrumbs": "^3.7.14",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-aria/button": {
- "version": "3.11.0",
- "resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.11.0.tgz",
- "integrity": "sha512-b37eIV6IW11KmNIAm65F3SEl2/mgj5BrHIysW6smZX3KoKWTGYsYfcQkmtNgY0GOSFfDxMCoolsZ6mxC00nSDA==",
+ "version": "3.13.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.13.3.tgz",
+ "integrity": "sha512-Xn7eTssaefNPUydogI1qDf7qQWPmb+hGoS1QiCNBodPlRpVDXxlZSIhOqQFnLWHv5+z5UL+vu+joqlSPYHqOFw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/toolbar": "3.0.0-beta.11",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/toggle": "^3.8.0",
- "@react-types/button": "^3.10.1",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/toolbar": "3.0.0-beta.18",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/toggle": "^3.8.5",
+ "@react-types/button": "^3.12.2",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-aria/calendar": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/@react-aria/calendar/-/calendar-3.6.0.tgz",
- "integrity": "sha512-tZ3nd5DP8uxckbj83Pt+4RqgcTWDlGi7njzc7QqFOG2ApfnYDUXbIpb/Q4KY6JNlJskG8q33wo0XfOwNy8J+eg==",
+ "version": "3.8.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/calendar/-/calendar-3.8.3.tgz",
+ "integrity": "sha512-1TAZADcWbfznXzo4oJEqFgX4IE1chZjWsTSJDWr03UEx3XqIJI8GXm+ylOQUiN4j8xqZ7tl4yNuuslKkzoSjMQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@internationalized/date": "^3.6.0",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/live-announcer": "^3.4.1",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/calendar": "^3.6.0",
- "@react-types/button": "^3.10.1",
- "@react-types/calendar": "^3.5.0",
- "@react-types/shared": "^3.26.0",
+ "@internationalized/date": "^3.8.2",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/live-announcer": "^3.4.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/calendar": "^3.8.2",
+ "@react-types/button": "^3.12.2",
+ "@react-types/calendar": "^3.7.2",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2559,45 +2704,49 @@
}
},
"node_modules/@react-aria/checkbox": {
- "version": "3.15.0",
- "resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.15.0.tgz",
- "integrity": "sha512-z/8xd4em7o0MroBXwkkwv7QRwiJaA1FwqMhRUb7iqtBGP2oSytBEDf0N7L09oci32a1P4ZPz2rMK5GlLh/PD6g==",
+ "version": "3.15.7",
+ "resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.15.7.tgz",
+ "integrity": "sha512-L64van+K2ZEmCpx/KeZGHoxdxQvVHgfusFRFYZbh3e7YEtDcShvUrTDVKmZkINqnmuhGTDolFDQq+E8fWEpcRg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/form": "^3.0.11",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/label": "^3.7.13",
- "@react-aria/toggle": "^3.10.10",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/checkbox": "^3.6.10",
- "@react-stately/form": "^3.1.0",
- "@react-stately/toggle": "^3.8.0",
- "@react-types/checkbox": "^3.9.0",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/form": "^3.0.18",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/label": "^3.7.19",
+ "@react-aria/toggle": "^3.11.5",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/checkbox": "^3.6.15",
+ "@react-stately/form": "^3.1.5",
+ "@react-stately/toggle": "^3.8.5",
+ "@react-types/checkbox": "^3.9.5",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-aria/combobox": {
- "version": "3.11.0",
- "resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.11.0.tgz",
- "integrity": "sha512-s88YMmPkMO1WSoiH1KIyZDLJqUwvM2wHXXakj3cYw1tBHGo4rOUFq+JWQIbM5EDO4HOR4AUUqzIUd0NO7t3zyg==",
+ "version": "3.12.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.12.5.tgz",
+ "integrity": "sha512-mg9RrOTjxQFPy0BQrlqdp5uUC2pLevIqhZit6OfndmOr7khQ32qepDjXoSwYeeSag/jrokc2cGfXfzOwrgAFaQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/listbox": "^3.13.6",
- "@react-aria/live-announcer": "^3.4.1",
- "@react-aria/menu": "^3.16.0",
- "@react-aria/overlays": "^3.24.0",
- "@react-aria/selection": "^3.21.0",
- "@react-aria/textfield": "^3.15.0",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/collections": "^3.12.0",
- "@react-stately/combobox": "^3.10.1",
- "@react-stately/form": "^3.1.0",
- "@react-types/button": "^3.10.1",
- "@react-types/combobox": "^3.13.1",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/focus": "^3.20.5",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/listbox": "^3.14.6",
+ "@react-aria/live-announcer": "^3.4.3",
+ "@react-aria/menu": "^3.18.5",
+ "@react-aria/overlays": "^3.27.3",
+ "@react-aria/selection": "^3.24.3",
+ "@react-aria/textfield": "^3.17.5",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/collections": "^3.12.5",
+ "@react-stately/combobox": "^3.10.6",
+ "@react-stately/form": "^3.1.5",
+ "@react-types/button": "^3.12.2",
+ "@react-types/combobox": "^3.13.6",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2606,27 +2755,28 @@
}
},
"node_modules/@react-aria/datepicker": {
- "version": "3.12.0",
- "resolved": "https://registry.npmjs.org/@react-aria/datepicker/-/datepicker-3.12.0.tgz",
- "integrity": "sha512-VYNXioLfddIHpwQx211+rTYuunDmI7VHWBRetCpH3loIsVFuhFSRchTQpclAzxolO3g0vO7pMVj9VYt7Swp6kg==",
+ "version": "3.14.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/datepicker/-/datepicker-3.14.5.tgz",
+ "integrity": "sha512-TeV/yXEOQ2QOYMxvetWcWUcZN83evmnmG/uSruTdk93e2nZzs227Gg/M95tzgCYRRACCzSzrGujJhNs12Nh7mg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@internationalized/date": "^3.6.0",
- "@internationalized/number": "^3.6.0",
- "@internationalized/string": "^3.2.5",
- "@react-aria/focus": "^3.19.0",
- "@react-aria/form": "^3.0.11",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/label": "^3.7.13",
- "@react-aria/spinbutton": "^3.6.10",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/datepicker": "^3.11.0",
- "@react-stately/form": "^3.1.0",
- "@react-types/button": "^3.10.1",
- "@react-types/calendar": "^3.5.0",
- "@react-types/datepicker": "^3.9.0",
- "@react-types/dialog": "^3.5.14",
- "@react-types/shared": "^3.26.0",
+ "@internationalized/date": "^3.8.2",
+ "@internationalized/number": "^3.6.3",
+ "@internationalized/string": "^3.2.7",
+ "@react-aria/focus": "^3.20.5",
+ "@react-aria/form": "^3.0.18",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/label": "^3.7.19",
+ "@react-aria/spinbutton": "^3.6.16",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/datepicker": "^3.14.2",
+ "@react-stately/form": "^3.1.5",
+ "@react-types/button": "^3.12.2",
+ "@react-types/calendar": "^3.7.2",
+ "@react-types/datepicker": "^3.12.2",
+ "@react-types/dialog": "^3.5.19",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2635,15 +2785,16 @@
}
},
"node_modules/@react-aria/dialog": {
- "version": "3.5.20",
- "resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.5.20.tgz",
- "integrity": "sha512-l0GZVLgeOd3kL3Yj8xQW7wN3gn9WW3RLd/SGI9t7ciTq+I/FhftjXCWzXLlOCCTLMf+gv7eazecECtmoWUaZWQ==",
+ "version": "3.5.27",
+ "resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.5.27.tgz",
+ "integrity": "sha512-Sp8LWQQYNxkLk2+L0bdWmAd9fz1YIrzvxbHXmAn9Tn6+/4SPnQhkOo+qQwtHFbjqe9fyS7cJZxegXd1RegIFew==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/overlays": "^3.24.0",
- "@react-aria/utils": "^3.26.0",
- "@react-types/dialog": "^3.5.14",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/overlays": "^3.27.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-types/dialog": "^3.5.19",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2652,60 +2803,41 @@
}
},
"node_modules/@react-aria/focus": {
- "version": "3.19.0",
- "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.19.0.tgz",
- "integrity": "sha512-hPF9EXoUQeQl1Y21/rbV2H4FdUR2v+4/I0/vB+8U3bT1CJ+1AFj1hc/rqx2DqEwDlEwOHN+E4+mRahQmlybq0A==",
+ "version": "3.20.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.20.5.tgz",
+ "integrity": "sha512-JpFtXmWQ0Oca7FcvkqgjSyo6xEP7v3oQOLUId6o0xTvm4AD5W0mU2r3lYrbhsJ+XxdUUX4AVR5473sZZ85kU4A==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/utils": "^3.26.0",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0",
"clsx": "^2.0.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-aria/focus/node_modules/clsx": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "license": "MIT",
"engines": {
"node": ">=6"
}
},
"node_modules/@react-aria/form": {
- "version": "3.0.11",
- "resolved": "https://registry.npmjs.org/@react-aria/form/-/form-3.0.11.tgz",
- "integrity": "sha512-oXzjTiwVuuWjZ8muU0hp3BrDH5qjVctLOF50mjPvqUbvXQTHhoDxWweyIXPQjGshaqBd2w4pWaE4A2rG2O/apw==",
+ "version": "3.0.18",
+ "resolved": "https://registry.npmjs.org/@react-aria/form/-/form-3.0.18.tgz",
+ "integrity": "sha512-e4Ktc3NiNwV5dz82zVE7lspYmKwAnGoJfOHgc9MApS7Fy/BEAuVUuLgTjMo1x5me7dY+ADxqrIhbOpifscGGoQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/form": "^3.1.0",
- "@react-types/shared": "^3.26.0",
- "@swc/helpers": "^0.5.0"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
- }
- },
- "node_modules/@react-aria/grid": {
- "version": "3.11.0",
- "resolved": "https://registry.npmjs.org/@react-aria/grid/-/grid-3.11.0.tgz",
- "integrity": "sha512-lN5FpQgu2Rq0CzTPWmzRpq6QHcMmzsXYeClsgO3108uVp1/genBNAObYVTxGOKe/jb9q99trz8EtIn05O6KN1g==",
- "dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/live-announcer": "^3.4.1",
- "@react-aria/selection": "^3.21.0",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/collections": "^3.12.0",
- "@react-stately/grid": "^3.10.0",
- "@react-stately/selection": "^3.18.0",
- "@react-types/checkbox": "^3.9.0",
- "@react-types/grid": "^3.2.10",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/form": "^3.1.5",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2713,80 +2845,458 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
- "node_modules/@react-aria/i18n": {
- "version": "3.12.4",
- "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.12.4.tgz",
- "integrity": "sha512-j9+UL3q0Ls8MhXV9gtnKlyozq4aM95YywXqnmJtzT1rYeBx7w28hooqrWkCYLfqr4OIryv1KUnPiCSLwC2OC7w==",
+ "node_modules/@react-aria/grid": {
+ "version": "3.14.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/grid/-/grid-3.14.3.tgz",
+ "integrity": "sha512-O4Ius5tJqKcMGfQT6IXD4MnEOeq6f/59nKmfCLTXMREFac/oxafqanUx3zrEVYbaqLOjEmONcd8S61ptQM6aPg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@internationalized/date": "^3.6.0",
- "@internationalized/message": "^3.1.6",
- "@internationalized/number": "^3.6.0",
- "@internationalized/string": "^3.2.5",
- "@react-aria/ssr": "^3.9.7",
- "@react-aria/utils": "^3.26.0",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/focus": "^3.21.0",
+ "@react-aria/i18n": "^3.12.11",
+ "@react-aria/interactions": "^3.25.4",
+ "@react-aria/live-announcer": "^3.4.4",
+ "@react-aria/selection": "^3.25.0",
+ "@react-aria/utils": "^3.30.0",
+ "@react-stately/collections": "^3.12.6",
+ "@react-stately/grid": "^3.11.4",
+ "@react-stately/selection": "^3.20.4",
+ "@react-types/checkbox": "^3.10.0",
+ "@react-types/grid": "^3.3.4",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/@react-aria/focus": {
+ "version": "3.21.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.21.0.tgz",
+ "integrity": "sha512-7NEGtTPsBy52EZ/ToVKCu0HSelE3kq9qeis+2eEq90XSuJOMaDHUQrA7RC2Y89tlEwQB31bud/kKRi9Qme1dkA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.25.4",
+ "@react-aria/utils": "^3.30.0",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/@react-aria/i18n": {
+ "version": "3.12.11",
+ "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.12.11.tgz",
+ "integrity": "sha512-1mxUinHbGJ6nJ/uSl62dl48vdZfWTBZePNF/wWQy98gR0qNFXLeusd7CsEmJT1971CR5i/WNYUo1ezNlIJnu6A==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@internationalized/date": "^3.8.2",
+ "@internationalized/message": "^3.1.8",
+ "@internationalized/number": "^3.6.4",
+ "@internationalized/string": "^3.2.7",
+ "@react-aria/ssr": "^3.9.10",
+ "@react-aria/utils": "^3.30.0",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/@react-aria/interactions": {
+ "version": "3.25.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.25.4.tgz",
+ "integrity": "sha512-HBQMxgUPHrW8V63u9uGgBymkMfj6vdWbB0GgUJY49K9mBKMsypcHeWkWM6+bF7kxRO728/IK8bWDV6whDbqjHg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.10",
+ "@react-aria/utils": "^3.30.0",
+ "@react-stately/flags": "^3.1.2",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/@react-aria/selection": {
+ "version": "3.25.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.25.0.tgz",
+ "integrity": "sha512-Q3U0Ya0PTP/TR0a2g+7YEbFVLphiWthmEkHyvOx9HsKSjE8w9wXY3C14DZWKskB/BBrXKJuOWxBDa0xhC83S+A==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/focus": "^3.21.0",
+ "@react-aria/i18n": "^3.12.11",
+ "@react-aria/interactions": "^3.25.4",
+ "@react-aria/utils": "^3.30.0",
+ "@react-stately/selection": "^3.20.4",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/@react-aria/ssr": {
+ "version": "3.9.10",
+ "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.10.tgz",
+ "integrity": "sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "engines": {
+ "node": ">= 12"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/@react-aria/utils": {
+ "version": "3.30.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.30.0.tgz",
+ "integrity": "sha512-ydA6y5G1+gbem3Va2nczj/0G0W7/jUVo/cbN10WA5IizzWIwMP5qhFr7macgbKfHMkZ+YZC3oXnt2NNre5odKw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.10",
+ "@react-stately/flags": "^3.1.2",
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/@react-stately/collections": {
+ "version": "3.12.6",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.6.tgz",
+ "integrity": "sha512-S158RKWGZSodbJXKZDdcnrLzFxzFmyRWDNakQd1nBGhSrW2JV8lDn9ku5Og7TrjoEpkz//B2oId648YT792ilw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.31.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/grid/node_modules/@react-stately/utils": {
+ "version": "3.10.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.8.tgz",
+ "integrity": "sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/@react-types/checkbox": {
+ "version": "3.10.0",
+ "resolved": "https://registry.npmjs.org/@react-types/checkbox/-/checkbox-3.10.0.tgz",
+ "integrity": "sha512-DJ84ilBDvZddE/Sul97Otee4M6psrPRaJm2a1Bc7M3Y5UKo6d6RGXdcDarRRpbnS7BeAbVanKiMS2ygI9QHh9g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.31.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/@react-types/grid": {
+ "version": "3.3.4",
+ "resolved": "https://registry.npmjs.org/@react-types/grid/-/grid-3.3.4.tgz",
+ "integrity": "sha512-8XNn7Czhl+D1b2zRwdO8c3oBJmKgevT/viKJB4qBVFOhK0l/p3HYDZUMdeclvUfSt4wx4ASpI7MD3v1vmN54oA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.31.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/grid/node_modules/clsx": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@react-aria/i18n": {
+ "version": "3.12.10",
+ "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.12.10.tgz",
+ "integrity": "sha512-1j00soQ2W0nTgzaaIsGFdMF/5aN60AEdCJPhmXGZiuWdWzMxObN9LQ9vdzYPTjTqyqMdSaSp9DZKs5I26Xovpw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@internationalized/date": "^3.8.2",
+ "@internationalized/message": "^3.1.8",
+ "@internationalized/number": "^3.6.3",
+ "@internationalized/string": "^3.2.7",
+ "@react-aria/ssr": "^3.9.9",
+ "@react-aria/utils": "^3.29.1",
+ "@react-types/shared": "^3.30.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-aria/interactions": {
- "version": "3.22.5",
- "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.22.5.tgz",
- "integrity": "sha512-kMwiAD9E0TQp+XNnOs13yVJghiy8ET8L0cbkeuTgNI96sOAp/63EJ1FSrDf17iD8sdjt41LafwX/dKXW9nCcLQ==",
+ "version": "3.25.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.25.3.tgz",
+ "integrity": "sha512-J1bhlrNtjPS/fe5uJQ+0c7/jiXniwa4RQlP+Emjfc/iuqpW2RhbF9ou5vROcLzWIyaW8tVMZ468J68rAs/aZ5A==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-aria/utils": "^3.26.0",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/ssr": "^3.9.9",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/flags": "^3.1.2",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-aria/label": {
- "version": "3.7.13",
- "resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.7.13.tgz",
- "integrity": "sha512-brSAXZVTey5RG/Ex6mTrV/9IhGSQFU4Al34qmjEDho+Z2qT4oPwf8k7TRXWWqzOU0ugYxekYbsLd2zlN3XvWcg==",
+ "version": "3.7.19",
+ "resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.7.19.tgz",
+ "integrity": "sha512-ZJIj/BKf66q52idy24ErzX77vDGuyQn4neWtu51RRSk4npI3pJqEPsdkPCdo2dlBCo/Uc1pfuLGg2hY3N/ni9Q==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/utils": "^3.29.1",
+ "@react-types/shared": "^3.30.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/landmark": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/landmark/-/landmark-3.0.5.tgz",
+ "integrity": "sha512-klUgRGQyTv5qWFQ0EMMLBOLa87qSTGjWoiMvytL9EgJCACkn/OzNMPbqVSkMADvadDyWCMWFYWvfweLxl3T5yw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/utils": "^3.30.0",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0",
+ "use-sync-external-store": "^1.4.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/landmark/node_modules/@react-aria/ssr": {
+ "version": "3.9.10",
+ "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.10.tgz",
+ "integrity": "sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "engines": {
+ "node": ">= 12"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/landmark/node_modules/@react-aria/utils": {
+ "version": "3.30.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.30.0.tgz",
+ "integrity": "sha512-ydA6y5G1+gbem3Va2nczj/0G0W7/jUVo/cbN10WA5IizzWIwMP5qhFr7macgbKfHMkZ+YZC3oXnt2NNre5odKw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.10",
+ "@react-stately/flags": "^3.1.2",
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/landmark/node_modules/@react-stately/utils": {
+ "version": "3.10.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.8.tgz",
+ "integrity": "sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/utils": "^3.26.0",
- "@react-types/shared": "^3.26.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/landmark/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/landmark/node_modules/clsx": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/@react-aria/link": {
- "version": "3.7.7",
- "resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.7.7.tgz",
- "integrity": "sha512-eVBRcHKhNSsATYWv5wRnZXRqPVcKAWWakyvfrYePIKpC3s4BaHZyTGYdefk8ZwZdEOuQZBqLMnjW80q1uhtkuA==",
+ "version": "3.8.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.8.4.tgz",
+ "integrity": "sha512-7cPRGIo7x6ZZv1dhp2xGjqLR1snazSQgl7tThrBDL5E8f6Yr7SVpxOOK5/EBmfpFkhkmmXEO/Fgo/GPJdc6Vmw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.25.4",
+ "@react-aria/utils": "^3.30.0",
+ "@react-types/link": "^3.6.3",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/link/node_modules/@react-aria/interactions": {
+ "version": "3.25.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.25.4.tgz",
+ "integrity": "sha512-HBQMxgUPHrW8V63u9uGgBymkMfj6vdWbB0GgUJY49K9mBKMsypcHeWkWM6+bF7kxRO728/IK8bWDV6whDbqjHg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.10",
+ "@react-aria/utils": "^3.30.0",
+ "@react-stately/flags": "^3.1.2",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/link/node_modules/@react-aria/ssr": {
+ "version": "3.9.10",
+ "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.10.tgz",
+ "integrity": "sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "engines": {
+ "node": ">= 12"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/link/node_modules/@react-aria/utils": {
+ "version": "3.30.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.30.0.tgz",
+ "integrity": "sha512-ydA6y5G1+gbem3Va2nczj/0G0W7/jUVo/cbN10WA5IizzWIwMP5qhFr7macgbKfHMkZ+YZC3oXnt2NNre5odKw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.10",
+ "@react-stately/flags": "^3.1.2",
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/link/node_modules/@react-stately/utils": {
+ "version": "3.10.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.8.tgz",
+ "integrity": "sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/utils": "^3.26.0",
- "@react-types/link": "^3.5.9",
- "@react-types/shared": "^3.26.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
- "node_modules/@react-aria/listbox": {
- "version": "3.13.6",
- "resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.13.6.tgz",
- "integrity": "sha512-6hEXEXIZVau9lgBZ4VVjFR3JnGU+fJaPmV3HP0UZ2ucUptfG0MZo24cn+ZQJsWiuaCfNFv5b8qribiv+BcO+Kg==",
+ "node_modules/@react-aria/link/node_modules/@react-types/link": {
+ "version": "3.6.3",
+ "resolved": "https://registry.npmjs.org/@react-types/link/-/link-3.6.3.tgz",
+ "integrity": "sha512-XIYEl9ZPa5mLy8uGQabdhPaFVmnvxNSYF59t0vs/IV0yxeoPvrjKjRAbXS+WP9zYMXIkHYNYYucriCkqKhotJA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/label": "^3.7.13",
- "@react-aria/selection": "^3.21.0",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/collections": "^3.12.0",
- "@react-stately/list": "^3.11.1",
- "@react-types/listbox": "^3.5.3",
- "@react-types/shared": "^3.26.0",
+ "@react-types/shared": "^3.31.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/link/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/link/node_modules/clsx": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@react-aria/listbox": {
+ "version": "3.14.6",
+ "resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.14.6.tgz",
+ "integrity": "sha512-ZaYpBXiS+nUzxAmeCmXyvDcZECuZi1ZLn5y8uJ4ZFRVqSxqplVHodsQKwKqklmAM3+IVDyQx2WB4/HIKTGg2Bw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/label": "^3.7.19",
+ "@react-aria/selection": "^3.24.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/collections": "^3.12.5",
+ "@react-stately/list": "^3.12.3",
+ "@react-types/listbox": "^3.7.1",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2795,31 +3305,56 @@
}
},
"node_modules/@react-aria/live-announcer": {
- "version": "3.4.1",
- "resolved": "https://registry.npmjs.org/@react-aria/live-announcer/-/live-announcer-3.4.1.tgz",
- "integrity": "sha512-4X2mcxgqLvvkqxv2l1n00jTzUxxe0kkLiapBGH1LHX/CxA1oQcHDqv8etJ2ZOwmS/MSBBiWnv3DwYHDOF6ubig==",
+ "version": "3.4.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/live-announcer/-/live-announcer-3.4.4.tgz",
+ "integrity": "sha512-PTTBIjNRnrdJOIRTDGNifY2d//kA7GUAwRFJNOEwSNG4FW+Bq9awqLiflw0JkpyB0VNIwou6lqKPHZVLsGWOXA==",
+ "license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@react-aria/menu": {
- "version": "3.16.0",
- "resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.16.0.tgz",
- "integrity": "sha512-TNk+Vd3TbpBPUxEloAdHRTaRxf9JBK7YmkHYiq0Yj5Lc22KS0E2eTyhpPM9xJvEWN2TlC5TEvNfdyui2kYWFFQ==",
+ "version": "3.18.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.18.5.tgz",
+ "integrity": "sha512-mOQb4PcNvDdFhyqF7nxREwc1YUg+pPTiMNcSHlz/MKFkkUteIQBYfuJJa8i72ooiE55xfYEQhPLjmrLHAOIJ+g==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/overlays": "^3.24.0",
- "@react-aria/selection": "^3.21.0",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/collections": "^3.12.0",
- "@react-stately/menu": "^3.9.0",
- "@react-stately/selection": "^3.18.0",
- "@react-stately/tree": "^3.8.6",
- "@react-types/button": "^3.10.1",
- "@react-types/menu": "^3.9.13",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/focus": "^3.20.5",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/overlays": "^3.27.3",
+ "@react-aria/selection": "^3.24.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/collections": "^3.12.5",
+ "@react-stately/menu": "^3.9.5",
+ "@react-stately/selection": "^3.20.3",
+ "@react-stately/tree": "^3.9.0",
+ "@react-types/button": "^3.12.2",
+ "@react-types/menu": "^3.10.2",
+ "@react-types/shared": "^3.30.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/numberfield": {
+ "version": "3.11.16",
+ "resolved": "https://registry.npmjs.org/@react-aria/numberfield/-/numberfield-3.11.16.tgz",
+ "integrity": "sha512-AGk0BMdHXPP3gSy39UVropyvpNMxAElPGIcicjXXyD/tZdemsgLXUFT2zI4DwE0csFZS8BGgunLWT9VluMF4FQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/spinbutton": "^3.6.16",
+ "@react-aria/textfield": "^3.17.5",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/form": "^3.1.5",
+ "@react-stately/numberfield": "^3.9.13",
+ "@react-types/button": "^3.12.2",
+ "@react-types/numberfield": "^3.8.12",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2828,20 +3363,21 @@
}
},
"node_modules/@react-aria/overlays": {
- "version": "3.24.0",
- "resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.24.0.tgz",
- "integrity": "sha512-0kAXBsMNTc/a3M07tK9Cdt/ea8CxTAEJ223g8YgqImlmoBBYAL7dl5G01IOj67TM64uWPTmZrOklBchHWgEm3A==",
+ "version": "3.27.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.27.3.tgz",
+ "integrity": "sha512-1hawsRI+QiM0TkPNwApNJ2+N49NQTP+48xq0JG8hdEUPChQLDoJ39cvT1sxdg0mnLDzLaAYkZrgfokq9sX6FLA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/ssr": "^3.9.7",
- "@react-aria/utils": "^3.26.0",
- "@react-aria/visually-hidden": "^3.8.18",
- "@react-stately/overlays": "^3.6.12",
- "@react-types/button": "^3.10.1",
- "@react-types/overlays": "^3.8.11",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/focus": "^3.20.5",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/ssr": "^3.9.9",
+ "@react-aria/utils": "^3.29.1",
+ "@react-aria/visually-hidden": "^3.8.25",
+ "@react-stately/overlays": "^3.6.17",
+ "@react-types/button": "^3.12.2",
+ "@react-types/overlays": "^3.8.16",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2850,52 +3386,57 @@
}
},
"node_modules/@react-aria/progress": {
- "version": "3.4.18",
- "resolved": "https://registry.npmjs.org/@react-aria/progress/-/progress-3.4.18.tgz",
- "integrity": "sha512-FOLgJ9t9i1u3oAAimybJG6r7/soNPBnJfWo4Yr6MmaUv90qVGa1h6kiuM5m9H/bm5JobAebhdfHit9lFlgsCmg==",
+ "version": "3.4.24",
+ "resolved": "https://registry.npmjs.org/@react-aria/progress/-/progress-3.4.24.tgz",
+ "integrity": "sha512-lpMVrZlSo1Dulo67COCNrcRkJ+lRrC2PI3iRoOIlqw1Ljz4KFoSGyRudg/MLJ/YrQ+6zmNdz5ytdeThrZwHpPQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/label": "^3.7.13",
- "@react-aria/utils": "^3.26.0",
- "@react-types/progress": "^3.5.8",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/label": "^3.7.19",
+ "@react-aria/utils": "^3.29.1",
+ "@react-types/progress": "^3.5.13",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-aria/radio": {
- "version": "3.10.10",
- "resolved": "https://registry.npmjs.org/@react-aria/radio/-/radio-3.10.10.tgz",
- "integrity": "sha512-NVdeOVrsrHgSfwL2jWCCXFsWZb+RMRZErj5vthHQW4nkHECGOzeX56VaLWTSvdoCPqi9wdIX8A6K9peeAIgxzA==",
+ "version": "3.11.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/radio/-/radio-3.11.5.tgz",
+ "integrity": "sha512-6BjpeTupQnxetfvC2bqIxWUt6USMqNZoKOoOO7mUL7ESF6/Gp8ocutvQn0VnTxU+7OhdrZX5AACPg/qIQYumVw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/form": "^3.0.11",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/label": "^3.7.13",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/radio": "^3.10.9",
- "@react-types/radio": "^3.8.5",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/focus": "^3.20.5",
+ "@react-aria/form": "^3.0.18",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/label": "^3.7.19",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/radio": "^3.10.14",
+ "@react-types/radio": "^3.8.10",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-aria/selection": {
- "version": "3.21.0",
- "resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.21.0.tgz",
- "integrity": "sha512-52JJ6hlPcM+gt0VV3DBmz6Kj1YAJr13TfutrKfGWcK36LvNCBm1j0N+TDqbdnlp8Nue6w0+5FIwZq44XPYiBGg==",
+ "version": "3.24.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.24.3.tgz",
+ "integrity": "sha512-QznlHCUcjFgVALUIVBK4SWJd6osaU9lVaZgU4M8uemoIfOHqnBY3zThkQvEhcw/EJ2RpuYYLPOBYZBnk1knD5A==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/selection": "^3.18.0",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/focus": "^3.20.5",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/selection": "^3.20.3",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2904,34 +3445,18 @@
}
},
"node_modules/@react-aria/slider": {
- "version": "3.7.14",
- "resolved": "https://registry.npmjs.org/@react-aria/slider/-/slider-3.7.14.tgz",
- "integrity": "sha512-7rOiKjLkEZ0j7mPMlwrqivc+K4OSfL14slaQp06GHRiJkhiWXh2/drPe15hgNq55HmBQBpA0umKMkJcqVgmXPA==",
+ "version": "3.7.21",
+ "resolved": "https://registry.npmjs.org/@react-aria/slider/-/slider-3.7.21.tgz",
+ "integrity": "sha512-eWu69KnQ7qCmpYBEkgGLjIuKfFqoHu2W6r9d7ys0ZmX81HPj9DhatGpEgHlnjRfCeSl9wL5h2FY9wnIio82cbg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/label": "^3.7.13",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/slider": "^3.6.0",
- "@react-types/shared": "^3.26.0",
- "@react-types/slider": "^3.7.7",
- "@swc/helpers": "^0.5.0"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
- }
- },
- "node_modules/@react-aria/spinbutton": {
- "version": "3.6.10",
- "resolved": "https://registry.npmjs.org/@react-aria/spinbutton/-/spinbutton-3.6.10.tgz",
- "integrity": "sha512-nhYEYk7xUNOZDaqiQ5w/nHH9ouqjJbabTWXH+KK7UR1oVGfo4z1wG94l8KWF3Z6SGGnBxzLJyTBguZ4g9aYTSg==",
- "dependencies": {
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/live-announcer": "^3.4.1",
- "@react-aria/utils": "^3.26.0",
- "@react-types/button": "^3.10.1",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/label": "^3.7.19",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/slider": "^3.6.5",
+ "@react-types/shared": "^3.30.0",
+ "@react-types/slider": "^3.7.12",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2939,10 +3464,124 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/spinbutton": {
+ "version": "3.6.17",
+ "resolved": "https://registry.npmjs.org/@react-aria/spinbutton/-/spinbutton-3.6.17.tgz",
+ "integrity": "sha512-gdGc3kkqpvFUd9XsrhPwQHMrG2TY0LVuGGgjvaZwF/ONm9FMz393ogCM0P484HsjU50hClO+yiRRgNjdwDIzPQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/i18n": "^3.12.11",
+ "@react-aria/live-announcer": "^3.4.4",
+ "@react-aria/utils": "^3.30.0",
+ "@react-types/button": "^3.13.0",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/spinbutton/node_modules/@react-aria/i18n": {
+ "version": "3.12.11",
+ "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.12.11.tgz",
+ "integrity": "sha512-1mxUinHbGJ6nJ/uSl62dl48vdZfWTBZePNF/wWQy98gR0qNFXLeusd7CsEmJT1971CR5i/WNYUo1ezNlIJnu6A==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@internationalized/date": "^3.8.2",
+ "@internationalized/message": "^3.1.8",
+ "@internationalized/number": "^3.6.4",
+ "@internationalized/string": "^3.2.7",
+ "@react-aria/ssr": "^3.9.10",
+ "@react-aria/utils": "^3.30.0",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/spinbutton/node_modules/@react-aria/ssr": {
+ "version": "3.9.10",
+ "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.10.tgz",
+ "integrity": "sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "engines": {
+ "node": ">= 12"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/spinbutton/node_modules/@react-aria/utils": {
+ "version": "3.30.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.30.0.tgz",
+ "integrity": "sha512-ydA6y5G1+gbem3Va2nczj/0G0W7/jUVo/cbN10WA5IizzWIwMP5qhFr7macgbKfHMkZ+YZC3oXnt2NNre5odKw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.10",
+ "@react-stately/flags": "^3.1.2",
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/spinbutton/node_modules/@react-stately/utils": {
+ "version": "3.10.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.8.tgz",
+ "integrity": "sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/spinbutton/node_modules/@react-types/button": {
+ "version": "3.13.0",
+ "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.13.0.tgz",
+ "integrity": "sha512-hwvcNnBjDeNvWheWfBhmkJSzC48ub5rZq0DnpemB3XKOvv5WcF9p6rrQZsQ3egNGkh0Z+bKfr2QfotgOkccHSw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.31.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/spinbutton/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/spinbutton/node_modules/clsx": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
"node_modules/@react-aria/ssr": {
- "version": "3.9.7",
- "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.7.tgz",
- "integrity": "sha512-GQygZaGlmYjmYM+tiNBA5C6acmiDWF52Nqd40bBp0Znk4M4hP+LTmI0lpI1BuKMw45T8RIhrAsICIfKwZvi2Gg==",
+ "version": "3.9.9",
+ "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.9.tgz",
+ "integrity": "sha512-2P5thfjfPy/np18e5wD4WPt8ydNXhij1jwA8oehxZTFqlgVMGXzcWKxTb4RtJrLFsqPO7RUQTiY8QJk0M4Vy2g==",
+ "license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0"
},
@@ -2954,39 +3593,42 @@
}
},
"node_modules/@react-aria/switch": {
- "version": "3.6.10",
- "resolved": "https://registry.npmjs.org/@react-aria/switch/-/switch-3.6.10.tgz",
- "integrity": "sha512-FtaI9WaEP1tAmra1sYlAkYXg9x75P5UtgY8pSbe9+1WRyWbuE1QZT+RNCTi3IU4fZ7iJQmXH6+VaMyzPlSUagw==",
+ "version": "3.7.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/switch/-/switch-3.7.5.tgz",
+ "integrity": "sha512-GV9rFYf4wRHAh9tkhptvm3uOflKcQHdgZh+eGpSAHyq2iTq0j2nEhlmtFordpcJgC4XWro7TXLNltfqUqVHtkw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/toggle": "^3.10.10",
- "@react-stately/toggle": "^3.8.0",
- "@react-types/shared": "^3.26.0",
- "@react-types/switch": "^3.5.7",
+ "@react-aria/toggle": "^3.11.5",
+ "@react-stately/toggle": "^3.8.5",
+ "@react-types/shared": "^3.30.0",
+ "@react-types/switch": "^3.5.12",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-aria/table": {
- "version": "3.16.0",
- "resolved": "https://registry.npmjs.org/@react-aria/table/-/table-3.16.0.tgz",
- "integrity": "sha512-9xF9S3CJ7XRiiK92hsIKxPedD0kgcQWwqTMtj3IBynpQ4vsnRiW3YNIzrn9C3apjknRZDTSta8O2QPYCUMmw2A==",
+ "version": "3.17.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/table/-/table-3.17.5.tgz",
+ "integrity": "sha512-Q9HDr2EAhoah7HFIT6XxOOOv2fiAs0agwQQd3d1w6jqgyu9m20lM/jxcSwcCFj2O7FPKHfapSAijHDZZoc4Shg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/grid": "^3.11.0",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/live-announcer": "^3.4.1",
- "@react-aria/utils": "^3.26.0",
- "@react-aria/visually-hidden": "^3.8.18",
- "@react-stately/collections": "^3.12.0",
- "@react-stately/flags": "^3.0.5",
- "@react-stately/table": "^3.13.0",
- "@react-types/checkbox": "^3.9.0",
- "@react-types/grid": "^3.2.10",
- "@react-types/shared": "^3.26.0",
- "@react-types/table": "^3.10.3",
+ "@react-aria/focus": "^3.20.5",
+ "@react-aria/grid": "^3.14.2",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/live-announcer": "^3.4.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-aria/visually-hidden": "^3.8.25",
+ "@react-stately/collections": "^3.12.5",
+ "@react-stately/flags": "^3.1.2",
+ "@react-stately/table": "^3.14.3",
+ "@react-types/checkbox": "^3.9.5",
+ "@react-types/grid": "^3.3.3",
+ "@react-types/shared": "^3.30.0",
+ "@react-types/table": "^3.13.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -2995,17 +3637,18 @@
}
},
"node_modules/@react-aria/tabs": {
- "version": "3.9.8",
- "resolved": "https://registry.npmjs.org/@react-aria/tabs/-/tabs-3.9.8.tgz",
- "integrity": "sha512-Nur/qRFBe+Zrt4xcCJV/ULXCS3Mlae+B89bp1Gl20vSDqk6uaPtGk+cS5k03eugOvas7AQapqNJsJgKd66TChw==",
+ "version": "3.10.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/tabs/-/tabs-3.10.5.tgz",
+ "integrity": "sha512-ddmGPikXW+27W2Rx0VuEwwGJVLTo68QkNbSl8R+TEM0EUIAJo3nwHzAlQhuo5Tcb1PdK7biTjO1dyI4pno2/0Q==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/selection": "^3.21.0",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/tabs": "^3.7.0",
- "@react-types/shared": "^3.26.0",
- "@react-types/tabs": "^3.3.11",
+ "@react-aria/focus": "^3.20.5",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/selection": "^3.24.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/tabs": "^3.8.3",
+ "@react-types/shared": "^3.30.0",
+ "@react-types/tabs": "^3.3.16",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3014,119 +3657,259 @@
}
},
"node_modules/@react-aria/textfield": {
- "version": "3.15.0",
- "resolved": "https://registry.npmjs.org/@react-aria/textfield/-/textfield-3.15.0.tgz",
- "integrity": "sha512-V5mg7y1OR6WXYHdhhm4FC7QyGc9TideVRDFij1SdOJrIo5IFB7lvwpOS0GmgwkVbtr71PTRMjZnNbrJUFU6VNA==",
+ "version": "3.17.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/textfield/-/textfield-3.17.5.tgz",
+ "integrity": "sha512-HFdvqd3Mdp6WP7uYAWD64gRrL1D4Khi+Fm3dIHBhm1ANV0QjYkphJm4DYNDq/MXCZF46+CZNiOWEbL/aeviykA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/form": "^3.0.11",
- "@react-aria/label": "^3.7.13",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/form": "^3.1.0",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
- "@react-types/textfield": "^3.10.0",
+ "@react-aria/form": "^3.0.18",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/label": "^3.7.19",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/form": "^3.1.5",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/shared": "^3.30.0",
+ "@react-types/textfield": "^3.12.3",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/toast": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/toast/-/toast-3.0.5.tgz",
+ "integrity": "sha512-uhwiZqPy6hqucBUL7z6uUZjAJ/ou3bNdTjZlXS+zbcm+T0dsjKDfzNkaebyZY7AX3cYkFCaRjc3N6omXwoAviw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/landmark": "^3.0.4",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/toast": "^3.1.1",
+ "@react-types/button": "^3.12.2",
+ "@react-types/shared": "^3.30.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-aria/toggle": {
- "version": "3.10.10",
- "resolved": "https://registry.npmjs.org/@react-aria/toggle/-/toggle-3.10.10.tgz",
- "integrity": "sha512-QwMT/vTNrbrILxWVHfd9zVQ3mV2NdBwyRu+DphVQiFAXcmc808LEaIX2n0lI6FCsUDC9ZejCyvzd91/YemdZ1Q==",
+ "version": "3.12.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/toggle/-/toggle-3.12.0.tgz",
+ "integrity": "sha512-JfcrF8xUEa2CbbUXp+WQiTBVwSM/dm21v5kueQlksvLfXG6DGE8/zjM6tJFErrFypAasc1JXyrI4dspLOWCfRA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/toggle": "^3.8.0",
- "@react-types/checkbox": "^3.9.0",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.25.4",
+ "@react-aria/utils": "^3.30.0",
+ "@react-stately/toggle": "^3.9.0",
+ "@react-types/checkbox": "^3.10.0",
+ "@react-types/shared": "^3.31.0",
"@swc/helpers": "^0.5.0"
},
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/toggle/node_modules/@react-aria/interactions": {
+ "version": "3.25.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.25.4.tgz",
+ "integrity": "sha512-HBQMxgUPHrW8V63u9uGgBymkMfj6vdWbB0GgUJY49K9mBKMsypcHeWkWM6+bF7kxRO728/IK8bWDV6whDbqjHg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.10",
+ "@react-aria/utils": "^3.30.0",
+ "@react-stately/flags": "^3.1.2",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/toggle/node_modules/@react-aria/ssr": {
+ "version": "3.9.10",
+ "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.10.tgz",
+ "integrity": "sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "engines": {
+ "node": ">= 12"
+ },
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
- "node_modules/@react-aria/toolbar": {
- "version": "3.0.0-beta.11",
- "resolved": "https://registry.npmjs.org/@react-aria/toolbar/-/toolbar-3.0.0-beta.11.tgz",
- "integrity": "sha512-LM3jTRFNDgoEpoL568WaiuqiVM7eynSQLJis1hV0vlVnhTd7M7kzt7zoOjzxVb5Uapz02uCp1Fsm4wQMz09qwQ==",
+ "node_modules/@react-aria/toggle/node_modules/@react-aria/utils": {
+ "version": "3.30.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.30.0.tgz",
+ "integrity": "sha512-ydA6y5G1+gbem3Va2nczj/0G0W7/jUVo/cbN10WA5IizzWIwMP5qhFr7macgbKfHMkZ+YZC3oXnt2NNre5odKw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/i18n": "^3.12.4",
- "@react-aria/utils": "^3.26.0",
- "@react-types/shared": "^3.26.0",
- "@swc/helpers": "^0.5.0"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
- }
- },
- "node_modules/@react-aria/tooltip": {
- "version": "3.7.10",
- "resolved": "https://registry.npmjs.org/@react-aria/tooltip/-/tooltip-3.7.10.tgz",
- "integrity": "sha512-Udi3XOnrF/SYIz72jw9bgB74MG/yCOzF5pozHj2FH2HiJlchYv/b6rHByV/77IZemdlkmL/uugrv/7raPLSlnw==",
- "dependencies": {
- "@react-aria/focus": "^3.19.0",
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/utils": "^3.26.0",
- "@react-stately/tooltip": "^3.5.0",
- "@react-types/shared": "^3.26.0",
- "@react-types/tooltip": "^3.4.13",
- "@swc/helpers": "^0.5.0"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
- }
- },
- "node_modules/@react-aria/utils": {
- "version": "3.26.0",
- "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.26.0.tgz",
- "integrity": "sha512-LkZouGSjjQ0rEqo4XJosS4L3YC/zzQkfRM3KoqK6fUOmUJ9t0jQ09WjiF+uOoG9u+p30AVg3TrZRUWmoTS+koQ==",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/ssr": "^3.9.10",
+ "@react-stately/flags": "^3.1.2",
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/shared": "^3.31.0",
"@swc/helpers": "^0.5.0",
"clsx": "^2.0.0"
},
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/toggle/node_modules/@react-stately/toggle": {
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/@react-stately/toggle/-/toggle-3.9.0.tgz",
+ "integrity": "sha512-1URd97R5nbFF9Hc1nQBhvln55EnOkLNz6pjtXU7TCnV4tYVbe+tc++hgr5XRt6KAfmuXxVDujlzRc6QjfCn0cQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/checkbox": "^3.10.0",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/toggle/node_modules/@react-stately/utils": {
+ "version": "3.10.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.8.tgz",
+ "integrity": "sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/toggle/node_modules/@react-types/checkbox": {
+ "version": "3.10.0",
+ "resolved": "https://registry.npmjs.org/@react-types/checkbox/-/checkbox-3.10.0.tgz",
+ "integrity": "sha512-DJ84ilBDvZddE/Sul97Otee4M6psrPRaJm2a1Bc7M3Y5UKo6d6RGXdcDarRRpbnS7BeAbVanKiMS2ygI9QHh9g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.31.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/toggle/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/toggle/node_modules/clsx": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/@react-aria/toolbar": {
+ "version": "3.0.0-beta.18",
+ "resolved": "https://registry.npmjs.org/@react-aria/toolbar/-/toolbar-3.0.0-beta.18.tgz",
+ "integrity": "sha512-P1fXhmTRBK4YvPQDzCY3XoZl+HiBADgvQ89jszxJ2jD4Qzs/E096ttCc+otZnbvRcoU27IxC2vWFInqK/bP31g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/focus": "^3.20.5",
+ "@react-aria/i18n": "^3.12.10",
+ "@react-aria/utils": "^3.29.1",
+ "@react-types/shared": "^3.30.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/tooltip": {
+ "version": "3.8.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/tooltip/-/tooltip-3.8.5.tgz",
+ "integrity": "sha512-spGAuHHNkiqAfyOl4JWzKEK642KC1oQylioYg+LKCq2avUyaDqFlRx2JrC4a6nt3BV6E5/cJUMV9K7gMRApd5Q==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-stately/tooltip": "^3.5.5",
+ "@react-types/shared": "^3.30.0",
+ "@react-types/tooltip": "^3.4.18",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/utils": {
+ "version": "3.29.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.29.1.tgz",
+ "integrity": "sha512-yXMFVJ73rbQ/yYE/49n5Uidjw7kh192WNN9PNQGV0Xoc7EJUlSOxqhnpHmYTyO0EotJ8fdM1fMH8durHjUSI8g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.9",
+ "@react-stately/flags": "^3.1.2",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/shared": "^3.30.0",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-aria/utils/node_modules/clsx": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
"integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "license": "MIT",
"engines": {
"node": ">=6"
}
},
"node_modules/@react-aria/visually-hidden": {
- "version": "3.8.18",
- "resolved": "https://registry.npmjs.org/@react-aria/visually-hidden/-/visually-hidden-3.8.18.tgz",
- "integrity": "sha512-l/0igp+uub/salP35SsNWq5mGmg3G5F5QMS1gDZ8p28n7CgjvzyiGhJbbca7Oxvaw1HRFzVl9ev+89I7moNnFQ==",
+ "version": "3.8.25",
+ "resolved": "https://registry.npmjs.org/@react-aria/visually-hidden/-/visually-hidden-3.8.25.tgz",
+ "integrity": "sha512-9tRRFV1YMLuDId9E8PeUf0xy0KmQBoP8y/bm0PKWzXOqLOVmp/+kop9rwsjC7J6ppbBnlak7XCXTc7GoSFOCRA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/interactions": "^3.22.5",
- "@react-aria/utils": "^3.26.0",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.25.3",
+ "@react-aria/utils": "^3.29.1",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-stately/calendar": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/@react-stately/calendar/-/calendar-3.6.0.tgz",
- "integrity": "sha512-GqUtOtGnwWjtNrJud8nY/ywI4VBP5byToNVRTnxbMl+gYO1Qe/uc5NG7zjwMxhb2kqSBHZFdkF0DXVqG2Ul+BA==",
+ "version": "3.8.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/calendar/-/calendar-3.8.2.tgz",
+ "integrity": "sha512-IGSbTgCMiGYisQ+CwH31wek10UWvNZ1LVwhr0ZNkhDIRtj+p+FuLNtBnmT1CxTFe2Y4empAxyxNA0QSjQrOtvQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@internationalized/date": "^3.6.0",
- "@react-stately/utils": "^3.10.5",
- "@react-types/calendar": "^3.5.0",
- "@react-types/shared": "^3.26.0",
+ "@internationalized/date": "^3.8.2",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/calendar": "^3.7.2",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3134,14 +3917,15 @@
}
},
"node_modules/@react-stately/checkbox": {
- "version": "3.6.10",
- "resolved": "https://registry.npmjs.org/@react-stately/checkbox/-/checkbox-3.6.10.tgz",
- "integrity": "sha512-LHm7i4YI8A/RdgWAuADrnSAYIaYYpQeZqsp1a03Og0pJHAlZL0ymN3y2IFwbZueY0rnfM+yF+kWNXjJqbKrFEQ==",
+ "version": "3.6.15",
+ "resolved": "https://registry.npmjs.org/@react-stately/checkbox/-/checkbox-3.6.15.tgz",
+ "integrity": "sha512-jt3Kzbk6heUMtAlCbUwnrEBknnzFhPBFMEZ00vff7VyhDXup7DJcJRxreloHepARZLIhLhC5QPyO5GS4YOHlvw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/form": "^3.1.0",
- "@react-stately/utils": "^3.10.5",
- "@react-types/checkbox": "^3.9.0",
- "@react-types/shared": "^3.26.0",
+ "@react-stately/form": "^3.1.5",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/checkbox": "^3.9.5",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3149,11 +3933,12 @@
}
},
"node_modules/@react-stately/collections": {
- "version": "3.12.0",
- "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.0.tgz",
- "integrity": "sha512-MfR9hwCxe5oXv4qrLUnjidwM50U35EFmInUeFf8i9mskYwWlRYS0O1/9PZ0oF1M0cKambaRHKEy98jczgb9ycA==",
+ "version": "3.12.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.5.tgz",
+ "integrity": "sha512-5SIb+6nF9cyu+WXqZ6io56BtdOu8FjSQQaaLCCpfAC6fc6zHRk8by0WreRmvJ5/Kn8oq2FNJtCNRvluM0Z01UA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3161,18 +3946,19 @@
}
},
"node_modules/@react-stately/combobox": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@react-stately/combobox/-/combobox-3.10.1.tgz",
- "integrity": "sha512-Rso+H+ZEDGFAhpKWbnRxRR/r7YNmYVtt+Rn0eNDNIUp3bYaxIBCdCySyAtALs4I8RZXZQ9zoUznP7YeVwG3cLg==",
+ "version": "3.10.6",
+ "resolved": "https://registry.npmjs.org/@react-stately/combobox/-/combobox-3.10.6.tgz",
+ "integrity": "sha512-XOfG90MQPfPCNjl2KJOKuFFzx2ULlwnJ/QXl9zCQUtUBOExbFRHldj5E4NPcH14AVeYZX6DBn4GTS9ocOVbE7Q==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/collections": "^3.12.0",
- "@react-stately/form": "^3.1.0",
- "@react-stately/list": "^3.11.1",
- "@react-stately/overlays": "^3.6.12",
- "@react-stately/select": "^3.6.9",
- "@react-stately/utils": "^3.10.5",
- "@react-types/combobox": "^3.13.1",
- "@react-types/shared": "^3.26.0",
+ "@react-stately/collections": "^3.12.5",
+ "@react-stately/form": "^3.1.5",
+ "@react-stately/list": "^3.12.3",
+ "@react-stately/overlays": "^3.6.17",
+ "@react-stately/select": "^3.6.14",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/combobox": "^3.13.6",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3180,17 +3966,18 @@
}
},
"node_modules/@react-stately/datepicker": {
- "version": "3.11.0",
- "resolved": "https://registry.npmjs.org/@react-stately/datepicker/-/datepicker-3.11.0.tgz",
- "integrity": "sha512-d9MJF34A0VrhL5y5S8mAISA8uwfNCQKmR2k4KoQJm3De1J8SQeNzSjLviAwh1faDow6FXGlA6tVbTrHyDcBgBg==",
+ "version": "3.14.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/datepicker/-/datepicker-3.14.2.tgz",
+ "integrity": "sha512-KvOUFz/o+hNIb7oCli6nxBdDurbGjRjye6U99GEYAx6timXOjiIJvtKQyqCLRowGYtCS6GH41yM6DhJ2MlMF8w==",
+ "license": "Apache-2.0",
"dependencies": {
- "@internationalized/date": "^3.6.0",
- "@internationalized/string": "^3.2.5",
- "@react-stately/form": "^3.1.0",
- "@react-stately/overlays": "^3.6.12",
- "@react-stately/utils": "^3.10.5",
- "@react-types/datepicker": "^3.9.0",
- "@react-types/shared": "^3.26.0",
+ "@internationalized/date": "^3.8.2",
+ "@internationalized/string": "^3.2.7",
+ "@react-stately/form": "^3.1.5",
+ "@react-stately/overlays": "^3.6.17",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/datepicker": "^3.12.2",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3198,19 +3985,21 @@
}
},
"node_modules/@react-stately/flags": {
- "version": "3.0.5",
- "resolved": "https://registry.npmjs.org/@react-stately/flags/-/flags-3.0.5.tgz",
- "integrity": "sha512-6wks4csxUwPCp23LgJSnkBRhrWpd9jGd64DjcCTNB2AHIFu7Ab1W59pJpUL6TW7uAxVxdNKjgn6D1hlBy8qWsA==",
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/flags/-/flags-3.1.2.tgz",
+ "integrity": "sha512-2HjFcZx1MyQXoPqcBGALwWWmgFVUk2TuKVIQxCbRq7fPyWXIl6VHcakCLurdtYC2Iks7zizvz0Idv48MQ38DWg==",
+ "license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0"
}
},
"node_modules/@react-stately/form": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/@react-stately/form/-/form-3.1.0.tgz",
- "integrity": "sha512-E2wxNQ0QaTyDHD0nJFtTSnEH9A3bpJurwxhS4vgcUmESHgjFEMLlC9irUSZKgvOgb42GAq+fHoWBsgKeTp9Big==",
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/form/-/form-3.1.5.tgz",
+ "integrity": "sha512-wOs0SVXFgNr1aIdywiNH1MhxrFlN5YxBr1k9y3Z7lX+pc/MGRJFTgfDDw5JDxvwLH9joJ9ciniCdWep9L/TqcQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3218,29 +4007,65 @@
}
},
"node_modules/@react-stately/grid": {
- "version": "3.10.0",
- "resolved": "https://registry.npmjs.org/@react-stately/grid/-/grid-3.10.0.tgz",
- "integrity": "sha512-ii+DdsOBvCnHMgL0JvUfFwO1kiAPP19Bpdpl6zn/oOltk6F5TmnoyNrzyz+2///1hCiySI3FE1O7ujsAQs7a6Q==",
+ "version": "3.11.4",
+ "resolved": "https://registry.npmjs.org/@react-stately/grid/-/grid-3.11.4.tgz",
+ "integrity": "sha512-oaXFSk2eM0PJ0GVniGA0ZlTpAA0AL0O4MQ7V3cHqZAQbwSO0n2pT31GM0bSVnYP/qTF5lQHo3ECmRQCz0fVyMw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/collections": "^3.12.0",
- "@react-stately/selection": "^3.18.0",
- "@react-types/grid": "^3.2.10",
- "@react-types/shared": "^3.26.0",
+ "@react-stately/collections": "^3.12.6",
+ "@react-stately/selection": "^3.20.4",
+ "@react-types/grid": "^3.3.4",
+ "@react-types/shared": "^3.31.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
- "node_modules/@react-stately/list": {
- "version": "3.11.1",
- "resolved": "https://registry.npmjs.org/@react-stately/list/-/list-3.11.1.tgz",
- "integrity": "sha512-UCOpIvqBOjwLtk7zVTYWuKU1m1Oe61Q5lNar/GwHaV1nAiSQ8/yYlhr40NkBEs9X3plEfsV28UIpzOrYnu1tPg==",
+ "node_modules/@react-stately/grid/node_modules/@react-stately/collections": {
+ "version": "3.12.6",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.6.tgz",
+ "integrity": "sha512-S158RKWGZSodbJXKZDdcnrLzFxzFmyRWDNakQd1nBGhSrW2JV8lDn9ku5Og7TrjoEpkz//B2oId648YT792ilw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/collections": "^3.12.0",
- "@react-stately/selection": "^3.18.0",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/grid/node_modules/@react-types/grid": {
+ "version": "3.3.4",
+ "resolved": "https://registry.npmjs.org/@react-types/grid/-/grid-3.3.4.tgz",
+ "integrity": "sha512-8XNn7Czhl+D1b2zRwdO8c3oBJmKgevT/viKJB4qBVFOhK0l/p3HYDZUMdeclvUfSt4wx4ASpI7MD3v1vmN54oA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.31.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/grid/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/list": {
+ "version": "3.12.3",
+ "resolved": "https://registry.npmjs.org/@react-stately/list/-/list-3.12.3.tgz",
+ "integrity": "sha512-RiqYyxPYAF3YRBEin8/WHC8/hvpZ/fG1Tx3h1W4aXU5zTIBuy0DrjRKePwP90oCiDpztgRXePLlzhgWeKvJEow==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/collections": "^3.12.5",
+ "@react-stately/selection": "^3.20.3",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3248,13 +4073,30 @@
}
},
"node_modules/@react-stately/menu": {
- "version": "3.9.0",
- "resolved": "https://registry.npmjs.org/@react-stately/menu/-/menu-3.9.0.tgz",
- "integrity": "sha512-++sm0fzZeUs9GvtRbj5RwrP+KL9KPANp9f4SvtI3s+MP+Y/X3X7LNNePeeccGeyikB5fzMsuyvd82bRRW9IhDQ==",
+ "version": "3.9.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/menu/-/menu-3.9.5.tgz",
+ "integrity": "sha512-Y+PqHBaQToo6ooCB4i4RoNfRiHbd4iozmLWePBrF4d/zBzJ9p+/5O6XIWFxLw4O128Tg3tSMGuwrxfecPDYHzA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/overlays": "^3.6.12",
- "@react-types/menu": "^3.9.13",
- "@react-types/shared": "^3.26.0",
+ "@react-stately/overlays": "^3.6.17",
+ "@react-types/menu": "^3.10.2",
+ "@react-types/shared": "^3.30.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/numberfield": {
+ "version": "3.9.13",
+ "resolved": "https://registry.npmjs.org/@react-stately/numberfield/-/numberfield-3.9.13.tgz",
+ "integrity": "sha512-FWbbL4E3+5uctPGVtDwHzeNXgyFw0D3glOJhgW1QHPn3qIswusn0z/NjFSuCVOSpri8BZYIrTPUQHpRJPnjgRw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@internationalized/number": "^3.6.3",
+ "@react-stately/form": "^3.1.5",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/numberfield": "^3.8.12",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3262,12 +4104,13 @@
}
},
"node_modules/@react-stately/overlays": {
- "version": "3.6.12",
- "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.12.tgz",
- "integrity": "sha512-QinvZhwZgj8obUyPIcyURSCjTZlqZYRRCS60TF8jH8ZpT0tEAuDb3wvhhSXuYA3Xo9EHLwvLjEf3tQKKdAQArw==",
+ "version": "3.6.17",
+ "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.17.tgz",
+ "integrity": "sha512-bkGYU4NPC/LgX9OGHLG8hpf9QDoazlb6fKfD+b5o7GtOdctBqCR287T/IBOQyvHqpySqrQ8XlyaGxJPGIcCiZw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/utils": "^3.10.5",
- "@react-types/overlays": "^3.8.11",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/overlays": "^3.8.16",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3275,14 +4118,15 @@
}
},
"node_modules/@react-stately/radio": {
- "version": "3.10.9",
- "resolved": "https://registry.npmjs.org/@react-stately/radio/-/radio-3.10.9.tgz",
- "integrity": "sha512-kUQ7VdqFke8SDRCatw2jW3rgzMWbvw+n2imN2THETynI47NmNLzNP11dlGO2OllRtTrsLhmBNlYHa3W62pFpAw==",
+ "version": "3.10.14",
+ "resolved": "https://registry.npmjs.org/@react-stately/radio/-/radio-3.10.14.tgz",
+ "integrity": "sha512-Y7xizUWJ0YJ8pEtqMeKOibX21B5dk56fHgMHXYLeUEm43y5muWQft2YvP0/n4mlkP2Isbk96kPbv7/ez3Gi+lA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/form": "^3.1.0",
- "@react-stately/utils": "^3.10.5",
- "@react-types/radio": "^3.8.5",
- "@react-types/shared": "^3.26.0",
+ "@react-stately/form": "^3.1.5",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/radio": "^3.8.10",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3290,43 +4134,169 @@
}
},
"node_modules/@react-stately/select": {
- "version": "3.6.9",
- "resolved": "https://registry.npmjs.org/@react-stately/select/-/select-3.6.9.tgz",
- "integrity": "sha512-vASUDv7FhEYQURzM+JIwcusPv7/x/l3zHc/oKJPvoCl3aa9pwS8hZwS82SC00o2iFnrDscfDJju4IE/cd4hucg==",
+ "version": "3.7.0",
+ "resolved": "https://registry.npmjs.org/@react-stately/select/-/select-3.7.0.tgz",
+ "integrity": "sha512-OWLOCKBEj8/XI+vzBSSHQAJu0Hf9Xl/flMhYh47f2b45bO++DRLcVsi8nycPNisudvK6xMQ8a/h4FwjePrCXfg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/form": "^3.1.0",
- "@react-stately/list": "^3.11.1",
- "@react-stately/overlays": "^3.6.12",
- "@react-types/select": "^3.9.8",
- "@react-types/shared": "^3.26.0",
+ "@react-stately/form": "^3.2.0",
+ "@react-stately/list": "^3.12.4",
+ "@react-stately/overlays": "^3.6.18",
+ "@react-types/select": "^3.10.0",
+ "@react-types/shared": "^3.31.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-stately/select/node_modules/@react-stately/collections": {
+ "version": "3.12.6",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.6.tgz",
+ "integrity": "sha512-S158RKWGZSodbJXKZDdcnrLzFxzFmyRWDNakQd1nBGhSrW2JV8lDn9ku5Og7TrjoEpkz//B2oId648YT792ilw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/select/node_modules/@react-stately/form": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/@react-stately/form/-/form-3.2.0.tgz",
+ "integrity": "sha512-PfefxvT7/BIhAGpD4oQpdcxnL8cfN0ZTQxQq+Wmb9z3YzK1oM8GFxb8eGdDRG71JeF8WUNMAQVZFhgl00Z/YKg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/select/node_modules/@react-stately/list": {
+ "version": "3.12.4",
+ "resolved": "https://registry.npmjs.org/@react-stately/list/-/list-3.12.4.tgz",
+ "integrity": "sha512-r7vMM//tpmagyNlRzl2NFPPtx+az5R9pM6q7aI4aBf6/zpZt2eX2UW5gaDTGlkQng7r6OGyAgJD52jmGcCJk7Q==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/collections": "^3.12.6",
+ "@react-stately/selection": "^3.20.4",
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/select/node_modules/@react-stately/overlays": {
+ "version": "3.6.18",
+ "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.18.tgz",
+ "integrity": "sha512-g8n2FtDCxIg2wQ09R7lrM2niuxMPCdP17bxsPV9hyYnN6m42aAKGOhzWrFOK+3phQKgk/E1JQZEvKw1cyyGo1A==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/overlays": "^3.9.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/select/node_modules/@react-stately/utils": {
+ "version": "3.10.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.8.tgz",
+ "integrity": "sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/select/node_modules/@react-types/overlays": {
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.9.0.tgz",
+ "integrity": "sha512-T2DqMcDN5p8vb4vu2igoLrAtuewaNImLS8jsK7th7OjwQZfIWJn5Y45jSxHtXJUddEg1LkUjXYPSXCMerMcULw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.31.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/select/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-stately/selection": {
- "version": "3.18.0",
- "resolved": "https://registry.npmjs.org/@react-stately/selection/-/selection-3.18.0.tgz",
- "integrity": "sha512-6EaNNP3exxBhW2LkcRR4a3pg+3oDguZlBSqIVVR7lyahv/D8xXHRC4dX+m0mgGHJpsgjs7664Xx6c8v193TFxg==",
+ "version": "3.20.4",
+ "resolved": "https://registry.npmjs.org/@react-stately/selection/-/selection-3.20.4.tgz",
+ "integrity": "sha512-Hxmc6NtECStYo+Z2uBRhQ80KPhbSF7xXv9eb4qN8dhyuSnsD6c0wc6oAJsv18dldcFz8VrD48aP/uff9mj0hxQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/collections": "^3.12.0",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-stately/collections": "^3.12.6",
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/shared": "^3.31.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
- "node_modules/@react-stately/slider": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/@react-stately/slider/-/slider-3.6.0.tgz",
- "integrity": "sha512-w5vJxVh267pmD1X+Ppd9S3ZzV1hcg0cV8q5P4Egr160b9WMcWlUspZPtsthwUlN7qQe/C8y5IAhtde4s29eNag==",
+ "node_modules/@react-stately/selection/node_modules/@react-stately/collections": {
+ "version": "3.12.6",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.6.tgz",
+ "integrity": "sha512-S158RKWGZSodbJXKZDdcnrLzFxzFmyRWDNakQd1nBGhSrW2JV8lDn9ku5Og7TrjoEpkz//B2oId648YT792ilw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
- "@react-types/slider": "^3.7.7",
+ "@react-types/shared": "^3.31.0",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/selection/node_modules/@react-stately/utils": {
+ "version": "3.10.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.8.tgz",
+ "integrity": "sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/selection/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/slider": {
+ "version": "3.6.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/slider/-/slider-3.6.5.tgz",
+ "integrity": "sha512-XnHSHbXeHiE5J7nsXQvlXaKaNn1Z4jO1aQyiZsolK1NXW6VMKVeAgZUBG45k7xQW06aRbjREMmiIz02mW8fajQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/shared": "^3.30.0",
+ "@react-types/slider": "^3.7.12",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3334,18 +4304,19 @@
}
},
"node_modules/@react-stately/table": {
- "version": "3.13.0",
- "resolved": "https://registry.npmjs.org/@react-stately/table/-/table-3.13.0.tgz",
- "integrity": "sha512-mRbNYrwQIE7xzVs09Lk3kPteEVFVyOc20vA8ph6EP54PiUf/RllJpxZe/WUYLf4eom9lUkRYej5sffuUBpxjCA==",
+ "version": "3.14.3",
+ "resolved": "https://registry.npmjs.org/@react-stately/table/-/table-3.14.3.tgz",
+ "integrity": "sha512-PwE5pCplLSDckvgmNLVaHyQyX04A62kxdouFh1dVHeGEPfOYsO9WhvyisLxbH7X8Dbveheq/tSTelYDi6LXEJA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/collections": "^3.12.0",
- "@react-stately/flags": "^3.0.5",
- "@react-stately/grid": "^3.10.0",
- "@react-stately/selection": "^3.18.0",
- "@react-stately/utils": "^3.10.5",
- "@react-types/grid": "^3.2.10",
- "@react-types/shared": "^3.26.0",
- "@react-types/table": "^3.10.3",
+ "@react-stately/collections": "^3.12.5",
+ "@react-stately/flags": "^3.1.2",
+ "@react-stately/grid": "^3.11.3",
+ "@react-stately/selection": "^3.20.3",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/grid": "^3.3.3",
+ "@react-types/shared": "^3.30.0",
+ "@react-types/table": "^3.13.1",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3353,27 +4324,42 @@
}
},
"node_modules/@react-stately/tabs": {
- "version": "3.7.0",
- "resolved": "https://registry.npmjs.org/@react-stately/tabs/-/tabs-3.7.0.tgz",
- "integrity": "sha512-ox4hTkfZCoR4Oyr3Op3rBlWNq2Wxie04vhEYpTZQ2hobR3l4fYaOkd7CPClILktJ3TC104j8wcb0knWxIBRx9w==",
+ "version": "3.8.3",
+ "resolved": "https://registry.npmjs.org/@react-stately/tabs/-/tabs-3.8.3.tgz",
+ "integrity": "sha512-FujQCHppXyeHs2v5FESekxodsBJ5T0k1f7sm0ViNYqgrnE5XwqX8Y4/tdr0fqGF6S+BBllH+Q9yKWipDc6OM8g==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/list": "^3.11.1",
- "@react-types/shared": "^3.26.0",
- "@react-types/tabs": "^3.3.11",
+ "@react-stately/list": "^3.12.3",
+ "@react-types/shared": "^3.30.0",
+ "@react-types/tabs": "^3.3.16",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
- "node_modules/@react-stately/toggle": {
- "version": "3.8.0",
- "resolved": "https://registry.npmjs.org/@react-stately/toggle/-/toggle-3.8.0.tgz",
- "integrity": "sha512-pyt/k/J8BwE/2g6LL6Z6sMSWRx9HEJB83Sm/MtovXnI66sxJ2EfQ1OaXB7Su5PEL9OMdoQF6Mb+N1RcW3zAoPw==",
+ "node_modules/@react-stately/toast": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/toast/-/toast-3.1.1.tgz",
+ "integrity": "sha512-W4a6xcsFt/E+aHmR2eZK+/p7Y5rdyXSCQ5gKSnbck+S3lijEWAyV45Mv8v95CQqu0bQijj6sy2Js1szq10HVwg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/utils": "^3.10.5",
- "@react-types/checkbox": "^3.9.0",
- "@react-types/shared": "^3.26.0",
+ "@swc/helpers": "^0.5.0",
+ "use-sync-external-store": "^1.4.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-stately/toggle": {
+ "version": "3.8.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/toggle/-/toggle-3.8.5.tgz",
+ "integrity": "sha512-BSvuTDVFzIKxpNg9Slf+RdGpva7kBO8xYaec2TW9m6Ag9AOmiDwUzzDAO0DRsc7ArSaLLFaQ/pdmmT6TxAUQIA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/checkbox": "^3.9.5",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3381,12 +4367,13 @@
}
},
"node_modules/@react-stately/tooltip": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/@react-stately/tooltip/-/tooltip-3.5.0.tgz",
- "integrity": "sha512-+xzPNztJDd2XJD0X3DgWKlrgOhMqZpSzsIssXeJgO7uCnP8/Z513ESaipJhJCFC8fxj5caO/DK4Uu8hEtlB8cQ==",
+ "version": "3.5.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/tooltip/-/tooltip-3.5.5.tgz",
+ "integrity": "sha512-/zbl7YxneGDGGzdMPSEYUKsnVRGgvsr80ZjQYBHL82N4tzvtkRwmzvzN9ipAtza+0jmeftt3N+YSyxvizVbeKA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/overlays": "^3.6.12",
- "@react-types/tooltip": "^3.4.13",
+ "@react-stately/overlays": "^3.6.17",
+ "@react-types/tooltip": "^3.4.18",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3394,14 +4381,15 @@
}
},
"node_modules/@react-stately/tree": {
- "version": "3.8.6",
- "resolved": "https://registry.npmjs.org/@react-stately/tree/-/tree-3.8.6.tgz",
- "integrity": "sha512-lblUaxf1uAuIz5jm6PYtcJ+rXNNVkqyFWTIMx6g6gW/mYvm8GNx1G/0MLZE7E6CuDGaO9dkLSY2bB1uqyKHidA==",
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/@react-stately/tree/-/tree-3.9.0.tgz",
+ "integrity": "sha512-VpWAh36tbMHJ1CtglPQ81KPdpCfqFz9yAC6nQuL1x6Tmbs9vNEKloGILMI9/4qLzC+3nhCVJj6hN+xqS5/cMTg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-stately/collections": "^3.12.0",
- "@react-stately/selection": "^3.18.0",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-stately/collections": "^3.12.5",
+ "@react-stately/selection": "^3.20.3",
+ "@react-stately/utils": "^3.10.7",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
@@ -3409,9 +4397,10 @@
}
},
"node_modules/@react-stately/utils": {
- "version": "3.10.5",
- "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.5.tgz",
- "integrity": "sha512-iMQSGcpaecghDIh3mZEpZfoFH3ExBwTtuBEcvZ2XnGzCgQjeYXcMdIUwAfVQLXFTdHUHGF6Gu6/dFrYsCzySBQ==",
+ "version": "3.10.7",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.7.tgz",
+ "integrity": "sha512-cWvjGAocvy4abO9zbr6PW6taHgF24Mwy/LbQ4TC4Aq3tKdKDntxyD+sh7AkSRfJRT2ccMVaHVv2+FfHThd3PKQ==",
+ "license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0"
},
@@ -3420,283 +4409,387 @@
}
},
"node_modules/@react-stately/virtualizer": {
- "version": "4.2.0",
- "resolved": "https://registry.npmjs.org/@react-stately/virtualizer/-/virtualizer-4.2.0.tgz",
- "integrity": "sha512-aTMpa9AQoz/xLqn8AI1BR/caUUY7/OUo9GbuF434w2u5eGCL7+SAn3Fmq7WSCwqYyDsO+jEIERek4JTX7pEW0A==",
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/virtualizer/-/virtualizer-4.4.1.tgz",
+ "integrity": "sha512-ZjhsmsNqKY4HrTuT9ySh8lNmYHGgFX24CVVQ3hMr8dTzO9DRR89BMrmenoVtMj7NkonWF8lUFyYlVlsijs2p4w==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-aria/utils": "^3.26.0",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/utils": "^3.29.1",
+ "@react-types/shared": "^3.30.0",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/accordion": {
- "version": "3.0.0-alpha.25",
- "resolved": "https://registry.npmjs.org/@react-types/accordion/-/accordion-3.0.0-alpha.25.tgz",
- "integrity": "sha512-nPTRrMA5jS4QcwQ0H8J9Tzzw7+yq+KbwsPNA1ukVIfOGIB45by/1ke/eiZAXGqXxkElxi2fQuaXuWm79BWZ8zg==",
+ "version": "3.0.0-alpha.26",
+ "resolved": "https://registry.npmjs.org/@react-types/accordion/-/accordion-3.0.0-alpha.26.tgz",
+ "integrity": "sha512-OXf/kXcD2vFlEnkcZy/GG+a/1xO9BN7Uh3/5/Ceuj9z2E/WwD55YwU3GFM5zzkZ4+DMkdowHnZX37XnmbyD3Mg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.27.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/breadcrumbs": {
- "version": "3.7.9",
- "resolved": "https://registry.npmjs.org/@react-types/breadcrumbs/-/breadcrumbs-3.7.9.tgz",
- "integrity": "sha512-eARYJo8J+VfNV8vP4uw3L2Qliba9wLV2bx9YQCYf5Lc/OE5B/y4gaTLz+Y2P3Rtn6gBPLXY447zCs5i7gf+ICg==",
+ "version": "3.7.14",
+ "resolved": "https://registry.npmjs.org/@react-types/breadcrumbs/-/breadcrumbs-3.7.14.tgz",
+ "integrity": "sha512-SbLjrKKupzCLbqHZIQYtQvtsXN53NPxOYyug6QfC4d7DcW1Q9wJ546fxb10Y83ftAJMMUHTatI6SenJVoqyUdA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/link": "^3.5.9",
- "@react-types/shared": "^3.26.0"
+ "@react-types/link": "^3.6.2",
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/button": {
- "version": "3.10.1",
- "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.10.1.tgz",
- "integrity": "sha512-XTtap8o04+4QjPNAshFWOOAusUTxQlBjU2ai0BTVLShQEjHhRVDBIWsI2B2FKJ4KXT6AZ25llaxhNrreWGonmA==",
+ "version": "3.12.2",
+ "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.12.2.tgz",
+ "integrity": "sha512-QLoSCX8E7NFIdkVMa65TPieve0rKeltfcIxiMtrphjfNn+83L0IHMcbhjf4r4W19c/zqGbw3E53Hx8mNukoTUw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/calendar": {
- "version": "3.5.0",
- "resolved": "https://registry.npmjs.org/@react-types/calendar/-/calendar-3.5.0.tgz",
- "integrity": "sha512-O3IRE7AGwAWYnvJIJ80cOy7WwoJ0m8GtX/qSmvXQAjC4qx00n+b5aFNBYAQtcyc3RM5QpW6obs9BfwGetFiI8w==",
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/@react-types/calendar/-/calendar-3.7.2.tgz",
+ "integrity": "sha512-Bp6fZo52fZdUjYbtJXcaLQ0jWEOeSoyZVwNyN5G6BmPyLP5nHxMPF+R1MPFR0fdpSI4/Sk78gWzoTuU5eOVQLw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@internationalized/date": "^3.6.0",
- "@react-types/shared": "^3.26.0"
+ "@internationalized/date": "^3.8.2",
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/checkbox": {
- "version": "3.9.0",
- "resolved": "https://registry.npmjs.org/@react-types/checkbox/-/checkbox-3.9.0.tgz",
- "integrity": "sha512-9hbHx0Oo2Hp5a8nV8Q75LQR0DHtvOIJbFaeqESSopqmV9EZoYjtY/h0NS7cZetgahQgnqYWQi44XGooMDCsmxA==",
+ "version": "3.9.5",
+ "resolved": "https://registry.npmjs.org/@react-types/checkbox/-/checkbox-3.9.5.tgz",
+ "integrity": "sha512-9y8zeGWT2xZ38/YC/rNd05pPV8W8vmqFygCpZFaa6dJeOsMgPU+rq+Ifh1G+34D/qGoZXQBzeCSCAKSNPaL7uw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/combobox": {
- "version": "3.13.1",
- "resolved": "https://registry.npmjs.org/@react-types/combobox/-/combobox-3.13.1.tgz",
- "integrity": "sha512-7xr+HknfhReN4QPqKff5tbKTe2kGZvH+DGzPYskAtb51FAAiZsKo+WvnNAvLwg3kRoC9Rkn4TAiVBp/HgymRDw==",
+ "version": "3.13.6",
+ "resolved": "https://registry.npmjs.org/@react-types/combobox/-/combobox-3.13.6.tgz",
+ "integrity": "sha512-BOvlyoVtmQJLYtNt4w6RvRORqK4eawW48CcQIR93BU5YFcAGhpcvpjhTZXknSXumabpo1/XQKX4NOuXpfUZrAQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/datepicker": {
- "version": "3.9.0",
- "resolved": "https://registry.npmjs.org/@react-types/datepicker/-/datepicker-3.9.0.tgz",
- "integrity": "sha512-dbKL5Qsm2MQwOTtVQdOcKrrphcXAqDD80WLlSQrBLg+waDuuQ7H+TrvOT0thLKloNBlFUGnZZfXGRHINpih/0g==",
+ "version": "3.12.2",
+ "resolved": "https://registry.npmjs.org/@react-types/datepicker/-/datepicker-3.12.2.tgz",
+ "integrity": "sha512-w3JIXZLLZ15zjrAjlnflmCXkNDmIelcaChhmslTVWCf0lUpgu1cUC4WAaS71rOgU03SCcrtQ0K9TsYfhnhhL7Q==",
+ "license": "Apache-2.0",
"dependencies": {
- "@internationalized/date": "^3.6.0",
- "@react-types/calendar": "^3.5.0",
- "@react-types/overlays": "^3.8.11",
- "@react-types/shared": "^3.26.0"
+ "@internationalized/date": "^3.8.2",
+ "@react-types/calendar": "^3.7.2",
+ "@react-types/overlays": "^3.8.16",
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/dialog": {
- "version": "3.5.14",
- "resolved": "https://registry.npmjs.org/@react-types/dialog/-/dialog-3.5.14.tgz",
- "integrity": "sha512-OXWMjrALwrlgw8aHD8SeRm/s3tbAssdaEh2h73KUSeFau3fU3n5mfKv+WnFqsEaOtN261o48l7hTlS6615H9AA==",
+ "version": "3.5.20",
+ "resolved": "https://registry.npmjs.org/@react-types/dialog/-/dialog-3.5.20.tgz",
+ "integrity": "sha512-ebn8jW/xW/nmRATaWIPHVBIpIFWSaqjrAxa58f5TXer5FtCD9pUuzAQDmy/o22ucB0yvn6Kl+fjb3SMbMdALZQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/overlays": "^3.8.11",
- "@react-types/shared": "^3.26.0"
+ "@react-types/overlays": "^3.9.0",
+ "@react-types/shared": "^3.31.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
- "node_modules/@react-types/form": {
- "version": "3.7.8",
- "resolved": "https://registry.npmjs.org/@react-types/form/-/form-3.7.8.tgz",
- "integrity": "sha512-0wOS97/X0ijTVuIqik1lHYTZnk13QkvMTKvIEhM7c6YMU3vPiirBwLbT2kJiAdwLiymwcCkrBdDF1NTRG6kPFA==",
+ "node_modules/@react-types/dialog/node_modules/@react-types/overlays": {
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.9.0.tgz",
+ "integrity": "sha512-T2DqMcDN5p8vb4vu2igoLrAtuewaNImLS8jsK7th7OjwQZfIWJn5Y45jSxHtXJUddEg1LkUjXYPSXCMerMcULw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.31.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-types/dialog/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-types/form": {
+ "version": "3.7.13",
+ "resolved": "https://registry.npmjs.org/@react-types/form/-/form-3.7.13.tgz",
+ "integrity": "sha512-Ryw9QDLpHi0xsNe+eucgpADeaRSmsd7+SBsL15soEXJ50K/EoPtQOkm6fE4lhfqAX8or12UF9FBcBLULmfCVNQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/grid": {
- "version": "3.2.10",
- "resolved": "https://registry.npmjs.org/@react-types/grid/-/grid-3.2.10.tgz",
- "integrity": "sha512-Z5cG0ITwqjUE4kWyU5/7VqiPl4wqMJ7kG/ZP7poAnLmwRsR8Ai0ceVn+qzp5nTA19cgURi8t3LsXn3Ar1FBoog==",
+ "version": "3.3.3",
+ "resolved": "https://registry.npmjs.org/@react-types/grid/-/grid-3.3.3.tgz",
+ "integrity": "sha512-VZAKO3XISc/3+a+DZ+hUx2NB/buOe2Ui2nISutv25foeXX4+YpWj5lXS74lJUCuVsSz6D6yoWvEajeUCYrNOxg==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/link": {
- "version": "3.5.9",
- "resolved": "https://registry.npmjs.org/@react-types/link/-/link-3.5.9.tgz",
- "integrity": "sha512-JcKDiDMqrq/5Vpn+BdWQEuXit4KN4HR/EgIi3yKnNbYkLzxBoeQZpQgvTaC7NEQeZnSqkyXQo3/vMUeX/ZNIKw==",
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/@react-types/link/-/link-3.6.2.tgz",
+ "integrity": "sha512-CtCexoupcaFHJdVPRUpJ83uxK1U0bd9x9DhwRFMqqfPHufICkQkETIw2KIeZXRvMUMi2CSG/81XXy6K0K1MtNw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/listbox": {
- "version": "3.5.3",
- "resolved": "https://registry.npmjs.org/@react-types/listbox/-/listbox-3.5.3.tgz",
- "integrity": "sha512-v1QXd9/XU3CCKr2Vgs7WLcTr6VMBur7CrxHhWZQQFExsf9bgJ/3wbUdjy4aThY/GsYHiaS38EKucCZFr1QAfqA==",
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/@react-types/listbox/-/listbox-3.7.2.tgz",
+ "integrity": "sha512-MRpBhApR1jJNASoVWsEvH5vf89TJw+l9Lt1ssawop0K2iYF5PmkthRdqcpYcTkFu5+f5QvFchVsNJ3TKD4cf2A==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.31.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-types/listbox/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-types/menu": {
- "version": "3.9.13",
- "resolved": "https://registry.npmjs.org/@react-types/menu/-/menu-3.9.13.tgz",
- "integrity": "sha512-7SuX6E2tDsqQ+HQdSvIda1ji/+ujmR86dtS9CUu5yWX91P25ufRjZ72EvLRqClWNQsj1Xl4+2zBDLWlceznAjw==",
+ "version": "3.10.2",
+ "resolved": "https://registry.npmjs.org/@react-types/menu/-/menu-3.10.2.tgz",
+ "integrity": "sha512-TVQFGttaNCcIvy1MKavb9ZihJmng46uUtVF9oTG/VI/C4YEdzekteI6iSsXbjv5ZAvOKQR+S25IWCbK2W0YCjQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/overlays": "^3.8.11",
- "@react-types/shared": "^3.26.0"
+ "@react-types/overlays": "^3.8.16",
+ "@react-types/shared": "^3.30.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-types/numberfield": {
+ "version": "3.8.12",
+ "resolved": "https://registry.npmjs.org/@react-types/numberfield/-/numberfield-3.8.12.tgz",
+ "integrity": "sha512-cI0Grj+iW5840gV80t7aXt7FZPbxMZufjuAop5taHe6RlHuLuODfz5n3kyu/NPHabruF26mVEu0BfIrwZyy+VQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/overlays": {
- "version": "3.8.11",
- "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.8.11.tgz",
- "integrity": "sha512-aw7T0rwVI3EuyG5AOaEIk8j7dZJQ9m34XAztXJVZ/W2+4pDDkLDbJ/EAPnuo2xGYRGhowuNDn4tDju01eHYi+w==",
+ "version": "3.8.16",
+ "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.8.16.tgz",
+ "integrity": "sha512-Aj9jIFwALk9LiOV/s3rVie+vr5qWfaJp/6aGOuc2StSNDTHvj1urSAr3T0bT8wDlkrqnlS4JjEGE40ypfOkbAA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/progress": {
- "version": "3.5.8",
- "resolved": "https://registry.npmjs.org/@react-types/progress/-/progress-3.5.8.tgz",
- "integrity": "sha512-PR0rN5mWevfblR/zs30NdZr+82Gka/ba7UHmYOW9/lkKlWeD7PHgl1iacpd/3zl/jUF22evAQbBHmk1mS6Mpqw==",
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@react-types/progress/-/progress-3.5.13.tgz",
+ "integrity": "sha512-+4v++AP2xxYxjrTkIXlWWGUhPPIEBzyg76EW0SHKnD4pXxKigcIXEzRbxy62SMidTVdi7jh3tuicIP8OQxJ4cA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/radio": {
- "version": "3.8.5",
- "resolved": "https://registry.npmjs.org/@react-types/radio/-/radio-3.8.5.tgz",
- "integrity": "sha512-gSImTPid6rsbJmwCkTliBIU/npYgJHOFaI3PNJo7Y0QTAnFelCtYeFtBiWrFodSArSv7ASqpLLUEj9hZu/rxIg==",
+ "version": "3.8.10",
+ "resolved": "https://registry.npmjs.org/@react-types/radio/-/radio-3.8.10.tgz",
+ "integrity": "sha512-hLOu2CXxzxQqkEkXSM71jEJMnU5HvSzwQ+DbJISDjgfgAKvZZHMQX94Fht2Vj+402OdI77esl3pJ1tlSLyV5VQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/select": {
- "version": "3.9.8",
- "resolved": "https://registry.npmjs.org/@react-types/select/-/select-3.9.8.tgz",
- "integrity": "sha512-RGsYj2oFjXpLnfcvWMBQnkcDuKkwT43xwYWZGI214/gp/B64tJiIUgTM5wFTRAeGDX23EePkhCQF+9ctnqFd6g==",
+ "version": "3.10.0",
+ "resolved": "https://registry.npmjs.org/@react-types/select/-/select-3.10.0.tgz",
+ "integrity": "sha512-+xJwYWJoJTCGsaiPAqb6QB79ub1WKIHSmOS9lh/fPUXfUszVs05jhajaN9KjrKmnXds5uh4u6l1JH5J1l2K5pw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.31.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-types/select/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-types/shared": {
- "version": "3.26.0",
- "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.26.0.tgz",
- "integrity": "sha512-6FuPqvhmjjlpEDLTiYx29IJCbCNWPlsyO+ZUmCUXzhUv2ttShOXfw8CmeHWHftT/b2KweAWuzqSlfeXPR76jpw==",
+ "version": "3.30.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.30.0.tgz",
+ "integrity": "sha512-COIazDAx1ncDg046cTJ8SFYsX8aS3lB/08LDnbkH/SkdYrFPWDlXMrO/sUam8j1WWM+PJ+4d1mj7tODIKNiFog==",
+ "license": "Apache-2.0",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/slider": {
- "version": "3.7.7",
- "resolved": "https://registry.npmjs.org/@react-types/slider/-/slider-3.7.7.tgz",
- "integrity": "sha512-lYTR9zXQV2fSEm/G3gwDENWiki1IXd/oorsgf0zu1DBi2SQDbOsLsGUXiwvD24Xy6OkUuhAqjLPPexezo7+u9g==",
+ "version": "3.8.0",
+ "resolved": "https://registry.npmjs.org/@react-types/slider/-/slider-3.8.0.tgz",
+ "integrity": "sha512-eN6Fd3YCPseGfvfOJDtn9Lh9CrAb8tF3cTAprEcpnGrsxmdW9JQpcuciYuLM871X5D2fYg4WaYMpZaiYssjxBQ==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.31.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-types/slider/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-types/switch": {
- "version": "3.5.7",
- "resolved": "https://registry.npmjs.org/@react-types/switch/-/switch-3.5.7.tgz",
- "integrity": "sha512-1IKiq510rPTHumEZuhxuazuXBa2Cuxz6wBIlwf3NCVmgWEvU+uk1ETG0sH2yymjwCqhtJDKXi+qi9HSgPEDwAg==",
+ "version": "3.5.13",
+ "resolved": "https://registry.npmjs.org/@react-types/switch/-/switch-3.5.13.tgz",
+ "integrity": "sha512-C2EhKBu7g7xhKboPPxhyKtROEti80Ck7TBnKclXt0D4LiwbzpR3qGfuzB+7YFItnhiauP7Uxe+bAfM5ojjtm9w==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.31.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-types/switch/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-types/table": {
- "version": "3.10.3",
- "resolved": "https://registry.npmjs.org/@react-types/table/-/table-3.10.3.tgz",
- "integrity": "sha512-Ac+W+m/zgRzlTU8Z2GEg26HkuJFswF9S6w26r+R3MHwr8z2duGPvv37XRtE1yf3dbpRBgHEAO141xqS2TqGwNg==",
+ "version": "3.13.1",
+ "resolved": "https://registry.npmjs.org/@react-types/table/-/table-3.13.1.tgz",
+ "integrity": "sha512-fLPRXrZoplAGMjqxHVLMt7lB0qsiu1WHZmhKtroCEhTYwnLQKL84XFH4GV1sQgQ1GIShl3BUqWzrawU5tEaQkw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/grid": "^3.2.10",
- "@react-types/shared": "^3.26.0"
+ "@react-types/grid": "^3.3.3",
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/tabs": {
- "version": "3.3.11",
- "resolved": "https://registry.npmjs.org/@react-types/tabs/-/tabs-3.3.11.tgz",
- "integrity": "sha512-BjF2TqBhZaIcC4lc82R5pDJd1F7kstj1K0Nokhz99AGYn8C0ITdp6lR+DPVY9JZRxKgP9R2EKfWGI90Lo7NQdA==",
+ "version": "3.3.17",
+ "resolved": "https://registry.npmjs.org/@react-types/tabs/-/tabs-3.3.17.tgz",
+ "integrity": "sha512-cLcdxWNJe0Kf/pKuPQbEF9Fl+axiP4gB/WVjmAdhCgQ5LCJw2dGcy1LI1SXrlS3PVclbnujD1DJ8z1lIW4Tmww==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.31.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-types/tabs/node_modules/@react-types/shared": {
+ "version": "3.31.0",
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.31.0.tgz",
+ "integrity": "sha512-ua5U6V66gDcbLZe4P2QeyNgPp4YWD1ymGA6j3n+s8CGExtrCPe64v+g4mvpT8Bnb985R96e4zFT61+m0YCwqMg==",
+ "license": "Apache-2.0",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-types/textfield": {
- "version": "3.10.0",
- "resolved": "https://registry.npmjs.org/@react-types/textfield/-/textfield-3.10.0.tgz",
- "integrity": "sha512-ShU3d6kLJGQjPXccVFjM3KOXdj3uyhYROqH9YgSIEVxgA9W6LRflvk/IVBamD9pJYTPbwmVzuP0wQkTDupfZ1w==",
+ "version": "3.12.3",
+ "resolved": "https://registry.npmjs.org/@react-types/textfield/-/textfield-3.12.3.tgz",
+ "integrity": "sha512-72tt2GJSyVFPPqZLrlfWqVn5KRnWzXsXCZ3IDawcGunl4pu+2E24jd0CWN9kOi0ETO65flj2sljeytxKytXnlA==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/@react-types/tooltip": {
- "version": "3.4.13",
- "resolved": "https://registry.npmjs.org/@react-types/tooltip/-/tooltip-3.4.13.tgz",
- "integrity": "sha512-KPekFC17RTT8kZlk7ZYubueZnfsGTDOpLw7itzolKOXGddTXsrJGBzSB4Bb060PBVllaDO0MOrhPap8OmrIl1Q==",
+ "version": "3.4.18",
+ "resolved": "https://registry.npmjs.org/@react-types/tooltip/-/tooltip-3.4.18.tgz",
+ "integrity": "sha512-/eG8hiW0D4vaCqGDa4ttb+Jnbiz6nUr5+f+LRgz3AnIkdjS9eOhpn6vXMX4hkNgcN5FGfA4Uu1C1QdM6W97Kfw==",
+ "license": "Apache-2.0",
"dependencies": {
- "@react-types/overlays": "^3.8.11",
- "@react-types/shared": "^3.26.0"
+ "@react-types/overlays": "^3.8.16",
+ "@react-types/shared": "^3.30.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
@@ -3710,267 +4803,309 @@
"node": ">=14.0.0"
}
},
+ "node_modules/@rolldown/pluginutils": {
+ "version": "1.0.0-beta.27",
+ "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
+ "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==",
+ "dev": true,
+ "license": "MIT"
+ },
"node_modules/@rollup/rollup-android-arm-eabi": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.31.0.tgz",
- "integrity": "sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.46.2.tgz",
+ "integrity": "sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==",
"cpu": [
"arm"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"android"
]
},
"node_modules/@rollup/rollup-android-arm64": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.31.0.tgz",
- "integrity": "sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.46.2.tgz",
+ "integrity": "sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"android"
]
},
"node_modules/@rollup/rollup-darwin-arm64": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.31.0.tgz",
- "integrity": "sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.46.2.tgz",
+ "integrity": "sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"darwin"
]
},
"node_modules/@rollup/rollup-darwin-x64": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.31.0.tgz",
- "integrity": "sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.46.2.tgz",
+ "integrity": "sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"darwin"
]
},
"node_modules/@rollup/rollup-freebsd-arm64": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.31.0.tgz",
- "integrity": "sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.46.2.tgz",
+ "integrity": "sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"freebsd"
]
},
"node_modules/@rollup/rollup-freebsd-x64": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.31.0.tgz",
- "integrity": "sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.46.2.tgz",
+ "integrity": "sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"freebsd"
]
},
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.31.0.tgz",
- "integrity": "sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.46.2.tgz",
+ "integrity": "sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==",
"cpu": [
"arm"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.31.0.tgz",
- "integrity": "sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.46.2.tgz",
+ "integrity": "sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==",
"cpu": [
"arm"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-arm64-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.31.0.tgz",
- "integrity": "sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.46.2.tgz",
+ "integrity": "sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-arm64-musl": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.31.0.tgz",
- "integrity": "sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.46.2.tgz",
+ "integrity": "sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.31.0.tgz",
- "integrity": "sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.46.2.tgz",
+ "integrity": "sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==",
"cpu": [
"loong64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
]
},
- "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.31.0.tgz",
- "integrity": "sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==",
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.46.2.tgz",
+ "integrity": "sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==",
"cpu": [
"ppc64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.31.0.tgz",
- "integrity": "sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.46.2.tgz",
+ "integrity": "sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==",
"cpu": [
"riscv64"
],
"dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.46.2.tgz",
+ "integrity": "sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-s390x-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.31.0.tgz",
- "integrity": "sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.46.2.tgz",
+ "integrity": "sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==",
"cpu": [
"s390x"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-x64-gnu": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.31.0.tgz",
- "integrity": "sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.46.2.tgz",
+ "integrity": "sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-linux-x64-musl": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.31.0.tgz",
- "integrity": "sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.46.2.tgz",
+ "integrity": "sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"linux"
]
},
"node_modules/@rollup/rollup-win32-arm64-msvc": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.31.0.tgz",
- "integrity": "sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.46.2.tgz",
+ "integrity": "sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"win32"
]
},
"node_modules/@rollup/rollup-win32-ia32-msvc": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.31.0.tgz",
- "integrity": "sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.46.2.tgz",
+ "integrity": "sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==",
"cpu": [
"ia32"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"win32"
]
},
"node_modules/@rollup/rollup-win32-x64-msvc": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.31.0.tgz",
- "integrity": "sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.46.2.tgz",
+ "integrity": "sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "MIT",
"optional": true,
"os": [
"win32"
]
},
"node_modules/@swc/helpers": {
- "version": "0.5.15",
- "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
- "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
+ "version": "0.5.17",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz",
+ "integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==",
+ "license": "Apache-2.0",
"dependencies": {
"tslib": "^2.8.0"
}
},
"node_modules/@tanstack/react-virtual": {
- "version": "3.11.2",
- "resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.11.2.tgz",
- "integrity": "sha512-OuFzMXPF4+xZgx8UzJha0AieuMihhhaWG0tCqpp6tDzlFwOmNBPYMuLOtMJ1Tr4pXLHmgjcWhG6RlknY2oNTdQ==",
+ "version": "3.11.3",
+ "resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.11.3.tgz",
+ "integrity": "sha512-vCU+OTylXN3hdC8RKg68tPlBPjjxtzon7Ys46MgrSLE+JhSjSTPvoQifV6DQJeJmA8Q3KT6CphJbejupx85vFw==",
+ "license": "MIT",
"dependencies": {
- "@tanstack/virtual-core": "3.11.2"
+ "@tanstack/virtual-core": "3.11.3"
},
"funding": {
"type": "github",
@@ -3982,28 +5117,31 @@
}
},
"node_modules/@tanstack/virtual-core": {
- "version": "3.11.2",
- "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.11.2.tgz",
- "integrity": "sha512-vTtpNt7mKCiZ1pwU9hfKPhpdVO2sVzFQsxoVBGtOSHxlrRRzYr8iQ2TlwbAcRYCcEiZ9ECAM8kBzH0v2+VzfKw==",
+ "version": "3.11.3",
+ "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.11.3.tgz",
+ "integrity": "sha512-v2mrNSnMwnPJtcVqNvV0c5roGCBqeogN8jDtgtuHCphdwBasOZ17x8UV8qpHUh+u0MLfX43c0uUHKje0s+Zb0w==",
+ "license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
}
},
"node_modules/@tauri-apps/api": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.2.0.tgz",
- "integrity": "sha512-R8epOeZl1eJEl603aUMIGb4RXlhPjpgxbGVEaqY+0G5JG9vzV/clNlzTeqc+NLYXVqXcn8mb4c5b9pJIUDEyAg==",
+ "version": "2.7.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.7.0.tgz",
+ "integrity": "sha512-v7fVE8jqBl8xJFOcBafDzXFc8FnicoH3j8o8DNNs0tHuEBmXUDqrCOAzMRX0UkfpwqZLqvrvK0GNQ45DfnoVDg==",
+ "license": "Apache-2.0 OR MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/tauri"
}
},
"node_modules/@tauri-apps/cli": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.2.5.tgz",
- "integrity": "sha512-PaefTQUCYYqvZWdH8EhXQkyJEjQwtoy/OHGoPcZx7Gk3D3K6AtGSxZ9OlHIz3Bu5LDGgVBk36vKtHW0WYsWnbw==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.7.1.tgz",
+ "integrity": "sha512-RcGWR4jOUEl92w3uvI0h61Llkfj9lwGD1iwvDRD2isMrDhOzjeeeVn9aGzeW1jubQ/kAbMYfydcA4BA0Cy733Q==",
"dev": true,
+ "license": "Apache-2.0 OR MIT",
"bin": {
"tauri": "tauri.js"
},
@@ -4015,26 +5153,28 @@
"url": "https://opencollective.com/tauri"
},
"optionalDependencies": {
- "@tauri-apps/cli-darwin-arm64": "2.2.5",
- "@tauri-apps/cli-darwin-x64": "2.2.5",
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.2.5",
- "@tauri-apps/cli-linux-arm64-gnu": "2.2.5",
- "@tauri-apps/cli-linux-arm64-musl": "2.2.5",
- "@tauri-apps/cli-linux-x64-gnu": "2.2.5",
- "@tauri-apps/cli-linux-x64-musl": "2.2.5",
- "@tauri-apps/cli-win32-arm64-msvc": "2.2.5",
- "@tauri-apps/cli-win32-ia32-msvc": "2.2.5",
- "@tauri-apps/cli-win32-x64-msvc": "2.2.5"
+ "@tauri-apps/cli-darwin-arm64": "2.7.1",
+ "@tauri-apps/cli-darwin-x64": "2.7.1",
+ "@tauri-apps/cli-linux-arm-gnueabihf": "2.7.1",
+ "@tauri-apps/cli-linux-arm64-gnu": "2.7.1",
+ "@tauri-apps/cli-linux-arm64-musl": "2.7.1",
+ "@tauri-apps/cli-linux-riscv64-gnu": "2.7.1",
+ "@tauri-apps/cli-linux-x64-gnu": "2.7.1",
+ "@tauri-apps/cli-linux-x64-musl": "2.7.1",
+ "@tauri-apps/cli-win32-arm64-msvc": "2.7.1",
+ "@tauri-apps/cli-win32-ia32-msvc": "2.7.1",
+ "@tauri-apps/cli-win32-x64-msvc": "2.7.1"
}
},
"node_modules/@tauri-apps/cli-darwin-arm64": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.2.5.tgz",
- "integrity": "sha512-qdPmypQE7qj62UJy3Wl/ccCJZwsv5gyBByOrAaG7u5c/PB3QSxhNPegice2k4EHeIuApaVJOoe/CEYVgm/og2Q==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.7.1.tgz",
+ "integrity": "sha512-j2NXQN6+08G03xYiyKDKqbCV2Txt+hUKg0a8hYr92AmoCU8fgCjHyva/p16lGFGUG3P2Yu0xiNe1hXL9ZuRMzA==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "Apache-2.0 OR MIT",
"optional": true,
"os": [
"darwin"
@@ -4044,13 +5184,14 @@
}
},
"node_modules/@tauri-apps/cli-darwin-x64": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.2.5.tgz",
- "integrity": "sha512-8JVlCAb2c3n0EcGW7n/1kU4Rq831SsoLDD/0hNp85Um8HGIH2Mg/qos/MLOc8Qv2mOaoKcRKf4hd0I1y0Rl9Cg==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.7.1.tgz",
+ "integrity": "sha512-CdYAefeM35zKsc91qIyKzbaO7FhzTyWKsE8hj7tEJ1INYpoh1NeNNyL/NSEA3Nebi5ilugioJ5tRK8ZXG8y3gw==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "Apache-2.0 OR MIT",
"optional": true,
"os": [
"darwin"
@@ -4060,13 +5201,14 @@
}
},
"node_modules/@tauri-apps/cli-linux-arm-gnueabihf": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.2.5.tgz",
- "integrity": "sha512-mzxQCqZg7ljRVgekPpXQ5TOehCNgnXh/DNWU6kFjALaBvaw4fGzc369/hV94wOt29htNFyxf8ty2DaQaYljEHw==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.7.1.tgz",
+ "integrity": "sha512-dnvyJrTA1UJxJjQ8q1N/gWomjP8Twij1BUQu2fdcT3OPpqlrbOk5R1yT0oD/721xoKNjroB5BXCsmmlykllxNg==",
"cpu": [
"arm"
],
"dev": true,
+ "license": "Apache-2.0 OR MIT",
"optional": true,
"os": [
"linux"
@@ -4076,13 +5218,14 @@
}
},
"node_modules/@tauri-apps/cli-linux-arm64-gnu": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.2.5.tgz",
- "integrity": "sha512-M9nkzx5jsSJSNpp7aSza0qv0/N13SUNzH8ysYSZ7IaCN8coGeMg2KgQ5qC6tqUVij2rbg8A/X1n0pPo/gtLx0A==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.7.1.tgz",
+ "integrity": "sha512-FtBW6LJPNRTws3qyUc294AqCWU91l/H0SsFKq6q4Q45MSS4x6wxLxou8zB53tLDGEPx3JSoPLcDaSfPlSbyujQ==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "Apache-2.0 OR MIT",
"optional": true,
"os": [
"linux"
@@ -4092,13 +5235,31 @@
}
},
"node_modules/@tauri-apps/cli-linux-arm64-musl": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.2.5.tgz",
- "integrity": "sha512-tFhZu950HNRLR1RM5Q9Xj5gAlA6AhyyiZgeoXGFAWto+s2jpWmmA3Qq2GUxnVDr7Xui8PF4UY5kANDIOschuwg==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.7.1.tgz",
+ "integrity": "sha512-/HXY0t4FHkpFzjeYS5c16mlA6z0kzn5uKLWptTLTdFSnYpr8FCnOP4Sdkvm2TDQPF2ERxXtNCd+WR/jQugbGnA==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "Apache-2.0 OR MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@tauri-apps/cli-linux-riscv64-gnu": {
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-riscv64-gnu/-/cli-linux-riscv64-gnu-2.7.1.tgz",
+ "integrity": "sha512-GeW5lVI2GhhnaYckiDzstG2j2Jwlud5d2XefRGwlOK+C/bVGLT1le8MNPYK8wgRlpeK8fG1WnJJYD6Ke7YQ8bg==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "Apache-2.0 OR MIT",
"optional": true,
"os": [
"linux"
@@ -4108,13 +5269,14 @@
}
},
"node_modules/@tauri-apps/cli-linux-x64-gnu": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.2.5.tgz",
- "integrity": "sha512-eaGhTQLr3EKeksGsp2tK/Ndi7/oyo3P53Pye6kg0zqXiqu8LQjg1CgvDm1l+5oit04S60zR4AqlDFpoeEtDGgw==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.7.1.tgz",
+ "integrity": "sha512-DprxKQkPxIPYwUgg+cscpv2lcIUhn2nxEPlk0UeaiV9vATxCXyytxr1gLcj3xgjGyNPlM0MlJyYaPy1JmRg1cA==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "Apache-2.0 OR MIT",
"optional": true,
"os": [
"linux"
@@ -4124,13 +5286,14 @@
}
},
"node_modules/@tauri-apps/cli-linux-x64-musl": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.2.5.tgz",
- "integrity": "sha512-NLAO/SymDxeGuOWWQZCpwoED1K1jaHUvW+u9ip+rTetnxFPLvf3zXthx4QVKfCZLdj2WLQz4cLjHyQdMDXAM+w==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.7.1.tgz",
+ "integrity": "sha512-KLlq3kOK7OUyDR757c0zQjPULpGZpLhNB0lZmZpHXvoOUcqZoCXJHh4dT/mryWZJp5ilrem5l8o9ngrDo0X1AA==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "Apache-2.0 OR MIT",
"optional": true,
"os": [
"linux"
@@ -4140,13 +5303,14 @@
}
},
"node_modules/@tauri-apps/cli-win32-arm64-msvc": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.2.5.tgz",
- "integrity": "sha512-yG5KFbqrHfGjkAQAaaCD4i7cJklBjmMxZ2C92DEnqCOujSsEuLxrwwoKxQ4+hqEHOmF3lyX0vfqhgZcS03H38w==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.7.1.tgz",
+ "integrity": "sha512-dH7KUjKkSypCeWPiainHyXoES3obS+JIZVoSwSZfKq2gWgs48FY3oT0hQNYrWveE+VR4VoR3b/F3CPGbgFvksA==",
"cpu": [
"arm64"
],
"dev": true,
+ "license": "Apache-2.0 OR MIT",
"optional": true,
"os": [
"win32"
@@ -4156,13 +5320,14 @@
}
},
"node_modules/@tauri-apps/cli-win32-ia32-msvc": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.2.5.tgz",
- "integrity": "sha512-G5lq+2EdxOc8ttg3uhME5t9U3hMGTxwaKz0X4DplTG2Iv4lcNWqw/AESIJVHa5a+EB+ZCC8I+yOfIykp/Cd5mQ==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.7.1.tgz",
+ "integrity": "sha512-1oeibfyWQPVcijOrTg709qhbXArjX3x1MPjrmA5anlygwrbByxLBcLXvotcOeULFcnH2FYUMMLLant8kgvwE5A==",
"cpu": [
"ia32"
],
"dev": true,
+ "license": "Apache-2.0 OR MIT",
"optional": true,
"os": [
"win32"
@@ -4172,13 +5337,14 @@
}
},
"node_modules/@tauri-apps/cli-win32-x64-msvc": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.2.5.tgz",
- "integrity": "sha512-vw4fPVOo0rIQIlqw6xUvK2nwiRFBHNgayDE2Z/SomJlQJAJ1q4VgpHOPl12ouuicmTjK1gWKm7RTouQe3Nig0Q==",
+ "version": "2.7.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.7.1.tgz",
+ "integrity": "sha512-D7Q9kDObutuirCNLxYQ7KAg2Xxg99AjcdYz/KuMw5HvyEPbkC9Q7JL0vOrQOrHEHxIQ2lYzFOZvKKoC2yyqXcg==",
"cpu": [
"x64"
],
"dev": true,
+ "license": "Apache-2.0 OR MIT",
"optional": true,
"os": [
"win32"
@@ -4188,107 +5354,120 @@
}
},
"node_modules/@tauri-apps/plugin-autostart": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-autostart/-/plugin-autostart-2.2.0.tgz",
- "integrity": "sha512-TzVcDZdOvdot0avkpstUWJKKEl4cyxLpFB9DZZRW5zH8k+Bv8IVJmO0zyYuw+7oKlGdHOINbD/7Je7GHMViw5w==",
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-autostart/-/plugin-autostart-2.5.0.tgz",
+ "integrity": "sha512-smSt0vydfVB950AeYRbO2S/c01SZrgMVg4FOrFLQLom0R0amsu/8zYaxgttriBdxcofjBZuHv4hmROBQIBVXmA==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-dialog": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-dialog/-/plugin-dialog-2.2.0.tgz",
- "integrity": "sha512-6bLkYK68zyK31418AK5fNccCdVuRnNpbxquCl8IqgFByOgWFivbiIlvb79wpSXi0O+8k8RCSsIpOquebusRVSg==",
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-dialog/-/plugin-dialog-2.3.2.tgz",
+ "integrity": "sha512-cNLo9YeQSC0MF4IgXnotHsqEgJk72MBZLXmQPrLA95qTaaWiiaFQ38hIMdZ6YbGUNkr3oni3EhU+AD5jLHcdUA==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-fs": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-fs/-/plugin-fs-2.2.0.tgz",
- "integrity": "sha512-+08mApuONKI8/sCNEZ6AR8vf5vI9DXD4YfrQ9NQmhRxYKMLVhRW164vdW5BSLmMpuevftpQ2FVoL9EFkfG9Z+g==",
+ "version": "2.4.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-fs/-/plugin-fs-2.4.1.tgz",
+ "integrity": "sha512-vJlKZVGF3UAFGoIEVT6Oq5L4HGDCD78WmA4uhzitToqYiBKWAvZR61M6zAyQzHqLs0ADemkE4RSy/5sCmZm6ZQ==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-http": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-http/-/plugin-http-2.2.0.tgz",
- "integrity": "sha512-ZY6sIHhgu8hcu6BkkegoiOEbvOsQFSVcK8J7l+g9RNHrkhl5uzpNIytR4R/H50fj7gyG80DJvrXDx/LBo7Easw==",
+ "version": "2.5.1",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-http/-/plugin-http-2.5.1.tgz",
+ "integrity": "sha512-SpQ1azXEdQI0UB2NZTIPljJTDEe0bIaKzHYR/k4UQp6yzRYGLC/ktmIgEfQ2RvKAWus8GcYgGr5K6LJPbo/NZw==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-log": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-log/-/plugin-log-2.2.0.tgz",
- "integrity": "sha512-g6CsQAR1lsm5ABSZZxpM/iCn86GrMDTTlhj7GPkZkYBRSm3+WczfOAl7SV7HDn77tOKCzhZffwI5uHfRoHutrw==",
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-log/-/plugin-log-2.6.0.tgz",
+ "integrity": "sha512-gVp3l31akA1Jk2bZsTA0hMFD5/gLe49Nw1btu5lViau0QqgC2XyT79LSwvy7a44ewtQbSexchqIg7oTJKMIbXQ==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-notification": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-notification/-/plugin-notification-2.2.1.tgz",
- "integrity": "sha512-QF8Zod6XDhxD6xkD5nU/BjbOpJ6+3gxGCrVULOdLpvMuMSN2Z2IdObV/qgnrEJk1UamUCF1ClQUqNCbk4zTJNQ==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-notification/-/plugin-notification-2.3.0.tgz",
+ "integrity": "sha512-QDwXo9VzAlH97c0veuf19TZI6cRBPfJDl2O6hNEDvI66j60lOO9z+PL6MJrj8A6Y+t55r7mGhe3rQWLmOre2HA==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-opener": {
- "version": "2.2.5",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.2.5.tgz",
- "integrity": "sha512-hHsJ9RPWpZvZEPVFaL+d25gABMUMOf/A6ESXnvf/ii9guTukj58WXsAE/SOysXRIhej7kseRCxnOnIMpSCdUsQ==",
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.4.0.tgz",
+ "integrity": "sha512-43VyN8JJtvKWJY72WI/KNZszTpDpzHULFxQs0CJBIYUdCRowQ6Q1feWTDb979N7nldqSuDOaBupZ6wz2nvuWwQ==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-os": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-os/-/plugin-os-2.2.0.tgz",
- "integrity": "sha512-HszbCdbisMlu5QhCNAN8YIWyz2v33abAWha6+uvV2CKX8P5VSct/y+kEe22JeyqrxCnWlQ3DRx7s49Byg7/0EA==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-os/-/plugin-os-2.3.0.tgz",
+ "integrity": "sha512-dm3bDsMuUngpIQdJ1jaMkMfyQpHyDcaTIKTFaAMHoKeUd+Is3UHO2uzhElr6ZZkfytIIyQtSVnCWdW2Kc58f3g==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-process": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-process/-/plugin-process-2.2.0.tgz",
- "integrity": "sha512-uypN2Crmyop9z+KRJr3zl71OyVFgTuvHFjsJ0UxxQ/J5212jVa5w4nPEYjIewcn8bUEXacRebwE6F7owgrbhSw==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-process/-/plugin-process-2.3.0.tgz",
+ "integrity": "sha512-0DNj6u+9csODiV4seSxxRbnLpeGYdojlcctCuLOCgpH9X3+ckVZIEj6H7tRQ7zqWr7kSTEWnrxtAdBb0FbtrmQ==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-shell": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-shell/-/plugin-shell-2.2.0.tgz",
- "integrity": "sha512-iC3Ic1hLmasoboG7BO+7p+AriSoqAwKrIk+Hpk+S/bjTQdXqbl2GbdclghI4gM32X0bls7xHzIFqhRdrlvJeaA==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-shell/-/plugin-shell-2.3.0.tgz",
+ "integrity": "sha512-6GIRxO2z64uxPX4CCTuhQzefvCC0ew7HjdBhMALiGw74vFBDY95VWueAHOHgNOMV4UOUAFupyidN9YulTe5xlA==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-store": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-store/-/plugin-store-2.2.0.tgz",
- "integrity": "sha512-hJTRtuJis4w5fW1dkcgftsYxKXK0+DbAqurZ3CURHG5WkAyyZgbxpeYctw12bbzF9ZbZREXZklPq8mocCC3Sgg==",
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-store/-/plugin-store-2.3.0.tgz",
+ "integrity": "sha512-mre8er0nXPhyEWQzWCpUd+UnEoBQYcoA5JYlwpwOV9wcxKqlXTGfminpKsE37ic8NUb2BIZqf0QQ9/U3ib2+/A==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-updater": {
- "version": "2.4.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-updater/-/plugin-updater-2.4.0.tgz",
- "integrity": "sha512-BkeKN2WObAjobf2G77HyW/DxAfI0In+VSqWGnw/0cVPlM+VmA7fw9dKUnSunryZOG7ys9y07tj7FQa1ABMXGZQ==",
+ "version": "2.9.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-updater/-/plugin-updater-2.9.0.tgz",
+ "integrity": "sha512-j++sgY8XpeDvzImTrzWA08OqqGqgkNyxczLD7FjNJJx/uXxMZFz5nDcfkyoI/rCjYuj2101Tci/r/HFmOmoxCg==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@tauri-apps/plugin-window-state": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-window-state/-/plugin-window-state-2.2.0.tgz",
- "integrity": "sha512-PFZ/vkZ6UPaRyuggEn8jWc/xwpiEw3Id8i6bin54zUR3vHY0MOK+ovvpvp6SEHKryCJbZMigYJz0OUT2eZ4YmQ==",
+ "version": "2.4.0",
+ "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-window-state/-/plugin-window-state-2.4.0.tgz",
+ "integrity": "sha512-hRSzPNi2NG0lPFthfVY0V5C1MyWN/gGaQtQYw7i9zZhLzrhZveHZ2omHG1rIiIsjfTGbO7fhjydSoeTTK9GqLw==",
+ "license": "MIT OR Apache-2.0",
"dependencies": {
- "@tauri-apps/api": "^2.0.0"
+ "@tauri-apps/api": "^2.6.0"
}
},
"node_modules/@types/babel__core": {
@@ -4333,23 +5512,11 @@
}
},
"node_modules/@types/estree": {
- "version": "1.0.6",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
- "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
- "dev": true
- },
- "node_modules/@types/lodash": {
- "version": "4.17.14",
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.14.tgz",
- "integrity": "sha512-jsxagdikDiDBeIRaPYtArcT8my4tN1og7MtMRquFT3XNA6axxyHDRUemqDz/taRDdOUn0GnGHRCuff4q48sW9A=="
- },
- "node_modules/@types/lodash.debounce": {
- "version": "4.0.9",
- "resolved": "https://registry.npmjs.org/@types/lodash.debounce/-/lodash.debounce-4.0.9.tgz",
- "integrity": "sha512-Ma5JcgTREwpLRwMM+XwBR7DaWe96nC38uCBDFKZWbNKD+osjVzdpnUSwBcqCptrp16sSOLBAUb50Car5I0TCsQ==",
- "dependencies": {
- "@types/lodash": "*"
- }
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
+ "dev": true,
+ "license": "MIT"
},
"node_modules/@types/node": {
"version": "22.10.7",
@@ -4391,22 +5558,24 @@
"integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow=="
},
"node_modules/@vitejs/plugin-react": {
- "version": "4.3.4",
- "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz",
- "integrity": "sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==",
+ "version": "4.7.0",
+ "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
+ "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@babel/core": "^7.26.0",
- "@babel/plugin-transform-react-jsx-self": "^7.25.9",
- "@babel/plugin-transform-react-jsx-source": "^7.25.9",
+ "@babel/core": "^7.28.0",
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
+ "@rolldown/pluginutils": "1.0.0-beta.27",
"@types/babel__core": "^7.20.5",
- "react-refresh": "^0.14.2"
+ "react-refresh": "^0.17.0"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"peerDependencies": {
- "vite": "^4.2.0 || ^5.0.0 || ^6.0.0"
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
}
},
"node_modules/acorn": {
@@ -4468,9 +5637,9 @@
"integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
},
"node_modules/autoprefixer": {
- "version": "10.4.20",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz",
- "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==",
+ "version": "10.4.21",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.21.tgz",
+ "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==",
"dev": true,
"funding": [
{
@@ -4486,12 +5655,13 @@
"url": "https://github.com/sponsors/ai"
}
],
+ "license": "MIT",
"dependencies": {
- "browserslist": "^4.23.3",
- "caniuse-lite": "^1.0.30001646",
+ "browserslist": "^4.24.4",
+ "caniuse-lite": "^1.0.30001702",
"fraction.js": "^4.3.7",
"normalize-range": "^0.1.2",
- "picocolors": "^1.0.1",
+ "picocolors": "^1.1.1",
"postcss-value-parser": "^4.2.0"
},
"bin": {
@@ -4540,9 +5710,9 @@
}
},
"node_modules/browserslist": {
- "version": "4.24.3",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.3.tgz",
- "integrity": "sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==",
+ "version": "4.25.1",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.1.tgz",
+ "integrity": "sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==",
"dev": true,
"funding": [
{
@@ -4558,11 +5728,12 @@
"url": "https://github.com/sponsors/ai"
}
],
+ "license": "MIT",
"dependencies": {
- "caniuse-lite": "^1.0.30001688",
- "electron-to-chromium": "^1.5.73",
+ "caniuse-lite": "^1.0.30001726",
+ "electron-to-chromium": "^1.5.173",
"node-releases": "^2.0.19",
- "update-browserslist-db": "^1.1.1"
+ "update-browserslist-db": "^1.1.3"
},
"bin": {
"browserslist": "cli.js"
@@ -4588,9 +5759,9 @@
}
},
"node_modules/caniuse-lite": {
- "version": "1.0.30001690",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001690.tgz",
- "integrity": "sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==",
+ "version": "1.0.30001731",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001731.tgz",
+ "integrity": "sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg==",
"dev": true,
"funding": [
{
@@ -4605,7 +5776,8 @@
"type": "github",
"url": "https://github.com/sponsors/ai"
}
- ]
+ ],
+ "license": "CC-BY-4.0"
},
"node_modules/chokidar": {
"version": "3.6.0",
@@ -4645,6 +5817,7 @@
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz",
"integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
+ "license": "MIT",
"engines": {
"node": ">=6"
}
@@ -4653,6 +5826,7 @@
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
+ "license": "MIT",
"dependencies": {
"color-convert": "^2.0.1",
"color-string": "^1.9.0"
@@ -4681,6 +5855,7 @@
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
"integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
+ "license": "MIT",
"dependencies": {
"color-name": "^1.0.0",
"simple-swizzle": "^0.2.2"
@@ -4689,7 +5864,8 @@
"node_modules/color2k": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.3.tgz",
- "integrity": "sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog=="
+ "integrity": "sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==",
+ "license": "MIT"
},
"node_modules/commander": {
"version": "4.1.1",
@@ -4702,13 +5878,36 @@
"node_modules/compute-scroll-into-view": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.1.1.tgz",
- "integrity": "sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw=="
+ "integrity": "sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==",
+ "license": "MIT"
},
"node_modules/convert-source-map": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cron-parser": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-5.3.0.tgz",
+ "integrity": "sha512-IS4mnFu6n3CFgEmXjr+B2zzGHsjJmHEdN+BViKvYSiEn3KWss9ICRDETDX/VZldiW82B94OyAZm4LIT4vcKK0g==",
+ "license": "MIT",
+ "dependencies": {
+ "luxon": "^3.6.1"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/cronstrue": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/cronstrue/-/cronstrue-3.2.0.tgz",
+ "integrity": "sha512-CqpqV5bCei+jmKyIw2Wihz+npXDuSkeExWCItEn5hlpD8+QFMXUU2YW5W3Vh/hFxWwzWhguoGXm5gl1os+L2Hw==",
+ "license": "MIT",
+ "bin": {
+ "cronstrue": "bin/cli.js"
+ }
},
"node_modules/cross-spawn": {
"version": "7.0.6",
@@ -4740,11 +5939,22 @@
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
"devOptional": true
},
+ "node_modules/date-fns": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-4.1.0.tgz",
+ "integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/kossnocorp"
+ }
+ },
"node_modules/debug": {
- "version": "4.4.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
- "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
+ "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
"ms": "^2.1.3"
},
@@ -4758,14 +5968,16 @@
}
},
"node_modules/decimal.js": {
- "version": "10.4.3",
- "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz",
- "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA=="
+ "version": "10.6.0",
+ "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz",
+ "integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==",
+ "license": "MIT"
},
"node_modules/deepmerge": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
+ "license": "MIT",
"engines": {
"node": ">=0.10.0"
}
@@ -4786,10 +5998,11 @@
"integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA=="
},
"node_modules/electron-to-chromium": {
- "version": "1.5.76",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.76.tgz",
- "integrity": "sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==",
- "dev": true
+ "version": "1.5.194",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.194.tgz",
+ "integrity": "sha512-SdnWJwSUot04UR51I2oPD8kuP2VI37/CADR1OHsFOUzZIvfWJBO6q11k5P/uKNyTT3cdOsnyjkrZ+DDShqYqJA==",
+ "dev": true,
+ "license": "ISC"
},
"node_modules/emoji-regex": {
"version": "9.2.2",
@@ -4797,11 +6010,12 @@
"integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
},
"node_modules/esbuild": {
- "version": "0.24.2",
- "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz",
- "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==",
+ "version": "0.25.8",
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.8.tgz",
+ "integrity": "sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==",
"dev": true,
"hasInstallScript": true,
+ "license": "MIT",
"bin": {
"esbuild": "bin/esbuild"
},
@@ -4809,31 +6023,32 @@
"node": ">=18"
},
"optionalDependencies": {
- "@esbuild/aix-ppc64": "0.24.2",
- "@esbuild/android-arm": "0.24.2",
- "@esbuild/android-arm64": "0.24.2",
- "@esbuild/android-x64": "0.24.2",
- "@esbuild/darwin-arm64": "0.24.2",
- "@esbuild/darwin-x64": "0.24.2",
- "@esbuild/freebsd-arm64": "0.24.2",
- "@esbuild/freebsd-x64": "0.24.2",
- "@esbuild/linux-arm": "0.24.2",
- "@esbuild/linux-arm64": "0.24.2",
- "@esbuild/linux-ia32": "0.24.2",
- "@esbuild/linux-loong64": "0.24.2",
- "@esbuild/linux-mips64el": "0.24.2",
- "@esbuild/linux-ppc64": "0.24.2",
- "@esbuild/linux-riscv64": "0.24.2",
- "@esbuild/linux-s390x": "0.24.2",
- "@esbuild/linux-x64": "0.24.2",
- "@esbuild/netbsd-arm64": "0.24.2",
- "@esbuild/netbsd-x64": "0.24.2",
- "@esbuild/openbsd-arm64": "0.24.2",
- "@esbuild/openbsd-x64": "0.24.2",
- "@esbuild/sunos-x64": "0.24.2",
- "@esbuild/win32-arm64": "0.24.2",
- "@esbuild/win32-ia32": "0.24.2",
- "@esbuild/win32-x64": "0.24.2"
+ "@esbuild/aix-ppc64": "0.25.8",
+ "@esbuild/android-arm": "0.25.8",
+ "@esbuild/android-arm64": "0.25.8",
+ "@esbuild/android-x64": "0.25.8",
+ "@esbuild/darwin-arm64": "0.25.8",
+ "@esbuild/darwin-x64": "0.25.8",
+ "@esbuild/freebsd-arm64": "0.25.8",
+ "@esbuild/freebsd-x64": "0.25.8",
+ "@esbuild/linux-arm": "0.25.8",
+ "@esbuild/linux-arm64": "0.25.8",
+ "@esbuild/linux-ia32": "0.25.8",
+ "@esbuild/linux-loong64": "0.25.8",
+ "@esbuild/linux-mips64el": "0.25.8",
+ "@esbuild/linux-ppc64": "0.25.8",
+ "@esbuild/linux-riscv64": "0.25.8",
+ "@esbuild/linux-s390x": "0.25.8",
+ "@esbuild/linux-x64": "0.25.8",
+ "@esbuild/netbsd-arm64": "0.25.8",
+ "@esbuild/netbsd-x64": "0.25.8",
+ "@esbuild/openbsd-arm64": "0.25.8",
+ "@esbuild/openbsd-x64": "0.25.8",
+ "@esbuild/openharmony-arm64": "0.25.8",
+ "@esbuild/sunos-x64": "0.25.8",
+ "@esbuild/win32-arm64": "0.25.8",
+ "@esbuild/win32-ia32": "0.25.8",
+ "@esbuild/win32-x64": "0.25.8"
}
},
"node_modules/escalade": {
@@ -4841,6 +6056,7 @@
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=6"
}
@@ -4894,6 +6110,7 @@
"version": "5.0.2",
"resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
"integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
+ "license": "BSD-3-Clause",
"bin": {
"flat": "cli.js"
}
@@ -4927,12 +6144,13 @@
}
},
"node_modules/framer-motion": {
- "version": "11.17.0",
- "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.17.0.tgz",
- "integrity": "sha512-uTNLH9JPMD3ad14WBt3KYRTR+If4tGPLgKTKTIIPaEBMkvazs6EkWNcmCh65qA/tyinOqIbQiuCorXX0qQsNoQ==",
+ "version": "11.18.2",
+ "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-11.18.2.tgz",
+ "integrity": "sha512-5F5Och7wrvtLVElIpclDT0CBzMVg3dL22B64aZwHtsIY8RB4mXICLrkajK4G9R+ieSAGcgrLeae2SeUTg2pr6w==",
+ "license": "MIT",
"dependencies": {
- "motion-dom": "^11.16.4",
- "motion-utils": "^11.16.0",
+ "motion-dom": "^11.18.1",
+ "motion-utils": "^11.18.1",
"tslib": "^2.4.0"
},
"peerDependencies": {
@@ -4978,6 +6196,7 @@
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=6.9.0"
}
@@ -5012,15 +6231,6 @@
"node": ">=10.13.0"
}
},
- "node_modules/globals": {
- "version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
- "dev": true,
- "engines": {
- "node": ">=4"
- }
- },
"node_modules/hasown": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
@@ -5036,26 +6246,29 @@
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/input-otp/-/input-otp-1.4.1.tgz",
"integrity": "sha512-+yvpmKYKHi9jIGngxagY9oWiiblPB7+nEO75F2l2o4vs+6vpPZZmUl4tBNYuTCvQjhvEIbdNeJu70bhfYP2nbw==",
+ "license": "MIT",
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc"
}
},
"node_modules/intl-messageformat": {
- "version": "10.7.11",
- "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.7.11.tgz",
- "integrity": "sha512-IB2N1tmI24k2EFH3PWjU7ivJsnWyLwOWOva0jnXFa29WzB6fb0JZ5EMQGu+XN5lDtjHYFo0/UooP67zBwUg7rQ==",
+ "version": "10.7.16",
+ "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.7.16.tgz",
+ "integrity": "sha512-UmdmHUmp5CIKKjSoE10la5yfU+AYJAaiYLsodbjL4lji83JNvgOQUjGaGhGrpFCb0Uh7sl7qfP1IyILa8Z40ug==",
+ "license": "BSD-3-Clause",
"dependencies": {
- "@formatjs/ecma402-abstract": "2.3.2",
- "@formatjs/fast-memoize": "2.2.6",
- "@formatjs/icu-messageformat-parser": "2.9.8",
- "tslib": "2"
+ "@formatjs/ecma402-abstract": "2.3.4",
+ "@formatjs/fast-memoize": "2.2.7",
+ "@formatjs/icu-messageformat-parser": "2.11.2",
+ "tslib": "^2.8.0"
}
},
"node_modules/is-arrayish": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
- "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
+ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
+ "license": "MIT"
},
"node_modules/is-binary-path": {
"version": "2.1.0",
@@ -5165,6 +6378,7 @@
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
"dev": true,
+ "license": "MIT",
"bin": {
"jsesc": "bin/jsesc"
},
@@ -5177,6 +6391,7 @@
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
"dev": true,
+ "license": "MIT",
"bin": {
"json5": "lib/cli.js"
},
@@ -5216,18 +6431,29 @@
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"dev": true,
+ "license": "ISC",
"dependencies": {
"yallist": "^3.0.2"
}
},
"node_modules/lucide-react": {
- "version": "0.471.0",
- "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.471.0.tgz",
- "integrity": "sha512-3L0OOJClsKDETJGK7nABqW8ftaVmUjWzluzPpw/6dGdI1bOmzsLsCjZpAEpg24Xs/U7xdYveQU+CBkHxWy7MrA==",
+ "version": "0.536.0",
+ "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.536.0.tgz",
+ "integrity": "sha512-2PgvNa9v+qz4Jt/ni8vPLt4jwoFybXHuubQT8fv4iCW5TjDxkbZjNZZHa485ad73NSEn/jdsEtU57eE1g+ma8A==",
+ "license": "ISC",
"peerDependencies": {
"react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
+ "node_modules/luxon": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.7.1.tgz",
+ "integrity": "sha512-RkRWjA926cTvz5rAb1BqyWkKbbjzCGchDUIKMCUvNi17j6f6j8uHGDV82Aqcqtzd+icoYpELmG3ksgGiFNNcNg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ }
+ },
"node_modules/merge2": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
@@ -5271,23 +6497,26 @@
}
},
"node_modules/motion-dom": {
- "version": "11.16.4",
- "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-11.16.4.tgz",
- "integrity": "sha512-2wuCie206pCiP2K23uvwJeci4pMFfyQKpWI0Vy6HrCTDzDCer4TsYtT7IVnuGbDeoIV37UuZiUr6SZMHEc1Vww==",
+ "version": "11.18.1",
+ "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-11.18.1.tgz",
+ "integrity": "sha512-g76KvA001z+atjfxczdRtw/RXOM3OMSdd1f4DL77qCTF/+avrRJiawSG4yDibEQ215sr9kpinSlX2pCTJ9zbhw==",
+ "license": "MIT",
"dependencies": {
- "motion-utils": "^11.16.0"
+ "motion-utils": "^11.18.1"
}
},
"node_modules/motion-utils": {
- "version": "11.16.0",
- "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-11.16.0.tgz",
- "integrity": "sha512-ngdWPjg31rD4WGXFi0eZ00DQQqKKu04QExyv/ymlC+3k+WIgYVFbt6gS5JsFPbJODTF/r8XiE/X+SsoT9c0ocw=="
+ "version": "11.18.1",
+ "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-11.18.1.tgz",
+ "integrity": "sha512-49Kt+HKjtbJKLtgO/LKj9Ld+6vw9BjH5d9sc40R/kVyH8GLAXgT42M2NnuPcJNuA3s9ZfZBUcwIgpmZWGEE+hA==",
+ "license": "MIT"
},
"node_modules/ms": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/mz": {
"version": "2.7.0",
@@ -5300,15 +6529,16 @@
}
},
"node_modules/nanoid": {
- "version": "3.3.8",
- "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
- "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
+ "version": "3.3.11",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
+ "license": "MIT",
"bin": {
"nanoid": "bin/nanoid.cjs"
},
@@ -5320,7 +6550,8 @@
"version": "2.0.19",
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
"integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
- "dev": true
+ "dev": true,
+ "license": "MIT"
},
"node_modules/normalize-path": {
"version": "3.0.0",
@@ -5442,9 +6673,9 @@
}
},
"node_modules/postcss": {
- "version": "8.4.49",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz",
- "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==",
+ "version": "8.5.6",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
"funding": [
{
"type": "opencollective",
@@ -5459,8 +6690,9 @@
"url": "https://github.com/sponsors/ai"
}
],
+ "license": "MIT",
"dependencies": {
- "nanoid": "^3.3.7",
+ "nanoid": "^3.3.11",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
},
@@ -5600,6 +6832,7 @@
"version": "18.3.1",
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
+ "license": "MIT",
"dependencies": {
"loose-envify": "^1.1.0"
},
@@ -5620,10 +6853,11 @@
}
},
"node_modules/react-refresh": {
- "version": "0.14.2",
- "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz",
- "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==",
+ "version": "0.17.0",
+ "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
+ "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
"dev": true,
+ "license": "MIT",
"engines": {
"node": ">=0.10.0"
}
@@ -5659,9 +6893,10 @@
}
},
"node_modules/react-textarea-autosize": {
- "version": "8.5.7",
- "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.7.tgz",
- "integrity": "sha512-2MqJ3p0Jh69yt9ktFIaZmORHXw4c4bxSIhCeWiFwmJ9EYKgLmuNII3e9c9b2UO+ijl4StnpZdqpxNIhTdHvqtQ==",
+ "version": "8.5.9",
+ "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.9.tgz",
+ "integrity": "sha512-U1DGlIQN5AwgjTyOEnI1oCcMuEr1pv1qOtklB2l4nyMGbHzWrI0eFsYK0zos2YWqAolJyG0IWJaqWmWj5ETh0A==",
+ "license": "MIT",
"dependencies": {
"@babel/runtime": "^7.20.13",
"use-composed-ref": "^1.3.0",
@@ -5693,11 +6928,6 @@
"node": ">=8.10.0"
}
},
- "node_modules/regenerator-runtime": {
- "version": "0.14.1",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
- "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
- },
"node_modules/resolve": {
"version": "1.22.10",
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
@@ -5735,12 +6965,13 @@
}
},
"node_modules/rollup": {
- "version": "4.31.0",
- "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.31.0.tgz",
- "integrity": "sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==",
+ "version": "4.46.2",
+ "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.46.2.tgz",
+ "integrity": "sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "@types/estree": "1.0.6"
+ "@types/estree": "1.0.8"
},
"bin": {
"rollup": "dist/bin/rollup"
@@ -5750,25 +6981,26 @@
"npm": ">=8.0.0"
},
"optionalDependencies": {
- "@rollup/rollup-android-arm-eabi": "4.31.0",
- "@rollup/rollup-android-arm64": "4.31.0",
- "@rollup/rollup-darwin-arm64": "4.31.0",
- "@rollup/rollup-darwin-x64": "4.31.0",
- "@rollup/rollup-freebsd-arm64": "4.31.0",
- "@rollup/rollup-freebsd-x64": "4.31.0",
- "@rollup/rollup-linux-arm-gnueabihf": "4.31.0",
- "@rollup/rollup-linux-arm-musleabihf": "4.31.0",
- "@rollup/rollup-linux-arm64-gnu": "4.31.0",
- "@rollup/rollup-linux-arm64-musl": "4.31.0",
- "@rollup/rollup-linux-loongarch64-gnu": "4.31.0",
- "@rollup/rollup-linux-powerpc64le-gnu": "4.31.0",
- "@rollup/rollup-linux-riscv64-gnu": "4.31.0",
- "@rollup/rollup-linux-s390x-gnu": "4.31.0",
- "@rollup/rollup-linux-x64-gnu": "4.31.0",
- "@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",
+ "@rollup/rollup-android-arm-eabi": "4.46.2",
+ "@rollup/rollup-android-arm64": "4.46.2",
+ "@rollup/rollup-darwin-arm64": "4.46.2",
+ "@rollup/rollup-darwin-x64": "4.46.2",
+ "@rollup/rollup-freebsd-arm64": "4.46.2",
+ "@rollup/rollup-freebsd-x64": "4.46.2",
+ "@rollup/rollup-linux-arm-gnueabihf": "4.46.2",
+ "@rollup/rollup-linux-arm-musleabihf": "4.46.2",
+ "@rollup/rollup-linux-arm64-gnu": "4.46.2",
+ "@rollup/rollup-linux-arm64-musl": "4.46.2",
+ "@rollup/rollup-linux-loongarch64-gnu": "4.46.2",
+ "@rollup/rollup-linux-ppc64-gnu": "4.46.2",
+ "@rollup/rollup-linux-riscv64-gnu": "4.46.2",
+ "@rollup/rollup-linux-riscv64-musl": "4.46.2",
+ "@rollup/rollup-linux-s390x-gnu": "4.46.2",
+ "@rollup/rollup-linux-x64-gnu": "4.46.2",
+ "@rollup/rollup-linux-x64-musl": "4.46.2",
+ "@rollup/rollup-win32-arm64-msvc": "4.46.2",
+ "@rollup/rollup-win32-ia32-msvc": "4.46.2",
+ "@rollup/rollup-win32-x64-msvc": "4.46.2",
"fsevents": "~2.3.2"
}
},
@@ -5806,6 +7038,7 @@
"version": "3.0.10",
"resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.10.tgz",
"integrity": "sha512-t44QCeDKAPf1mtQH3fYpWz8IM/DyvHLjs8wUvvwMYxk5moOqCzrMSxK6HQVD0QVmVjXFavoFIPRVrMuJPKAvtg==",
+ "license": "MIT",
"dependencies": {
"compute-scroll-into-view": "^3.0.2"
}
@@ -5815,6 +7048,7 @@
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
+ "license": "ISC",
"bin": {
"semver": "bin/semver.js"
}
@@ -5853,6 +7087,7 @@
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
"integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
+ "license": "MIT",
"dependencies": {
"is-arrayish": "^0.3.1"
}
@@ -6009,20 +7244,22 @@
}
},
"node_modules/tailwind-merge": {
- "version": "2.6.0",
- "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.0.tgz",
- "integrity": "sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==",
+ "version": "2.5.4",
+ "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.5.4.tgz",
+ "integrity": "sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==",
+ "license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/dcastil"
}
},
"node_modules/tailwind-variants": {
- "version": "0.1.20",
- "resolved": "https://registry.npmjs.org/tailwind-variants/-/tailwind-variants-0.1.20.tgz",
- "integrity": "sha512-AMh7x313t/V+eTySKB0Dal08RHY7ggYK0MSn/ad8wKWOrDUIzyiWNayRUm2PIJ4VRkvRnfNuyRuKbLV3EN+ewQ==",
+ "version": "0.3.0",
+ "resolved": "https://registry.npmjs.org/tailwind-variants/-/tailwind-variants-0.3.0.tgz",
+ "integrity": "sha512-ho2k5kn+LB1fT5XdNS3Clb96zieWxbStE9wNLK7D0AV64kdZMaYzAKo0fWl6fXLPY99ffF9oBJnIj5escEl/8A==",
+ "license": "MIT",
"dependencies": {
- "tailwind-merge": "^1.14.0"
+ "tailwind-merge": "^2.5.4"
},
"engines": {
"node": ">=16.x",
@@ -6032,15 +7269,6 @@
"tailwindcss": "*"
}
},
- "node_modules/tailwind-variants/node_modules/tailwind-merge": {
- "version": "1.14.0",
- "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-1.14.0.tgz",
- "integrity": "sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/dcastil"
- }
- },
"node_modules/tailwindcss": {
"version": "3.4.17",
"resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz",
@@ -6124,6 +7352,51 @@
"node": ">=0.8"
}
},
+ "node_modules/tinyglobby": {
+ "version": "0.2.14",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz",
+ "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/tinyglobby/node_modules/fdir": {
+ "version": "6.4.6",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz",
+ "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/tinyglobby/node_modules/picomatch": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
"node_modules/to-regex-range": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
@@ -6165,9 +7438,9 @@
"dev": true
},
"node_modules/update-browserslist-db": {
- "version": "1.1.1",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz",
- "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
+ "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
"dev": true,
"funding": [
{
@@ -6183,9 +7456,10 @@
"url": "https://github.com/sponsors/ai"
}
],
+ "license": "MIT",
"dependencies": {
"escalade": "^3.2.0",
- "picocolors": "^1.1.0"
+ "picocolors": "^1.1.1"
},
"bin": {
"update-browserslist-db": "cli.js"
@@ -6195,9 +7469,10 @@
}
},
"node_modules/use-broadcast-ts": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/use-broadcast-ts/-/use-broadcast-ts-2.0.0.tgz",
- "integrity": "sha512-RcoHx6izzD7NZBsFhCMxmZSJymTOgKa8gGN9IjjbTCDkPL+o3MAShulTVe7nqLKZPcAC67O0oge8dtG1JVSRvQ==",
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/use-broadcast-ts/-/use-broadcast-ts-2.0.1.tgz",
+ "integrity": "sha512-dEALLe9/y1dVfxSpjd/ebW/2Nn3Of0u/I4CmRkLJ/1oGCuviWD6dtvL9Ifg81/M6C8/II4GfX/DGp4QXMLzN5A==",
+ "license": "MIT",
"optionalDependencies": {
"react": ">=18.0",
"zustand": "^4.0.0 || ^5.0.0"
@@ -6207,6 +7482,7 @@
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.4.0.tgz",
"integrity": "sha512-djviaxuOOh7wkj0paeO1Q/4wMZ8Zrnag5H6yBvzN7AKKe8beOaED9SF5/ByLqsku8NP4zQqsvM2u3ew/tJK8/w==",
+ "license": "MIT",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
@@ -6217,9 +7493,10 @@
}
},
"node_modules/use-isomorphic-layout-effect": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.2.0.tgz",
- "integrity": "sha512-q6ayo8DWoPZT0VdG4u3D3uxcgONP3Mevx2i2b0434cwWBoL+aelL1DzkXI6w3PhTZzUeR2kaVlZn70iCiseP6w==",
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.2.1.tgz",
+ "integrity": "sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==",
+ "license": "MIT",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
@@ -6233,6 +7510,7 @@
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.3.0.tgz",
"integrity": "sha512-mhg3xdm9NaM8q+gLT8KryJPnRFOz1/5XPBhmDEVZK1webPzDjrPk7f/mbpeLqTgB9msytYWANxgALOCJKnLvcQ==",
+ "license": "MIT",
"dependencies": {
"use-isomorphic-layout-effect": "^1.1.1"
},
@@ -6245,20 +7523,33 @@
}
}
},
+ "node_modules/use-sync-external-store": {
+ "version": "1.5.0",
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz",
+ "integrity": "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
+ }
+ },
"node_modules/util-deprecate": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
},
"node_modules/vite": {
- "version": "6.0.6",
- "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.6.tgz",
- "integrity": "sha512-NSjmUuckPmDU18bHz7QZ+bTYhRR0iA72cs2QAxCqDpafJ0S6qetco0LB3WW2OxlMHS0JmAv+yZ/R3uPmMyGTjQ==",
+ "version": "6.3.5",
+ "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz",
+ "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==",
"dev": true,
+ "license": "MIT",
"dependencies": {
- "esbuild": "^0.24.2",
- "postcss": "^8.4.49",
- "rollup": "^4.23.0"
+ "esbuild": "^0.25.0",
+ "fdir": "^6.4.4",
+ "picomatch": "^4.0.2",
+ "postcss": "^8.5.3",
+ "rollup": "^4.34.9",
+ "tinyglobby": "^0.2.13"
},
"bin": {
"vite": "bin/vite.js"
@@ -6321,6 +7612,34 @@
}
}
},
+ "node_modules/vite/node_modules/fdir": {
+ "version": "6.4.6",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.6.tgz",
+ "integrity": "sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/vite/node_modules/picomatch": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
"node_modules/which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
@@ -6423,7 +7742,8 @@
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
- "dev": true
+ "dev": true,
+ "license": "ISC"
},
"node_modules/yaml": {
"version": "2.7.0",
@@ -6437,9 +7757,10 @@
}
},
"node_modules/zustand": {
- "version": "5.0.3",
- "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.3.tgz",
- "integrity": "sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==",
+ "version": "5.0.7",
+ "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.7.tgz",
+ "integrity": "sha512-Ot6uqHDW/O2VdYsKLLU8GQu8sCOM1LcoE8RwvLv9uuRT9s6SOHCKs0ZEOhxg+I1Ld+A1Q5lwx+UlKXXUoCZITg==",
+ "license": "MIT",
"engines": {
"node": ">=12.20.0"
},
diff --git a/package.json b/package.json
index 2a05bdb..64999bd 100644
--- a/package.json
+++ b/package.json
@@ -19,42 +19,45 @@
"build:wasm": "tauri build --target wasm32-unknown-unknown"
},
"dependencies": {
- "@nextui-org/react": "^2.6.11",
- "@tauri-apps/api": "~2.2.0",
- "@tauri-apps/plugin-autostart": "^2.2.0",
- "@tauri-apps/plugin-dialog": "^2.2.0",
- "@tauri-apps/plugin-fs": "^2.2.0",
- "@tauri-apps/plugin-http": "^2.2.0",
- "@tauri-apps/plugin-log": "^2.2.0",
- "@tauri-apps/plugin-notification": "^2.2.1",
- "@tauri-apps/plugin-opener": "^2.2.5",
- "@tauri-apps/plugin-os": "^2.2.0",
- "@tauri-apps/plugin-process": "^2.2.0",
- "@tauri-apps/plugin-shell": "^2.2.0",
- "@tauri-apps/plugin-store": "^2.2.0",
- "@tauri-apps/plugin-updater": "^2.4.0",
- "@tauri-apps/plugin-window-state": "^2.2.0",
- "framer-motion": "^11.17.0",
- "lucide-react": "^0.471.0",
+ "@heroui/react": "^2.7.11",
+ "@tauri-apps/api": "~2.7.0",
+ "@tauri-apps/plugin-autostart": "^2.5.0",
+ "@tauri-apps/plugin-dialog": "^2.3.2",
+ "@tauri-apps/plugin-fs": "^2.4.1",
+ "@tauri-apps/plugin-http": "^2.5.1",
+ "@tauri-apps/plugin-log": "^2.6.0",
+ "@tauri-apps/plugin-notification": "^2.3.0",
+ "@tauri-apps/plugin-opener": "^2.4.0",
+ "@tauri-apps/plugin-os": "^2.3.0",
+ "@tauri-apps/plugin-process": "^2.3.0",
+ "@tauri-apps/plugin-shell": "^2.3.0",
+ "@tauri-apps/plugin-store": "^2.3.0",
+ "@tauri-apps/plugin-updater": "^2.9.0",
+ "@tauri-apps/plugin-window-state": "^2.4.0",
+ "cron-parser": "^5.3.0",
+ "cronstrue": "^3.2.0",
+ "date-fns": "^4.1.0",
+ "framer-motion": "^11.18.2",
+ "lucide-react": "^0.536.0",
"p-retry": "^6.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.1",
- "use-broadcast-ts": "^2.0.0",
- "zustand": "^5.0.3"
+ "use-broadcast-ts": "^2.0.1",
+ "zustand": "^5.0.7"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
- "@tauri-apps/cli": "~2.2.5",
+ "@tauri-apps/cli": "~2.7.1",
"@types/node": "^22.10.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
- "@vitejs/plugin-react": "^4.3.4",
- "autoprefixer": "^10.4.20",
- "esbuild": "^0.24.2",
- "postcss": "^8.4.49",
+ "@vitejs/plugin-react": "^4.7.0",
+ "autoprefixer": "^10.4.21",
+ "esbuild": "^0.25.8",
+ "postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
- "vite": "^6.0.3"
+ "vite": "^6.3.5"
}
}
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock
index 98eb3d1..cdf1464 100644
--- a/src-tauri/Cargo.lock
+++ b/src-tauri/Cargo.lock
@@ -71,15 +71,15 @@ checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
name = "android_log-sys"
-version = "0.3.1"
+version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5ecc8056bf6ab9892dcd53216c83d1597487d7dacac16c8df6b877d127df9937"
+checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d"
[[package]]
name = "android_logger"
-version = "0.14.1"
+version = "0.15.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "05b07e8e73d720a1f2e4b6014766e6039fd2e96a4fa44e2a78d0e1fa2ff49826"
+checksum = "dbb4e440d04be07da1f1bf44fb4495ebd58669372fe0cffa6e48595ac5bd88a3"
dependencies = [
"android_log-sys",
"env_filter",
@@ -203,17 +203,6 @@ dependencies = [
"slab",
]
-[[package]]
-name = "async-fs"
-version = "2.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
-dependencies = [
- "async-lock",
- "blocking",
- "futures-lite",
-]
-
[[package]]
name = "async-io"
version = "2.4.0"
@@ -227,7 +216,7 @@ dependencies = [
"futures-lite",
"parking",
"polling",
- "rustix",
+ "rustix 0.38.44",
"slab",
"tracing",
"windows-sys 0.59.0",
@@ -259,7 +248,7 @@ dependencies = [
"cfg-if",
"event-listener",
"futures-lite",
- "rustix",
+ "rustix 0.38.44",
"tracing",
]
@@ -286,7 +275,7 @@ dependencies = [
"cfg-if",
"futures-core",
"futures-io",
- "rustix",
+ "rustix 0.38.44",
"signal-hook-registry",
"slab",
"windows-sys 0.59.0",
@@ -436,7 +425,16 @@ version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
dependencies = [
- "objc2",
+ "objc2 0.5.2",
+]
+
+[[package]]
+name = "block2"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2"
+dependencies = [
+ "objc2 0.6.1",
]
[[package]]
@@ -477,9 +475,9 @@ dependencies = [
[[package]]
name = "brotli"
-version = "7.0.0"
+version = "8.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd"
+checksum = "9991eea70ea4f293524138648e41ee89b0b2b12ddef3b255effa43c8056e0e0d"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
@@ -488,9 +486,9 @@ dependencies = [
[[package]]
name = "brotli-decompressor"
-version = "4.0.2"
+version = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
+checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
@@ -642,12 +640,12 @@ dependencies = [
[[package]]
name = "cargo_toml"
-version = "0.21.0"
+version = "0.22.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5fbd1fe9db3ebf71b89060adaf7b0504c2d6a425cf061313099547e382c2e472"
+checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77"
dependencies = [
"serde",
- "toml 0.8.19",
+ "toml 0.9.4",
]
[[package]]
@@ -938,15 +936,15 @@ dependencies = [
[[package]]
name = "cssparser"
-version = "0.27.2"
+version = "0.29.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
+checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa"
dependencies = [
"cssparser-macros",
"dtoa-short",
- "itoa 0.4.8",
+ "itoa",
"matches",
- "phf 0.8.0",
+ "phf 0.10.1",
"proc-macro2",
"quote",
"smallvec",
@@ -1078,15 +1076,6 @@ dependencies = [
"dirs-sys 0.3.7",
]
-[[package]]
-name = "dirs"
-version = "5.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
-dependencies = [
- "dirs-sys 0.4.1",
-]
-
[[package]]
name = "dirs"
version = "6.0.0"
@@ -1117,18 +1106,6 @@ dependencies = [
"winapi",
]
-[[package]]
-name = "dirs-sys"
-version = "0.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
-dependencies = [
- "libc",
- "option-ext",
- "redox_users 0.4.6",
- "windows-sys 0.48.0",
-]
-
[[package]]
name = "dirs-sys"
version = "0.5.0"
@@ -1158,6 +1135,16 @@ version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
+[[package]]
+name = "dispatch2"
+version = "0.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
+dependencies = [
+ "bitflags 2.8.0",
+ "objc2 0.6.1",
+]
+
[[package]]
name = "displaydoc"
version = "0.2.5"
@@ -1254,16 +1241,16 @@ checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
[[package]]
name = "embed-resource"
-version = "2.5.1"
+version = "3.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b68b6f9f63a0b6a38bc447d4ce84e2b388f3ec95c99c641c8ff0dd3ef89a6379"
+checksum = "4c6d81016d6c977deefb2ef8d8290da019e27cc26167e102185da528e6c0ab38"
dependencies = [
"cc",
"memchr",
"rustc_version",
- "toml 0.8.19",
+ "toml 0.9.4",
"vswhom",
- "winreg 0.52.0",
+ "winreg 0.55.0",
]
[[package]]
@@ -1722,11 +1709,11 @@ dependencies = [
[[package]]
name = "gethostname"
-version = "0.5.0"
+version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dc3655aa6818d65bc620d6911f05aa7b6aeb596291e1e9f79e52df85583d1e30"
+checksum = "fc257fdb4038301ce4b9cd1b3b51704509692bb3ff716a410cbd07925d9dae55"
dependencies = [
- "rustix",
+ "rustix 1.0.8",
"windows-targets 0.52.6",
]
@@ -2020,16 +2007,14 @@ dependencies = [
[[package]]
name = "html5ever"
-version = "0.26.0"
+version = "0.29.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
+checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c"
dependencies = [
"log",
"mac",
"markup5ever",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
+ "match_token",
]
[[package]]
@@ -2040,7 +2025,7 @@ checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
dependencies = [
"bytes",
"fnv",
- "itoa 1.0.14",
+ "itoa",
]
[[package]]
@@ -2091,7 +2076,7 @@ dependencies = [
"http",
"http-body",
"httparse",
- "itoa 1.0.14",
+ "itoa",
"pin-project-lite",
"smallvec",
"tokio",
@@ -2176,9 +2161,9 @@ dependencies = [
[[package]]
name = "ico"
-version = "0.3.0"
+version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae"
+checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98"
dependencies = [
"byteorder",
"png",
@@ -2365,9 +2350,9 @@ dependencies = [
[[package]]
name = "infer"
-version = "0.16.0"
+version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847"
+checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
dependencies = [
"cfb",
]
@@ -2406,12 +2391,6 @@ dependencies = [
"once_cell",
]
-[[package]]
-name = "itoa"
-version = "0.4.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
-
[[package]]
name = "itoa"
version = "1.0.14"
@@ -2528,14 +2507,13 @@ dependencies = [
[[package]]
name = "kuchikiki"
-version = "0.8.2"
+version = "0.8.8-speedreader"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8"
+checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2"
dependencies = [
"cssparser",
"html5ever",
- "indexmap 1.9.3",
- "matches",
+ "indexmap 2.7.1",
"selectors",
]
@@ -2571,9 +2549,9 @@ dependencies = [
[[package]]
name = "libc"
-version = "0.2.169"
+version = "0.2.174"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
+checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
[[package]]
name = "libloading"
@@ -2612,6 +2590,12 @@ version = "0.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
+[[package]]
+name = "linux-raw-sys"
+version = "0.9.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
+
[[package]]
name = "litemap"
version = "0.7.4"
@@ -2692,18 +2676,29 @@ dependencies = [
[[package]]
name = "markup5ever"
-version = "0.11.0"
+version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
+checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18"
dependencies = [
"log",
- "phf 0.10.1",
- "phf_codegen 0.10.0",
+ "phf 0.11.3",
+ "phf_codegen 0.11.3",
"string_cache",
"string_cache_codegen",
"tendril",
]
+[[package]]
+name = "match_token"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.96",
+]
+
[[package]]
name = "matches"
version = "0.1.10"
@@ -2838,22 +2833,23 @@ dependencies = [
[[package]]
name = "muda"
-version = "0.15.3"
+version = "0.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fdae9c00e61cc0579bcac625e8ad22104c60548a025bfc972dc83868a28e1484"
+checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a"
dependencies = [
"crossbeam-channel",
"dpi",
"gtk",
"keyboard-types",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
+ "objc2 0.6.1",
+ "objc2-app-kit 0.3.1",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
"once_cell",
"png",
"serde",
- "thiserror 1.0.69",
- "windows-sys 0.59.0",
+ "thiserror 2.0.11",
+ "windows-sys 0.60.2",
]
[[package]]
@@ -2923,9 +2919,9 @@ dependencies = [
[[package]]
name = "nix"
-version = "0.29.0"
+version = "0.30.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
+checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
dependencies = [
"bitflags 2.8.0",
"cfg-if",
@@ -3034,9 +3030,6 @@ name = "objc-sys"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
-dependencies = [
- "cc",
-]
[[package]]
name = "objc2"
@@ -3048,6 +3041,16 @@ dependencies = [
"objc2-encode",
]
+[[package]]
+name = "objc2"
+version = "0.6.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551"
+dependencies = [
+ "objc2-encode",
+ "objc2-exception-helper",
+]
+
[[package]]
name = "objc2-app-kit"
version = "0.2.2"
@@ -3055,37 +3058,43 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
dependencies = [
"bitflags 2.8.0",
- "block2",
+ "block2 0.5.1",
"libc",
- "objc2",
- "objc2-core-data",
- "objc2-core-image",
- "objc2-foundation",
- "objc2-quartz-core",
+ "objc2 0.5.2",
+ "objc2-core-data 0.2.2",
+ "objc2-core-image 0.2.2",
+ "objc2-foundation 0.2.2",
+ "objc2-quartz-core 0.2.2",
+]
+
+[[package]]
+name = "objc2-app-kit"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc"
+dependencies = [
+ "bitflags 2.8.0",
+ "block2 0.6.1",
+ "libc",
+ "objc2 0.6.1",
+ "objc2-cloud-kit",
+ "objc2-core-data 0.3.1",
+ "objc2-core-foundation",
+ "objc2-core-graphics",
+ "objc2-core-image 0.3.1",
+ "objc2-foundation 0.3.1",
+ "objc2-quartz-core 0.3.1",
]
[[package]]
name = "objc2-cloud-kit"
-version = "0.2.2"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
+checksum = "17614fdcd9b411e6ff1117dfb1d0150f908ba83a7df81b1f118005fe0a8ea15d"
dependencies = [
"bitflags 2.8.0",
- "block2",
- "objc2",
- "objc2-core-location",
- "objc2-foundation",
-]
-
-[[package]]
-name = "objc2-contacts"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
-dependencies = [
- "block2",
- "objc2",
- "objc2-foundation",
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
]
[[package]]
@@ -3095,9 +3104,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
dependencies = [
"bitflags 2.8.0",
- "block2",
- "objc2",
- "objc2-foundation",
+ "block2 0.5.1",
+ "objc2 0.5.2",
+ "objc2-foundation 0.2.2",
+]
+
+[[package]]
+name = "objc2-core-data"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "291fbbf7d29287518e8686417cf7239c74700fd4b607623140a7d4a3c834329d"
+dependencies = [
+ "bitflags 2.8.0",
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
+]
+
+[[package]]
+name = "objc2-core-foundation"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
+dependencies = [
+ "bitflags 2.8.0",
+ "dispatch2",
+ "objc2 0.6.1",
+]
+
+[[package]]
+name = "objc2-core-graphics"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4"
+dependencies = [
+ "bitflags 2.8.0",
+ "dispatch2",
+ "objc2 0.6.1",
+ "objc2-core-foundation",
+ "objc2-io-surface",
]
[[package]]
@@ -3106,22 +3150,20 @@ version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
dependencies = [
- "block2",
- "objc2",
- "objc2-foundation",
+ "block2 0.5.1",
+ "objc2 0.5.2",
+ "objc2-foundation 0.2.2",
"objc2-metal",
]
[[package]]
-name = "objc2-core-location"
-version = "0.2.2"
+name = "objc2-core-image"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
+checksum = "79b3dc0cc4386b6ccf21c157591b34a7f44c8e75b064f85502901ab2188c007e"
dependencies = [
- "block2",
- "objc2",
- "objc2-contacts",
- "objc2-foundation",
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
]
[[package]]
@@ -3130,6 +3172,15 @@ version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
+[[package]]
+name = "objc2-exception-helper"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a"
+dependencies = [
+ "cc",
+]
+
[[package]]
name = "objc2-foundation"
version = "0.2.2"
@@ -3137,22 +3188,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
dependencies = [
"bitflags 2.8.0",
- "block2",
+ "block2 0.5.1",
"dispatch",
"libc",
- "objc2",
+ "objc2 0.5.2",
]
[[package]]
-name = "objc2-link-presentation"
-version = "0.2.2"
+name = "objc2-foundation"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
+checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c"
dependencies = [
- "block2",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
+ "bitflags 2.8.0",
+ "block2 0.6.1",
+ "libc",
+ "objc2 0.6.1",
+ "objc2-core-foundation",
+]
+
+[[package]]
+name = "objc2-io-surface"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7282e9ac92529fa3457ce90ebb15f4ecbc383e8338060960760fa2cf75420c3c"
+dependencies = [
+ "bitflags 2.8.0",
+ "objc2 0.6.1",
+ "objc2-core-foundation",
]
[[package]]
@@ -3162,9 +3225,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
dependencies = [
"bitflags 2.8.0",
- "block2",
- "objc2",
- "objc2-foundation",
+ "block2 0.5.1",
+ "objc2 0.5.2",
+ "objc2-foundation 0.2.2",
+]
+
+[[package]]
+name = "objc2-osa-kit"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "26bb88504b5a050dbba515d2414607bf5e57dd56b107bc5f0351197a3e7bdc5d"
+dependencies = [
+ "bitflags 2.8.0",
+ "objc2 0.6.1",
+ "objc2-app-kit 0.3.1",
+ "objc2-foundation 0.3.1",
]
[[package]]
@@ -3174,78 +3249,47 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
dependencies = [
"bitflags 2.8.0",
- "block2",
- "objc2",
- "objc2-foundation",
+ "block2 0.5.1",
+ "objc2 0.5.2",
+ "objc2-foundation 0.2.2",
"objc2-metal",
]
[[package]]
-name = "objc2-symbols"
-version = "0.2.2"
+name = "objc2-quartz-core"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
+checksum = "90ffb6a0cd5f182dc964334388560b12a57f7b74b3e2dec5e2722aa2dfb2ccd5"
dependencies = [
- "objc2",
- "objc2-foundation",
+ "bitflags 2.8.0",
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
]
[[package]]
name = "objc2-ui-kit"
-version = "0.2.2"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
+checksum = "25b1312ad7bc8a0e92adae17aa10f90aae1fb618832f9b993b022b591027daed"
dependencies = [
"bitflags 2.8.0",
- "block2",
- "objc2",
- "objc2-cloud-kit",
- "objc2-core-data",
- "objc2-core-image",
- "objc2-core-location",
- "objc2-foundation",
- "objc2-link-presentation",
- "objc2-quartz-core",
- "objc2-symbols",
- "objc2-uniform-type-identifiers",
- "objc2-user-notifications",
-]
-
-[[package]]
-name = "objc2-uniform-type-identifiers"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
-dependencies = [
- "block2",
- "objc2",
- "objc2-foundation",
-]
-
-[[package]]
-name = "objc2-user-notifications"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
-dependencies = [
- "bitflags 2.8.0",
- "block2",
- "objc2",
- "objc2-core-location",
- "objc2-foundation",
+ "objc2 0.6.1",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
]
[[package]]
name = "objc2-web-kit"
-version = "0.2.2"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68bc69301064cebefc6c4c90ce9cba69225239e4b8ff99d445a2b5563797da65"
+checksum = "91672909de8b1ce1c2252e95bbee8c1649c9ad9d14b9248b3d7b4c47903c47ad"
dependencies = [
"bitflags 2.8.0",
- "block2",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
+ "block2 0.6.1",
+ "objc2 0.6.1",
+ "objc2-app-kit 0.3.1",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
]
[[package]]
@@ -3365,6 +3409,20 @@ dependencies = [
"windows-sys 0.59.0",
]
+[[package]]
+name = "osakit"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b"
+dependencies = [
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
+ "objc2-osa-kit",
+ "serde",
+ "serde_json",
+ "thiserror 2.0.11",
+]
+
[[package]]
name = "pango"
version = "0.18.3"
@@ -3505,9 +3563,7 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
dependencies = [
- "phf_macros 0.8.0",
"phf_shared 0.8.0",
- "proc-macro-hack",
]
[[package]]
@@ -3516,7 +3572,9 @@ version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
dependencies = [
+ "phf_macros 0.10.0",
"phf_shared 0.10.0",
+ "proc-macro-hack",
]
[[package]]
@@ -3541,12 +3599,12 @@ dependencies = [
[[package]]
name = "phf_codegen"
-version = "0.10.0"
+version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
+checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
dependencies = [
- "phf_generator 0.10.0",
- "phf_shared 0.10.0",
+ "phf_generator 0.11.3",
+ "phf_shared 0.11.3",
]
[[package]]
@@ -3581,12 +3639,12 @@ dependencies = [
[[package]]
name = "phf_macros"
-version = "0.8.0"
+version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
+checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
dependencies = [
- "phf_generator 0.8.0",
- "phf_shared 0.8.0",
+ "phf_generator 0.10.0",
+ "phf_shared 0.10.0",
"proc-macro-hack",
"proc-macro2",
"quote",
@@ -3704,7 +3762,7 @@ dependencies = [
"concurrent-queue",
"hermit-abi",
"pin-project-lite",
- "rustix",
+ "rustix 0.38.44",
"tracing",
"windows-sys 0.59.0",
]
@@ -4163,7 +4221,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a24763657bff09769a8ccf12c8b8a50416fb035fe199263b4c5071e4e3f006f"
dependencies = [
"ashpd",
- "block2",
+ "block2 0.5.1",
"core-foundation 0.10.0",
"core-foundation-sys",
"glib-sys",
@@ -4171,9 +4229,9 @@ dependencies = [
"gtk-sys",
"js-sys",
"log",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
+ "objc2 0.5.2",
+ "objc2-app-kit 0.2.2",
+ "objc2-foundation 0.2.2",
"raw-window-handle",
"wasm-bindgen",
"wasm-bindgen-futures",
@@ -4271,7 +4329,20 @@ dependencies = [
"bitflags 2.8.0",
"errno",
"libc",
- "linux-raw-sys",
+ "linux-raw-sys 0.4.15",
+ "windows-sys 0.59.0",
+]
+
+[[package]]
+name = "rustix"
+version = "1.0.8"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
+dependencies = [
+ "bitflags 2.8.0",
+ "errno",
+ "libc",
+ "linux-raw-sys 0.9.4",
"windows-sys 0.59.0",
]
@@ -4438,22 +4509,20 @@ dependencies = [
[[package]]
name = "selectors"
-version = "0.22.0"
+version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
+checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416"
dependencies = [
"bitflags 1.3.2",
"cssparser",
"derive_more",
"fxhash",
"log",
- "matches",
"phf 0.8.0",
"phf_codegen 0.8.0",
"precomputed-hash",
"servo_arc",
"smallvec",
- "thin-slice",
]
[[package]]
@@ -4586,9 +4655,9 @@ dependencies = [
[[package]]
name = "serde"
-version = "1.0.217"
+version = "1.0.219"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
+checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
dependencies = [
"serde_derive",
]
@@ -4606,9 +4675,9 @@ dependencies = [
[[package]]
name = "serde_derive"
-version = "1.0.217"
+version = "1.0.219"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
+checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
dependencies = [
"proc-macro2",
"quote",
@@ -4632,7 +4701,7 @@ version = "1.0.138"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949"
dependencies = [
- "itoa 1.0.14",
+ "itoa",
"memchr",
"ryu",
"serde",
@@ -4658,6 +4727,15 @@ dependencies = [
"serde",
]
+[[package]]
+name = "serde_spanned"
+version = "1.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
+dependencies = [
+ "serde",
+]
+
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
@@ -4665,7 +4743,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
- "itoa 1.0.14",
+ "itoa",
"ryu",
"serde",
]
@@ -4724,9 +4802,9 @@ dependencies = [
[[package]]
name = "servo_arc"
-version = "0.1.1"
+version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
+checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741"
dependencies = [
"nodrop",
"stable_deref_trait",
@@ -4851,9 +4929,9 @@ dependencies = [
"foreign-types 0.5.0",
"js-sys",
"log",
- "objc2",
- "objc2-foundation",
- "objc2-quartz-core",
+ "objc2 0.5.2",
+ "objc2-foundation 0.2.2",
+ "objc2-quartz-core 0.2.2",
"raw-window-handle",
"redox_syscall",
"wasm-bindgen",
@@ -5050,12 +5128,11 @@ dependencies = [
[[package]]
name = "tao"
-version = "0.31.1"
+version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3731d04d4ac210cd5f344087733943b9bfb1a32654387dad4d1c70de21aee2c9"
+checksum = "49c380ca75a231b87b6c9dd86948f035012e7171d1a7c40a9c2890489a7ffd8a"
dependencies = [
"bitflags 2.8.0",
- "cocoa",
"core-foundation 0.10.0",
"core-graphics",
"crossbeam-channel",
@@ -5072,7 +5149,9 @@ dependencies = [
"ndk",
"ndk-context",
"ndk-sys",
- "objc",
+ "objc2 0.6.1",
+ "objc2-app-kit 0.3.1",
+ "objc2-foundation 0.3.1",
"once_cell",
"parking_lot",
"raw-window-handle",
@@ -5080,8 +5159,8 @@ dependencies = [
"tao-macros",
"unicode-segmentation",
"url",
- "windows 0.58.0",
- "windows-core 0.58.0",
+ "windows 0.61.3",
+ "windows-core 0.61.2",
"windows-version",
"x11-dl",
]
@@ -5122,17 +5201,16 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
[[package]]
name = "tauri"
-version = "2.2.5"
+version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "58a998b6be84104ca05c7e9a21f2180ddec020c8b84ea59a8fc8530a2a19588d"
+checksum = "352a4bc7bf6c25f5624227e3641adf475a6535707451b09bb83271df8b7a6ac7"
dependencies = [
"anyhow",
"bytes",
"dirs 6.0.0",
"dunce",
"embed_plist",
- "futures-util",
- "getrandom 0.2.15",
+ "getrandom 0.3.1",
"glob",
"gtk",
"heck 0.5.0",
@@ -5143,9 +5221,10 @@ dependencies = [
"log",
"mime",
"muda",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
+ "objc2 0.6.1",
+ "objc2-app-kit 0.3.1",
+ "objc2-foundation 0.3.1",
+ "objc2-ui-kit",
"percent-encoding",
"plist",
"raw-window-handle",
@@ -5168,18 +5247,18 @@ dependencies = [
"webkit2gtk",
"webview2-com",
"window-vibrancy",
- "windows 0.58.0",
+ "windows 0.61.3",
]
[[package]]
name = "tauri-build"
-version = "2.0.5"
+version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8e950124f6779c6cf98e3260c7a6c8488a74aa6350dd54c6950fdaa349bca2df"
+checksum = "182d688496c06bf08ea896459bf483eb29cdff35c1c4c115fb14053514303064"
dependencies = [
"anyhow",
"cargo_toml",
- "dirs 5.0.1",
+ "dirs 6.0.0",
"glob",
"heck 0.5.0",
"json-patch",
@@ -5195,9 +5274,9 @@ dependencies = [
[[package]]
name = "tauri-codegen"
-version = "2.0.4"
+version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f77894f9ddb5cb6c04fcfe8c8869ebe0aded4dabf19917118d48be4a95599ab5"
+checksum = "b54a99a6cd8e01abcfa61508177e6096a4fe2681efecee9214e962f2f073ae4a"
dependencies = [
"base64 0.22.1",
"brotli",
@@ -5222,9 +5301,9 @@ dependencies = [
[[package]]
name = "tauri-macros"
-version = "2.0.4"
+version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3240a5caed760a532e8f687be6f05b2c7d11a1d791fb53ccc08cfeb3e5308736"
+checksum = "7945b14dc45e23532f2ded6e120170bbdd4af5ceaa45784a6b33d250fbce3f9e"
dependencies = [
"heck 0.5.0",
"proc-macro2",
@@ -5236,9 +5315,9 @@ dependencies = [
[[package]]
name = "tauri-plugin"
-version = "2.0.4"
+version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5841b9a0200e954ef7457f8d327091424328891e267a97b641dc246cc54d0dec"
+checksum = "5bd5c1e56990c70a906ef67a9851bbdba9136d26075ee9a2b19c8b46986b3e02"
dependencies = [
"anyhow",
"glob",
@@ -5253,9 +5332,9 @@ dependencies = [
[[package]]
name = "tauri-plugin-autostart"
-version = "2.2.0"
+version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a9c13f843e5e5df3eed270fc42b02923cc1a6b5c7e56b0f3ac1d858ab2c8b5fb"
+checksum = "062cdcd483d5e3148c9a64dabf8c574e239e2aa1193cf208d95cf89a676f87a5"
dependencies = [
"auto-launch",
"serde",
@@ -5267,9 +5346,9 @@ dependencies = [
[[package]]
name = "tauri-plugin-dialog"
-version = "2.2.0"
+version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b59fd750551b1066744ab956a1cd6b1ea3e1b3763b0b9153ac27a044d596426"
+checksum = "37e5858cc7b455a73ab4ea2ebc08b5be33682c00ff1bf4cad5537d4fb62499d9"
dependencies = [
"log",
"raw-window-handle",
@@ -5285,9 +5364,9 @@ dependencies = [
[[package]]
name = "tauri-plugin-fs"
-version = "2.2.0"
+version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1a1edf18000f02903a7c2e5997fb89aca455ecbc0acc15c6535afbb883be223"
+checksum = "8c6ef84ee2f2094ce093e55106d90d763ba343fad57566992962e8f76d113f99"
dependencies = [
"anyhow",
"dunce",
@@ -5303,15 +5382,16 @@ dependencies = [
"thiserror 2.0.11",
"toml 0.8.19",
"url",
- "uuid",
]
[[package]]
name = "tauri-plugin-http"
-version = "2.3.0"
+version = "2.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3a8137a106e0741fdd357366178fc6e0597abe7d20796f53f44171a1bcec1683"
+checksum = "fcde333d97e565a7765aad82f32d8672458f7bd77b6ee653830d5dded9d7b5c2"
dependencies = [
+ "bytes",
+ "cookie_store",
"data-url",
"http",
"regex",
@@ -5330,16 +5410,16 @@ dependencies = [
[[package]]
name = "tauri-plugin-log"
-version = "2.2.1"
+version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "367a28a5e0ca39eac98005699466e8906edc4a2a8f8e13a5f1a71dc0bea6c677"
+checksum = "a59139183e0907cec1499dddee4e085f5a801dc659efa0848ee224f461371426"
dependencies = [
"android_logger",
"byte-unit",
"fern",
"log",
- "objc2",
- "objc2-foundation",
+ "objc2 0.6.1",
+ "objc2-foundation 0.3.1",
"serde",
"serde_json",
"serde_repr",
@@ -5352,9 +5432,9 @@ dependencies = [
[[package]]
name = "tauri-plugin-notification"
-version = "2.2.1"
+version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0f8d3ee5207d3359ca2b714545664f24f70374d795bf91f7c1935a494003a57d"
+checksum = "cfe06ed89cff6d0ec06ff4f544fb961e4718348a33309f56ccb2086e77bc9116"
dependencies = [
"log",
"notify-rust",
@@ -5373,14 +5453,14 @@ dependencies = [
[[package]]
name = "tauri-plugin-opener"
-version = "2.2.5"
+version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "635ed7c580dc3cdc61c94097d38ef517d749ffc0141c806d904e68e4b0cf1c2a"
+checksum = "ecee219f11cdac713ab32959db5d0cceec4810ba4f4458da992292ecf9660321"
dependencies = [
"dunce",
"glob",
- "objc2-app-kit",
- "objc2-foundation",
+ "objc2-app-kit 0.3.1",
+ "objc2-foundation 0.3.1",
"open",
"schemars",
"serde",
@@ -5389,15 +5469,15 @@ dependencies = [
"tauri-plugin",
"thiserror 2.0.11",
"url",
- "windows 0.58.0",
+ "windows 0.61.3",
"zbus",
]
[[package]]
name = "tauri-plugin-os"
-version = "2.2.0"
+version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dda2d571a9baf0664c1f2088db227e3072f9028602fafa885deade7547c3b738"
+checksum = "05bccb4c6de4299beec5a9b070878a01bce9e2c945aa7a75bcea38bcba4c675d"
dependencies = [
"gethostname",
"log",
@@ -5413,9 +5493,9 @@ dependencies = [
[[package]]
name = "tauri-plugin-process"
-version = "2.2.0"
+version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "40cc553ab29581c8c43dfa5fb0c9d5aee8ba962ad3b42908eea26c79610441b7"
+checksum = "7461c622a5ea00eb9cd9f7a08dbd3bf79484499fd5c21aa2964677f64ca651ab"
dependencies = [
"tauri",
"tauri-plugin",
@@ -5439,9 +5519,9 @@ dependencies = [
[[package]]
name = "tauri-plugin-shell"
-version = "2.2.0"
+version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bb2c50a63e60fb8925956cc5b7569f4b750ac197a4d39f13b8dd46ea8e2bad79"
+checksum = "2b9ffadec5c3523f11e8273465cacb3d86ea7652a28e6e2a2e9b5c182f791d25"
dependencies = [
"encoding_rs",
"log",
@@ -5460,24 +5540,24 @@ dependencies = [
[[package]]
name = "tauri-plugin-single-instance"
-version = "2.2.1"
+version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "47c387d4d96690131dc46d1d2827df5c222b896a2bfeb15a16267229a55c50b5"
+checksum = "50a0e5a4ce43cb3a733c3aef85e8478bc769dac743c615e26639cbf5d953faf7"
dependencies = [
"serde",
"serde_json",
"tauri",
"thiserror 2.0.11",
"tracing",
- "windows-sys 0.59.0",
+ "windows-sys 0.60.2",
"zbus",
]
[[package]]
name = "tauri-plugin-store"
-version = "2.2.0"
+version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1c0c08fae6995909f5e9a0da6038273b750221319f2c0f3b526d6de1cde21505"
+checksum = "5916c609664a56c82aeaefffca9851fd072d4d41f73d63f22ee3ee451508194f"
dependencies = [
"dunce",
"serde",
@@ -5491,17 +5571,19 @@ dependencies = [
[[package]]
name = "tauri-plugin-updater"
-version = "2.4.0"
+version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ad3de2b9203bb00b9765e637a9878aaace34df40ae484878b8cea7a5bd5f9188"
+checksum = "27cbc31740f4d507712550694749572ec0e43bdd66992db7599b89fbfd6b167b"
dependencies = [
"base64 0.22.1",
- "dirs 5.0.1",
+ "dirs 6.0.0",
"flate2",
"futures-util",
"http",
"infer",
+ "log",
"minisign-verify",
+ "osakit",
"percent-encoding",
"reqwest",
"semver",
@@ -5515,42 +5597,46 @@ dependencies = [
"time",
"tokio",
"url",
- "windows-sys 0.59.0",
- "zip 2.2.2",
+ "windows-sys 0.60.2",
+ "zip 4.3.0",
]
[[package]]
name = "tauri-runtime"
-version = "2.3.0"
+version = "2.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2274ef891ccc0a8d318deffa9d70053f947664d12d58b9c0d1ae5e89237e01f7"
+checksum = "2b1cc885be806ea15ff7b0eb47098a7b16323d9228876afda329e34e2d6c4676"
dependencies = [
+ "cookie",
"dpi",
"gtk",
"http",
"jni",
+ "objc2 0.6.1",
+ "objc2-ui-kit",
"raw-window-handle",
"serde",
"serde_json",
"tauri-utils",
"thiserror 2.0.11",
"url",
- "windows 0.58.0",
+ "windows 0.61.3",
]
[[package]]
name = "tauri-runtime-wry"
-version = "2.3.0"
+version = "2.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3707b40711d3b9f6519150869e358ffbde7c57567fb9b5a8b51150606939b2a0"
+checksum = "fe653a2fbbef19fe898efc774bc52c8742576342a33d3d028c189b57eb1d2439"
dependencies = [
"gtk",
"http",
"jni",
"log",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
+ "objc2 0.6.1",
+ "objc2-app-kit 0.3.1",
+ "objc2-foundation 0.3.1",
+ "once_cell",
"percent-encoding",
"raw-window-handle",
"softbuffer",
@@ -5560,16 +5646,17 @@ dependencies = [
"url",
"webkit2gtk",
"webview2-com",
- "windows 0.58.0",
+ "windows 0.61.3",
"wry",
]
[[package]]
name = "tauri-utils"
-version = "2.1.1"
+version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "96fb10e7cc97456b2d5b9c03e335b5de5da982039a303a20d10006885e4523a0"
+checksum = "9330c15cabfe1d9f213478c9e8ec2b0c76dab26bb6f314b8ad1c8a568c1d186e"
dependencies = [
+ "anyhow",
"brotli",
"cargo_metadata",
"ctor",
@@ -5604,12 +5691,13 @@ dependencies = [
[[package]]
name = "tauri-winres"
-version = "0.1.1"
+version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb"
+checksum = "7c6d9028d41d4de835e3c482c677a8cb88137ac435d6ff9a71f392d4421576c9"
dependencies = [
"embed-resource",
- "toml 0.7.8",
+ "indexmap 2.7.1",
+ "toml 0.9.4",
]
[[package]]
@@ -5633,7 +5721,7 @@ dependencies = [
"fastrand",
"getrandom 0.3.1",
"once_cell",
- "rustix",
+ "rustix 0.38.44",
"windows-sys 0.59.0",
]
@@ -5648,12 +5736,6 @@ dependencies = [
"utf-8",
]
-[[package]]
-name = "thin-slice"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
-
[[package]]
name = "thiserror"
version = "1.0.69"
@@ -5701,7 +5783,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
dependencies = [
"deranged",
- "itoa 1.0.14",
+ "itoa",
"libc",
"num-conv",
"num_threads",
@@ -5814,18 +5896,6 @@ dependencies = [
"tokio",
]
-[[package]]
-name = "toml"
-version = "0.7.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
-dependencies = [
- "serde",
- "serde_spanned",
- "toml_datetime",
- "toml_edit 0.19.15",
-]
-
[[package]]
name = "toml"
version = "0.8.19"
@@ -5833,11 +5903,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
dependencies = [
"serde",
- "serde_spanned",
- "toml_datetime",
+ "serde_spanned 0.6.8",
+ "toml_datetime 0.6.8",
"toml_edit 0.22.22",
]
+[[package]]
+name = "toml"
+version = "0.9.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "41ae868b5a0f67631c14589f7e250c1ea2c574ee5ba21c6c8dd4b1485705a5a1"
+dependencies = [
+ "indexmap 2.7.1",
+ "serde",
+ "serde_spanned 1.0.0",
+ "toml_datetime 0.7.0",
+ "toml_parser",
+ "toml_writer",
+ "winnow 0.7.12",
+]
+
[[package]]
name = "toml_datetime"
version = "0.6.8"
@@ -5847,6 +5932,15 @@ dependencies = [
"serde",
]
+[[package]]
+name = "toml_datetime"
+version = "0.7.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
+dependencies = [
+ "serde",
+]
+
[[package]]
name = "toml_edit"
version = "0.19.15"
@@ -5854,9 +5948,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
dependencies = [
"indexmap 2.7.1",
- "serde",
- "serde_spanned",
- "toml_datetime",
+ "toml_datetime 0.6.8",
"winnow 0.5.40",
]
@@ -5867,7 +5959,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81"
dependencies = [
"indexmap 2.7.1",
- "toml_datetime",
+ "toml_datetime 0.6.8",
"winnow 0.5.40",
]
@@ -5879,11 +5971,26 @@ checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
dependencies = [
"indexmap 2.7.1",
"serde",
- "serde_spanned",
- "toml_datetime",
+ "serde_spanned 0.6.8",
+ "toml_datetime 0.6.8",
"winnow 0.6.25",
]
+[[package]]
+name = "toml_parser"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30"
+dependencies = [
+ "winnow 0.7.12",
+]
+
+[[package]]
+name = "toml_writer"
+version = "1.0.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64"
+
[[package]]
name = "tower"
version = "0.5.2"
@@ -5954,22 +6061,23 @@ dependencies = [
[[package]]
name = "tray-icon"
-version = "0.19.2"
+version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d48a05076dd272615d03033bf04f480199f7d1b66a8ac64d75c625fc4a70c06b"
+checksum = "a0d92153331e7d02ec09137538996a7786fe679c629c279e82a6be762b7e6fe2"
dependencies = [
- "core-graphics",
"crossbeam-channel",
- "dirs 5.0.1",
+ "dirs 6.0.0",
"libappindicator",
"muda",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
+ "objc2 0.6.1",
+ "objc2-app-kit 0.3.1",
+ "objc2-core-foundation",
+ "objc2-core-graphics",
+ "objc2-foundation 0.3.1",
"once_cell",
"png",
"serde",
- "thiserror 1.0.69",
+ "thiserror 2.0.11",
"windows-sys 0.59.0",
]
@@ -6347,7 +6455,7 @@ checksum = "056535ced7a150d45159d3a8dc30f91a2e2d588ca0b23f70e56033622b8016f6"
dependencies = [
"cc",
"downcast-rs",
- "rustix",
+ "rustix 0.38.44",
"scoped-tls",
"smallvec",
"wayland-sys",
@@ -6360,7 +6468,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b66249d3fc69f76fd74c82cc319300faa554e9d865dab1f7cd66cc20db10b280"
dependencies = [
"bitflags 2.8.0",
- "rustix",
+ "rustix 0.38.44",
"wayland-backend",
"wayland-scanner",
]
@@ -6474,16 +6582,16 @@ dependencies = [
[[package]]
name = "webview2-com"
-version = "0.34.0"
+version = "0.38.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "823e7ebcfaea51e78f72c87fc3b65a1e602c321f407a0b36dbb327d7bb7cd921"
+checksum = "d4ba622a989277ef3886dd5afb3e280e3dd6d974b766118950a08f8f678ad6a4"
dependencies = [
"webview2-com-macros",
"webview2-com-sys",
- "windows 0.58.0",
- "windows-core 0.58.0",
- "windows-implement 0.58.0",
- "windows-interface 0.58.0",
+ "windows 0.61.3",
+ "windows-core 0.61.2",
+ "windows-implement 0.60.0",
+ "windows-interface 0.59.1",
]
[[package]]
@@ -6499,13 +6607,13 @@ dependencies = [
[[package]]
name = "webview2-com-sys"
-version = "0.34.0"
+version = "0.38.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a82bce72db6e5ee83c68b5de1e2cd6ea195b9fbff91cb37df5884cbe3222df4"
+checksum = "36695906a1b53a3bf5c4289621efedac12b73eeb0b89e7e1a89b517302d5d75c"
dependencies = [
- "thiserror 1.0.69",
- "windows 0.58.0",
- "windows-core 0.58.0",
+ "thiserror 2.0.11",
+ "windows 0.61.3",
+ "windows-core 0.61.2",
]
[[package]]
@@ -6551,13 +6659,14 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "window-vibrancy"
-version = "0.5.2"
+version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3ea403deff7b51fff19e261330f71608ff2cdef5721d72b64180bb95be7c4150"
+checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c"
dependencies = [
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
+ "objc2 0.6.1",
+ "objc2-app-kit 0.3.1",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
"raw-window-handle",
"windows-sys 0.59.0",
"windows-version",
@@ -6585,12 +6694,24 @@ dependencies = [
[[package]]
name = "windows"
-version = "0.58.0"
+version = "0.61.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
+checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
dependencies = [
- "windows-core 0.58.0",
- "windows-targets 0.52.6",
+ "windows-collections",
+ "windows-core 0.61.2",
+ "windows-future",
+ "windows-link",
+ "windows-numerics",
+]
+
+[[package]]
+name = "windows-collections"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
+dependencies = [
+ "windows-core 0.61.2",
]
[[package]]
@@ -6616,15 +6737,26 @@ dependencies = [
[[package]]
name = "windows-core"
-version = "0.58.0"
+version = "0.61.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
+checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
dependencies = [
- "windows-implement 0.58.0",
- "windows-interface 0.58.0",
- "windows-result 0.2.0",
- "windows-strings",
- "windows-targets 0.52.6",
+ "windows-implement 0.60.0",
+ "windows-interface 0.59.1",
+ "windows-link",
+ "windows-result 0.3.4",
+ "windows-strings 0.4.2",
+]
+
+[[package]]
+name = "windows-future"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
+dependencies = [
+ "windows-core 0.61.2",
+ "windows-link",
+ "windows-threading",
]
[[package]]
@@ -6640,9 +6772,9 @@ dependencies = [
[[package]]
name = "windows-implement"
-version = "0.58.0"
+version = "0.60.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
+checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
dependencies = [
"proc-macro2",
"quote",
@@ -6662,15 +6794,31 @@ dependencies = [
[[package]]
name = "windows-interface"
-version = "0.58.0"
+version = "0.59.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
+checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.96",
]
+[[package]]
+name = "windows-link"
+version = "0.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
+
+[[package]]
+name = "windows-numerics"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
+dependencies = [
+ "windows-core 0.61.2",
+ "windows-link",
+]
+
[[package]]
name = "windows-registry"
version = "0.2.0"
@@ -6678,7 +6826,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
dependencies = [
"windows-result 0.2.0",
- "windows-strings",
+ "windows-strings 0.1.0",
"windows-targets 0.52.6",
]
@@ -6700,6 +6848,15 @@ dependencies = [
"windows-targets 0.52.6",
]
+[[package]]
+name = "windows-result"
+version = "0.3.4"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
+dependencies = [
+ "windows-link",
+]
+
[[package]]
name = "windows-strings"
version = "0.1.0"
@@ -6710,6 +6867,15 @@ dependencies = [
"windows-targets 0.52.6",
]
+[[package]]
+name = "windows-strings"
+version = "0.4.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
+dependencies = [
+ "windows-link",
+]
+
[[package]]
name = "windows-sys"
version = "0.45.0"
@@ -6746,6 +6912,15 @@ dependencies = [
"windows-targets 0.52.6",
]
+[[package]]
+name = "windows-sys"
+version = "0.60.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
+dependencies = [
+ "windows-targets 0.53.3",
+]
+
[[package]]
name = "windows-targets"
version = "0.42.2"
@@ -6794,10 +6969,11 @@ dependencies = [
[[package]]
name = "windows-targets"
-version = "0.53.0"
+version = "0.53.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
+checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
dependencies = [
+ "windows-link",
"windows_aarch64_gnullvm 0.53.0",
"windows_aarch64_msvc 0.53.0",
"windows_i686_gnu 0.53.0",
@@ -6808,13 +6984,22 @@ dependencies = [
"windows_x86_64_msvc 0.53.0",
]
+[[package]]
+name = "windows-threading"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
+dependencies = [
+ "windows-link",
+]
+
[[package]]
name = "windows-version"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c12476c23a74725c539b24eae8bfc0dac4029c39cdb561d9f23616accd4ae26d"
dependencies = [
- "windows-targets 0.53.0",
+ "windows-targets 0.53.3",
]
[[package]]
@@ -7015,6 +7200,15 @@ dependencies = [
"memchr",
]
+[[package]]
+name = "winnow"
+version = "0.7.12"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
+dependencies = [
+ "memchr",
+]
+
[[package]]
name = "winreg"
version = "0.10.1"
@@ -7034,6 +7228,16 @@ dependencies = [
"windows-sys 0.48.0",
]
+[[package]]
+name = "winreg"
+version = "0.55.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
+dependencies = [
+ "cfg-if",
+ "windows-sys 0.59.0",
+]
+
[[package]]
name = "wit-bindgen-rt"
version = "0.33.0"
@@ -7057,12 +7261,12 @@ checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
[[package]]
name = "wry"
-version = "0.48.1"
+version = "0.52.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a2e33c08b174442ff80d5c791020696f9f8b4e4a87b8cfc7494aad6167ec44e1"
+checksum = "12a714d9ba7075aae04a6e50229d6109e3d584774b99a6a8c60de1698ca111b9"
dependencies = [
"base64 0.22.1",
- "block2",
+ "block2 0.6.1",
"cookie",
"crossbeam-channel",
"dpi",
@@ -7076,9 +7280,10 @@ dependencies = [
"kuchikiki",
"libc",
"ndk",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
+ "objc2 0.6.1",
+ "objc2-app-kit 0.3.1",
+ "objc2-core-foundation",
+ "objc2-foundation 0.3.1",
"objc2-ui-kit",
"objc2-web-kit",
"once_cell",
@@ -7092,8 +7297,8 @@ dependencies = [
"webkit2gtk",
"webkit2gtk-sys",
"webview2-com",
- "windows 0.58.0",
- "windows-core 0.58.0",
+ "windows 0.61.3",
+ "windows-core 0.61.2",
"windows-version",
"x11-dl",
]
@@ -7135,18 +7340,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e105d177a3871454f754b33bb0ee637ecaaac997446375fd3e5d43a2ed00c909"
dependencies = [
"libc",
- "linux-raw-sys",
- "rustix",
-]
-
-[[package]]
-name = "xdg-home"
-version = "1.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6"
-dependencies = [
- "libc",
- "windows-sys 0.59.0",
+ "linux-raw-sys 0.4.15",
+ "rustix 0.38.44",
]
[[package]]
@@ -7175,13 +7370,12 @@ dependencies = [
[[package]]
name = "zbus"
-version = "5.3.1"
+version = "5.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2494e4b3f44d8363eef79a8a75fc0649efb710eef65a66b5e688a5eb4afe678a"
+checksum = "4bb4f9a464286d42851d18a605f7193b8febaf5b0919d71c6399b7b26e5b0aad"
dependencies = [
"async-broadcast",
"async-executor",
- "async-fs",
"async-io",
"async-lock",
"async-process",
@@ -7192,19 +7386,17 @@ dependencies = [
"enumflags2",
"event-listener",
"futures-core",
- "futures-util",
+ "futures-lite",
"hex",
- "nix 0.29.0",
+ "nix 0.30.1",
"ordered-stream",
"serde",
"serde_repr",
- "static_assertions",
"tokio",
"tracing",
"uds_windows",
"windows-sys 0.59.0",
- "winnow 0.6.25",
- "xdg-home",
+ "winnow 0.7.12",
"zbus_macros",
"zbus_names",
"zvariant",
@@ -7212,9 +7404,9 @@ dependencies = [
[[package]]
name = "zbus_macros"
-version = "5.3.1"
+version = "5.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "445efc01929302aee95e2b25bbb62a301ea8a6369466e4278e58e7d1dfb23631"
+checksum = "ef9859f68ee0c4ee2e8cde84737c78e3f4c54f946f2a38645d0d4c7a95327659"
dependencies = [
"proc-macro-crate 3.2.0",
"proc-macro2",
@@ -7227,13 +7419,13 @@ dependencies = [
[[package]]
name = "zbus_names"
-version = "4.1.1"
+version = "4.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "519629a3f80976d89c575895b05677cbc45eaf9f70d62a364d819ba646409cc8"
+checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97"
dependencies = [
"serde",
"static_assertions",
- "winnow 0.6.25",
+ "winnow 0.7.12",
"zvariant",
]
@@ -7329,17 +7521,14 @@ dependencies = [
[[package]]
name = "zip"
-version = "2.2.2"
+version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ae9c1ea7b3a5e1f4b922ff856a129881167511563dc219869afe3787fc0c1a45"
+checksum = "9aed4ac33e8eb078c89e6cbb1d5c4c7703ec6d299fc3e7c3695af8f8b423468b"
dependencies = [
"arbitrary",
"crc32fast",
- "crossbeam-utils",
- "displaydoc",
"indexmap 2.7.1",
"memchr",
- "thiserror 2.0.11",
]
[[package]]
@@ -7373,25 +7562,24 @@ dependencies = [
[[package]]
name = "zvariant"
-version = "5.2.0"
+version = "5.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "55e6b9b5f1361de2d5e7d9fd1ee5f6f7fcb6060618a1f82f3472f58f2b8d4be9"
+checksum = "d91b3680bb339216abd84714172b5138a4edac677e641ef17e1d8cb1b3ca6e6f"
dependencies = [
"endi",
"enumflags2",
"serde",
- "static_assertions",
"url",
- "winnow 0.6.25",
+ "winnow 0.7.12",
"zvariant_derive",
"zvariant_utils",
]
[[package]]
name = "zvariant_derive"
-version = "5.2.0"
+version = "5.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "573a8dd76961957108b10f7a45bac6ab1ea3e9b7fe01aff88325dc57bb8f5c8b"
+checksum = "3a8c68501be459a8dbfffbe5d792acdd23b4959940fc87785fb013b32edbc208"
dependencies = [
"proc-macro-crate 3.2.0",
"proc-macro2",
@@ -7402,14 +7590,14 @@ dependencies = [
[[package]]
name = "zvariant_utils"
-version = "3.1.0"
+version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ddd46446ea2a1f353bfda53e35f17633afa79f4fe290a611c94645c69fe96a50"
+checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34"
dependencies = [
"proc-macro2",
"quote",
"serde",
"static_assertions",
"syn 2.0.96",
- "winnow 0.6.25",
+ "winnow 0.7.12",
]
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
index b39aa8d..28fb6bd 100644
--- a/src-tauri/Cargo.toml
+++ b/src-tauri/Cargo.toml
@@ -21,25 +21,25 @@ tauri-build = { version = "2.0.4", features = [] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
log = "0.4"
-tauri = { version = "2.2.0", features = [ "tray-icon", "image-ico",
+tauri = { version = "2.7.0", features = [ "tray-icon", "image-ico",
"image-png", "config-json5" ] }
-tauri-plugin-log = "2.2.0"
-tauri-plugin-shell = "2.2.0"
-tauri-plugin-dialog = "2.2.0"
-tauri-plugin-fs = "2.2.0"
-tauri-plugin-opener = "2.2.3"
-tauri-plugin-http = "2.2.0"
-tauri-plugin-store = "2.2.0"
-tauri-plugin-process = "2"
-tauri-plugin-notification = { version = "2.0.0", features = [ "windows7-compat" ] }
-tauri-plugin-os = "2"
+tauri-plugin-log = "2.6.0"
+tauri-plugin-shell = "2.3.0"
+tauri-plugin-dialog = "2.3.2"
+tauri-plugin-fs = "2.4.1"
+tauri-plugin-opener = "2.4.0"
+tauri-plugin-http = "2.5.1"
+tauri-plugin-store = "2.3.0"
+tauri-plugin-process = "2.3.0"
+tauri-plugin-notification = { version = "2.3.0", features = [ "windows7-compat" ] }
+tauri-plugin-os = "2.3.0"
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs" }
zip = "0.6.6"
machine-uid = "0.5.3"
tauri-plugin-sentry = "0.4.1"
-tauri-plugin-autostart = "2"
-tauri-plugin-single-instance = "2.2.0"
-tauri-plugin-updater = "2"
+tauri-plugin-autostart = "2.5.0"
+tauri-plugin-single-instance = "2.3.2"
+tauri-plugin-updater = "2.9.0"
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.26"
diff --git a/src/components/OptionsSection.tsx b/src/components/OptionsSection.tsx
index 6559b37..797b759 100644
--- a/src/components/OptionsSection.tsx
+++ b/src/components/OptionsSection.tsx
@@ -1,4 +1,4 @@
-import { Chip, Textarea, Tooltip } from '@nextui-org/react'
+import { Chip, Textarea, Tooltip } from '@heroui/react'
import { LockKeyholeIcon, LockOpenIcon, XIcon } from 'lucide-react'
import { useCallback, useEffect, useState } from 'react'
import { replaceSmartQuotes } from '../../lib/format'
diff --git a/src/components/PathFinder.tsx b/src/components/PathFinder.tsx
index 434d7e4..52619d3 100644
--- a/src/components/PathFinder.tsx
+++ b/src/components/PathFinder.tsx
@@ -1,5 +1,6 @@
-import { Autocomplete } from '@nextui-org/autocomplete'
-import { AutocompleteItem, Button } from '@nextui-org/react'
+import { Autocomplete, Tooltip } from '@heroui/react'
+import { AutocompleteItem, Button } from '@heroui/react'
+import { cn } from '@heroui/react'
import { open } from '@tauri-apps/plugin-dialog'
import { readDir } from '@tauri-apps/plugin-fs'
import { platform } from '@tauri-apps/plugin-os'
diff --git a/src/components/RemoteCreateDrawer.tsx b/src/components/RemoteCreateDrawer.tsx
index 407c4dc..9ce1462 100644
--- a/src/components/RemoteCreateDrawer.tsx
+++ b/src/components/RemoteCreateDrawer.tsx
@@ -1,4 +1,4 @@
-import { Drawer, DrawerBody, DrawerFooter, DrawerHeader } from '@nextui-org/drawer'
+import { Drawer, DrawerBody, DrawerFooter, DrawerHeader } from '@heroui/react'
import {
Autocomplete,
AutocompleteItem,
@@ -8,7 +8,7 @@ import {
Input,
Select,
SelectItem,
-} from '@nextui-org/react'
+} from '@heroui/react'
import { message } from '@tauri-apps/plugin-dialog'
import { ChevronDown, ChevronUp, RefreshCcwIcon } from 'lucide-react'
import { useEffect, useMemo, useState } from 'react'
@@ -73,20 +73,6 @@ export default function RemoteCreateDrawer({
)}
- //
- // setConfig({ ...config, [option.Name]: e.target.checked })
- // }
- // autoComplete="off"
- // autoCapitalize="off"
- // autoCorrect="off"
- // spellCheck={false}
- // />
)
case 'string': {
if (option.Examples && option.Examples.length > 0) {
@@ -127,7 +113,7 @@ export default function RemoteCreateDrawer({
autoComplete="off"
autoCapitalize="off"
autoCorrect="off"
- spellCheck={false}
+ spellCheck="false"
description={option.Help.split('\n').slice(1).join('\n')}
isRequired={option.Required}
onValueChange={(value) => {
@@ -136,37 +122,6 @@ export default function RemoteCreateDrawer({
}}
/>
)
- // if (option.Examples && option.Examples.length > 0) {
- // return (
- //
- // )
- // }
- // return (
- //
- // setConfig({ ...config, [option.Name]: e.target.value })
- // }
- // />
- // )
}
default:
return null
@@ -275,7 +230,7 @@ export default function RemoteCreateDrawer({
autoComplete="off"
autoCapitalize="off"
autoCorrect="off"
- spellCheck={false}
+ spellCheck="false"
/>