diff --git a/ui/actions/roles/roles.ts b/ui/actions/roles/roles.ts
index 11d4cb1797..977cfeedda 100644
--- a/ui/actions/roles/roles.ts
+++ b/ui/actions/roles/roles.ts
@@ -81,25 +81,32 @@ export const addRole = async (formData: FormData) => {
const name = formData.get("name") as string;
const groups = formData.getAll("groups[]") as string[];
- // Prepare base payload
+
const payload: any = {
data: {
type: "roles",
attributes: {
name,
manage_users: formData.get("manage_users") === "true",
- manage_account: formData.get("manage_account") === "true",
- manage_billing: formData.get("manage_billing") === "true",
manage_providers: formData.get("manage_providers") === "true",
- manage_integrations: formData.get("manage_integrations") === "true",
manage_scans: formData.get("manage_scans") === "true",
+ // TODO: Add back when we have integrations ready
+ // manage_integrations: formData.get("manage_integrations") === "true",
unlimited_visibility: formData.get("unlimited_visibility") === "true",
},
relationships: {},
},
};
- // Add relationships only if there are items
+ // Conditionally include manage_account and manage_billing for cloud environment
+ if (process.env.NEXT_PUBLIC_IS_CLOUD_ENV === "true") {
+ payload.data.attributes.manage_account =
+ formData.get("manage_account") === "true";
+ payload.data.attributes.manage_billing =
+ formData.get("manage_billing") === "true";
+ }
+
+ // Add provider groups relationships only if there are items
if (groups.length > 0) {
payload.data.relationships.provider_groups = {
data: groups.map((groupId: string) => ({
@@ -147,19 +154,27 @@ export const updateRole = async (formData: FormData, roleId: string) => {
type: "roles",
id: roleId,
attributes: {
- ...(name && { name }),
+ ...(name && { name }), // Include name only if provided
manage_users: formData.get("manage_users") === "true",
- manage_account: formData.get("manage_account") === "true",
- manage_billing: formData.get("manage_billing") === "true",
manage_providers: formData.get("manage_providers") === "true",
- manage_integrations: formData.get("manage_integrations") === "true",
manage_scans: formData.get("manage_scans") === "true",
+ // TODO: Add back when we have integrations ready
+ // manage_integrations: formData.get("manage_integrations") === "true",
unlimited_visibility: formData.get("unlimited_visibility") === "true",
},
relationships: {},
},
};
+ // Conditionally include manage_account and manage_billing for cloud environments
+ if (process.env.NEXT_PUBLIC_IS_CLOUD_ENV === "true") {
+ payload.data.attributes.manage_account =
+ formData.get("manage_account") === "true";
+ payload.data.attributes.manage_billing =
+ formData.get("manage_billing") === "true";
+ }
+
+ // Add provider groups relationships only if there are items
if (groups.length > 0) {
payload.data.relationships.provider_groups = {
data: groups.map((groupId: string) => ({
@@ -182,6 +197,7 @@ export const updateRole = async (formData: FormData, roleId: string) => {
},
body,
});
+
const data = await response.json();
revalidatePath("/roles");
return data;
diff --git a/ui/app/(prowler)/providers/(set-up-provider)/update-credentials/page.tsx b/ui/app/(prowler)/providers/(set-up-provider)/update-credentials/page.tsx
index 0123ce73f2..3a680c3be8 100644
--- a/ui/app/(prowler)/providers/(set-up-provider)/update-credentials/page.tsx
+++ b/ui/app/(prowler)/providers/(set-up-provider)/update-credentials/page.tsx
@@ -1,6 +1,6 @@
-import { Alert, cn } from "@nextui-org/react";
import React from "react";
+import { InfoIcon } from "@/components/icons";
import {
UpdateViaCredentialsForm,
UpdateViaRoleForm,
@@ -17,33 +17,23 @@ export default function UpdateCredentialsPage({ searchParams }: Props) {
{searchParams.type === "aws" && !searchParams.via && (
<>
-
- If the provider was set up with static credentials, updates must
- use static credentials. If it was set up with a role, updates must
- use a role.
+
+ To update provider credentials,{" "}
+
+ the same type that was originally configured must be used.
+
-
-
- To update provider credentials,{" "}
-
- you must use the same type that was originally configured.
- {" "}
- >
- }
- />
-
- To switch from static credentials to a role (or vice versa), you
- need to delete the provider and set it up again.
+
+
+
+ If the provider was configured with static credentials, updates
+ must also use static credentials. If it was configured with a
+ role, updates must use a role.
+
+
+
+ To switch from static credentials to a role (or vice versa), the
+ provider must be deleted and set up again.
diff --git a/ui/app/(prowler)/scans/page.tsx b/ui/app/(prowler)/scans/page.tsx
index 5b45789214..6ec8419c5b 100644
--- a/ui/app/(prowler)/scans/page.tsx
+++ b/ui/app/(prowler)/scans/page.tsx
@@ -66,17 +66,18 @@ export default async function Scans({
<>
+
>
) : (
<>
+
+
>
)}
-
-
{
const formData = new FormData();
+
formData.append("name", values.name);
formData.append("manage_users", String(values.manage_users));
- formData.append("manage_account", String(values.manage_account));
- formData.append("manage_billing", String(values.manage_billing));
formData.append("manage_providers", String(values.manage_providers));
- formData.append("manage_integrations", String(values.manage_integrations));
formData.append("manage_scans", String(values.manage_scans));
formData.append(
"unlimited_visibility",
String(values.unlimited_visibility),
);
+ // Conditionally append manage_account and manage_billing
+ if (process.env.NEXT_PUBLIC_IS_CLOUD_ENV === "true") {
+ formData.append("manage_account", String(values.manage_account));
+ formData.append("manage_billing", String(values.manage_billing));
+ }
+
if (values.groups && values.groups.length > 0) {
values.groups.forEach((group) => {
formData.append("groups[]", group);
diff --git a/ui/components/roles/workflow/forms/edit-role-form.tsx b/ui/components/roles/workflow/forms/edit-role-form.tsx
index e47c62be3d..21522ded6f 100644
--- a/ui/components/roles/workflow/forms/edit-role-form.tsx
+++ b/ui/components/roles/workflow/forms/edit-role-form.tsx
@@ -95,16 +95,21 @@ export const EditRoleForm = ({
}
updatedFields.manage_users = values.manage_users;
- updatedFields.manage_account = values.manage_account;
- updatedFields.manage_billing = values.manage_billing;
updatedFields.manage_providers = values.manage_providers;
- updatedFields.manage_integrations = values.manage_integrations;
+ // updatedFields.manage_integrations = values.manage_integrations;
updatedFields.manage_scans = values.manage_scans;
updatedFields.unlimited_visibility = values.unlimited_visibility;
+ if (process.env.NEXT_PUBLIC_IS_CLOUD_ENV === "true") {
+ updatedFields.manage_account = values.manage_account;
+ updatedFields.manage_billing = values.manage_billing;
+ }
+
if (
JSON.stringify(values.groups) !==
- JSON.stringify(roleData.data.relationships?.provider_groups?.data)
+ JSON.stringify(
+ roleData.data.relationships?.provider_groups?.data.map((g) => g.id),
+ )
) {
updatedFields.groups = values.groups;
}
diff --git a/ui/components/scans/scan-warning-bar.tsx b/ui/components/scans/scan-warning-bar.tsx
index 64997879ad..4c9acbb978 100644
--- a/ui/components/scans/scan-warning-bar.tsx
+++ b/ui/components/scans/scan-warning-bar.tsx
@@ -1,19 +1,18 @@
-import { Alert, cn } from "@nextui-org/react";
+"use client";
+
+import { InfoIcon } from "../icons";
export const ScanWarningBar = () => {
return (
-
+
+
+
+
Waiting for Your Scan to Show Up?
+
+ It may take a few minutes for the scan to appear on the table and be
+ displayed.
+
+
+
);
};
diff --git a/ui/package-lock.json b/ui/package-lock.json
index 0c8a637a43..cfcadc291c 100644
--- a/ui/package-lock.json
+++ b/ui/package-lock.json
@@ -9,7 +9,7 @@
"version": "0.0.1",
"dependencies": {
"@hookform/resolvers": "^3.9.0",
- "@nextui-org/react": "^2.6.11",
+ "@nextui-org/react": "2.4.8",
"@nextui-org/system": "2.2.1",
"@nextui-org/theme": "2.2.5",
"@radix-ui/react-alert-dialog": "^1.1.1",
@@ -1132,472 +1132,1847 @@
"node": ">= 10"
}
},
- "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==",
+ "node_modules/@nextui-org/accordion": {
+ "version": "2.0.40",
+ "resolved": "https://registry.npmjs.org/@nextui-org/accordion/-/accordion-2.0.40.tgz",
+ "integrity": "sha512-aJmhflLOXOFTjbBWlWto30hYzimw+sw1EZwSRG9CdxbjRact2dRfCLsZQmHkJW2ifVx51g/qLNE2NSFAi2L8dA==",
"license": "MIT",
"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"
+ "@nextui-org/aria-utils": "2.0.26",
+ "@nextui-org/divider": "2.0.32",
+ "@nextui-org/framer-utils": "2.0.25",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-aria-accordion": "2.0.7",
+ "@react-aria/button": "3.9.5",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/tree": "3.8.1",
+ "@react-types/accordion": "3.0.0-alpha.21",
+ "@react-types/shared": "3.23.1"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/aria-utils/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==",
- "license": "MIT",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/aria-utils/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==",
- "license": "MIT"
- },
- "node_modules/@nextui-org/aria-utils/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==",
- "license": "MIT",
- "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/aria-utils/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==",
- "license": "MIT",
- "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/aria-utils/node_modules/@nextui-org/system-rsc/node_modules/clsx": {
- "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"
- }
- },
- "node_modules/@nextui-org/aria-utils/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==",
- "license": "MIT",
- "peer": true,
- "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/aria-utils/node_modules/@nextui-org/theme/node_modules/clsx": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz",
- "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@nextui-org/aria-utils/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==",
- "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/@nextui-org/aria-utils/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
- }
- },
- "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==",
- "license": "MIT",
- "peerDependencies": {
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1"
- }
- },
- "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==",
- "license": "MIT",
- "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",
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
"react": ">=18",
"react-dom": ">=18"
}
},
- "node_modules/@nextui-org/form/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/accordion/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
"license": "MIT"
},
- "node_modules/@nextui-org/form/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==",
- "license": "MIT",
- "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/form/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==",
- "license": "MIT",
- "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/form/node_modules/@nextui-org/system-rsc/node_modules/clsx": {
- "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"
- }
- },
- "node_modules/@nextui-org/form/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==",
- "license": "MIT",
- "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/form/node_modules/@nextui-org/theme/node_modules/clsx": {
- "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"
- }
- },
- "node_modules/@nextui-org/form/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==",
+ "node_modules/@nextui-org/accordion/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
"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/@nextui-org/form/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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"
+ }
+ },
+ "node_modules/@nextui-org/accordion/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/aria-utils": {
+ "version": "2.0.26",
+ "resolved": "https://registry.npmjs.org/@nextui-org/aria-utils/-/aria-utils-2.0.26.tgz",
+ "integrity": "sha512-e81HxkNI3/HCPPJT9OVK0g0ivTkuqeeQ043WlAxvgf+upFTEvNN5vmsSKBfWGgfZpsVHgNyHIzwbHjy9zKePLQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-rsc-utils": "2.0.14",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/system": "2.2.6",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/collections": "3.10.7",
+ "@react-stately/overlays": "3.6.7",
+ "@react-types/overlays": "3.8.7",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/aria-utils/node_modules/@nextui-org/react-rsc-utils": {
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.0.14.tgz",
+ "integrity": "sha512-s0GVgDhScyx+d9FtXd8BXf049REyaPvWsO4RRr7JDHrk91NlQ11Mqxka9o+8g5NX0rphI0rbe3/b1Dz+iQRx3w==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/aria-utils/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/aria-utils/node_modules/@nextui-org/system": {
+ "version": "2.2.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.2.6.tgz",
+ "integrity": "sha512-tjIkOI0w32g68CGWleuSyIbEz8XBbeoNogR2lu7MWk3QovHCqgr4VVrP1cwMRYnwDPFQP3OpmH+NR9yzt+pIfg==",
+ "license": "MIT",
+ "dependencies": {
+ "@internationalized/date": "^3.5.4",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/system-rsc": "2.1.6",
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/overlays": "3.22.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/utils": "3.10.1"
+ },
+ "peerDependencies": {
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/aria-utils/node_modules/@nextui-org/system-rsc": {
+ "version": "2.1.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.1.6.tgz",
+ "integrity": "sha512-Wl2QwEFjYwuvw26R1RH3ZY81PD8YmfgtIjFvJZRP2VEIT6rPvlQ4ojgqdrkVkQZQ0L/K+5ZLbTKgLEFkj5ysdQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-types/shared": "3.23.1",
+ "clsx": "^1.2.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/aria-utils/node_modules/@react-stately/overlays": {
+ "version": "3.6.7",
+ "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.7.tgz",
+ "integrity": "sha512-6zp8v/iNUm6YQap0loaFx6PlvN8C0DgWHNlrlzMtMmNuvjhjR0wYXVaTfNoUZBWj25tlDM81ukXOjpRXg9rLrw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/overlays": "^3.8.7",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/aria-utils/node_modules/@react-stately/utils": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.1.tgz",
+ "integrity": "sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/aria-utils/node_modules/@react-types/overlays": {
+ "version": "3.8.7",
+ "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.8.7.tgz",
+ "integrity": "sha512-zCOYvI4at2DkhVpviIClJ7bRrLXYhSg3Z3v9xymuPH3mkiuuP/dm8mUCtkyY4UhVeUTHmrQh1bzaOP00A+SSQA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.23.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/aria-utils/node_modules/clsx": {
+ "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"
+ }
+ },
+ "node_modules/@nextui-org/autocomplete": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@nextui-org/autocomplete/-/autocomplete-2.1.7.tgz",
+ "integrity": "sha512-T3dF5akCXvJ21OxwPxAQmTjHoiB/GMUa2ppcJ9PStfCCPiI2vjwb4CO4q/duj/nXJIpQf/UfPhpSonnJ444o6g==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/aria-utils": "2.0.26",
+ "@nextui-org/button": "2.0.38",
+ "@nextui-org/input": "2.2.5",
+ "@nextui-org/listbox": "2.1.27",
+ "@nextui-org/popover": "2.1.29",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/scroll-shadow": "2.1.20",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/spinner": "2.0.34",
+ "@nextui-org/use-aria-button": "2.0.10",
+ "@nextui-org/use-safe-layout-effect": "2.0.6",
+ "@react-aria/combobox": "3.9.1",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "@react-aria/visually-hidden": "3.8.12",
+ "@react-stately/combobox": "3.8.4",
+ "@react-types/combobox": "3.11.1",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/autocomplete/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/autocomplete/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/autocomplete/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/avatar": {
+ "version": "2.0.33",
+ "resolved": "https://registry.npmjs.org/@nextui-org/avatar/-/avatar-2.0.33.tgz",
+ "integrity": "sha512-SPnIKM+34T/a+KCRCBiG8VwMBzu2/bap7IPHhmICtQ6KmG8Dzmazj3tGZsVt7HjhMRVY7e1vzev4IMaHqkIdRg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-image": "2.0.6",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/avatar/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/avatar/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/avatar/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/badge": {
+ "version": "2.0.32",
+ "resolved": "https://registry.npmjs.org/@nextui-org/badge/-/badge-2.0.32.tgz",
+ "integrity": "sha512-vlV/SY0e7/AmpVP7hB57XoSOo95Fr3kRWcLfMx8yL8VDR2UWMFaMlrT7JTghdgTGFSO7L1Ov1BFwDRRKVe3eyg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/badge/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/breadcrumbs": {
+ "version": "2.0.13",
+ "resolved": "https://registry.npmjs.org/@nextui-org/breadcrumbs/-/breadcrumbs-2.0.13.tgz",
+ "integrity": "sha512-tdet47IBOwUaJL0PmxTuGH+ZI2nucyNwG3mX1OokfIXmq5HuMCGKaVFXaNP8mWb4Pii2bvtRqaqTfxmUb3kjGw==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@react-aria/breadcrumbs": "3.5.13",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-types/breadcrumbs": "3.7.5",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/breadcrumbs/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/breadcrumbs/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/button": {
+ "version": "2.0.38",
+ "resolved": "https://registry.npmjs.org/@nextui-org/button/-/button-2.0.38.tgz",
+ "integrity": "sha512-XbgyqBv+X7QirXeriGwkqkMOENpAxXRo+jzfMyBMvfsM3kwrFj92OSF1F7/dWDvcW7imVZB9o2Ci7LIppq9ZZQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/ripple": "2.0.33",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/spinner": "2.0.34",
+ "@nextui-org/use-aria-button": "2.0.10",
+ "@react-aria/button": "3.9.5",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "@react-types/button": "3.9.4",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/button/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/button/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/button/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/button/node_modules/@react-types/button": {
+ "version": "3.9.4",
+ "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.9.4.tgz",
+ "integrity": "sha512-raeQBJUxBp0axNF74TXB8/H50GY8Q3eV6cEKMbZFP1+Dzr09Ngv0tJBeW0ewAxAguNH5DRoMUAUGIXtSXskVdA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.23.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/calendar": {
+ "version": "2.0.12",
+ "resolved": "https://registry.npmjs.org/@nextui-org/calendar/-/calendar-2.0.12.tgz",
+ "integrity": "sha512-FnEnOQnsuyN+F+hy4LEJBvZZcfXMpDGgLkTdnDdoZObXQWwd0PWPjU8GzY+ukhhR5eiU7QIj2AADVRCvuAkiLA==",
+ "license": "MIT",
+ "dependencies": {
+ "@internationalized/date": "^3.5.4",
+ "@nextui-org/button": "2.0.38",
+ "@nextui-org/framer-utils": "2.0.25",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-aria-button": "2.0.10",
+ "@react-aria/calendar": "3.5.8",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "@react-aria/visually-hidden": "3.8.12",
+ "@react-stately/calendar": "3.5.1",
+ "@react-stately/utils": "3.10.1",
+ "@react-types/button": "3.9.4",
+ "@react-types/calendar": "3.4.6",
+ "@react-types/shared": "3.23.1",
+ "@types/lodash.debounce": "^4.0.7",
+ "lodash.debounce": "^4.0.8",
+ "scroll-into-view-if-needed": "3.0.10"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.1.0",
+ "@nextui-org/theme": ">=2.2.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/calendar/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/calendar/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/calendar/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/calendar/node_modules/@react-stately/utils": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.1.tgz",
+ "integrity": "sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/calendar/node_modules/@react-types/button": {
+ "version": "3.9.4",
+ "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.9.4.tgz",
+ "integrity": "sha512-raeQBJUxBp0axNF74TXB8/H50GY8Q3eV6cEKMbZFP1+Dzr09Ngv0tJBeW0ewAxAguNH5DRoMUAUGIXtSXskVdA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.23.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/card": {
+ "version": "2.0.34",
+ "resolved": "https://registry.npmjs.org/@nextui-org/card/-/card-2.0.34.tgz",
+ "integrity": "sha512-2RYNPsQkM0FOifGCKmRBR3AuYgYCNmPV7dyA5M3D9Lf0APsHHtsXRA/GeIJ/AuPnglZrYBX8wpM5kLt3dnlQjQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/ripple": "2.0.33",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-aria-button": "2.0.10",
+ "@react-aria/button": "3.9.5",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/card/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/card/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/card/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/checkbox": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nextui-org/checkbox/-/checkbox-2.1.5.tgz",
+ "integrity": "sha512-PSCWmxEzFPfeIJfoGAtbQS5T7JvBRblUMz5NdCMArA8MLvWW8EKL41cMPsqWjaUanjD0fAI8Q9HuDfBZnkcPbw==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-callback-ref": "2.0.6",
+ "@nextui-org/use-safe-layout-effect": "2.0.6",
+ "@react-aria/checkbox": "3.14.3",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "@react-aria/visually-hidden": "3.8.12",
+ "@react-stately/checkbox": "3.6.5",
+ "@react-stately/toggle": "3.7.4",
+ "@react-types/checkbox": "3.8.1",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/checkbox/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/checkbox/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/checkbox/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/chip": {
+ "version": "2.0.33",
+ "resolved": "https://registry.npmjs.org/@nextui-org/chip/-/chip-2.0.33.tgz",
+ "integrity": "sha512-6cQkMTV/34iPprjnfK6xlwkv5lnZjMsbYBN3ZqHHrQfV2zQg19ewFcuIw9XlRYA3pGYPpoycdOmSdQ6qXc66lQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "@react-types/checkbox": "3.8.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/chip/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/chip/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/chip/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/code": {
+ "version": "2.0.33",
+ "resolved": "https://registry.npmjs.org/@nextui-org/code/-/code-2.0.33.tgz",
+ "integrity": "sha512-G2254ov2rsPxFEoJ0UHVHe+rSmNYwoHZc7STAtiTsJ2HfebZPQbNnfuCifMIpa+kgvHrMBGb85eGk0gy1R+ArA==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/system-rsc": "2.1.6"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/code/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/code/node_modules/@nextui-org/system-rsc": {
+ "version": "2.1.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.1.6.tgz",
+ "integrity": "sha512-Wl2QwEFjYwuvw26R1RH3ZY81PD8YmfgtIjFvJZRP2VEIT6rPvlQ4ojgqdrkVkQZQ0L/K+5ZLbTKgLEFkj5ysdQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-types/shared": "3.23.1",
+ "clsx": "^1.2.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/code/node_modules/clsx": {
+ "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"
+ }
+ },
+ "node_modules/@nextui-org/date-input": {
+ "version": "2.1.4",
+ "resolved": "https://registry.npmjs.org/@nextui-org/date-input/-/date-input-2.1.4.tgz",
+ "integrity": "sha512-U8Pbe7EhMp9VTfFxB/32+A9N9cJJWswebIz1qpaPy0Hmr92AHS3c1qVTcspkop6wbIM8AnHWEST0QkR95IXPDA==",
+ "license": "MIT",
+ "dependencies": {
+ "@internationalized/date": "^3.5.4",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@react-aria/datepicker": "3.10.1",
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/datepicker": "3.9.4",
+ "@react-types/datepicker": "3.7.4",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.1.0",
+ "@nextui-org/theme": ">=2.2.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/date-input/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/date-picker": {
+ "version": "2.1.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/date-picker/-/date-picker-2.1.8.tgz",
+ "integrity": "sha512-pokAFcrf6AdM53QHf1EzvqVhj8imQRZHWitK9eZPtIdGzJzx28dW0ir7ID0lQFMiNNIQTesSpBLzedTawbcJrg==",
+ "license": "MIT",
+ "dependencies": {
+ "@internationalized/date": "^3.5.4",
+ "@nextui-org/aria-utils": "2.0.26",
+ "@nextui-org/button": "2.0.38",
+ "@nextui-org/calendar": "2.0.12",
+ "@nextui-org/date-input": "2.1.4",
+ "@nextui-org/popover": "2.1.29",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@react-aria/datepicker": "3.10.1",
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/datepicker": "3.9.4",
+ "@react-stately/overlays": "3.6.7",
+ "@react-stately/utils": "3.10.1",
+ "@react-types/datepicker": "3.7.4",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.1.0",
+ "@nextui-org/theme": ">=2.2.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/date-picker/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/date-picker/node_modules/@react-stately/overlays": {
+ "version": "3.6.7",
+ "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.7.tgz",
+ "integrity": "sha512-6zp8v/iNUm6YQap0loaFx6PlvN8C0DgWHNlrlzMtMmNuvjhjR0wYXVaTfNoUZBWj25tlDM81ukXOjpRXg9rLrw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/overlays": "^3.8.7",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/date-picker/node_modules/@react-stately/utils": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.1.tgz",
+ "integrity": "sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/divider": {
+ "version": "2.0.32",
+ "resolved": "https://registry.npmjs.org/@nextui-org/divider/-/divider-2.0.32.tgz",
+ "integrity": "sha512-2B2j3VmvVDFnMc9Uw7UWMkByA+osgnRmVwMZNZjl9g3oCycz3UDXotNJXjgsLocT8tGO8UwMcrdgo7QBZl52uw==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-rsc-utils": "2.0.14",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/system-rsc": "2.1.6",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/divider/node_modules/@nextui-org/react-rsc-utils": {
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.0.14.tgz",
+ "integrity": "sha512-s0GVgDhScyx+d9FtXd8BXf049REyaPvWsO4RRr7JDHrk91NlQ11Mqxka9o+8g5NX0rphI0rbe3/b1Dz+iQRx3w==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/divider/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/divider/node_modules/@nextui-org/system-rsc": {
+ "version": "2.1.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.1.6.tgz",
+ "integrity": "sha512-Wl2QwEFjYwuvw26R1RH3ZY81PD8YmfgtIjFvJZRP2VEIT6rPvlQ4ojgqdrkVkQZQ0L/K+5ZLbTKgLEFkj5ysdQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-types/shared": "3.23.1",
+ "clsx": "^1.2.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/divider/node_modules/clsx": {
+ "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"
+ }
+ },
+ "node_modules/@nextui-org/dropdown": {
+ "version": "2.1.31",
+ "resolved": "https://registry.npmjs.org/@nextui-org/dropdown/-/dropdown-2.1.31.tgz",
+ "integrity": "sha512-tP6c5MAhWK4hJ6U02oX6APUpjjrn97Zn7t+56Xx4YyQOSj0CJx18VF0JsU+MrjFZxPX3UBKU3B2zGBHOEGE4Kw==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/aria-utils": "2.0.26",
+ "@nextui-org/menu": "2.0.30",
+ "@nextui-org/popover": "2.1.29",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/menu": "3.14.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/menu": "3.7.1",
+ "@react-types/menu": "3.9.9"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/dropdown/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/dropdown/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"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==",
+ "version": "2.0.25",
+ "resolved": "https://registry.npmjs.org/@nextui-org/framer-utils/-/framer-utils-2.0.25.tgz",
+ "integrity": "sha512-bhQKDg4c5Da4II4UYLKyvYagusTd62eVwPqpfUP+GHZKKZcmRaS6MQZTh4xJYbpyh298S4jRSH/AUAiN/OK3TQ==",
"license": "MIT",
"dependencies": {
- "@nextui-org/shared-utils": "2.1.2",
- "@nextui-org/system": "2.4.6",
- "@nextui-org/use-measure": "2.1.1"
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/system": "2.2.6",
+ "@nextui-org/use-measure": "2.0.2"
},
"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"
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
}
},
"node_modules/@nextui-org/framer-utils/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==",
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
"license": "MIT"
},
"node_modules/@nextui-org/framer-utils/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==",
+ "version": "2.2.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.2.6.tgz",
+ "integrity": "sha512-tjIkOI0w32g68CGWleuSyIbEz8XBbeoNogR2lu7MWk3QovHCqgr4VVrP1cwMRYnwDPFQP3OpmH+NR9yzt+pIfg==",
"license": "MIT",
"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"
+ "@internationalized/date": "^3.5.4",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/system-rsc": "2.1.6",
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/overlays": "3.22.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/utils": "3.10.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"
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
}
},
"node_modules/@nextui-org/framer-utils/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==",
+ "version": "2.1.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.1.6.tgz",
+ "integrity": "sha512-Wl2QwEFjYwuvw26R1RH3ZY81PD8YmfgtIjFvJZRP2VEIT6rPvlQ4ojgqdrkVkQZQ0L/K+5ZLbTKgLEFkj5ysdQ==",
"license": "MIT",
"dependencies": {
- "@react-types/shared": "3.26.0",
+ "@react-types/shared": "3.23.1",
"clsx": "^1.2.1"
},
"peerDependencies": {
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0"
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18"
}
},
- "node_modules/@nextui-org/framer-utils/node_modules/@nextui-org/system-rsc/node_modules/clsx": {
- "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"
- }
- },
- "node_modules/@nextui-org/framer-utils/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==",
- "license": "MIT",
- "peer": true,
- "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/framer-utils/node_modules/@nextui-org/theme/node_modules/clsx": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz",
- "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
- "license": "MIT",
- "peer": true,
- "engines": {
- "node": ">=6"
- }
- },
- "node_modules/@nextui-org/framer-utils/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==",
+ "node_modules/@nextui-org/framer-utils/node_modules/@react-stately/utils": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.1.tgz",
+ "integrity": "sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==",
"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"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@nextui-org/framer-utils/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==",
+ "node_modules/@nextui-org/framer-utils/node_modules/clsx": {
+ "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"
+ }
+ },
+ "node_modules/@nextui-org/image": {
+ "version": "2.0.32",
+ "resolved": "https://registry.npmjs.org/@nextui-org/image/-/image-2.0.32.tgz",
+ "integrity": "sha512-JpE0O8qAeJpQA61ZnXNLH76to+dbx93PR5tTOxSvmTxtnuqVg4wl5ar/SBY3czibJPr0sj33k8Mv2EfULjoH7Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-image": "2.0.6"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/image/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/input": {
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@nextui-org/input/-/input-2.2.5.tgz",
+ "integrity": "sha512-xLgyKcnb+RatRZ62AbCFfTpS3exd2bPSSR75UFKylHHhgX+nvVOkX0dQgmr9e0V8IEECeRvbltw2s/laNFPTtg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-safe-layout-effect": "2.0.6",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/textfield": "3.14.5",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/utils": "3.10.1",
+ "@react-types/shared": "3.23.1",
+ "@react-types/textfield": "3.9.3",
+ "react-textarea-autosize": "^8.5.3"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/input/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/input/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
"license": "Apache-2.0",
"dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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"
+ }
+ },
+ "node_modules/@nextui-org/input/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/input/node_modules/@react-stately/utils": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.1.tgz",
+ "integrity": "sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/kbd": {
+ "version": "2.0.34",
+ "resolved": "https://registry.npmjs.org/@nextui-org/kbd/-/kbd-2.0.34.tgz",
+ "integrity": "sha512-sO6RJPgEFccFV8gmfYMTVeQ4f9PBYh09OieRpsZhN4HqdfWwEaeT6LrmdBko3XnJ0T6Me3tBrYULgKWcDcNogw==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/system-rsc": "2.1.6",
+ "@react-aria/utils": "3.24.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/kbd/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/kbd/node_modules/@nextui-org/system-rsc": {
+ "version": "2.1.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.1.6.tgz",
+ "integrity": "sha512-Wl2QwEFjYwuvw26R1RH3ZY81PD8YmfgtIjFvJZRP2VEIT6rPvlQ4ojgqdrkVkQZQ0L/K+5ZLbTKgLEFkj5ysdQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-types/shared": "3.23.1",
+ "clsx": "^1.2.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/kbd/node_modules/clsx": {
+ "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"
+ }
+ },
+ "node_modules/@nextui-org/link": {
+ "version": "2.0.35",
+ "resolved": "https://registry.npmjs.org/@nextui-org/link/-/link-2.0.35.tgz",
+ "integrity": "sha512-0XVUsSsysu+WMssokTlLHiMnjr1N6D2Uh3bIBcdFwSqmTLyq+Llgexlm6Fuv1wADRwsR8/DGFp3Pr826cv2Svg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-aria-link": "2.0.19",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/link": "3.7.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-types/link": "3.5.5"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/link/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/link/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/listbox": {
+ "version": "2.1.27",
+ "resolved": "https://registry.npmjs.org/@nextui-org/listbox/-/listbox-2.1.27.tgz",
+ "integrity": "sha512-B9HW/k0awfXsYaNyjaqv/GvEioVzrsCsOdSxVQZgQ3wQ6jNXmGRe1/X6IKg0fIa+P0v379kSgAqrZcwfRpKnWw==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/aria-utils": "2.0.26",
+ "@nextui-org/divider": "2.0.32",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-is-mobile": "2.0.9",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/listbox": "3.12.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/list": "3.10.5",
+ "@react-types/menu": "3.9.9",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/listbox/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/listbox/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/listbox/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/menu": {
+ "version": "2.0.30",
+ "resolved": "https://registry.npmjs.org/@nextui-org/menu/-/menu-2.0.30.tgz",
+ "integrity": "sha512-hZRr/EQ5JxB6yQFmUhDSv9pyLTJmaB4SFC/t5A17UljRhMexlvTU6QpalYIkbY0R/bUXvOkTJNzsRgI5OOQ/aA==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/aria-utils": "2.0.26",
+ "@nextui-org/divider": "2.0.32",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-aria-menu": "2.0.7",
+ "@nextui-org/use-is-mobile": "2.0.9",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/menu": "3.14.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/menu": "3.7.1",
+ "@react-stately/tree": "3.8.1",
+ "@react-types/menu": "3.9.9",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/menu/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/menu/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/menu/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/modal": {
+ "version": "2.0.41",
+ "resolved": "https://registry.npmjs.org/@nextui-org/modal/-/modal-2.0.41.tgz",
+ "integrity": "sha512-Sirn319xAf7E4cZqvQ0o0Vd3Xqy0FRSuhOTwp8dALMGTMY61c2nIyurgVCNP6hh8dMvMT7zQEPP9/LE0boFCEQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/framer-utils": "2.0.25",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-aria-button": "2.0.10",
+ "@nextui-org/use-aria-modal-overlay": "2.0.13",
+ "@nextui-org/use-disclosure": "2.0.10",
+ "@react-aria/dialog": "3.5.14",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/overlays": "3.22.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/overlays": "3.6.7",
+ "@react-types/overlays": "3.8.7"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/modal/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/modal/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/modal/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/modal/node_modules/@react-stately/overlays": {
+ "version": "3.6.7",
+ "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.7.tgz",
+ "integrity": "sha512-6zp8v/iNUm6YQap0loaFx6PlvN8C0DgWHNlrlzMtMmNuvjhjR0wYXVaTfNoUZBWj25tlDM81ukXOjpRXg9rLrw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/overlays": "^3.8.7",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/modal/node_modules/@react-types/overlays": {
+ "version": "3.8.7",
+ "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.8.7.tgz",
+ "integrity": "sha512-zCOYvI4at2DkhVpviIClJ7bRrLXYhSg3Z3v9xymuPH3mkiuuP/dm8mUCtkyY4UhVeUTHmrQh1bzaOP00A+SSQA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.23.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/navbar": {
+ "version": "2.0.37",
+ "resolved": "https://registry.npmjs.org/@nextui-org/navbar/-/navbar-2.0.37.tgz",
+ "integrity": "sha512-HuHXMU+V367LlvSGjqRPBNKmOERLvc4XWceva+KmiT99BLqHmMECkQVTR6ogO36eJUU96aR8JSfAiHLjvw5msw==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/framer-utils": "2.0.25",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-aria-toggle-button": "2.0.10",
+ "@nextui-org/use-scroll-position": "2.0.9",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/overlays": "3.22.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/toggle": "3.7.4",
+ "@react-stately/utils": "3.10.1",
+ "react-remove-scroll": "^2.5.6"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/navbar/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/navbar/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/navbar/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/navbar/node_modules/@react-stately/utils": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.1.tgz",
+ "integrity": "sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/pagination": {
+ "version": "2.0.36",
+ "resolved": "https://registry.npmjs.org/@nextui-org/pagination/-/pagination-2.0.36.tgz",
+ "integrity": "sha512-VKs2vMj8dybNzb/WkAMmvFBsxdgBvpVihIA4eXSo2ve7fpcLjIF1iPLHuDgpSyv3h3dy009sQTVo3lVTVT1a6w==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-pagination": "2.0.10",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "scroll-into-view-if-needed": "3.0.10"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/pagination/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/pagination/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/pagination/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/popover": {
+ "version": "2.1.29",
+ "resolved": "https://registry.npmjs.org/@nextui-org/popover/-/popover-2.1.29.tgz",
+ "integrity": "sha512-qGjMnAQVHQNfG571h9Tah2MXPs5mhxcTIj4TuBgwPzQTWXjjeffaHV3FlHdg5PxjTpNZOdDfrg0eRhDqIjKocQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/aria-utils": "2.0.26",
+ "@nextui-org/button": "2.0.38",
+ "@nextui-org/framer-utils": "2.0.25",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-aria-button": "2.0.10",
+ "@nextui-org/use-safe-layout-effect": "2.0.6",
+ "@react-aria/dialog": "3.5.14",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/overlays": "3.22.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/overlays": "3.6.7",
+ "@react-types/button": "3.9.4",
+ "@react-types/overlays": "3.8.7",
+ "react-remove-scroll": "^2.5.6"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/popover/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/popover/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/popover/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/popover/node_modules/@react-stately/overlays": {
+ "version": "3.6.7",
+ "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.7.tgz",
+ "integrity": "sha512-6zp8v/iNUm6YQap0loaFx6PlvN8C0DgWHNlrlzMtMmNuvjhjR0wYXVaTfNoUZBWj25tlDM81ukXOjpRXg9rLrw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/overlays": "^3.8.7",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/popover/node_modules/@react-types/button": {
+ "version": "3.9.4",
+ "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.9.4.tgz",
+ "integrity": "sha512-raeQBJUxBp0axNF74TXB8/H50GY8Q3eV6cEKMbZFP1+Dzr09Ngv0tJBeW0ewAxAguNH5DRoMUAUGIXtSXskVdA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.23.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/popover/node_modules/@react-types/overlays": {
+ "version": "3.8.7",
+ "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.8.7.tgz",
+ "integrity": "sha512-zCOYvI4at2DkhVpviIClJ7bRrLXYhSg3Z3v9xymuPH3mkiuuP/dm8mUCtkyY4UhVeUTHmrQh1bzaOP00A+SSQA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.23.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/progress": {
+ "version": "2.0.34",
+ "resolved": "https://registry.npmjs.org/@nextui-org/progress/-/progress-2.0.34.tgz",
+ "integrity": "sha512-rJmZCrLdufJKLsonJ37oPOEHEpZykD4c+0G749zcKOkRXHOD9DiQian2YoZEE/Yyf3pLdFQG3W9vSLbsgED3PQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-is-mounted": "2.0.6",
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/progress": "3.4.13",
+ "@react-aria/utils": "3.24.1",
+ "@react-types/progress": "3.5.4"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/progress/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/radio": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nextui-org/radio/-/radio-2.1.5.tgz",
+ "integrity": "sha512-0tF/VkMQv+KeYmFQpkrpz9S7j7U8gqCet+F97Cz7fFjdb+Q3w9waBzg84QayD7EZdjsYW4FNSkjPeiBhLdVUsw==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/radio": "3.10.4",
+ "@react-aria/utils": "3.24.1",
+ "@react-aria/visually-hidden": "3.8.12",
+ "@react-stately/radio": "3.10.4",
+ "@react-types/radio": "3.8.1",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/radio/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/radio/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/radio/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.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==",
+ "version": "2.4.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/react/-/react-2.4.8.tgz",
+ "integrity": "sha512-ZwXg6As3A+Gs+Jyc42t4MHNupHEsh9YmEaypE20ikqIPTCLQnrGQ/RWOGwzZ2a9kZWbZ89a/3rJwZMRKdcemxg==",
"license": "MIT",
"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"
+ "@nextui-org/accordion": "2.0.40",
+ "@nextui-org/autocomplete": "2.1.7",
+ "@nextui-org/avatar": "2.0.33",
+ "@nextui-org/badge": "2.0.32",
+ "@nextui-org/breadcrumbs": "2.0.13",
+ "@nextui-org/button": "2.0.38",
+ "@nextui-org/calendar": "2.0.12",
+ "@nextui-org/card": "2.0.34",
+ "@nextui-org/checkbox": "2.1.5",
+ "@nextui-org/chip": "2.0.33",
+ "@nextui-org/code": "2.0.33",
+ "@nextui-org/date-input": "2.1.4",
+ "@nextui-org/date-picker": "2.1.8",
+ "@nextui-org/divider": "2.0.32",
+ "@nextui-org/dropdown": "2.1.31",
+ "@nextui-org/framer-utils": "2.0.25",
+ "@nextui-org/image": "2.0.32",
+ "@nextui-org/input": "2.2.5",
+ "@nextui-org/kbd": "2.0.34",
+ "@nextui-org/link": "2.0.35",
+ "@nextui-org/listbox": "2.1.27",
+ "@nextui-org/menu": "2.0.30",
+ "@nextui-org/modal": "2.0.41",
+ "@nextui-org/navbar": "2.0.37",
+ "@nextui-org/pagination": "2.0.36",
+ "@nextui-org/popover": "2.1.29",
+ "@nextui-org/progress": "2.0.34",
+ "@nextui-org/radio": "2.1.5",
+ "@nextui-org/ripple": "2.0.33",
+ "@nextui-org/scroll-shadow": "2.1.20",
+ "@nextui-org/select": "2.2.7",
+ "@nextui-org/skeleton": "2.0.32",
+ "@nextui-org/slider": "2.2.17",
+ "@nextui-org/snippet": "2.0.43",
+ "@nextui-org/spacer": "2.0.33",
+ "@nextui-org/spinner": "2.0.34",
+ "@nextui-org/switch": "2.0.34",
+ "@nextui-org/system": "2.2.6",
+ "@nextui-org/table": "2.0.40",
+ "@nextui-org/tabs": "2.0.37",
+ "@nextui-org/theme": "2.2.11",
+ "@nextui-org/tooltip": "2.0.41",
+ "@nextui-org/user": "2.0.34",
+ "@react-aria/visually-hidden": "3.8.12"
},
"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"
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
}
},
"node_modules/@nextui-org/react-rsc-utils": {
@@ -1606,1090 +2981,103 @@
"integrity": "sha512-s2IG4pM1K+kbm6A2g3UpqrS592AExpGixtZNPJ2lV5+UQi1ld3vb4EiBIOViZMoSCNCoNdaeO5Yqo6cKghwCPA=="
},
"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==",
+ "version": "2.0.17",
+ "resolved": "https://registry.npmjs.org/@nextui-org/react-utils/-/react-utils-2.0.17.tgz",
+ "integrity": "sha512-U/b49hToVfhOM4dg4n57ZyUjLpts4JogQ139lfQBYPTb8z/ATNsJ3vLIqW5ZvDK6L0Er+JT11UVQ+03m7QMvaQ==",
"license": "MIT",
"dependencies": {
- "@nextui-org/react-rsc-utils": "2.1.1",
- "@nextui-org/shared-utils": "2.1.2"
+ "@nextui-org/react-rsc-utils": "2.0.14",
+ "@nextui-org/shared-utils": "2.0.8"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
"node_modules/@nextui-org/react-utils/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==",
+ "version": "2.0.14",
+ "resolved": "https://registry.npmjs.org/@nextui-org/react-rsc-utils/-/react-rsc-utils-2.0.14.tgz",
+ "integrity": "sha512-s0GVgDhScyx+d9FtXd8BXf049REyaPvWsO4RRr7JDHrk91NlQ11Mqxka9o+8g5NX0rphI0rbe3/b1Dz+iQRx3w==",
"license": "MIT",
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
"node_modules/@nextui-org/react-utils/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==",
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
"license": "MIT"
},
- "node_modules/@nextui-org/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/node_modules/@nextui-org/avatar": {
+ "node_modules/@nextui-org/react/node_modules/@nextui-org/system": {
"version": "2.2.6",
- "resolved": "https://registry.npmjs.org/@nextui-org/avatar/-/avatar-2.2.6.tgz",
- "integrity": "sha512-QRNCAMXnSZrFJYKo78lzRPiAPRq5pn1LIHUVvX/mCRiTvbu1FXrMakAvOWz/n1X1mLndnrfQMRNgmtC8YlHIdg==",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.2.6.tgz",
+ "integrity": "sha512-tjIkOI0w32g68CGWleuSyIbEz8XBbeoNogR2lu7MWk3QovHCqgr4VVrP1cwMRYnwDPFQP3OpmH+NR9yzt+pIfg==",
"license": "MIT",
"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"
+ "@internationalized/date": "^3.5.4",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/system-rsc": "2.1.6",
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/overlays": "3.22.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/utils": "3.10.1"
},
"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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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",
+ "framer-motion": ">=10.17.0",
"react": ">=18",
"react-dom": ">=18"
}
},
- "node_modules/@nextui-org/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/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==",
- "license": "MIT",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT"
- },
- "node_modules/@nextui-org/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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/react/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==",
+ "version": "2.1.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.1.6.tgz",
+ "integrity": "sha512-Wl2QwEFjYwuvw26R1RH3ZY81PD8YmfgtIjFvJZRP2VEIT6rPvlQ4ojgqdrkVkQZQ0L/K+5ZLbTKgLEFkj5ysdQ==",
"license": "MIT",
"dependencies": {
- "@react-types/shared": "3.26.0",
+ "@react-types/shared": "3.23.1",
"clsx": "^1.2.1"
},
"peerDependencies": {
- "@nextui-org/theme": ">=2.4.0",
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/react/node_modules/@nextui-org/system-rsc/node_modules/clsx": {
- "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"
- }
- },
- "node_modules/@nextui-org/react/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==",
- "license": "MIT",
- "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/react/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==",
- "license": "MIT",
- "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"
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18"
}
},
"node_modules/@nextui-org/react/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==",
+ "version": "2.2.11",
+ "resolved": "https://registry.npmjs.org/@nextui-org/theme/-/theme-2.2.11.tgz",
+ "integrity": "sha512-bg9+KNnFxcP3w/ugivEJtvQibODbTxfl6UdVvx7TCY8Rd269U7F2+nhnw1Qd1xJT5yZQnX6m//9wOoGtJV+6Kg==",
"license": "MIT",
"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",
+ "lodash.foreach": "^4.5.0",
+ "lodash.get": "^4.4.2",
+ "lodash.kebabcase": "^4.1.1",
+ "lodash.mapkeys": "^4.6.0",
+ "lodash.omit": "^4.5.0",
+ "tailwind-merge": "^1.14.0",
"tailwind-variants": "^0.1.20"
},
"peerDependencies": {
"tailwindcss": ">=3.4.0"
}
},
- "node_modules/@nextui-org/react/node_modules/@nextui-org/theme/node_modules/clsx": {
+ "node_modules/@nextui-org/react/node_modules/@react-stately/utils": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.1.tgz",
+ "integrity": "sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/react/node_modules/clsx": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz",
"integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
@@ -2698,106 +3086,138 @@
"node": ">=6"
}
},
- "node_modules/@nextui-org/react/node_modules/@nextui-org/tooltip": {
+ "node_modules/@nextui-org/react/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==",
+ "license": "MIT",
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/dcastil"
+ }
+ },
+ "node_modules/@nextui-org/ripple": {
+ "version": "2.0.33",
+ "resolved": "https://registry.npmjs.org/@nextui-org/ripple/-/ripple-2.0.33.tgz",
+ "integrity": "sha512-Zsa60CXtGCF7weTCFbSfT0OlxlGHdd5b/sSJTYrmMZRHOIUpHW8kT0bxVYF/6X8nCCJYxzBKXUqdE3Y31fhNeQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/ripple/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/scroll-shadow": {
+ "version": "2.1.20",
+ "resolved": "https://registry.npmjs.org/@nextui-org/scroll-shadow/-/scroll-shadow-2.1.20.tgz",
+ "integrity": "sha512-8ULiUmbZ/Jzr1okI8Yzjzl5M4Ow3pJEm34hT5id0EaMIgklNa3Nnp/Dyp54JwwUbI8Kt3jOAMqkPitGIZyo5Ag==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-data-scroll-overflow": "2.1.7"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/scroll-shadow/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/select": {
"version": "2.2.7",
- "resolved": "https://registry.npmjs.org/@nextui-org/tooltip/-/tooltip-2.2.7.tgz",
- "integrity": "sha512-NgoaxcNwuCq/jvp77dmGzyS7JxzX4dvD/lAYi/GUhyxEC3TK3teZ3ADRhrC6tb84OpaelPLaTkhRNSaxVAQzjQ==",
+ "resolved": "https://registry.npmjs.org/@nextui-org/select/-/select-2.2.7.tgz",
+ "integrity": "sha512-lA2EOjquhiHmLSInHFEarq64ZOQV37+ry1d8kvsqJ7R9dsqw1QEuMzH2Kk8/NqwrYMccHh5iAZ7PaLp90NSSxg==",
"license": "MIT",
"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"
+ "@nextui-org/aria-utils": "2.0.26",
+ "@nextui-org/listbox": "2.1.27",
+ "@nextui-org/popover": "2.1.29",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/scroll-shadow": "2.1.20",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/spinner": "2.0.34",
+ "@nextui-org/use-aria-button": "2.0.10",
+ "@nextui-org/use-aria-multiselect": "2.2.5",
+ "@nextui-org/use-safe-layout-effect": "2.0.6",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/form": "3.0.5",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "@react-aria/visually-hidden": "3.8.12",
+ "@react-types/shared": "3.23.1"
},
"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"
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
}
},
- "node_modules/@nextui-org/react/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==",
- "license": "MIT",
- "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/@nextui-org/select/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
},
- "node_modules/@nextui-org/react/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==",
+ "node_modules/@nextui-org/select/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
"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/@nextui-org/react/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
- "node_modules/@nextui-org/react/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==",
+ "node_modules/@nextui-org/select/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
"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/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
"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==",
+ "version": "2.0.9",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-icons/-/shared-icons-2.0.9.tgz",
+ "integrity": "sha512-WG3yinVY7Tk9VqJgcdF4V8Ok9+fcm5ey7S1els7kujrfqLYxtqoKywgiY/7QHwZlfQkzpykAfy+NAlHkTP5hMg==",
"license": "MIT",
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
"node_modules/@nextui-org/shared-utils": {
@@ -2805,6 +3225,285 @@
"resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.5.tgz",
"integrity": "sha512-aFc/CUL8RVfBh0IotIpxkpKjyUPc/zJaMJd5pRCQA1kIpKLdSrlh3//MLYMaP/fo/NQtE3DPeXqfKhHRr1fkEw=="
},
+ "node_modules/@nextui-org/skeleton": {
+ "version": "2.0.32",
+ "resolved": "https://registry.npmjs.org/@nextui-org/skeleton/-/skeleton-2.0.32.tgz",
+ "integrity": "sha512-dS0vuRrc4oWktW3wa/KFhcBNnV0oiDqKXP4BqRj7wgS01fOAqj3cJiqwUDLKO8GbEnxLkbqLBFcUoLgktpRszQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/skeleton/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/slider": {
+ "version": "2.2.17",
+ "resolved": "https://registry.npmjs.org/@nextui-org/slider/-/slider-2.2.17.tgz",
+ "integrity": "sha512-MgeJv3X+bT7Bw+LK1zba4vToOUzv8lCvDuGe0U5suJy1AKGN6uGDgSAxpIZhCYNWsuNRsopwdvsGtyeIjOEStA==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/tooltip": "2.0.41",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/slider": "3.7.8",
+ "@react-aria/utils": "3.24.1",
+ "@react-aria/visually-hidden": "3.8.12",
+ "@react-stately/slider": "3.5.4"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/slider/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/slider/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/slider/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/snippet": {
+ "version": "2.0.43",
+ "resolved": "https://registry.npmjs.org/@nextui-org/snippet/-/snippet-2.0.43.tgz",
+ "integrity": "sha512-PLxc9ph9CLj52L26XSv4vBmQcSytCNc3ZBxkOTBEqmLSHCWwGQExrqKPnVZTE1etr6dcULiy5vNIpD8R7taO8A==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/button": "2.0.38",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/tooltip": "2.0.41",
+ "@nextui-org/use-clipboard": "2.0.7",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/utils": "3.24.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/snippet/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/snippet/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/spacer": {
+ "version": "2.0.33",
+ "resolved": "https://registry.npmjs.org/@nextui-org/spacer/-/spacer-2.0.33.tgz",
+ "integrity": "sha512-0YDtovMWuAVgBvVXUmplzohObGxMPFhisHXn6v+0nflAE9LiVeiXf121WVOEMrd08S7xvmrAANcMwo4TsYi49g==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/system-rsc": "2.1.6"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/spacer/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/spacer/node_modules/@nextui-org/system-rsc": {
+ "version": "2.1.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.1.6.tgz",
+ "integrity": "sha512-Wl2QwEFjYwuvw26R1RH3ZY81PD8YmfgtIjFvJZRP2VEIT6rPvlQ4ojgqdrkVkQZQ0L/K+5ZLbTKgLEFkj5ysdQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-types/shared": "3.23.1",
+ "clsx": "^1.2.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/spacer/node_modules/clsx": {
+ "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"
+ }
+ },
+ "node_modules/@nextui-org/spinner": {
+ "version": "2.0.34",
+ "resolved": "https://registry.npmjs.org/@nextui-org/spinner/-/spinner-2.0.34.tgz",
+ "integrity": "sha512-YKw/6xSLhsXU1k22OvYKyWhtJCHzW2bRAiieVSVG5xak3gYwknTds5H9s5uur+oAZVK9AkyAObD19QuZND32Jg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/system-rsc": "2.1.6"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/spinner/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/spinner/node_modules/@nextui-org/system-rsc": {
+ "version": "2.1.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/system-rsc/-/system-rsc-2.1.6.tgz",
+ "integrity": "sha512-Wl2QwEFjYwuvw26R1RH3ZY81PD8YmfgtIjFvJZRP2VEIT6rPvlQ4ojgqdrkVkQZQ0L/K+5ZLbTKgLEFkj5ysdQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-types/shared": "3.23.1",
+ "clsx": "^1.2.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/spinner/node_modules/clsx": {
+ "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"
+ }
+ },
+ "node_modules/@nextui-org/switch": {
+ "version": "2.0.34",
+ "resolved": "https://registry.npmjs.org/@nextui-org/switch/-/switch-2.0.34.tgz",
+ "integrity": "sha512-SczQiHswo8eR94ecDgcULIsSIPfYVncqfKllcHEGqAs9BDpZun44KK0/R0xhWuPpx5oqB60VeSABN7JtEAxF+Q==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-safe-layout-effect": "2.0.6",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/switch": "3.6.4",
+ "@react-aria/utils": "3.24.1",
+ "@react-aria/visually-hidden": "3.8.12",
+ "@react-stately/toggle": "3.7.4",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/switch/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/switch/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/switch/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
"node_modules/@nextui-org/system": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@nextui-org/system/-/system-2.2.1.tgz",
@@ -2907,6 +3606,137 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
+ "node_modules/@nextui-org/table": {
+ "version": "2.0.40",
+ "resolved": "https://registry.npmjs.org/@nextui-org/table/-/table-2.0.40.tgz",
+ "integrity": "sha512-qDbSsu6mpWnr1Mt3DYTBzTFtN8Z5Gv7GDqECGcDVradkDVuJFZvkB9Ke392LcVZoXSk99Rpamq4WSWkEewBhWg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/checkbox": "2.1.5",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-icons": "2.0.9",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/spacer": "2.0.33",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/table": "3.14.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-aria/visually-hidden": "3.8.12",
+ "@react-stately/table": "3.11.8",
+ "@react-stately/virtualizer": "3.7.1",
+ "@react-types/grid": "3.2.6",
+ "@react-types/table": "3.9.5"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/table/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/table/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/table/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/tabs": {
+ "version": "2.0.37",
+ "resolved": "https://registry.npmjs.org/@nextui-org/tabs/-/tabs-2.0.37.tgz",
+ "integrity": "sha512-IQicuDggxTL+JeW3fRoZR4Rr24EwinxAdfU1jqcvT6gZywumndV27+I00kARz8P03kobYoY9t73NY92qo8T5gg==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/aria-utils": "2.0.26",
+ "@nextui-org/framer-utils": "2.0.25",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-is-mounted": "2.0.6",
+ "@nextui-org/use-update-effect": "2.0.6",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/tabs": "3.9.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/tabs": "3.6.6",
+ "@react-types/shared": "3.23.1",
+ "@react-types/tabs": "3.3.7",
+ "scroll-into-view-if-needed": "3.0.10"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/tabs/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/tabs/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0",
+ "clsx": "^2.0.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/tabs/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
"node_modules/@nextui-org/theme": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@nextui-org/theme/-/theme-2.2.5.tgz",
@@ -2946,511 +3776,557 @@
"url": "https://github.com/sponsors/dcastil"
}
},
- "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==",
+ "node_modules/@nextui-org/tooltip": {
+ "version": "2.0.41",
+ "resolved": "https://registry.npmjs.org/@nextui-org/tooltip/-/tooltip-2.0.41.tgz",
+ "integrity": "sha512-1c+vkCCszKcKl15HywlZ7UOL7c1UFgLudqBB/dEdWZiclT01BRiracMbcQ7McKHQCRl77Aa7LFv5x4wHOicWHQ==",
"license": "MIT",
"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"
+ "@nextui-org/aria-utils": "2.0.26",
+ "@nextui-org/framer-utils": "2.0.25",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@nextui-org/use-safe-layout-effect": "2.0.6",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/overlays": "3.22.1",
+ "@react-aria/tooltip": "3.7.4",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/tooltip": "3.4.9",
+ "@react-types/overlays": "3.8.7",
+ "@react-types/tooltip": "3.4.9"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "framer-motion": ">=10.17.0",
+ "react": ">=18",
+ "react-dom": ">=18"
}
},
- "node_modules/@nextui-org/use-aria-accordion/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==",
+ "node_modules/@nextui-org/tooltip/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/tooltip/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
"license": "Apache-2.0",
"dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@nextui-org/use-aria-accordion/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==",
+ "node_modules/@nextui-org/tooltip/node_modules/@react-types/overlays": {
+ "version": "3.8.7",
+ "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.8.7.tgz",
+ "integrity": "sha512-zCOYvI4at2DkhVpviIClJ7bRrLXYhSg3Z3v9xymuPH3mkiuuP/dm8mUCtkyY4UhVeUTHmrQh1bzaOP00A+SSQA==",
"license": "Apache-2.0",
"dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-types/shared": "^3.23.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/use-aria-accordion": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-accordion/-/use-aria-accordion-2.0.7.tgz",
+ "integrity": "sha512-VzGlxmsu2tWG2Pht1e0PBz40jz95v0OEKYVXq91WpDMwj8Bl1CYvxrw2Qz41/5Xi0X843Mmo4sPwrc/hk0+RHA==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-aria/button": "3.9.5",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/selection": "3.18.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/tree": "3.8.1",
+ "@react-types/accordion": "3.0.0-alpha.21",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/use-aria-accordion/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
"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==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-button/-/use-aria-button-2.0.10.tgz",
+ "integrity": "sha512-tUpp4QMr1zugKPevyToeRHIufTuc/g+67/r/oQLRTG0mMo3yGVmggykQuYn22fqqZPpW6nHcB9VYc+XtZZ27TQ==",
"license": "MIT",
"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"
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "@react-types/button": "3.9.4",
+ "@react-types/shared": "3.23.1"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
- "node_modules/@nextui-org/use-aria-button/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==",
- "license": "MIT"
- },
- "node_modules/@nextui-org/use-aria-button/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==",
+ "node_modules/@nextui-org/use-aria-button/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
"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/@nextui-org/use-aria-button/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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"
+ }
+ },
+ "node_modules/@nextui-org/use-aria-button/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/use-aria-button/node_modules/@react-types/button": {
+ "version": "3.9.4",
+ "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.9.4.tgz",
+ "integrity": "sha512-raeQBJUxBp0axNF74TXB8/H50GY8Q3eV6cEKMbZFP1+Dzr09Ngv0tJBeW0ewAxAguNH5DRoMUAUGIXtSXskVdA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.23.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.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==",
+ "version": "2.0.19",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-link/-/use-aria-link-2.0.19.tgz",
+ "integrity": "sha512-ef61cJLlwcR4zBWiaeHZy4K18juFjUup2SslfLIAiZz3kVosBCGKmkJkw1SASYY8+D/oUc2B6BFIk25YEsRKRw==",
"license": "MIT",
"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"
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/utils": "3.24.1",
+ "@react-types/link": "3.5.5",
+ "@react-types/shared": "3.23.1"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
- "node_modules/@nextui-org/use-aria-link/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==",
- "license": "MIT"
- },
- "node_modules/@nextui-org/use-aria-link/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==",
+ "node_modules/@nextui-org/use-aria-link/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
"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/@nextui-org/use-aria-link/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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"
+ }
+ },
+ "node_modules/@nextui-org/use-aria-link/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/use-aria-menu": {
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-menu/-/use-aria-menu-2.0.7.tgz",
+ "integrity": "sha512-5U91zFiWTLXsOhE0W3CThsD5TmL3ANeTEtoimtPgSLWV9keZBD9Ja62WsnPZPPAWhmv7jtL0/qk4d/YOra7PVA==",
+ "license": "MIT",
+ "dependencies": {
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/menu": "3.14.1",
+ "@react-aria/selection": "3.18.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/collections": "3.10.7",
+ "@react-stately/tree": "3.8.1",
+ "@react-types/menu": "3.9.9",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/use-aria-menu/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.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==",
+ "version": "2.0.13",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-modal-overlay/-/use-aria-modal-overlay-2.0.13.tgz",
+ "integrity": "sha512-ifQxJwTX72lhVUofEVQqMbpe9vEUiCIqiimzlUjeVuE0cYOXaoJLEgPozHpYQrdjTNiwD5On0LLMRgz19XyAqw==",
"license": "MIT",
"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"
+ "@react-aria/overlays": "3.22.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/overlays": "3.6.7",
+ "@react-types/shared": "3.23.1"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18",
+ "react-dom": ">=18"
}
},
- "node_modules/@nextui-org/use-aria-modal-overlay/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==",
+ "node_modules/@nextui-org/use-aria-modal-overlay/node_modules/@react-stately/overlays": {
+ "version": "3.6.7",
+ "resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.7.tgz",
+ "integrity": "sha512-6zp8v/iNUm6YQap0loaFx6PlvN8C0DgWHNlrlzMtMmNuvjhjR0wYXVaTfNoUZBWj25tlDM81ukXOjpRXg9rLrw==",
"license": "Apache-2.0",
"dependencies": {
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/overlays": "^3.8.7",
"@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/@nextui-org/use-aria-modal-overlay/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"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==",
+ "version": "2.2.5",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-multiselect/-/use-aria-multiselect-2.2.5.tgz",
+ "integrity": "sha512-Gxo2M0LdnFL4/WCi192ziFB8JmSZm6yZYT8RB021Z3iAPBu/Pp9GnWEPZu5g15mKnn3jW5Ecnfw03jTEAQBR+Q==",
"license": "MIT",
"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"
+ "@react-aria/i18n": "3.11.1",
+ "@react-aria/interactions": "3.21.3",
+ "@react-aria/label": "3.7.8",
+ "@react-aria/listbox": "3.12.1",
+ "@react-aria/menu": "3.14.1",
+ "@react-aria/selection": "3.18.1",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/form": "3.0.3",
+ "@react-stately/list": "3.10.5",
+ "@react-stately/menu": "3.7.1",
+ "@react-types/button": "3.9.4",
+ "@react-types/overlays": "3.8.7",
+ "@react-types/select": "3.9.4",
+ "@react-types/shared": "3.23.1"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18",
+ "react-dom": ">=18"
}
},
- "node_modules/@nextui-org/use-aria-multiselect/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==",
+ "node_modules/@nextui-org/use-aria-multiselect/node_modules/@react-aria/interactions": {
+ "version": "3.21.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.21.3.tgz",
+ "integrity": "sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==",
"license": "Apache-2.0",
"dependencies": {
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
- "node_modules/@nextui-org/use-aria-multiselect/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==",
+ "node_modules/@nextui-org/use-aria-multiselect/node_modules/@react-types/button": {
+ "version": "3.9.4",
+ "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.9.4.tgz",
+ "integrity": "sha512-raeQBJUxBp0axNF74TXB8/H50GY8Q3eV6cEKMbZFP1+Dzr09Ngv0tJBeW0ewAxAguNH5DRoMUAUGIXtSXskVdA==",
"license": "Apache-2.0",
"dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
- "@swc/helpers": "^0.5.0",
- "clsx": "^2.0.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
+ }
+ },
+ "node_modules/@nextui-org/use-aria-multiselect/node_modules/@react-types/overlays": {
+ "version": "3.8.7",
+ "resolved": "https://registry.npmjs.org/@react-types/overlays/-/overlays-3.8.7.tgz",
+ "integrity": "sha512-zCOYvI4at2DkhVpviIClJ7bRrLXYhSg3Z3v9xymuPH3mkiuuP/dm8mUCtkyY4UhVeUTHmrQh1bzaOP00A+SSQA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.23.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@nextui-org/use-aria-toggle-button": {
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-aria-toggle-button/-/use-aria-toggle-button-2.0.10.tgz",
+ "integrity": "sha512-U5jOmEO+nMIgYvBF0+gJtdq8C6dynGMjzAboPG4FhuHOzDoNiC12G5FIbGnRe8K1hMsKVuaI72p9986NhfqNgw==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/use-aria-button": "2.0.10",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/toggle": "3.7.4",
+ "@react-types/button": "3.9.4",
+ "@react-types/shared": "3.23.1"
+ },
+ "peerDependencies": {
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/use-aria-toggle-button/node_modules/@react-types/button": {
+ "version": "3.9.4",
+ "resolved": "https://registry.npmjs.org/@react-types/button/-/button-3.9.4.tgz",
+ "integrity": "sha512-raeQBJUxBp0axNF74TXB8/H50GY8Q3eV6cEKMbZFP1+Dzr09Ngv0tJBeW0ewAxAguNH5DRoMUAUGIXtSXskVdA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.23.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.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==",
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-callback-ref/-/use-callback-ref-2.0.6.tgz",
+ "integrity": "sha512-2WcwWuK1L/wIpTbibnLrysmmkzWomvkVIcgWayB6n/w+bpPrPCG7Zyg2WHzmMmDhe6imV//KKBgNKRi8Xhu/VA==",
"license": "MIT",
"dependencies": {
- "@nextui-org/use-safe-layout-effect": "2.1.1"
+ "@nextui-org/use-safe-layout-effect": "2.0.6"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
"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==",
+ "version": "2.0.7",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-clipboard/-/use-clipboard-2.0.7.tgz",
+ "integrity": "sha512-Bn1fF/goMwOA5DQyw3A4ebfgozwR8U5k5TAZMPiy1RBWgTFw7+lB0GNbH+DOnUGY5Vyztyaw6gtUyc3tVzJxeg==",
"license": "MIT",
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
"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==",
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-data-scroll-overflow/-/use-data-scroll-overflow-2.1.7.tgz",
+ "integrity": "sha512-MP4YLjBWyIt0KyWPndXyhnkKgOLqTZ2aPY82Czjqn+eZk/l8BNo0nfA+dZFfbfEuPJgqdt/JDkMOrS+uq0+vkQ==",
"license": "MIT",
"dependencies": {
- "@nextui-org/shared-utils": "2.1.2"
+ "@nextui-org/shared-utils": "2.0.8"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
"node_modules/@nextui-org/use-data-scroll-overflow/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==",
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
"license": "MIT"
},
"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==",
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-disclosure/-/use-disclosure-2.0.10.tgz",
+ "integrity": "sha512-s2I58d7x2f1JRriZnNm9ZoxrGmxF+DnC9BXM1sD99Wq1VNMd0dhitmx0mUWfUB7l5HLyZgKOeiSLG+ugy1F1Yw==",
"license": "MIT",
"dependencies": {
- "@nextui-org/use-callback-ref": "2.1.1",
- "@react-aria/utils": "3.26.0",
- "@react-stately/utils": "3.10.5"
+ "@nextui-org/use-callback-ref": "2.0.6",
+ "@react-aria/utils": "3.24.1",
+ "@react-stately/utils": "3.10.1"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
- "node_modules/@nextui-org/use-disclosure/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==",
+ "node_modules/@nextui-org/use-disclosure/node_modules/@react-stately/utils": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.1.tgz",
+ "integrity": "sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==",
"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/@nextui-org/use-disclosure/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
- }
- },
- "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==",
- "license": "MIT",
- "dependencies": {
- "@react-aria/interactions": "3.22.5"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.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==",
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-image/-/use-image-2.0.6.tgz",
+ "integrity": "sha512-VelN9y3vzwIpPfubFMh00YRQ0f4+I5FElcAvAqoo0Kfb0K7sGrTo1lZNApHm6yBN2gJMMeccG9u7bZB+wcDGZQ==",
"license": "MIT",
"dependencies": {
- "@nextui-org/react-utils": "2.1.3",
- "@nextui-org/use-safe-layout-effect": "2.1.1"
+ "@nextui-org/use-safe-layout-effect": "2.0.6"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
- "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==",
+ "node_modules/@nextui-org/use-is-mobile": {
+ "version": "2.0.9",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-is-mobile/-/use-is-mobile-2.0.9.tgz",
+ "integrity": "sha512-u5pRmPV0wacdpOcAkQnWwE30yNBl2uk1WvbWkrSELxIVRN22+fTIYn8ynnHK0JbJFTA6/5zh7uIfETQu3L6KjA==",
"license": "MIT",
"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"
+ "@react-aria/ssr": "3.9.4"
},
"peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": ">=18"
}
},
- "node_modules/@nextui-org/use-intersection-observer/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==",
- "license": "Apache-2.0",
+ "node_modules/@nextui-org/use-is-mounted": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-is-mounted/-/use-is-mounted-2.0.6.tgz",
+ "integrity": "sha512-/lcMdYnwBZ1EuKMLRIhHeAZG8stXWNTz7wBweAlLId23VC4VHgCp/s9K9Vbj1A5/r8FiFQeoTmXQuMAMUoPRtg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/use-measure": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-measure/-/use-measure-2.0.2.tgz",
+ "integrity": "sha512-H/RSPPA9B5sZ10wiXR3jLlYFEuiVnc0O/sgLLQfrb5M0hvHoaqMThnsZpm//5iyS7tD7kxPeYNLa1EhzlQKxDA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/use-pagination": {
+ "version": "2.0.10",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-pagination/-/use-pagination-2.0.10.tgz",
+ "integrity": "sha512-PD6M8QKngUnTJfyoGiZrnrfUtA1A9ZVUjmbONO/1kxPuUegv0ZOQeFECPP2h7SFPxsyOceL1T97rg/2YPS247g==",
+ "license": "MIT",
"dependencies": {
- "@swc/helpers": "^0.5.0"
- },
- "engines": {
- "node": ">= 12"
+ "@nextui-org/shared-utils": "2.0.8",
+ "@react-aria/i18n": "3.11.1"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ "react": ">=18"
}
},
- "node_modules/@nextui-org/use-intersection-observer/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==",
+ "node_modules/@nextui-org/use-pagination/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/use-safe-layout-effect": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-safe-layout-effect/-/use-safe-layout-effect-2.0.6.tgz",
+ "integrity": "sha512-xzEJXf/g9GaSqjLpQ4+Z2/pw1GPq2Fc5cWRGqEXbGauEMXuH8UboRls1BmIV1RuOpqI6FgxkEmxL1EuVIRVmvQ==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/use-scroll-position": {
+ "version": "2.0.9",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-scroll-position/-/use-scroll-position-2.0.9.tgz",
+ "integrity": "sha512-tXbpb2bkKIjOp2I1uZ1T4T9Lxp0+Ta/TKu+5qvqsXkHRPbcoukdsquagYUDWK/fcumg72UPR8QP+na8KMn2gCg==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/use-update-effect": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/@nextui-org/use-update-effect/-/use-update-effect-2.0.6.tgz",
+ "integrity": "sha512-n5Qiv3ferKn+cSxU3Vv+96LdG8I/00mzc7Veoan+P9GL0aCTrsPB6RslTsiblaiAXQcqTiFXd8xwsK309DXOXA==",
+ "license": "MIT",
+ "peerDependencies": {
+ "react": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/user": {
+ "version": "2.0.34",
+ "resolved": "https://registry.npmjs.org/@nextui-org/user/-/user-2.0.34.tgz",
+ "integrity": "sha512-7MN/xBaMhDJ0b+hB2YpGIm2DsC9CTpN1ab+EKwhUuWn26SgXw2FNu8CSHViyDEkvOP7sYKdHLp9UtSo/f3JnsQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@nextui-org/avatar": "2.0.33",
+ "@nextui-org/react-utils": "2.0.17",
+ "@nextui-org/shared-utils": "2.0.8",
+ "@react-aria/focus": "3.17.1",
+ "@react-aria/utils": "3.24.1"
+ },
+ "peerDependencies": {
+ "@nextui-org/system": ">=2.0.0",
+ "@nextui-org/theme": ">=2.1.0",
+ "react": ">=18",
+ "react-dom": ">=18"
+ }
+ },
+ "node_modules/@nextui-org/user/node_modules/@nextui-org/shared-utils": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/@nextui-org/shared-utils/-/shared-utils-2.0.8.tgz",
+ "integrity": "sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==",
+ "license": "MIT"
+ },
+ "node_modules/@nextui-org/user/node_modules/@react-aria/focus": {
+ "version": "3.17.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.17.1.tgz",
+ "integrity": "sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==",
"license": "Apache-2.0",
"dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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"
- }
- },
- "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==",
- "license": "MIT",
- "dependencies": {
- "@react-aria/ssr": "3.9.7"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@nextui-org/use-is-mobile/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==",
- "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/@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==",
- "license": "MIT",
- "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==",
- "license": "MIT",
- "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==",
- "license": "MIT",
- "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-pagination/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==",
- "license": "MIT"
- },
- "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==",
- "license": "MIT",
- "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==",
- "license": "MIT",
- "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==",
- "license": "MIT",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@nodelib/fs.scandir": {
@@ -4749,375 +5625,157 @@
"integrity": "sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg=="
},
"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.13",
+ "resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.13.tgz",
+ "integrity": "sha512-G1Gqf/P6kVdfs94ovwP18fTWuIxadIQgHsXS08JEVcFVYMjb9YjqnEBaohUxD1tq2WldMbYw53ahQblT4NTG+g==",
"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.11.1",
+ "@react-aria/link": "^3.7.1",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/breadcrumbs": "^3.7.5",
+ "@react-types/shared": "^3.23.1",
"@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/breadcrumbs/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==",
- "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/breadcrumbs/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"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.9.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/button/-/button-3.9.5.tgz",
+ "integrity": "sha512-dgcYR6j8WDOMLKuVrtxzx4jIC05cVKDzc+HnPO8lNkBAOfjcuN5tkGRtIjLtqjMvpZHhQT5aDbgFpIaZzxgFIg==",
"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/focus": "^3.17.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/toggle": "^3.7.4",
+ "@react-types/button": "^3.9.4",
+ "@react-types/shared": "^3.23.1",
"@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/button/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==",
- "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/button/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"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.5.8",
+ "resolved": "https://registry.npmjs.org/@react-aria/calendar/-/calendar-3.5.8.tgz",
+ "integrity": "sha512-Whlp4CeAA5/ZkzrAHUv73kgIRYjw088eYGSc+cvSOCxfrc/2XkBm9rNrnSBv0DvhJ8AG0Fjz3vYakTmF3BgZBw==",
"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.5.4",
+ "@react-aria/i18n": "^3.11.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/live-announcer": "^3.3.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/calendar": "^3.5.1",
+ "@react-types/button": "^3.9.4",
+ "@react-types/calendar": "^3.4.6",
+ "@react-types/shared": "^3.23.1",
"@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/calendar/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==",
- "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/calendar/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"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.14.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/checkbox/-/checkbox-3.14.3.tgz",
+ "integrity": "sha512-EtBJL6iu0gvrw3A4R7UeVLR6diaVk/mh4kFBc7c8hQjpEJweRr4hmJT3hrNg3MBcTWLxFiMEXPGgWEwXDBygtA==",
"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.5",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/label": "^3.7.8",
+ "@react-aria/toggle": "^3.10.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/checkbox": "^3.6.5",
+ "@react-stately/form": "^3.0.3",
+ "@react-stately/toggle": "^3.7.4",
+ "@react-types/checkbox": "^3.8.1",
+ "@react-types/shared": "^3.23.1",
"@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/checkbox/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==",
- "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/checkbox/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"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.9.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.9.1.tgz",
+ "integrity": "sha512-SpK92dCmT8qn8aEcUAihRQrBb5LZUhwIbDExFII8PvUvEFy/PoQHXIo3j1V29WkutDBDpMvBv/6XRCHGXPqrhQ==",
"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/i18n": "^3.11.1",
+ "@react-aria/listbox": "^3.12.1",
+ "@react-aria/live-announcer": "^3.3.4",
+ "@react-aria/menu": "^3.14.1",
+ "@react-aria/overlays": "^3.22.1",
+ "@react-aria/selection": "^3.18.1",
+ "@react-aria/textfield": "^3.14.5",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/collections": "^3.10.7",
+ "@react-stately/combobox": "^3.8.4",
+ "@react-stately/form": "^3.0.3",
+ "@react-types/button": "^3.9.4",
+ "@react-types/combobox": "^3.11.1",
+ "@react-types/shared": "^3.23.1",
"@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/combobox/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==",
- "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/combobox/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"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.10.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/datepicker/-/datepicker-3.10.1.tgz",
+ "integrity": "sha512-4HZL593nrNMa1GjBmWEN/OTvNS6d3/16G1YJWlqiUlv11ADulSbqBIjMmkgwrJVFcjrgqtXFy+yyrTA/oq94Zw==",
"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.5.4",
+ "@internationalized/number": "^3.5.3",
+ "@internationalized/string": "^3.2.3",
+ "@react-aria/focus": "^3.17.1",
+ "@react-aria/form": "^3.0.5",
+ "@react-aria/i18n": "^3.11.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/label": "^3.7.8",
+ "@react-aria/spinbutton": "^3.6.5",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/datepicker": "^3.9.4",
+ "@react-stately/form": "^3.0.3",
+ "@react-types/button": "^3.9.4",
+ "@react-types/calendar": "^3.4.6",
+ "@react-types/datepicker": "^3.7.4",
+ "@react-types/dialog": "^3.5.10",
+ "@react-types/shared": "^3.23.1",
"@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/datepicker/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==",
- "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/datepicker/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"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.14",
+ "resolved": "https://registry.npmjs.org/@react-aria/dialog/-/dialog-3.5.14.tgz",
+ "integrity": "sha512-oqDCjQ8hxe3GStf48XWBf2CliEnxlR9GgSYPHJPUc69WBj68D9rVcCW3kogJnLAnwIyf3FnzbX4wSjvUa88sAQ==",
"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/focus": "^3.17.1",
+ "@react-aria/overlays": "^3.22.1",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/dialog": "^3.5.10",
+ "@react-types/shared": "^3.23.1",
"@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/dialog/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==",
- "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/dialog/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/focus": {
@@ -5168,50 +5826,19 @@
}
},
"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.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/form/-/form-3.0.5.tgz",
+ "integrity": "sha512-n290jRwrrRXO3fS82MyWR+OKN7yznVesy5Q10IclSTVYHHI3VI53xtAPr/WzNjJR1um8aLhOcDNFKwnNIUUCsQ==",
"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",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/form": "^3.0.3",
+ "@react-types/shared": "^3.23.1",
"@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/form/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==",
- "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/form/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"node_modules/@react-aria/grid": {
@@ -5239,6 +5866,44 @@
"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.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.12.4.tgz",
+ "integrity": "sha512-j9+UL3q0Ls8MhXV9gtnKlyozq4aM95YywXqnmJtzT1rYeBx7w28hooqrWkCYLfqr4OIryv1KUnPiCSLwC2OC7w==",
+ "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",
+ "@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-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==",
+ "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",
+ "@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.7",
"resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.7.tgz",
@@ -5270,54 +5935,60 @@
"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/collections": {
+ "version": "3.12.0",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.0.tgz",
+ "integrity": "sha512-MfR9hwCxe5oXv4qrLUnjidwM50U35EFmInUeFf8i9mskYwWlRYS0O1/9PZ0oF1M0cKambaRHKEy98jczgb9ycA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@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/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==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.26.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.2.10",
+ "resolved": "https://registry.npmjs.org/@react-types/grid/-/grid-3.2.10.tgz",
+ "integrity": "sha512-Z5cG0ITwqjUE4kWyU5/7VqiPl4wqMJ7kG/ZP7poAnLmwRsR8Ai0ceVn+qzp5nTA19cgURi8t3LsXn3Ar1FBoog==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.26.0"
+ },
+ "peerDependencies": {
+ "react": "^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==",
+ "version": "3.11.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.11.1.tgz",
+ "integrity": "sha512-vuiBHw1kZruNMYeKkTGGnmPyMnM5T+gT8bz97H1FqIq1hQ6OPzmtBZ6W6l6OIMjeHI5oJo4utTwfZl495GALFQ==",
"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",
+ "@internationalized/date": "^3.5.4",
+ "@internationalized/message": "^3.1.4",
+ "@internationalized/number": "^3.5.3",
+ "@internationalized/string": "^3.2.3",
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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/i18n/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==",
- "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/i18n/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"node_modules/@react-aria/interactions": {
@@ -5367,148 +6038,55 @@
}
},
"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.8",
+ "resolved": "https://registry.npmjs.org/@react-aria/label/-/label-3.7.8.tgz",
+ "integrity": "sha512-MzgTm5+suPA3KX7Ug6ZBK2NX9cin/RFLsv1BdafJ6CZpmUSpWnGE/yQfYUB7csN7j31OsZrD3/P56eShYWAQfg==",
"license": "Apache-2.0",
"dependencies": {
- "@react-aria/utils": "^3.26.0",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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/label/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==",
- "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/label/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"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.7.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/link/-/link-3.7.1.tgz",
+ "integrity": "sha512-a4IaV50P3fXc7DQvEIPYkJJv26JknFbRzFT5MJOMgtzuhyJoQdILEUK6XHYjcSSNCA7uLgzpojArVk5Hz3lCpw==",
"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",
+ "@react-aria/focus": "^3.17.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/link": "^3.5.5",
+ "@react-types/shared": "^3.23.1",
"@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/link/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==",
- "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.26.0",
- "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.26.0.tgz",
- "integrity": "sha512-LkZouGSjjQ0rEqo4XJosS4L3YC/zzQkfRM3KoqK6fUOmUJ9t0jQ09WjiF+uOoG9u+p30AVg3TrZRUWmoTS+koQ==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"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==",
+ "version": "3.12.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/listbox/-/listbox-3.12.1.tgz",
+ "integrity": "sha512-7JiUp0NGykbv/HgSpmTY1wqhuf/RmjFxs1HZcNaTv8A+DlzgJYc7yQqFjP3ZA/z5RvJFuuIxggIYmgIFjaRYdA==",
"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-aria/interactions": "^3.21.3",
+ "@react-aria/label": "^3.7.8",
+ "@react-aria/selection": "^3.18.1",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/collections": "^3.10.7",
+ "@react-stately/list": "^3.10.5",
+ "@react-types/listbox": "^3.4.9",
+ "@react-types/shared": "^3.23.1",
"@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/listbox/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==",
- "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/listbox/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"node_modules/@react-aria/live-announcer": {
@@ -5521,330 +6099,128 @@
}
},
"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.14.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/menu/-/menu-3.14.1.tgz",
+ "integrity": "sha512-BYliRb38uAzq05UOFcD5XkjA5foQoXRbcH3ZufBsc4kvh79BcP1PMW6KsXKGJ7dC/PJWUwCui6QL1kUg8PqMHA==",
"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.17.1",
+ "@react-aria/i18n": "^3.11.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/overlays": "^3.22.1",
+ "@react-aria/selection": "^3.18.1",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/collections": "^3.10.7",
+ "@react-stately/menu": "^3.7.1",
+ "@react-stately/tree": "^3.8.1",
+ "@react-types/button": "^3.9.4",
+ "@react-types/menu": "^3.9.9",
+ "@react-types/shared": "^3.23.1",
"@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/menu/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==",
- "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/menu/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"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.22.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/overlays/-/overlays-3.22.1.tgz",
+ "integrity": "sha512-GHiFMWO4EQ6+j6b5QCnNoOYiyx1Gk8ZiwLzzglCI4q1NY5AG2EAmfU4Z1+Gtrf2S5Y0zHbumC7rs9GnPoGLUYg==",
"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.17.1",
+ "@react-aria/i18n": "^3.11.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/ssr": "^3.9.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-aria/visually-hidden": "^3.8.12",
+ "@react-stately/overlays": "^3.6.7",
+ "@react-types/button": "^3.9.4",
+ "@react-types/overlays": "^3.8.7",
+ "@react-types/shared": "^3.23.1",
"@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/overlays/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==",
- "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/overlays/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
- }
- },
- "node_modules/@react-aria/overlays/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/interactions": "^3.22.5",
- "@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"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"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.13",
+ "resolved": "https://registry.npmjs.org/@react-aria/progress/-/progress-3.4.13.tgz",
+ "integrity": "sha512-YBV9bOO5JzKvG8QCI0IAA00o6FczMgIDiK8Q9p5gKorFMatFUdRayxlbIPoYHMi+PguLil0jHgC7eOyaUcrZ0g==",
"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.11.1",
+ "@react-aria/label": "^3.7.8",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/progress": "^3.5.4",
+ "@react-types/shared": "^3.23.1",
"@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/progress/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==",
- "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/progress/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"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.10.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/radio/-/radio-3.10.4.tgz",
+ "integrity": "sha512-3fmoMcQtCpgjTwJReFjnvIE/C7zOZeCeWUn4JKDqz9s1ILYsC3Rk5zZ4q66tFn6v+IQnecrKT52wH6+hlVLwTA==",
"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.17.1",
+ "@react-aria/form": "^3.0.5",
+ "@react-aria/i18n": "^3.11.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/label": "^3.7.8",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/radio": "^3.10.4",
+ "@react-types/radio": "^3.8.1",
+ "@react-types/shared": "^3.23.1",
"@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/radio/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==",
- "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/radio/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"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.18.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.18.1.tgz",
+ "integrity": "sha512-GSqN2jX6lh7v+ldqhVjAXDcrWS3N4IsKXxO6L6Ygsye86Q9q9Mq9twWDWWu5IjHD6LoVZLUBCMO+ENGbOkyqeQ==",
"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.17.1",
+ "@react-aria/i18n": "^3.11.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/selection": "^3.15.1",
+ "@react-types/shared": "^3.23.1",
"@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/selection/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==",
- "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/selection/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"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.8",
+ "resolved": "https://registry.npmjs.org/@react-aria/slider/-/slider-3.7.8.tgz",
+ "integrity": "sha512-MYvPcM0K8jxEJJicUK2+WxUkBIM/mquBxOTOSSIL3CszA80nXIGVnLlCUnQV3LOUzpWtabbWaZokSPtGgOgQOw==",
"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",
+ "@react-aria/focus": "^3.17.1",
+ "@react-aria/i18n": "^3.11.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/label": "^3.7.8",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/slider": "^3.5.4",
+ "@react-types/shared": "^3.23.1",
+ "@react-types/slider": "^3.7.3",
"@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/slider/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==",
- "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/slider/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"node_modules/@react-aria/spinbutton": {
@@ -5865,6 +6241,25 @@
"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.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.12.4.tgz",
+ "integrity": "sha512-j9+UL3q0Ls8MhXV9gtnKlyozq4aM95YywXqnmJtzT1rYeBx7w28hooqrWkCYLfqr4OIryv1KUnPiCSLwC2OC7w==",
+ "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",
+ "@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-aria/ssr": {
"version": "3.9.7",
"resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.7.tgz",
@@ -5911,194 +6306,86 @@
}
},
"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.6.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/switch/-/switch-3.6.4.tgz",
+ "integrity": "sha512-2nVqz4ZuJyof47IpGSt3oZRmp+EdS8wzeDYgf42WHQXrx4uEOk1mdLJ20+NnsYhj/2NHZsvXVrjBeKMjlMs+0w==",
"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.10.4",
+ "@react-stately/toggle": "^3.7.4",
+ "@react-types/switch": "^3.5.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"
}
},
"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.14.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/table/-/table-3.14.1.tgz",
+ "integrity": "sha512-WaPgQe4zQF5OaluO5rm+Y2nEoFR63vsLd4BT4yjK1uaFhKhDY2Zk+1SCVQvBLLKS4WK9dhP05nrNzT0vp/ZPOw==",
"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.17.1",
+ "@react-aria/grid": "^3.9.1",
+ "@react-aria/i18n": "^3.11.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/live-announcer": "^3.3.4",
+ "@react-aria/utils": "^3.24.1",
+ "@react-aria/visually-hidden": "^3.8.12",
+ "@react-stately/collections": "^3.10.7",
+ "@react-stately/flags": "^3.0.3",
+ "@react-stately/table": "^3.11.8",
+ "@react-stately/virtualizer": "^3.7.1",
+ "@react-types/checkbox": "^3.8.1",
+ "@react-types/grid": "^3.2.6",
+ "@react-types/shared": "^3.23.1",
+ "@react-types/table": "^3.9.5",
"@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/table/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==",
- "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/table/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
- }
- },
- "node_modules/@react-aria/table/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/interactions": "^3.22.5",
- "@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"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"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.9.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/tabs/-/tabs-3.9.1.tgz",
+ "integrity": "sha512-S5v/0sRcOaSXaJYZuuy1ZVzYc7JD4sDyseG1133GjyuNjJOFHgoWMb+b4uxNIJbZxnLgynn/ZDBZSO+qU+fIxw==",
"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.17.1",
+ "@react-aria/i18n": "^3.11.1",
+ "@react-aria/selection": "^3.18.1",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/tabs": "^3.6.6",
+ "@react-types/shared": "^3.23.1",
+ "@react-types/tabs": "^3.3.7",
"@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/tabs/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==",
- "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/tabs/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
}
},
"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.14.5",
+ "resolved": "https://registry.npmjs.org/@react-aria/textfield/-/textfield-3.14.5.tgz",
+ "integrity": "sha512-hj7H+66BjB1iTKKaFXwSZBZg88YT+wZboEXZ0DNdQB2ytzoz/g045wBItUuNi4ZjXI3P+0AOZznVMYadWBAmiA==",
"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/focus": "^3.17.1",
+ "@react-aria/form": "^3.0.5",
+ "@react-aria/label": "^3.7.8",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/form": "^3.0.3",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/shared": "^3.23.1",
+ "@react-types/textfield": "^3.9.3",
"@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/textfield/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==",
- "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/textfield/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"node_modules/@react-aria/toggle": {
@@ -6150,100 +6437,49 @@
"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-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==",
"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/toolbar/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==",
- "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/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
"@react-stately/utils": "^3.10.5",
+ "@react-types/checkbox": "^3.9.0",
"@react-types/shared": "^3.26.0",
- "@swc/helpers": "^0.5.0",
- "clsx": "^2.0.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-types/checkbox": {
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/@react-types/checkbox/-/checkbox-3.9.0.tgz",
+ "integrity": "sha512-9hbHx0Oo2Hp5a8nV8Q75LQR0DHtvOIJbFaeqESSopqmV9EZoYjtY/h0NS7cZetgahQgnqYWQi44XGooMDCsmxA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.26.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==",
+ "version": "3.7.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/tooltip/-/tooltip-3.7.4.tgz",
+ "integrity": "sha512-+XRx4HlLYqWY3fB8Z60bQi/rbWDIGlFUtXYbtoa1J+EyRWfhpvsYImP8qeeNO/vgjUtDy1j9oKa8p6App9mBMQ==",
"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/tooltip": "^3.5.0",
- "@react-types/shared": "^3.26.0",
- "@react-types/tooltip": "^3.4.13",
+ "@react-aria/focus": "^3.17.1",
+ "@react-aria/interactions": "^3.21.3",
+ "@react-aria/utils": "^3.24.1",
+ "@react-stately/tooltip": "^3.4.9",
+ "@react-types/shared": "^3.23.1",
+ "@react-types/tooltip": "^3.4.9",
"@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/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==",
- "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/tooltip/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"node_modules/@react-aria/utils": {
@@ -6276,87 +6512,87 @@
}
},
"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.5.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/calendar/-/calendar-3.5.1.tgz",
+ "integrity": "sha512-7l7QhqGUJ5AzWHfvZzbTe3J4t72Ht5BmhW4hlVI7flQXtfrmYkVtl3ZdytEZkkHmWGYZRW9b4IQTQGZxhtlElA==",
"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.5.4",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/calendar": "^3.4.6",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
"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.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/checkbox/-/checkbox-3.6.5.tgz",
+ "integrity": "sha512-IXV3f9k+LtmfQLE+DKIN41Q5QB/YBLDCB1YVx5PEdRp52S9+EACD5683rjVm8NVRDwjMi2SP6RnFRk7fVb5Azg==",
"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.0.3",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/checkbox": "^3.8.1",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
"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.10.7",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.10.7.tgz",
+ "integrity": "sha512-KRo5O2MWVL8n3aiqb+XR3vP6akmHLhLWYZEmPKjIv0ghQaEebBTrN3wiEjtd6dzllv0QqcWvDLM1LntNfJ2TsA==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
"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.8.4",
+ "resolved": "https://registry.npmjs.org/@react-stately/combobox/-/combobox-3.8.4.tgz",
+ "integrity": "sha512-iLVGvKRRz0TeJXZhZyK783hveHpYA6xovOSdzSD+WGYpiPXo1QrcrNoH3AE0Z2sHtorU+8nc0j58vh5PB+m2AA==",
"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.10.7",
+ "@react-stately/form": "^3.0.3",
+ "@react-stately/list": "^3.10.5",
+ "@react-stately/overlays": "^3.6.7",
+ "@react-stately/select": "^3.6.4",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/combobox": "^3.11.1",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
"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.9.4",
+ "resolved": "https://registry.npmjs.org/@react-stately/datepicker/-/datepicker-3.9.4.tgz",
+ "integrity": "sha512-yBdX01jn6gq4NIVvHIqdjBUPo+WN8Bujc4OnPw+ZnfA4jI0eIgq04pfZ84cp1LVXW0IB0VaCu1AlQ/kvtZjfGA==",
"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.5.4",
+ "@internationalized/string": "^3.2.3",
+ "@react-stately/form": "^3.0.3",
+ "@react-stately/overlays": "^3.6.7",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/datepicker": "^3.7.4",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
"node_modules/@react-stately/flags": {
@@ -6369,16 +6605,16 @@
}
},
"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.0.3",
+ "resolved": "https://registry.npmjs.org/@react-stately/form/-/form-3.0.3.tgz",
+ "integrity": "sha512-92YYBvlHEWUGUpXgIaQ48J50jU9XrxfjYIN8BTvvhBHdD63oWgm8DzQnyT/NIAMzdLnhkg7vP+fjG8LjHeyIAg==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
"node_modules/@react-stately/grid": {
@@ -6397,15 +6633,12 @@
"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.0",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.0.tgz",
+ "integrity": "sha512-MfR9hwCxe5oXv4qrLUnjidwM50U35EFmInUeFf8i9mskYwWlRYS0O1/9PZ0oF1M0cKambaRHKEy98jczgb9ycA==",
"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",
"@swc/helpers": "^0.5.0"
},
@@ -6413,21 +6646,49 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
- "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==",
+ "node_modules/@react-stately/grid/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==",
"license": "Apache-2.0",
"dependencies": {
- "@react-stately/overlays": "^3.6.12",
- "@react-types/menu": "^3.9.13",
- "@react-types/shared": "^3.26.0",
- "@swc/helpers": "^0.5.0"
+ "@react-types/shared": "^3.26.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.10.5",
+ "resolved": "https://registry.npmjs.org/@react-stately/list/-/list-3.10.5.tgz",
+ "integrity": "sha512-fV9plO+6QDHiewsYIhboxcDhF17GO95xepC5ki0bKXo44gr14g/LSo/BMmsaMnV+1BuGdBunB05bO4QOIaigXA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/collections": "^3.10.7",
+ "@react-stately/selection": "^3.15.1",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
+ "node_modules/@react-stately/menu": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/menu/-/menu-3.7.1.tgz",
+ "integrity": "sha512-mX1w9HHzt+xal1WIT2xGrTQsoLvDwuB2R1Er1MBABs//MsJzccycatcgV/J/28m6tO5M9iuFQQvLV+i1dCtodg==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/overlays": "^3.6.7",
+ "@react-types/menu": "^3.9.9",
+ "@react-types/shared": "^3.23.1",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
"node_modules/@react-stately/overlays": {
"version": "3.6.12",
"resolved": "https://registry.npmjs.org/@react-stately/overlays/-/overlays-3.6.12.tgz",
@@ -6443,19 +6704,19 @@
}
},
"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.4",
+ "resolved": "https://registry.npmjs.org/@react-stately/radio/-/radio-3.10.4.tgz",
+ "integrity": "sha512-kCIc7tAl4L7Hu4Wt9l2jaa+MzYmAJm0qmC8G8yPMbExpWbLRu6J8Un80GZu+JxvzgDlqDyrVvyv9zFifwH/NkQ==",
"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.0.3",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/radio": "^3.8.1",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
"node_modules/@react-stately/select": {
@@ -6475,6 +6736,60 @@
"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.0",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.0.tgz",
+ "integrity": "sha512-MfR9hwCxe5oXv4qrLUnjidwM50U35EFmInUeFf8i9mskYwWlRYS0O1/9PZ0oF1M0cKambaRHKEy98jczgb9ycA==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@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-stately/select/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==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@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-stately/select/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==",
+ "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",
+ "@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/select": {
+ "version": "3.9.8",
+ "resolved": "https://registry.npmjs.org/@react-types/select/-/select-3.9.8.tgz",
+ "integrity": "sha512-RGsYj2oFjXpLnfcvWMBQnkcDuKkwT43xwYWZGI214/gp/B64tJiIUgTM5wFTRAeGDX23EePkhCQF+9ctnqFd6g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-types/shared": "^3.26.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",
@@ -6490,99 +6805,111 @@
"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.0",
+ "resolved": "https://registry.npmjs.org/@react-stately/collections/-/collections-3.12.0.tgz",
+ "integrity": "sha512-MfR9hwCxe5oXv4qrLUnjidwM50U35EFmInUeFf8i9mskYwWlRYS0O1/9PZ0oF1M0cKambaRHKEy98jczgb9ycA==",
"license": "Apache-2.0",
"dependencies": {
- "@react-stately/utils": "^3.10.5",
"@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-stately/slider": {
+ "version": "3.5.4",
+ "resolved": "https://registry.npmjs.org/@react-stately/slider/-/slider-3.5.4.tgz",
+ "integrity": "sha512-Jsf7K17dr93lkNKL9ij8HUcoM1sPbq8TvmibD6DhrK9If2lje+OOL8y4n4qreUnfMT56HCAeS9wCO3fg3eMyrw==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/shared": "^3.23.1",
+ "@react-types/slider": "^3.7.3",
+ "@swc/helpers": "^0.5.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
+ }
+ },
"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.11.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/table/-/table-3.11.8.tgz",
+ "integrity": "sha512-EdyRW3lT1/kAVDp5FkEIi1BQ7tvmD2YgniGdLuW/l9LADo0T+oxZqruv60qpUS6sQap+59Riaxl91ClDxrJnpg==",
"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.10.7",
+ "@react-stately/flags": "^3.0.3",
+ "@react-stately/grid": "^3.8.7",
+ "@react-stately/selection": "^3.15.1",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/grid": "^3.2.6",
+ "@react-types/shared": "^3.23.1",
+ "@react-types/table": "^3.9.5",
"@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"
}
},
"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.6.6",
+ "resolved": "https://registry.npmjs.org/@react-stately/tabs/-/tabs-3.6.6.tgz",
+ "integrity": "sha512-sOLxorH2uqjAA+v1ppkMCc2YyjgqvSGeBDgtR/lyPSDd4CVMoTExszROX2dqG0c8il9RQvzFuufUtQWMY6PgSA==",
"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.10.5",
+ "@react-types/shared": "^3.23.1",
+ "@react-types/tabs": "^3.3.7",
"@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"
}
},
"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==",
+ "version": "3.7.4",
+ "resolved": "https://registry.npmjs.org/@react-stately/toggle/-/toggle-3.7.4.tgz",
+ "integrity": "sha512-CoYFe9WrhLkDP4HGDpJYQKwfiYCRBAeoBQHv+JWl5eyK61S8xSwoHsveYuEZ3bowx71zyCnNAqWRrmNOxJ4CKA==",
"license": "Apache-2.0",
"dependencies": {
- "@react-stately/utils": "^3.10.5",
- "@react-types/checkbox": "^3.9.0",
- "@react-types/shared": "^3.26.0",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/checkbox": "^3.8.1",
"@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"
}
},
"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.4.9",
+ "resolved": "https://registry.npmjs.org/@react-stately/tooltip/-/tooltip-3.4.9.tgz",
+ "integrity": "sha512-P7CDJsdoKarz32qFwf3VNS01lyC+63gXpDZG31pUu+EO5BeQd4WKN/AH1Beuswpr4GWzxzFc1aXQgERFGVzraA==",
"license": "Apache-2.0",
"dependencies": {
- "@react-stately/overlays": "^3.6.12",
- "@react-types/tooltip": "^3.4.13",
+ "@react-stately/overlays": "^3.6.7",
+ "@react-types/tooltip": "^3.4.9",
"@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"
}
},
"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.8.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/tree/-/tree-3.8.1.tgz",
+ "integrity": "sha512-LOdkkruJWch3W89h4B/bXhfr0t0t1aRfEp+IMrrwdRAl23NaPqwl5ILHs4Xu5XDHqqhg8co73pHrJwUyiTWEjw==",
"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.10.7",
+ "@react-stately/selection": "^3.15.1",
+ "@react-stately/utils": "^3.10.1",
+ "@react-types/shared": "^3.23.1",
"@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"
}
},
"node_modules/@react-stately/utils": {
@@ -6598,73 +6925,42 @@
}
},
"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": "3.7.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/virtualizer/-/virtualizer-3.7.1.tgz",
+ "integrity": "sha512-voHgE6EQ+oZaLv6u2umKxakvIKNkCQuUihqKACTjdslp7SJh4Mvs3oLBI0hf0JOh+rCcFIKDvQtFwy1fXFRYBA==",
"license": "Apache-2.0",
"dependencies": {
- "@react-aria/utils": "^3.26.0",
- "@react-types/shared": "^3.26.0",
+ "@react-aria/utils": "^3.24.1",
+ "@react-types/shared": "^3.23.1",
"@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/virtualizer/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==",
- "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-stately/virtualizer/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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-aria/ssr": "^3.9.7",
- "@react-stately/utils": "^3.10.5",
- "@react-types/shared": "^3.26.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"
}
},
"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.21",
+ "resolved": "https://registry.npmjs.org/@react-types/accordion/-/accordion-3.0.0-alpha.21.tgz",
+ "integrity": "sha512-cbE06jH/ZoI+1898xd7ocQ/A/Rtkz8wTJAVOYgc8VRY1SYNQ/XZTGH5T6dD6aERAmiDwL/kjD7xhsE80DyaEKA==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"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.5",
+ "resolved": "https://registry.npmjs.org/@react-types/breadcrumbs/-/breadcrumbs-3.7.5.tgz",
+ "integrity": "sha512-lV9IDYsMiu2TgdMIjEmsOE0YWwjb3jhUNK1DCZZfq6uWuiHLgyx2EncazJBUWSjHJ4ta32j7xTuXch+8Ai6u/A==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/link": "^3.5.9",
- "@react-types/shared": "^3.26.0"
+ "@react-types/link": "^3.5.5",
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"node_modules/@react-types/button": {
@@ -6680,55 +6976,55 @@
}
},
"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.4.6",
+ "resolved": "https://registry.npmjs.org/@react-types/calendar/-/calendar-3.4.6.tgz",
+ "integrity": "sha512-WSntZPwtvsIYWvBQRAPvuCn55UTJBZroTvX0vQvWykJRQnPAI20G1hMQ3dNsnAL+gLZUYxBXn66vphmjUuSYew==",
"license": "Apache-2.0",
"dependencies": {
- "@internationalized/date": "^3.6.0",
- "@react-types/shared": "^3.26.0"
+ "@internationalized/date": "^3.5.4",
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"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.8.1",
+ "resolved": "https://registry.npmjs.org/@react-types/checkbox/-/checkbox-3.8.1.tgz",
+ "integrity": "sha512-5/oVByPw4MbR/8QSdHCaalmyWC71H/QGgd4aduTJSaNi825o+v/hsN2/CH7Fq9atkLKsC8fvKD00Bj2VGaKriQ==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"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.11.1",
+ "resolved": "https://registry.npmjs.org/@react-types/combobox/-/combobox-3.11.1.tgz",
+ "integrity": "sha512-UNc3OHt5cUt5gCTHqhQIqhaWwKCpaNciD8R7eQazmHiA9fq8ROlV+7l3gdNgdhJbTf5Bu/V5ISnN7Y1xwL3zqQ==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"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.7.4",
+ "resolved": "https://registry.npmjs.org/@react-types/datepicker/-/datepicker-3.7.4.tgz",
+ "integrity": "sha512-ZfvgscvNzBJpYyVWg3nstJtA/VlWLwErwSkd1ivZYam859N30w8yH+4qoYLa6FzWLCFlrsRHyvtxlEM7lUAt5A==",
"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.5.4",
+ "@react-types/calendar": "^3.4.6",
+ "@react-types/overlays": "^3.8.7",
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"node_modules/@react-types/dialog": {
@@ -6744,40 +7040,28 @@
"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==",
- "license": "Apache-2.0",
- "dependencies": {
- "@react-types/shared": "^3.26.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.2.6",
+ "resolved": "https://registry.npmjs.org/@react-types/grid/-/grid-3.2.6.tgz",
+ "integrity": "sha512-XfHenL2jEBUYrhKiPdeM24mbLRXUn79wVzzMhrNYh24nBwhsPPpxF+gjFddT3Cy8dt6tRInfT6pMEu9nsXwaHw==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"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.5.5",
+ "resolved": "https://registry.npmjs.org/@react-types/link/-/link-3.5.5.tgz",
+ "integrity": "sha512-G6P5WagHDR87npN7sEuC5IIgL1GsoY4WFWKO4734i2CXRYx24G9P0Su3AX4GA3qpspz8sK1AWkaCzBMmvnunfw==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"node_modules/@react-types/listbox": {
@@ -6793,16 +7077,16 @@
}
},
"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.9.9",
+ "resolved": "https://registry.npmjs.org/@react-types/menu/-/menu-3.9.9.tgz",
+ "integrity": "sha512-FamUaPVs1Fxr4KOMI0YcR2rYZHoN7ypGtgiEiJ11v/tEPjPPGgeKDxii0McCrdOkjheatLN1yd2jmMwYj6hTDg==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/overlays": "^3.8.11",
- "@react-types/shared": "^3.26.0"
+ "@react-types/overlays": "^3.8.7",
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"node_modules/@react-types/overlays": {
@@ -6818,39 +7102,39 @@
}
},
"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.4",
+ "resolved": "https://registry.npmjs.org/@react-types/progress/-/progress-3.5.4.tgz",
+ "integrity": "sha512-JNc246sTjasPyx5Dp7/s0rp3Bz4qlu4LrZTulZlxWyb53WgBNL7axc26CCi+I20rWL9+c7JjhrRxnLl/1cLN5g==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"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.1",
+ "resolved": "https://registry.npmjs.org/@react-types/radio/-/radio-3.8.1.tgz",
+ "integrity": "sha512-bK0gio/qj1+0Ldu/3k/s9BaOZvnnRgvFtL3u5ky479+aLG5qf1CmYed3SKz8ErZ70JkpuCSrSwSCFf0t1IHovw==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"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.9.4",
+ "resolved": "https://registry.npmjs.org/@react-types/select/-/select-3.9.4.tgz",
+ "integrity": "sha512-xI7dnOW2st91fPPcv6hdtrTdcfetYiqZuuVPZ5TRobY7Q10/Zqqe/KqtOw1zFKUj9xqNJe4Ov3xP5GSdcO60Eg==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"node_modules/@react-types/shared": {
@@ -6887,53 +7171,53 @@
}
},
"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.9.5",
+ "resolved": "https://registry.npmjs.org/@react-types/table/-/table-3.9.5.tgz",
+ "integrity": "sha512-fgM2j9F/UR4Anmd28CueghCgBwOZoCVyN8fjaIFPd2MN4gCwUUfANwxLav65gZk4BpwUXGoQdsW+X50L3555mg==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/grid": "^3.2.10",
- "@react-types/shared": "^3.26.0"
+ "@react-types/grid": "^3.2.6",
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"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.7",
+ "resolved": "https://registry.npmjs.org/@react-types/tabs/-/tabs-3.3.7.tgz",
+ "integrity": "sha512-ZdLe5xOcFX6+/ni45Dl2jO0jFATpTnoSqj6kLIS/BYv8oh0n817OjJkLf+DS3CLfNjApJWrHqAk34xNh6nRnEg==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"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.9.3",
+ "resolved": "https://registry.npmjs.org/@react-types/textfield/-/textfield-3.9.3.tgz",
+ "integrity": "sha512-DoAY6cYOL0pJhgNGI1Rosni7g72GAt4OVr2ltEx2S9ARmFZ0DBvdhA9lL2nywcnKMf27PEJcKMXzXc10qaHsJw==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/shared": "^3.26.0"
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"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.9",
+ "resolved": "https://registry.npmjs.org/@react-types/tooltip/-/tooltip-3.4.9.tgz",
+ "integrity": "sha512-wZ+uF1+Zc43qG+cOJzioBmLUNjRa7ApdcT0LI1VvaYvH5GdfjzUJOorLX9V/vAci0XMJ50UZ+qsh79aUlw2yqg==",
"license": "Apache-2.0",
"dependencies": {
- "@react-types/overlays": "^3.8.11",
- "@react-types/shared": "^3.26.0"
+ "@react-types/overlays": "^3.8.7",
+ "@react-types/shared": "^3.23.1"
},
"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"
}
},
"node_modules/@rtsao/scc": {
@@ -6980,23 +7264,6 @@
"react-dom": ">=16.8"
}
},
- "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==",
- "license": "MIT",
- "dependencies": {
- "@tanstack/virtual-core": "3.11.2"
- },
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/tannerlinsley"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- }
- },
"node_modules/@tanstack/table-core": {
"version": "8.19.3",
"resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.19.3.tgz",
@@ -7009,16 +7276,6 @@
"url": "https://github.com/sponsors/tannerlinsley"
}
},
- "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==",
- "license": "MIT",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/tannerlinsley"
- }
- },
"node_modules/@ts-morph/common": {
"version": "0.19.0",
"resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.19.0.tgz",
@@ -8561,9 +8818,9 @@
}
},
"node_modules/compute-scroll-into-view": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.1.0.tgz",
- "integrity": "sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==",
+ "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==",
"license": "MIT"
},
"node_modules/concat-map": {
@@ -10613,16 +10870,6 @@
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
},
- "node_modules/input-otp": {
- "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/internal-slot": {
"version": "1.0.7",
"resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz",
@@ -10656,14 +10903,6 @@
"tslib": "^2.4.0"
}
},
- "node_modules/invariant": {
- "version": "2.2.4",
- "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
- "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
- "dependencies": {
- "loose-envify": "^1.0.0"
- }
- },
"node_modules/is-arguments": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
@@ -11466,8 +11705,7 @@
"node_modules/lodash.debounce": {
"version": "4.0.8",
"resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
- "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==",
- "dev": true
+ "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow=="
},
"node_modules/lodash.foreach": {
"version": "4.5.0",
@@ -12821,20 +13059,46 @@
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
},
- "node_modules/react-remove-scroll-bar": {
- "version": "2.3.6",
- "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz",
- "integrity": "sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==",
+ "node_modules/react-remove-scroll": {
+ "version": "2.6.2",
+ "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.6.2.tgz",
+ "integrity": "sha512-KmONPx5fnlXYJQqC62Q+lwIeAk64ws/cUw6omIumRzMRPqgnYqhSSti99nbj0Ry13bv7dF+BKn7NB+OqkdZGTw==",
+ "license": "MIT",
"dependencies": {
+ "react-remove-scroll-bar": "^2.3.7",
"react-style-singleton": "^2.2.1",
+ "tslib": "^2.1.0",
+ "use-callback-ref": "^1.3.3",
+ "use-sidecar": "^1.1.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/react-remove-scroll-bar": {
+ "version": "2.3.8",
+ "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz",
+ "integrity": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==",
+ "license": "MIT",
+ "dependencies": {
+ "react-style-singleton": "^2.2.2",
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "@types/react": "*",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
@@ -12857,20 +13121,20 @@
}
},
"node_modules/react-style-singleton": {
- "version": "2.2.1",
- "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz",
- "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==",
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.3.tgz",
+ "integrity": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==",
+ "license": "MIT",
"dependencies": {
"get-nonce": "^1.0.0",
- "invariant": "^2.2.4",
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "@types/react": "*",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
@@ -12879,9 +13143,9 @@
}
},
"node_modules/react-textarea-autosize": {
- "version": "8.5.6",
- "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.6.tgz",
- "integrity": "sha512-aT3ioKXMa8f6zHYGebhbdMD2L00tKeRX1zuVuDx9YQK/JLLRSaSxq3ugECEmUB9z2kvk6bFSIoRHLkkUv0RJiw==",
+ "version": "8.5.7",
+ "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.7.tgz",
+ "integrity": "sha512-2MqJ3p0Jh69yt9ktFIaZmORHXw4c4bxSIhCeWiFwmJ9EYKgLmuNII3e9c9b2UO+ijl4StnpZdqpxNIhTdHvqtQ==",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.20.13",
@@ -14294,9 +14558,10 @@
}
},
"node_modules/use-callback-ref": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.2.tgz",
- "integrity": "sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==",
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.3.tgz",
+ "integrity": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==",
+ "license": "MIT",
"dependencies": {
"tslib": "^2.0.0"
},
@@ -14304,8 +14569,8 @@
"node": ">=10"
},
"peerDependencies": {
- "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0",
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
+ "@types/react": "*",
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
diff --git a/ui/package.json b/ui/package.json
index 9e179fff08..f5c3d26969 100644
--- a/ui/package.json
+++ b/ui/package.json
@@ -1,7 +1,7 @@
{
"dependencies": {
"@hookform/resolvers": "^3.9.0",
- "@nextui-org/react": "^2.6.11",
+ "@nextui-org/react": "2.4.8",
"@nextui-org/system": "2.2.1",
"@nextui-org/theme": "2.2.5",
"@radix-ui/react-alert-dialog": "^1.1.1",
@@ -89,5 +89,8 @@
"format:write": "./node_modules/.bin/prettier --config .prettierrc.json --write ./app",
"prepare": "husky"
},
+ "overrides": {
+ "@react-types/shared": "3.26.0"
+ },
"version": "0.0.1"
}
diff --git a/ui/types/formSchemas.ts b/ui/types/formSchemas.ts
index 231c000106..76ec266c8f 100644
--- a/ui/types/formSchemas.ts
+++ b/ui/types/formSchemas.ts
@@ -6,7 +6,7 @@ export const addRoleFormSchema = z.object({
manage_account: z.boolean().default(false),
manage_billing: z.boolean().default(false),
manage_providers: z.boolean().default(false),
- manage_integrations: z.boolean().default(false),
+ // manage_integrations: z.boolean().default(false),
manage_scans: z.boolean().default(false),
unlimited_visibility: z.boolean().default(false),
groups: z.array(z.string()).optional(),
@@ -18,7 +18,7 @@ export const editRoleFormSchema = z.object({
manage_account: z.boolean().default(false),
manage_billing: z.boolean().default(false),
manage_providers: z.boolean().default(false),
- manage_integrations: z.boolean().default(false),
+ // manage_integrations: z.boolean().default(false),
manage_scans: z.boolean().default(false),
unlimited_visibility: z.boolean().default(false),
groups: z.array(z.string()).optional(),