}
onPress={onCancel}
>
+
{logbookContext.state.formMode.toString() !== FormMode.VIEW ? 'Cancel' : 'Close'}
{logbookContext.state.formMode.toString() !== FormMode.VIEW && (
}
+ isDisabled={logbookContext.state.isFormDisabled}
type="submit"
+ variant='primary'
>
+
Save
)}
diff --git a/client/src/components/pilots/Pilots.tsx b/client/src/components/pilots/Pilots.tsx
index 03bd22e..2bb9f3b 100644
--- a/client/src/components/pilots/Pilots.tsx
+++ b/client/src/components/pilots/Pilots.tsx
@@ -10,7 +10,7 @@ import { UserRole } from '../../enums/userRole';
import httpClient from '../../httpClient/httpClient'
import { ScreenSize } from '../../enums/screenSize';
import { useBreakpoints } from '../../hooks/useBreakpoints/UseBreakpoints';
-import { Alert, Button, Dropdown, DropdownItem, DropdownSection, Table, TableHeader, TableBody, TableColumn, TableRow, TableCell, DropdownTrigger, DropdownMenu } from '@heroui/react'
+import { Alert, Button, Dropdown, Table, TableHeader, TableBody, TableColumn, TableRow, TableCell } from '@heroui/react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { faEllipsisVertical, faPen, faEye, faTrash, faPlus } from '@fortawesome/free-solid-svg-icons'
@@ -133,38 +133,40 @@ const Pilots: React.FC
= () => {
case 'actions': {
return (
-
-
-
-
- onOpenClosePilotForm(FormMode.EDIT, pilot.id)}
- startContent={}
- >
- Edit
-
- onOpenClosePilotForm(FormMode.VIEW, pilot.id)}
- startContent={}
- >
- View
-
-
-
- onDeletePilot(pilot.id)}
- startContent={}
+
+
+
+
+ onOpenClosePilotForm(FormMode.EDIT, pilot.id)}
>
- Delete
-
-
-
+
+ Edit
+
+ onOpenClosePilotForm(FormMode.VIEW, pilot.id)}
+ >
+
+ View
+
+
+
+ onDeletePilot(pilot.id)}
+ >
+
+ Delete
+
+
+
+
)
}
diff --git a/client/src/components/tracksForm/TracksForm.tsx b/client/src/components/tracksForm/TracksForm.tsx
index ac1b514..cec3386 100644
--- a/client/src/components/tracksForm/TracksForm.tsx
+++ b/client/src/components/tracksForm/TracksForm.tsx
@@ -120,7 +120,7 @@ const TracksForm = () => {
return (
<>
-
+
onDeleteTrack(track.id, filename, index)}>
diff --git a/client/src/main.tsx b/client/src/main.tsx
index 0f3fea8..68d456c 100644
--- a/client/src/main.tsx
+++ b/client/src/main.tsx
@@ -5,7 +5,7 @@ import AppContextProvider from './context/appContext/AppContextProvider.tsx';
import LogbookContextProvider from './context/logbookContext/LogbookContextProvider.tsx'
import { BrowserRouter } from 'react-router-dom';
import { OidcProvider } from './auth/oidcConfig.ts';
-import './styles.css';
+import './globals.css';
ReactDOM.createRoot(document.getElementById('root')!).render(
diff --git a/client/src/styles.css b/client/src/styles.css
deleted file mode 100644
index a81fa50..0000000
--- a/client/src/styles.css
+++ /dev/null
@@ -1,15 +0,0 @@
-@import "tailwindcss";
-@plugin './hero.ts';
-/* Note: You may need to change the path to fit your project structure */
-@source '../../node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}';
-@custom-variant dark (&:is(.dark *));
-@plugin "@tailwindcss/typography";
-
-@theme inline {
- --color-primary: #000000;
-}
-
-
-
-
-
diff --git a/package-lock.json b/package-lock.json
index a40032c..50e2bd2 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -85,7 +85,8 @@
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.0",
- "@heroui/react": "^2.8.5",
+ "@heroui/react": "^3.0.0-beta.2",
+ "@heroui/styles": "^3.0.0-beta.2",
"@noahspan/noahspan-components": "^2.0.0-alpha-14",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.13",
@@ -96,8 +97,8 @@
"framer-motion": "^12.23.24",
"leaflet": "^1.9.4",
"oidc-spa": "^7.2.4",
- "react": "^19.1.1",
- "react-dom": "^19.1.1",
+ "react": "^19.2.0",
+ "react-dom": "^19.2.0",
"react-hook-form": "^7.51.4",
"react-leaflet": "^4",
"react-leaflet-kml": "^2.1.2",
@@ -161,6 +162,29 @@
"react": "^18.0.0 || ^19.0.0"
}
},
+ "client/node_modules/@heroui/react": {
+ "version": "3.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/@heroui/react/-/react-3.0.0-beta.2.tgz",
+ "integrity": "sha512-6LVtMZJIJ+1A27XilLPbKIdX/UUAj2pvjOCn0twrZiZOyRcEeDjHfjCTVuBNLjxERiLEbq6keTfMIdqZfjkfxQ==",
+ "dependencies": {
+ "@internationalized/date": "3.10.0",
+ "@radix-ui/react-avatar": "1.1.10",
+ "@radix-ui/react-slot": "1.2.3",
+ "@react-aria/ssr": "3.9.10",
+ "@react-aria/utils": "3.31.0",
+ "@react-types/shared": "3.32.1",
+ "clsx": "2.1.1",
+ "input-otp": "1.4.2",
+ "react-aria-components": "1.13.0",
+ "tailwind-merge": "3.3.1",
+ "tailwind-variants": "3.1.1"
+ },
+ "peerDependencies": {
+ "react": ">=19.0.0",
+ "react-dom": ">=19.0.0",
+ "tailwindcss": ">=4.0.0"
+ }
+ },
"client/node_modules/@noahspan/noahspan-components": {
"version": "2.0.0-alpha-14",
"resolved": "https://registry.npmjs.org/@noahspan/noahspan-components/-/noahspan-components-2.0.0-alpha-14.tgz",
@@ -226,6 +250,14 @@
"react": "^16.3 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
},
+ "client/node_modules/clsx": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
+ "engines": {
+ "node": ">=6"
+ }
+ },
"client/node_modules/daisyui": {
"version": "5.1.10",
"resolved": "https://registry.npmjs.org/daisyui/-/daisyui-5.1.10.tgz",
@@ -234,10 +266,19 @@
"url": "https://github.com/saadeghi/daisyui?sponsor=1"
}
},
+ "client/node_modules/input-otp": {
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/input-otp/-/input-otp-1.4.2.tgz",
+ "integrity": "sha512-l3jWwYNvrEa6NTCt7BECfCm48GvwuZzkoeG3gBL2w4CHeOXW3eKFmf9UNYkNfYc3mxMrthMnxjIE07MT0zLBQA==",
+ "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"
+ }
+ },
"client/node_modules/react": {
- "version": "19.1.1",
- "resolved": "https://registry.npmjs.org/react/-/react-19.1.1.tgz",
- "integrity": "sha512-w8nqGImo45dmMIfljjMwOGtbmC/mk4CMYhWIicdSflH91J9TyCyczcPFXJzrZ/ZXcgGRFeP6BU0BEJTw6tZdfQ==",
+ "version": "19.2.0",
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz",
+ "integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==",
"engines": {
"node": ">=0.10.0"
}
@@ -257,14 +298,14 @@
}
},
"client/node_modules/react-dom": {
- "version": "19.1.1",
- "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.1.1.tgz",
- "integrity": "sha512-Dlq/5LAZgF0Gaz6yiqZCf6VCcZs1ghAJyrsu84Q/GT0gV+mCxbfmKNoGRKBYMJ8IEdGPqu49YWXD02GCknEDkw==",
+ "version": "19.2.0",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz",
+ "integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==",
"dependencies": {
- "scheduler": "^0.26.0"
+ "scheduler": "^0.27.0"
},
"peerDependencies": {
- "react": "^19.1.1"
+ "react": "^19.2.0"
}
},
"node_modules/@alloc/quick-lru": {
@@ -2541,1436 +2582,17 @@
"node": ">=6"
}
},
- "node_modules/@heroui/accordion": {
- "version": "2.2.24",
- "resolved": "https://registry.npmjs.org/@heroui/accordion/-/accordion-2.2.24.tgz",
- "integrity": "sha512-iVJVKKsGN4t3hn4Exwic6n5SOQOmmmsodSsCt0VUcs5VTHu9876sAC44xlEMpc9CP8pC1wQS3DzWl3mN6Z120g==",
+ "node_modules/@heroui/styles": {
+ "version": "3.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/@heroui/styles/-/styles-3.0.0-beta.2.tgz",
+ "integrity": "sha512-jbfwHLobBoJT+xL8MDCt6PvsZ3m7kYyH4iVTvMgLpyTOBCJbbW89YImCtWCt8hFgClzl1FoYoz2TXbLlIaiEJQ==",
"dependencies": {
- "@heroui/aria-utils": "2.2.24",
- "@heroui/divider": "2.2.20",
- "@heroui/dom-animation": "2.1.10",
- "@heroui/framer-utils": "2.1.23",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-aria-accordion": "2.2.18",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-stately/tree": "3.9.3",
- "@react-types/accordion": "3.0.0-alpha.26",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/alert": {
- "version": "2.2.27",
- "resolved": "https://registry.npmjs.org/@heroui/alert/-/alert-2.2.27.tgz",
- "integrity": "sha512-Y6oX9SV//tdhxhpgkSZvnjwdx7d8S7RAhgVlxCs2Hla//nCFC3yiMHIv8UotTryAGdOwZIsffmcna9vqbNL5vw==",
- "dependencies": {
- "@heroui/button": "2.2.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@react-stately/utils": "3.10.8"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.19",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/aria-utils": {
- "version": "2.2.24",
- "resolved": "https://registry.npmjs.org/@heroui/aria-utils/-/aria-utils-2.2.24.tgz",
- "integrity": "sha512-Y7FfQl2jvJr8JjpH+iuJElDwbn3eSWohuxHg6e5+xk5GcPYrEecgr0F/9qD6VU8IvVrRzJ00JzmT87lgA5iE3Q==",
- "dependencies": {
- "@heroui/system": "2.4.23",
- "@react-aria/utils": "3.31.0",
- "@react-stately/collections": "3.12.8",
- "@react-types/overlays": "3.9.2",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/autocomplete": {
- "version": "2.3.29",
- "resolved": "https://registry.npmjs.org/@heroui/autocomplete/-/autocomplete-2.3.29.tgz",
- "integrity": "sha512-BQkiWrrhPbNMFF1Hd60QDyG4iwD+sdsjWh0h7sw2XhcT6Bjw/6Hqpf4eHsTvPElW/554vPZVtChjugRY1N2zsw==",
- "dependencies": {
- "@heroui/aria-utils": "2.2.24",
- "@heroui/button": "2.2.27",
- "@heroui/form": "2.1.27",
- "@heroui/input": "2.4.28",
- "@heroui/listbox": "2.3.26",
- "@heroui/popover": "2.3.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/scroll-shadow": "2.3.18",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-safe-layout-effect": "2.1.8",
- "@react-aria/combobox": "3.14.0",
- "@react-aria/i18n": "3.12.13",
- "@react-stately/combobox": "3.12.0",
- "@react-types/combobox": "3.13.9",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/avatar": {
- "version": "2.2.22",
- "resolved": "https://registry.npmjs.org/@heroui/avatar/-/avatar-2.2.22.tgz",
- "integrity": "sha512-znmKdsrVj91Fg8+wm/HA/b8zi3iAg5g3MezliBfS2PmwgZcpBR6VtwgeeP6uN49+TR+faGIrck0Zxceuw4U0FQ==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-image": "2.1.13",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/badge": {
- "version": "2.2.17",
- "resolved": "https://registry.npmjs.org/@heroui/badge/-/badge-2.2.17.tgz",
- "integrity": "sha512-UNILRsAIJn+B6aWml+Rv2QCyYB7sadNqRPDPzNeVKJd8j3MNgZyyEHDwvqM2FWrgGccQIuWFaUgGdnPxRJpwwg==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/breadcrumbs": {
- "version": "2.2.22",
- "resolved": "https://registry.npmjs.org/@heroui/breadcrumbs/-/breadcrumbs-2.2.22.tgz",
- "integrity": "sha512-2fWfpbwhRPeC99Kuzu+DnzOYL4TOkDm9sznvSj0kIAbw/Rvl+D2/6fmBOaTRIUXfswWpHVRUCcNYczIAp0PkoA==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@react-aria/breadcrumbs": "3.5.29",
- "@react-aria/focus": "3.21.2",
- "@react-types/breadcrumbs": "3.7.17"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/button": {
- "version": "2.2.27",
- "resolved": "https://registry.npmjs.org/@heroui/button/-/button-2.2.27.tgz",
- "integrity": "sha512-Fxb8rtjPQm9T4GAtB1oW2QMUiQCtn7EtvO5AN41ANxAgmsNMM5wnLTkxQ05vNueCrp47kTDtSuyMhKU2llATHQ==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/ripple": "2.2.20",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/spinner": "2.2.24",
- "@heroui/use-aria-button": "2.2.20",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/calendar": {
- "version": "2.2.27",
- "resolved": "https://registry.npmjs.org/@heroui/calendar/-/calendar-2.2.27.tgz",
- "integrity": "sha512-VtyXQSoT9u9tC4HjBkJIaSSmhau1LwPUwvof0LjYDpBfTsJKqn+308wI3nAp75BTbAkK+vFM8LI0VfbALCwR4Q==",
- "dependencies": {
- "@heroui/button": "2.2.27",
- "@heroui/dom-animation": "2.1.10",
- "@heroui/framer-utils": "2.1.23",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-aria-button": "2.2.20",
- "@internationalized/date": "3.10.0",
- "@react-aria/calendar": "3.9.2",
- "@react-aria/focus": "3.21.2",
- "@react-aria/i18n": "3.12.13",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/visually-hidden": "3.8.28",
- "@react-stately/calendar": "3.9.0",
- "@react-stately/utils": "3.10.8",
- "@react-types/button": "3.14.1",
- "@react-types/calendar": "3.8.0",
- "@react-types/shared": "3.32.1",
- "scroll-into-view-if-needed": "3.0.10"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/card": {
- "version": "2.2.25",
- "resolved": "https://registry.npmjs.org/@heroui/card/-/card-2.2.25.tgz",
- "integrity": "sha512-dtd/G24zePIHPutRIxWC69IO3IGJs8X+zh9rBYM9cY5Q972D8Eet5WdWTfDBhw//fFIoagDAs5YcI9emGczGaQ==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/ripple": "2.2.20",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-aria-button": "2.2.20",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/checkbox": {
- "version": "2.3.27",
- "resolved": "https://registry.npmjs.org/@heroui/checkbox/-/checkbox-2.3.27.tgz",
- "integrity": "sha512-YC0deiB7EOzcpJtk9SdySugD1Z2TNtfyYee2voDBHrng7ZBRB+cmAvizXINHnaQGFi0yuVPrZ5ixR/wsvTNW+Q==",
- "dependencies": {
- "@heroui/form": "2.1.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-callback-ref": "2.1.8",
- "@heroui/use-safe-layout-effect": "2.1.8",
- "@react-aria/checkbox": "3.16.2",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-stately/checkbox": "3.7.2",
- "@react-stately/toggle": "3.9.2",
- "@react-types/checkbox": "3.10.2",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/chip": {
- "version": "2.2.22",
- "resolved": "https://registry.npmjs.org/@heroui/chip/-/chip-2.2.22.tgz",
- "integrity": "sha512-6O4Sv1chP+xxftp7E5gHUJIzo04ML9BW9N9jjxWCqT0Qtl+a/ZxnDalCyup6oraMiVLLHp+zEVX93C+3LONgkg==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/code": {
- "version": "2.2.21",
- "resolved": "https://registry.npmjs.org/@heroui/code/-/code-2.2.21.tgz",
- "integrity": "sha512-ExHcfTGr9tCbAaBOfMzTla8iHHfwIV5/xRk4WApeVmL4MiIlLMykc9bSi1c88ltaJInQGFAmE6MOFHXuGHxBXw==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/system-rsc": "2.3.20"
- },
- "peerDependencies": {
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/date-input": {
- "version": "2.3.27",
- "resolved": "https://registry.npmjs.org/@heroui/date-input/-/date-input-2.3.27.tgz",
- "integrity": "sha512-IxvZYezbR9jRxTWdsuHH47nsnB6RV1HPY7VwiJd9ZCy6P6oUV0Rx3cdwIRtUnyXbvz1G7+I22NL4C2Ku194l8A==",
- "dependencies": {
- "@heroui/form": "2.1.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@internationalized/date": "3.10.0",
- "@react-aria/datepicker": "3.15.2",
- "@react-aria/i18n": "3.12.13",
- "@react-stately/datepicker": "3.15.2",
- "@react-types/datepicker": "3.13.2",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/date-picker": {
- "version": "2.3.28",
- "resolved": "https://registry.npmjs.org/@heroui/date-picker/-/date-picker-2.3.28.tgz",
- "integrity": "sha512-duKvXijabpafxU04sItrozf982tXkUDymcT3SoEvW4LDg6bECgPI8bYNN49hlzkI8+zuwJdKzJ4hDmANGVaL8Q==",
- "dependencies": {
- "@heroui/aria-utils": "2.2.24",
- "@heroui/button": "2.2.27",
- "@heroui/calendar": "2.2.27",
- "@heroui/date-input": "2.3.27",
- "@heroui/form": "2.1.27",
- "@heroui/popover": "2.3.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@internationalized/date": "3.10.0",
- "@react-aria/datepicker": "3.15.2",
- "@react-aria/i18n": "3.12.13",
- "@react-stately/datepicker": "3.15.2",
- "@react-stately/utils": "3.10.8",
- "@react-types/datepicker": "3.13.2",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/divider": {
- "version": "2.2.20",
- "resolved": "https://registry.npmjs.org/@heroui/divider/-/divider-2.2.20.tgz",
- "integrity": "sha512-t+NNJ2e5okZraLKQoj+rS2l49IMy5AeXTixjsR+QRZ/WPrETNpMj4lw5cBSxG0i7WhRhlBa+KgqweUUezvCdAg==",
- "dependencies": {
- "@heroui/react-rsc-utils": "2.1.9",
- "@heroui/system-rsc": "2.3.20",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/dom-animation": {
- "version": "2.1.10",
- "resolved": "https://registry.npmjs.org/@heroui/dom-animation/-/dom-animation-2.1.10.tgz",
- "integrity": "sha512-dt+0xdVPbORwNvFT5pnqV2ULLlSgOJeqlg/DMo97s9RWeD6rD4VedNY90c8C9meqWqGegQYBQ9ztsfX32mGEPA==",
- "peerDependencies": {
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1"
- }
- },
- "node_modules/@heroui/drawer": {
- "version": "2.2.24",
- "resolved": "https://registry.npmjs.org/@heroui/drawer/-/drawer-2.2.24.tgz",
- "integrity": "sha512-gb51Lj9A8jlL1UvUrQ+MLS9tz+Qw+cdXwIJd39RXDkJwDmxqhzkz+WoOPZZwcOAHtATmwlTuxxlv6Cro59iswg==",
- "dependencies": {
- "@heroui/framer-utils": "2.1.23",
- "@heroui/modal": "2.2.24",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/dropdown": {
- "version": "2.3.27",
- "resolved": "https://registry.npmjs.org/@heroui/dropdown/-/dropdown-2.3.27.tgz",
- "integrity": "sha512-6aedMmxC+St5Ixz9o3s0ERkLOR6ZQE2uRccmRchPCEt7ZJU6TAeJo7fSpxIvdEUjFDe+pNhR2ojIocZEXtBZZg==",
- "dependencies": {
- "@heroui/aria-utils": "2.2.24",
- "@heroui/menu": "2.2.26",
- "@heroui/popover": "2.3.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@react-aria/focus": "3.21.2",
- "@react-aria/menu": "3.19.3",
- "@react-stately/menu": "3.9.8",
- "@react-types/menu": "3.10.5"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/form": {
- "version": "2.1.27",
- "resolved": "https://registry.npmjs.org/@heroui/form/-/form-2.1.27.tgz",
- "integrity": "sha512-vtaBqWhxppkJeWgbAZA/A1bRj6XIudBqJWSkoqYlejtLuvaxNwxQ2Z9u7ewxN96R6QqPrQwChlknIn0NgCWlXQ==",
- "dependencies": {
- "@heroui/shared-utils": "2.1.12",
- "@heroui/system": "2.4.23",
- "@heroui/theme": "2.4.23",
- "@react-stately/form": "3.2.2",
- "@react-types/form": "3.7.16",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18",
- "react-dom": ">=18"
- }
- },
- "node_modules/@heroui/framer-utils": {
- "version": "2.1.23",
- "resolved": "https://registry.npmjs.org/@heroui/framer-utils/-/framer-utils-2.1.23.tgz",
- "integrity": "sha512-crLLMjRmxs8/fysFv5gwghSGcDmYYkhNfAWh1rFzDy+FRPZN4f/bPH2rt85hdApmuHbWt0QCocqsrjHxLEzrAw==",
- "dependencies": {
- "@heroui/system": "2.4.23",
- "@heroui/use-measure": "2.1.8"
- },
- "peerDependencies": {
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/image": {
- "version": "2.2.17",
- "resolved": "https://registry.npmjs.org/@heroui/image/-/image-2.2.17.tgz",
- "integrity": "sha512-B/MrWafTsiCBFnRc0hPTLDBh7APjb/lRuQf18umuh20/1n6KiQXJ7XGSjnrHaA6HQcrtMGh6mDFZDaXq9rHuoA==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-image": "2.1.13"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/input": {
- "version": "2.4.28",
- "resolved": "https://registry.npmjs.org/@heroui/input/-/input-2.4.28.tgz",
- "integrity": "sha512-uaBubg814YOlVvX13yCAMqsR9HC4jg+asQdukbOvOnFtHY/d53her1BDdXhR9tMcrRTdYWQ3FoHqWbpvd5X4OQ==",
- "dependencies": {
- "@heroui/form": "2.1.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-safe-layout-effect": "2.1.8",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/textfield": "3.18.2",
- "@react-stately/utils": "3.10.8",
- "@react-types/shared": "3.32.1",
- "@react-types/textfield": "3.12.6",
- "react-textarea-autosize": "^8.5.3"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.19",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/input-otp": {
- "version": "2.1.27",
- "resolved": "https://registry.npmjs.org/@heroui/input-otp/-/input-otp-2.1.27.tgz",
- "integrity": "sha512-VUzQ1u6/0okE0eqDx/2I/8zpGItSsn7Zml01IVwGM4wY2iJeQA+uRjfP+B1ff9jO/y8n582YU4uv/ZSOmmEQ7A==",
- "dependencies": {
- "@heroui/form": "2.1.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-form-reset": "2.0.1",
- "@react-aria/focus": "3.21.2",
- "@react-aria/form": "3.1.2",
- "@react-stately/form": "3.2.2",
- "@react-stately/utils": "3.10.8",
- "@react-types/textfield": "3.12.6",
- "input-otp": "1.4.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18",
- "react-dom": ">=18"
- }
- },
- "node_modules/@heroui/kbd": {
- "version": "2.2.22",
- "resolved": "https://registry.npmjs.org/@heroui/kbd/-/kbd-2.2.22.tgz",
- "integrity": "sha512-PKhgwGB7i53kBuqB1YdFZsg7H9fJ8YESMRRPwRRyPSz5feMdwGidyXs+/ix7lrlYp4mlC3wtPp7L79SEyPCpBA==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/system-rsc": "2.3.20"
- },
- "peerDependencies": {
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/link": {
- "version": "2.2.23",
- "resolved": "https://registry.npmjs.org/@heroui/link/-/link-2.2.23.tgz",
- "integrity": "sha512-lObtPRLy8ModlTvJiKhczuAV/CIt31hde6xPGFYRpPsaQN1b7RgQMmai5/Iv/M8WrzFmFZRpgW75RKYIB6hHVQ==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-aria-link": "2.2.21",
- "@react-aria/focus": "3.21.2",
- "@react-types/link": "3.6.5"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/listbox": {
- "version": "2.3.26",
- "resolved": "https://registry.npmjs.org/@heroui/listbox/-/listbox-2.3.26.tgz",
- "integrity": "sha512-/k3k+xyl2d+aFfT02h+/0njhsDX8vJDEkPK+dl9ETYI9Oz3L+xbHN9yIzuWjBXYkNGlQCjQ46N+0jWjhP5B4pA==",
- "dependencies": {
- "@heroui/aria-utils": "2.2.24",
- "@heroui/divider": "2.2.20",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-is-mobile": "2.2.12",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/listbox": "3.15.0",
- "@react-stately/list": "3.13.1",
- "@react-types/shared": "3.32.1",
- "@tanstack/react-virtual": "3.11.3"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/menu": {
- "version": "2.2.26",
- "resolved": "https://registry.npmjs.org/@heroui/menu/-/menu-2.2.26.tgz",
- "integrity": "sha512-raR5pXgEqizKD9GsWS1yKqTm4RPWMrSQlqXLE2zNMQk0TkDqmPVw1z5griMqu2Zt9Vf2Ectf55vh4c0DNOUGlg==",
- "dependencies": {
- "@heroui/aria-utils": "2.2.24",
- "@heroui/divider": "2.2.20",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-is-mobile": "2.2.12",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/menu": "3.19.3",
- "@react-stately/tree": "3.9.3",
- "@react-types/menu": "3.10.5",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/modal": {
- "version": "2.2.24",
- "resolved": "https://registry.npmjs.org/@heroui/modal/-/modal-2.2.24.tgz",
- "integrity": "sha512-ISbgorNqgps9iUvQdgANxprdN+6H3Sx9TrGKpuW798qjc2f0T4rTbjrEfFPT8tFx6XYF4P5j7T7m3zoKcortHQ==",
- "dependencies": {
- "@heroui/dom-animation": "2.1.10",
- "@heroui/framer-utils": "2.1.23",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-aria-button": "2.2.20",
- "@heroui/use-aria-modal-overlay": "2.2.19",
- "@heroui/use-disclosure": "2.2.17",
- "@heroui/use-draggable": "2.1.18",
- "@heroui/use-viewport-size": "2.0.1",
- "@react-aria/dialog": "3.5.31",
- "@react-aria/focus": "3.21.2",
- "@react-aria/overlays": "3.30.0",
- "@react-stately/overlays": "3.6.20"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/navbar": {
- "version": "2.2.25",
- "resolved": "https://registry.npmjs.org/@heroui/navbar/-/navbar-2.2.25.tgz",
- "integrity": "sha512-5fNIMDpX2htDTMb/Xgv81qw/FuNWb+0Wpfc6rkFtNYd968I7G6Kjm782QB8WQjZ8DsMugcLEYUN4lpbJHRSdwg==",
- "dependencies": {
- "@heroui/dom-animation": "2.1.10",
- "@heroui/framer-utils": "2.1.23",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-resize": "2.1.8",
- "@heroui/use-scroll-position": "2.1.8",
- "@react-aria/button": "3.14.2",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/overlays": "3.30.0",
- "@react-stately/toggle": "3.9.2",
- "@react-stately/utils": "3.10.8"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/number-input": {
- "version": "2.0.18",
- "resolved": "https://registry.npmjs.org/@heroui/number-input/-/number-input-2.0.18.tgz",
- "integrity": "sha512-28v0/0FABs+yy3CcJimcr5uNlhaJSyKt1ENMSXfzPxdN2WgIs14+6NLMT+KV7ibcJl7kmqG0uc8vuIDLVrM5bQ==",
- "dependencies": {
- "@heroui/button": "2.2.27",
- "@heroui/form": "2.1.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-safe-layout-effect": "2.1.8",
- "@react-aria/focus": "3.21.2",
- "@react-aria/i18n": "3.12.13",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/numberfield": "3.12.2",
- "@react-stately/numberfield": "3.10.2",
- "@react-types/button": "3.14.1",
- "@react-types/numberfield": "3.8.15",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.19",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/pagination": {
- "version": "2.2.24",
- "resolved": "https://registry.npmjs.org/@heroui/pagination/-/pagination-2.2.24.tgz",
- "integrity": "sha512-5ObSJ1PzB9D1CjHV0MfDNzLR69vSYpx/rNQLBo/D4g5puaAR7kkGgw5ncf5eirhdKuy9y8VGAhjwhBxO4NUdpQ==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-intersection-observer": "2.2.14",
- "@heroui/use-pagination": "2.2.18",
- "@react-aria/focus": "3.21.2",
- "@react-aria/i18n": "3.12.13",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/utils": "3.31.0",
- "scroll-into-view-if-needed": "3.0.10"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/popover": {
- "version": "2.3.27",
- "resolved": "https://registry.npmjs.org/@heroui/popover/-/popover-2.3.27.tgz",
- "integrity": "sha512-PmSCKQcAvKIegK59Flr9cglbsEu7OAegQMtwNIjqWHsPT18NNphimmUSJrtuD78rcfKekrZ+Uo9qJEUf0zGZDw==",
- "dependencies": {
- "@heroui/aria-utils": "2.2.24",
- "@heroui/button": "2.2.27",
- "@heroui/dom-animation": "2.1.10",
- "@heroui/framer-utils": "2.1.23",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-aria-button": "2.2.20",
- "@heroui/use-aria-overlay": "2.0.4",
- "@heroui/use-safe-layout-effect": "2.1.8",
- "@react-aria/dialog": "3.5.31",
- "@react-aria/focus": "3.21.2",
- "@react-aria/overlays": "3.30.0",
- "@react-stately/overlays": "3.6.20",
- "@react-types/overlays": "3.9.2"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/progress": {
- "version": "2.2.22",
- "resolved": "https://registry.npmjs.org/@heroui/progress/-/progress-2.2.22.tgz",
- "integrity": "sha512-ch+iWEDo8d+Owz81vu4+Kj6CLfxi0nUlivQBhXeOzgU3VZbRmxJyW8S6l7wk6GyKJZxsCbYbjV1wPSjZhKJXCg==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-is-mounted": "2.1.8",
- "@react-aria/progress": "3.4.27",
- "@react-types/progress": "3.5.16"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/radio": {
- "version": "2.3.27",
- "resolved": "https://registry.npmjs.org/@heroui/radio/-/radio-2.3.27.tgz",
- "integrity": "sha512-kfDxzPR0u4++lZX2Gf6wbEe/hGbFnoXI4XLbe4e+ZDjGdBSakNuJlcDvWHVoDFZH1xXyOO9w/dHfZuE6O2VGLA==",
- "dependencies": {
- "@heroui/form": "2.1.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/radio": "3.12.2",
- "@react-aria/visually-hidden": "3.8.28",
- "@react-stately/radio": "3.11.2",
- "@react-types/radio": "3.9.2",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/react": {
- "version": "2.8.5",
- "resolved": "https://registry.npmjs.org/@heroui/react/-/react-2.8.5.tgz",
- "integrity": "sha512-cGiG0/DCPsYopa+zACFDmtx9LQDfY5KU58Tt82ELANhmKRyYAesAq9tSa01dG+MjOXUTUR6cxp5i5RmRn8rPYg==",
- "dependencies": {
- "@heroui/accordion": "2.2.24",
- "@heroui/alert": "2.2.27",
- "@heroui/autocomplete": "2.3.29",
- "@heroui/avatar": "2.2.22",
- "@heroui/badge": "2.2.17",
- "@heroui/breadcrumbs": "2.2.22",
- "@heroui/button": "2.2.27",
- "@heroui/calendar": "2.2.27",
- "@heroui/card": "2.2.25",
- "@heroui/checkbox": "2.3.27",
- "@heroui/chip": "2.2.22",
- "@heroui/code": "2.2.21",
- "@heroui/date-input": "2.3.27",
- "@heroui/date-picker": "2.3.28",
- "@heroui/divider": "2.2.20",
- "@heroui/drawer": "2.2.24",
- "@heroui/dropdown": "2.3.27",
- "@heroui/form": "2.1.27",
- "@heroui/framer-utils": "2.1.23",
- "@heroui/image": "2.2.17",
- "@heroui/input": "2.4.28",
- "@heroui/input-otp": "2.1.27",
- "@heroui/kbd": "2.2.22",
- "@heroui/link": "2.2.23",
- "@heroui/listbox": "2.3.26",
- "@heroui/menu": "2.2.26",
- "@heroui/modal": "2.2.24",
- "@heroui/navbar": "2.2.25",
- "@heroui/number-input": "2.0.18",
- "@heroui/pagination": "2.2.24",
- "@heroui/popover": "2.3.27",
- "@heroui/progress": "2.2.22",
- "@heroui/radio": "2.3.27",
- "@heroui/ripple": "2.2.20",
- "@heroui/scroll-shadow": "2.3.18",
- "@heroui/select": "2.4.28",
- "@heroui/skeleton": "2.2.17",
- "@heroui/slider": "2.4.24",
- "@heroui/snippet": "2.2.28",
- "@heroui/spacer": "2.2.21",
- "@heroui/spinner": "2.2.24",
- "@heroui/switch": "2.2.24",
- "@heroui/system": "2.4.23",
- "@heroui/table": "2.2.27",
- "@heroui/tabs": "2.2.24",
- "@heroui/theme": "2.4.23",
- "@heroui/toast": "2.0.17",
- "@heroui/tooltip": "2.2.24",
- "@heroui/user": "2.2.22",
- "@react-aria/visually-hidden": "3.8.28"
- },
- "peerDependencies": {
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/react-rsc-utils": {
- "version": "2.1.9",
- "resolved": "https://registry.npmjs.org/@heroui/react-rsc-utils/-/react-rsc-utils-2.1.9.tgz",
- "integrity": "sha512-e77OEjNCmQxE9/pnLDDb93qWkX58/CcgIqdNAczT/zUP+a48NxGq2A2WRimvc1uviwaNL2StriE2DmyZPyYW7Q==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/react-utils": {
- "version": "2.1.14",
- "resolved": "https://registry.npmjs.org/@heroui/react-utils/-/react-utils-2.1.14.tgz",
- "integrity": "sha512-hhKklYKy9sRH52C9A8P0jWQ79W4MkIvOnKBIuxEMHhigjfracy0o0lMnAUdEsJni4oZKVJYqNGdQl+UVgcmeDA==",
- "dependencies": {
- "@heroui/react-rsc-utils": "2.1.9",
- "@heroui/shared-utils": "2.1.12"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/ripple": {
- "version": "2.2.20",
- "resolved": "https://registry.npmjs.org/@heroui/ripple/-/ripple-2.2.20.tgz",
- "integrity": "sha512-3+fBx5jO7l8SE84ZG0vB5BOxKKr23Ay180AeIWcf8m8lhXXd4iShVz2S+keW9PewqVHv52YBaxLoSVQ93Ddcxw==",
- "dependencies": {
- "@heroui/dom-animation": "2.1.10",
- "@heroui/shared-utils": "2.1.12"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/scroll-shadow": {
- "version": "2.3.18",
- "resolved": "https://registry.npmjs.org/@heroui/scroll-shadow/-/scroll-shadow-2.3.18.tgz",
- "integrity": "sha512-P/nLQbFPOlbTLRjO2tKoZCljJtU7iq81wsp7C8wZ1rZI1RmkTx3UgLLeoFWgmAp3ZlUIYgaewTnejt6eRx+28w==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-data-scroll-overflow": "2.2.13"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/select": {
- "version": "2.4.28",
- "resolved": "https://registry.npmjs.org/@heroui/select/-/select-2.4.28.tgz",
- "integrity": "sha512-Dg3jv248Tu+g2WJMWseDjWA0FAG356elZIcE0OufVAIzQoWjLhgbkTqY9ths0HkcHy0nDwQWvyrrwkbif1kNqA==",
- "dependencies": {
- "@heroui/aria-utils": "2.2.24",
- "@heroui/form": "2.1.27",
- "@heroui/listbox": "2.3.26",
- "@heroui/popover": "2.3.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/scroll-shadow": "2.3.18",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/spinner": "2.2.24",
- "@heroui/use-aria-button": "2.2.20",
- "@heroui/use-aria-multiselect": "2.4.19",
- "@heroui/use-form-reset": "2.0.1",
- "@heroui/use-safe-layout-effect": "2.1.8",
- "@react-aria/focus": "3.21.2",
- "@react-aria/form": "3.1.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/overlays": "3.30.0",
- "@react-aria/visually-hidden": "3.8.28",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/shared-icons": {
- "version": "2.1.10",
- "resolved": "https://registry.npmjs.org/@heroui/shared-icons/-/shared-icons-2.1.10.tgz",
- "integrity": "sha512-ePo60GjEpM0SEyZBGOeySsLueNDCqLsVL79Fq+5BphzlrBAcaKY7kUp74964ImtkXvknTxAWzuuTr3kCRqj6jg==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/shared-utils": {
- "version": "2.1.12",
- "resolved": "https://registry.npmjs.org/@heroui/shared-utils/-/shared-utils-2.1.12.tgz",
- "integrity": "sha512-0iCnxVAkIPtrHQo26Qa5g0UTqMTpugTbClNOrEPsrQuyRAq7Syux998cPwGlneTfB5E5xcU3LiEdA9GUyeK2cQ==",
- "hasInstallScript": true
- },
- "node_modules/@heroui/skeleton": {
- "version": "2.2.17",
- "resolved": "https://registry.npmjs.org/@heroui/skeleton/-/skeleton-2.2.17.tgz",
- "integrity": "sha512-WDzwODs+jW+GgMr3oOdLtXXfv8ScXuuWgxN2iPWWyDBcQYXX2XCKGVjCpM5lSKf1UG4Yp3iXuqKzH1m+E+m7kg==",
- "dependencies": {
- "@heroui/shared-utils": "2.1.12"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/slider": {
- "version": "2.4.24",
- "resolved": "https://registry.npmjs.org/@heroui/slider/-/slider-2.4.24.tgz",
- "integrity": "sha512-GKdqFTCe9O8tT3HEZ/W4TEWkz7ADtUBzuOBXw779Oqqf02HNg9vSnISlNvI6G0ymYjY42EanwA+dChHbPBIVJw==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/tooltip": "2.2.24",
- "@react-aria/focus": "3.21.2",
- "@react-aria/i18n": "3.12.13",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/slider": "3.8.2",
- "@react-aria/visually-hidden": "3.8.28",
- "@react-stately/slider": "3.7.2"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.19",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/snippet": {
- "version": "2.2.28",
- "resolved": "https://registry.npmjs.org/@heroui/snippet/-/snippet-2.2.28.tgz",
- "integrity": "sha512-UfC/ZcYpmOutAcazxkizJWlhvqzr077szDyQ85thyUC5yhuRRLrsOHDIhyLWQrEKIcWw5+CaEGS2VLwAFlgfzw==",
- "dependencies": {
- "@heroui/button": "2.2.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/tooltip": "2.2.24",
- "@heroui/use-clipboard": "2.1.9",
- "@react-aria/focus": "3.21.2"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/spacer": {
- "version": "2.2.21",
- "resolved": "https://registry.npmjs.org/@heroui/spacer/-/spacer-2.2.21.tgz",
- "integrity": "sha512-WKD+BlgHfqJ8lrkkg/6cvzSWNsbRjzr24HpZnv6cDeWX95wVLTOco9HVR8ohwStMqwu5zYeUd1bw6yCDVTo53w==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/system-rsc": "2.3.20"
- },
- "peerDependencies": {
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/spinner": {
- "version": "2.2.24",
- "resolved": "https://registry.npmjs.org/@heroui/spinner/-/spinner-2.2.24.tgz",
- "integrity": "sha512-HfKkFffrIN9UdJY2UaenlB8xEwIzolCCFCwU0j3wVnLMX+Dw+ixwaELdAxX14Z6gPQYec6AROKetkWWit14rlw==",
- "dependencies": {
- "@heroui/shared-utils": "2.1.12",
- "@heroui/system": "2.4.23",
- "@heroui/system-rsc": "2.3.20"
- },
- "peerDependencies": {
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/switch": {
- "version": "2.2.24",
- "resolved": "https://registry.npmjs.org/@heroui/switch/-/switch-2.2.24.tgz",
- "integrity": "sha512-RbV+MECncBKsthX3D8r+CGoQRu8Q3AAYUEdm/7ody6+bMZFmBilm695yLiqziMI33Ct/WQ0WkpvrTClIcmxU/A==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-safe-layout-effect": "2.1.8",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/switch": "3.7.8",
- "@react-aria/visually-hidden": "3.8.28",
- "@react-stately/toggle": "3.9.2"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/system": {
- "version": "2.4.23",
- "resolved": "https://registry.npmjs.org/@heroui/system/-/system-2.4.23.tgz",
- "integrity": "sha512-kgYvfkIOQKM6CCBIlNSE2tXMtNrS1mvEUbvwnaU3pEYbMlceBtwA5v7SlpaJy/5dqKcTbfmVMUCmXnY/Kw4vaQ==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/system-rsc": "2.3.20",
- "@react-aria/i18n": "3.12.13",
- "@react-aria/overlays": "3.30.0",
- "@react-aria/utils": "3.31.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/@heroui/system-rsc": {
- "version": "2.3.20",
- "resolved": "https://registry.npmjs.org/@heroui/system-rsc/-/system-rsc-2.3.20.tgz",
- "integrity": "sha512-uZwQErEud/lAX7KRXEdsDcGLyygBffHcgnbCDrLvmTf3cyBE84YziG7AjM7Ts8ZcrF+wBXX4+a1IqnKGlsGEdQ==",
- "dependencies": {
- "@react-types/shared": "3.32.1",
- "clsx": "^1.2.1"
- },
- "peerDependencies": {
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/table": {
- "version": "2.2.27",
- "resolved": "https://registry.npmjs.org/@heroui/table/-/table-2.2.27.tgz",
- "integrity": "sha512-XFmbEgBzf89WH1VzmnwENxVzK4JrHV5jdlzyM3snNhk8uDSjfecnUY33qR62cpdZsKiCFFcYf7kQPkCnJGnD0Q==",
- "dependencies": {
- "@heroui/checkbox": "2.3.27",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/spacer": "2.2.21",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/table": "3.17.8",
- "@react-aria/visually-hidden": "3.8.28",
- "@react-stately/table": "3.15.1",
- "@react-stately/virtualizer": "4.4.4",
- "@react-types/grid": "3.3.6",
- "@react-types/table": "3.13.4",
- "@tanstack/react-virtual": "3.11.3"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/tabs": {
- "version": "2.2.24",
- "resolved": "https://registry.npmjs.org/@heroui/tabs/-/tabs-2.2.24.tgz",
- "integrity": "sha512-2SfxzAXe1t2Zz0v16kqkb7DR2wW86XoDwRUpLex6zhEN4/uT5ILeynxIVSUyAvVN3z95cnaQt0XPQBfUjAIQhQ==",
- "dependencies": {
- "@heroui/aria-utils": "2.2.24",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-is-mounted": "2.1.8",
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/tabs": "3.10.8",
- "@react-stately/tabs": "3.8.6",
- "@react-types/shared": "3.32.1",
- "scroll-into-view-if-needed": "3.0.10"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.22",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/theme": {
- "version": "2.4.23",
- "resolved": "https://registry.npmjs.org/@heroui/theme/-/theme-2.4.23.tgz",
- "integrity": "sha512-5hoaRWG+/d/t06p7Pfhz70DUP0Uggjids7/z2Ytgup4A8KAOvDIXxvHUDlk6rRHKiN1wDMNA5H+EWsSXB/m03Q==",
- "dependencies": {
- "@heroui/shared-utils": "2.1.12",
- "clsx": "^1.2.1",
- "color": "^4.2.3",
- "color2k": "^2.0.3",
- "deepmerge": "4.3.1",
- "flat": "^5.0.2",
- "tailwind-merge": "3.3.1",
- "tailwind-variants": "3.1.1"
+ "tw-animate-css": "1.4.0"
},
"peerDependencies": {
"tailwindcss": ">=4.0.0"
}
},
- "node_modules/@heroui/toast": {
- "version": "2.0.17",
- "resolved": "https://registry.npmjs.org/@heroui/toast/-/toast-2.0.17.tgz",
- "integrity": "sha512-w3TaA1DYLcwdDjpwf9xw5YSr+odo9GGHsObsrMmLEQDS0JQhmKyK5sQqXUzb9d27EC6KVwGjeVg0hUHYQBK2JA==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-icons": "2.1.10",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/spinner": "2.2.24",
- "@heroui/use-is-mobile": "2.2.12",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/toast": "3.0.8",
- "@react-stately/toast": "3.1.2"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/tooltip": {
- "version": "2.2.24",
- "resolved": "https://registry.npmjs.org/@heroui/tooltip/-/tooltip-2.2.24.tgz",
- "integrity": "sha512-H+0STFea2/Z4obDdk+ZPoDzJxJQHIWGSjnW/jieThJbJ5zow/qBfcg5DqzIdiC+FCJ4dDD5jEDZ4W4H/fQUKQA==",
- "dependencies": {
- "@heroui/aria-utils": "2.2.24",
- "@heroui/dom-animation": "2.1.10",
- "@heroui/framer-utils": "2.1.23",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@heroui/use-aria-overlay": "2.0.4",
- "@heroui/use-safe-layout-effect": "2.1.8",
- "@react-aria/overlays": "3.30.0",
- "@react-aria/tooltip": "3.8.8",
- "@react-stately/tooltip": "3.5.8",
- "@react-types/overlays": "3.9.2",
- "@react-types/tooltip": "3.4.21"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-aria-accordion": {
- "version": "2.2.18",
- "resolved": "https://registry.npmjs.org/@heroui/use-aria-accordion/-/use-aria-accordion-2.2.18.tgz",
- "integrity": "sha512-qjRkae2p4MFDrNqO6v6YCor0BtVi3idMd1dsI82XM16bxLQ2stqG4Ajrg60xV0AN+WKZUq10oetqkJuY6MYg0w==",
- "dependencies": {
- "@react-aria/button": "3.14.2",
- "@react-aria/focus": "3.21.2",
- "@react-aria/selection": "3.26.0",
- "@react-stately/tree": "3.9.3",
- "@react-types/accordion": "3.0.0-alpha.26",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-aria-button": {
- "version": "2.2.20",
- "resolved": "https://registry.npmjs.org/@heroui/use-aria-button/-/use-aria-button-2.2.20.tgz",
- "integrity": "sha512-Y0Bmze/pxEACKsHMbA1sYA3ghMJ+9fSnWvZBwlUxqiVXDEy2YrrK2JmXEgsuHGQdKD9RqU2Od3V4VqIIiaHiMA==",
- "dependencies": {
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/utils": "3.31.0",
- "@react-types/button": "3.14.1",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-aria-link": {
- "version": "2.2.21",
- "resolved": "https://registry.npmjs.org/@heroui/use-aria-link/-/use-aria-link-2.2.21.tgz",
- "integrity": "sha512-sG2rUutT/E/FYguzZmg715cXcM6+ue9wRfs2Gi6epWJwIVpS51uEagJKY0wIutJDfuCPfQ9AuxXfJek4CnxjKw==",
- "dependencies": {
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/utils": "3.31.0",
- "@react-types/link": "3.6.5",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-aria-modal-overlay": {
- "version": "2.2.19",
- "resolved": "https://registry.npmjs.org/@heroui/use-aria-modal-overlay/-/use-aria-modal-overlay-2.2.19.tgz",
- "integrity": "sha512-MPvszNrt+1DauiSyOAwb0pKbYahpEVi9hrmidnO8cd1SA7B2ES0fNRBeNMAwcaeR/Nzsv+Cw1hRXt3egwqi0lg==",
- "dependencies": {
- "@heroui/use-aria-overlay": "2.0.4",
- "@react-aria/overlays": "3.30.0",
- "@react-aria/utils": "3.31.0",
- "@react-stately/overlays": "3.6.20"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-aria-multiselect": {
- "version": "2.4.19",
- "resolved": "https://registry.npmjs.org/@heroui/use-aria-multiselect/-/use-aria-multiselect-2.4.19.tgz",
- "integrity": "sha512-RLDSpOLJqNESn6OK/zKuyTriK6sqMby76si/4kTMCs+4lmMPOyFKP3fREywu+zyJjRUCuZPa6xYuN2OHKQRDow==",
- "dependencies": {
- "@react-aria/i18n": "3.12.13",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/label": "3.7.22",
- "@react-aria/listbox": "3.15.0",
- "@react-aria/menu": "3.19.3",
- "@react-aria/selection": "3.26.0",
- "@react-aria/utils": "3.31.0",
- "@react-stately/form": "3.2.2",
- "@react-stately/list": "3.13.1",
- "@react-stately/menu": "3.9.8",
- "@react-types/button": "3.14.1",
- "@react-types/overlays": "3.9.2",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-aria-overlay": {
- "version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@heroui/use-aria-overlay/-/use-aria-overlay-2.0.4.tgz",
- "integrity": "sha512-iv+y0+OvQd1eWiZftPI07JE3c5AdK85W5k3rDlhk5MFEI3dllkIpu8z8zLh3ge/BQGFiGkySVC5iXl8w84gMUQ==",
- "dependencies": {
- "@react-aria/focus": "3.21.2",
- "@react-aria/interactions": "3.25.6",
- "@react-aria/overlays": "3.30.0",
- "@react-types/shared": "3.32.1"
- },
- "peerDependencies": {
- "react": ">=18",
- "react-dom": ">=18"
- }
- },
- "node_modules/@heroui/use-callback-ref": {
- "version": "2.1.8",
- "resolved": "https://registry.npmjs.org/@heroui/use-callback-ref/-/use-callback-ref-2.1.8.tgz",
- "integrity": "sha512-D1JDo9YyFAprYpLID97xxQvf86NvyWLay30BeVVZT9kWmar6O9MbCRc7ACi7Ngko60beonj6+amTWkTm7QuY/Q==",
- "dependencies": {
- "@heroui/use-safe-layout-effect": "2.1.8"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-clipboard": {
- "version": "2.1.9",
- "resolved": "https://registry.npmjs.org/@heroui/use-clipboard/-/use-clipboard-2.1.9.tgz",
- "integrity": "sha512-lkBq5RpXHiPvk1BXKJG8gMM0f7jRMIGnxAXDjAUzZyXKBuWLoM+XlaUWmZHtmkkjVFMX1L4vzA+vxi9rZbenEQ==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-data-scroll-overflow": {
- "version": "2.2.13",
- "resolved": "https://registry.npmjs.org/@heroui/use-data-scroll-overflow/-/use-data-scroll-overflow-2.2.13.tgz",
- "integrity": "sha512-zboLXO1pgYdzMUahDcVt5jf+l1jAQ/D9dFqr7AxWLfn6tn7/EgY0f6xIrgWDgJnM0U3hKxVeY13pAeB4AFTqTw==",
- "dependencies": {
- "@heroui/shared-utils": "2.1.12"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-disclosure": {
- "version": "2.2.17",
- "resolved": "https://registry.npmjs.org/@heroui/use-disclosure/-/use-disclosure-2.2.17.tgz",
- "integrity": "sha512-S3pN0WmpcTTZuQHcXw4RcTVsxLaCZ95H5qi/JPN83ahhWTCC+pN8lwE37vSahbMTM1YriiHyTM6AWpv/E3Jq7w==",
- "dependencies": {
- "@heroui/use-callback-ref": "2.1.8",
- "@react-aria/utils": "3.31.0",
- "@react-stately/utils": "3.10.8"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-draggable": {
- "version": "2.1.18",
- "resolved": "https://registry.npmjs.org/@heroui/use-draggable/-/use-draggable-2.1.18.tgz",
- "integrity": "sha512-ihQdmLGYJ6aTEaJ0/yCXYn6VRdrRV2eO03XD2A3KANZPb1Bj/n4r298xNMql5VnGq5ZNDJB9nTv8NNCu9pmPdg==",
- "dependencies": {
- "@react-aria/interactions": "3.25.6"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-form-reset": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@heroui/use-form-reset/-/use-form-reset-2.0.1.tgz",
- "integrity": "sha512-6slKWiLtVfgZnVeHVkM9eXgjwI07u0CUaLt2kQpfKPqTSTGfbHgCYJFduijtThhTdKBhdH6HCmzTcnbVlAxBXw==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-image": {
- "version": "2.1.13",
- "resolved": "https://registry.npmjs.org/@heroui/use-image/-/use-image-2.1.13.tgz",
- "integrity": "sha512-NLApz+xin2bKHEXr+eSrtB0lN8geKP5VOea5QGbOCiHq4DBXu4QctpRkSfCHGIQzWdBVaLPoV+5wd0lR2S2Egg==",
- "dependencies": {
- "@heroui/react-utils": "2.1.14",
- "@heroui/use-safe-layout-effect": "2.1.8"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-intersection-observer": {
- "version": "2.2.14",
- "resolved": "https://registry.npmjs.org/@heroui/use-intersection-observer/-/use-intersection-observer-2.2.14.tgz",
- "integrity": "sha512-qYJeMk4cTsF+xIckRctazCgWQ4BVOpJu+bhhkB1NrN+MItx19Lcb7ksOqMdN5AiSf85HzDcAEPIQ9w9RBlt5sg==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-is-mobile": {
- "version": "2.2.12",
- "resolved": "https://registry.npmjs.org/@heroui/use-is-mobile/-/use-is-mobile-2.2.12.tgz",
- "integrity": "sha512-2UKa4v1xbvFwerWKoMTrg4q9ZfP9MVIVfCl1a7JuKQlXq3jcyV6z1as5bZ41pCsTOT+wUVOFnlr6rzzQwT9ZOA==",
- "dependencies": {
- "@react-aria/ssr": "3.9.10"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-is-mounted": {
- "version": "2.1.8",
- "resolved": "https://registry.npmjs.org/@heroui/use-is-mounted/-/use-is-mounted-2.1.8.tgz",
- "integrity": "sha512-DO/Th1vD4Uy8KGhd17oGlNA4wtdg91dzga+VMpmt94gSZe1WjsangFwoUBxF2uhlzwensCX9voye3kerP/lskg==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-measure": {
- "version": "2.1.8",
- "resolved": "https://registry.npmjs.org/@heroui/use-measure/-/use-measure-2.1.8.tgz",
- "integrity": "sha512-GjT9tIgluqYMZWfAX6+FFdRQBqyHeuqUMGzAXMTH9kBXHU0U5C5XU2c8WFORkNDoZIg1h13h1QdV+Vy4LE1dEA==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-pagination": {
- "version": "2.2.18",
- "resolved": "https://registry.npmjs.org/@heroui/use-pagination/-/use-pagination-2.2.18.tgz",
- "integrity": "sha512-qm1mUe5UgV0kPZItcs/jiX/BxzdDagmcxaJkYR6DkhfMRoCuOdoJhcoh8ncbCAgHpzPESPn1VxsOcG4/Y+Jkdw==",
- "dependencies": {
- "@heroui/shared-utils": "2.1.12",
- "@react-aria/i18n": "3.12.13"
- },
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-resize": {
- "version": "2.1.8",
- "resolved": "https://registry.npmjs.org/@heroui/use-resize/-/use-resize-2.1.8.tgz",
- "integrity": "sha512-htF3DND5GmrSiMGnzRbISeKcH+BqhQ/NcsP9sBTIl7ewvFaWiDhEDiUHdJxflmJGd/c5qZq2nYQM/uluaqIkKA==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-safe-layout-effect": {
- "version": "2.1.8",
- "resolved": "https://registry.npmjs.org/@heroui/use-safe-layout-effect/-/use-safe-layout-effect-2.1.8.tgz",
- "integrity": "sha512-wbnZxVWCYqk10XRMu0veSOiVsEnLcmGUmJiapqgaz0fF8XcpSScmqjTSoWjHIEWaHjQZ6xr+oscD761D6QJN+Q==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-scroll-position": {
- "version": "2.1.8",
- "resolved": "https://registry.npmjs.org/@heroui/use-scroll-position/-/use-scroll-position-2.1.8.tgz",
- "integrity": "sha512-NxanHKObxVfWaPpNRyBR8v7RfokxrzcHyTyQfbgQgAGYGHTMaOGkJGqF8kBzInc3zJi+F0zbX7Nb0QjUgsLNUQ==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/use-viewport-size": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@heroui/use-viewport-size/-/use-viewport-size-2.0.1.tgz",
- "integrity": "sha512-blv8BEB/QdLePLWODPRzRS2eELJ2eyHbdOIADbL0KcfLzOUEg9EiuVk90hcSUDAFqYiJ3YZ5Z0up8sdPcR8Y7g==",
- "peerDependencies": {
- "react": ">=18 || >=19.0.0-rc.0"
- }
- },
- "node_modules/@heroui/user": {
- "version": "2.2.22",
- "resolved": "https://registry.npmjs.org/@heroui/user/-/user-2.2.22.tgz",
- "integrity": "sha512-kOLxh9Bjgl/ya/f+W7/eKVO/n1GPsU5TPzwocC9+FU/+MbCOrmkevhAGGUrb259KCnp9WCv7WGRIcf8rrsreDw==",
- "dependencies": {
- "@heroui/avatar": "2.2.22",
- "@heroui/react-utils": "2.1.14",
- "@heroui/shared-utils": "2.1.12",
- "@react-aria/focus": "3.21.2"
- },
- "peerDependencies": {
- "@heroui/system": ">=2.4.18",
- "@heroui/theme": ">=2.4.17",
- "react": ">=18 || >=19.0.0-rc.0",
- "react-dom": ">=18 || >=19.0.0-rc.0"
- }
- },
"node_modules/@humanwhocodes/config-array": {
"version": "0.13.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz",
@@ -5968,6 +4590,169 @@
"integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==",
"license": "BSD-3-Clause"
},
+ "node_modules/@radix-ui/react-avatar": {
+ "version": "1.1.10",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.1.10.tgz",
+ "integrity": "sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==",
+ "dependencies": {
+ "@radix-ui/react-context": "1.1.2",
+ "@radix-ui/react-primitive": "2.1.3",
+ "@radix-ui/react-use-callback-ref": "1.1.1",
+ "@radix-ui/react-use-is-hydrated": "0.1.0",
+ "@radix-ui/react-use-layout-effect": "1.1.1"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-compose-refs": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz",
+ "integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-context": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz",
+ "integrity": "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-primitive": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz",
+ "integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
+ "dependencies": {
+ "@radix-ui/react-slot": "1.2.3"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "@types/react-dom": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
+ "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ },
+ "@types/react-dom": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-slot": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
+ "integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
+ "dependencies": {
+ "@radix-ui/react-compose-refs": "1.1.2"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-callback-ref": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz",
+ "integrity": "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-is-hydrated": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-is-hydrated/-/react-use-is-hydrated-0.1.0.tgz",
+ "integrity": "sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==",
+ "dependencies": {
+ "use-sync-external-store": "^1.5.0"
+ },
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@radix-ui/react-use-layout-effect": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz",
+ "integrity": "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==",
+ "peerDependencies": {
+ "@types/react": "*",
+ "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/@react-aria/autocomplete": {
+ "version": "3.0.0-rc.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/autocomplete/-/autocomplete-3.0.0-rc.3.tgz",
+ "integrity": "sha512-vemf7h3hvIDk3MxiiPryysfYgJDg8R72X46dRIeg0+cXKYxjPYou64/DTucSV2z5J6RC5JalINu0jIDaLhEILw==",
+ "dependencies": {
+ "@react-aria/combobox": "^3.14.0",
+ "@react-aria/focus": "^3.21.2",
+ "@react-aria/i18n": "^3.12.13",
+ "@react-aria/interactions": "^3.25.6",
+ "@react-aria/listbox": "^3.15.0",
+ "@react-aria/searchfield": "^3.8.9",
+ "@react-aria/textfield": "^3.18.2",
+ "@react-aria/utils": "^3.31.0",
+ "@react-stately/autocomplete": "3.0.0-beta.3",
+ "@react-stately/combobox": "^3.12.0",
+ "@react-types/autocomplete": "3.0.0-alpha.35",
+ "@react-types/button": "^3.14.1",
+ "@react-types/shared": "^3.32.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/breadcrumbs": {
"version": "3.5.29",
"resolved": "https://registry.npmjs.org/@react-aria/breadcrumbs/-/breadcrumbs-3.5.29.tgz",
@@ -6046,6 +4831,47 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/collections": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/collections/-/collections-3.0.0.tgz",
+ "integrity": "sha512-vCFztpsl1AYjQn3lH7CwzYiiRAGfnm7+EXaXIt7yS4O6YC8C3FfOBf3jdxcFjE5u8CEfiL4X+4ABkfio10nneg==",
+ "dependencies": {
+ "@react-aria/interactions": "^3.25.6",
+ "@react-aria/ssr": "^3.9.10",
+ "@react-aria/utils": "^3.31.0",
+ "@react-types/shared": "^3.32.1",
+ "@swc/helpers": "^0.5.0",
+ "use-sync-external-store": "^1.4.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-aria/color": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/color/-/color-3.1.2.tgz",
+ "integrity": "sha512-jCC+Q7rAQGLQBkHjkPAeDuGYuMbc4neifjlNRiyZ9as1z4gg63H8MteoWYYk6K4vCKKxSixgt8MfI29XWMOWPQ==",
+ "dependencies": {
+ "@react-aria/i18n": "^3.12.13",
+ "@react-aria/interactions": "^3.25.6",
+ "@react-aria/numberfield": "^3.12.2",
+ "@react-aria/slider": "^3.8.2",
+ "@react-aria/spinbutton": "^3.6.19",
+ "@react-aria/textfield": "^3.18.2",
+ "@react-aria/utils": "^3.31.0",
+ "@react-aria/visually-hidden": "^3.8.28",
+ "@react-stately/color": "^3.9.2",
+ "@react-stately/form": "^3.2.2",
+ "@react-types/color": "^3.1.2",
+ "@react-types/shared": "^3.32.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": {
"version": "3.14.0",
"resolved": "https://registry.npmjs.org/@react-aria/combobox/-/combobox-3.14.0.tgz",
@@ -6119,6 +4945,44 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/disclosure": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/disclosure/-/disclosure-3.1.0.tgz",
+ "integrity": "sha512-5996BeBpnj+yKXYysz+UuhFQxGFPvaZZ3zNBd052wz/i+TVFVGSqqYJ6cwZyO1AfBR8zOT0ZIiK4EC3ETwSvtQ==",
+ "dependencies": {
+ "@react-aria/ssr": "^3.9.10",
+ "@react-aria/utils": "^3.31.0",
+ "@react-stately/disclosure": "^3.0.8",
+ "@react-types/button": "^3.14.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/dnd": {
+ "version": "3.11.3",
+ "resolved": "https://registry.npmjs.org/@react-aria/dnd/-/dnd-3.11.3.tgz",
+ "integrity": "sha512-MyTziciik1Owz3rqDghu0K3ZtTFvmj/R2ZsLDwbU9N4hKqGX/BKnrI8SytTn8RDqVv5LmA/GhApLngiupTAsXw==",
+ "dependencies": {
+ "@internationalized/string": "^3.2.7",
+ "@react-aria/i18n": "^3.12.13",
+ "@react-aria/interactions": "^3.25.6",
+ "@react-aria/live-announcer": "^3.4.4",
+ "@react-aria/overlays": "^3.30.0",
+ "@react-aria/utils": "^3.31.0",
+ "@react-stately/collections": "^3.12.8",
+ "@react-stately/dnd": "^3.7.1",
+ "@react-types/button": "^3.14.1",
+ "@react-types/shared": "^3.32.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/focus": {
"version": "3.21.2",
"resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.21.2.tgz",
@@ -6183,6 +5047,27 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/gridlist": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/@react-aria/gridlist/-/gridlist-3.14.1.tgz",
+ "integrity": "sha512-keS03Am07aOn7RuNaRsMOyh0jscyhDn95asCVy4lxhl9A9TFk1Jw0o2L6q6cWRj1gFiKeacj/otG5H8ZKQQ2Wg==",
+ "dependencies": {
+ "@react-aria/focus": "^3.21.2",
+ "@react-aria/grid": "^3.14.5",
+ "@react-aria/i18n": "^3.12.13",
+ "@react-aria/interactions": "^3.25.6",
+ "@react-aria/selection": "^3.26.0",
+ "@react-aria/utils": "^3.31.0",
+ "@react-stately/list": "^3.13.1",
+ "@react-stately/tree": "^3.9.3",
+ "@react-types/shared": "^3.32.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/i18n": {
"version": "3.12.13",
"resolved": "https://registry.npmjs.org/@react-aria/i18n/-/i18n-3.12.13.tgz",
@@ -6316,6 +5201,21 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/meter": {
+ "version": "3.4.27",
+ "resolved": "https://registry.npmjs.org/@react-aria/meter/-/meter-3.4.27.tgz",
+ "integrity": "sha512-andOOdJkgRJF9vBi5VWRmFodK+GT+5X1lLeNUmb4qOX8/MVfX/RbK72LDeIhd7xC7rSCFHj3WvZ198rK4q0k3w==",
+ "dependencies": {
+ "@react-aria/progress": "^3.4.27",
+ "@react-types/meter": "^3.4.13",
+ "@react-types/shared": "^3.32.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/numberfield": {
"version": "3.12.2",
"resolved": "https://registry.npmjs.org/@react-aria/numberfield/-/numberfield-3.12.2.tgz",
@@ -6398,6 +5298,50 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/searchfield": {
+ "version": "3.8.9",
+ "resolved": "https://registry.npmjs.org/@react-aria/searchfield/-/searchfield-3.8.9.tgz",
+ "integrity": "sha512-Yt2pj8Wb5/XsUr2T0DQqFv+DlFpzzWIWnNr9cJATUcWV/xw6ok7YFEg9+7EHtBmsCQxFFJtock1QfZzBw6qLtQ==",
+ "dependencies": {
+ "@react-aria/i18n": "^3.12.13",
+ "@react-aria/textfield": "^3.18.2",
+ "@react-aria/utils": "^3.31.0",
+ "@react-stately/searchfield": "^3.5.16",
+ "@react-types/button": "^3.14.1",
+ "@react-types/searchfield": "^3.6.6",
+ "@react-types/shared": "^3.32.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/select": {
+ "version": "3.17.0",
+ "resolved": "https://registry.npmjs.org/@react-aria/select/-/select-3.17.0.tgz",
+ "integrity": "sha512-q5ZuyAn5jSOeI0Ys99951TaGcF4O7u1SSBVxPMwVVXOU8ZhToCNx+WG3n/JDYHEjqdo7sbsVRaPA7LkBzBGf5w==",
+ "dependencies": {
+ "@react-aria/form": "^3.1.2",
+ "@react-aria/i18n": "^3.12.13",
+ "@react-aria/interactions": "^3.25.6",
+ "@react-aria/label": "^3.7.22",
+ "@react-aria/listbox": "^3.15.0",
+ "@react-aria/menu": "^3.19.3",
+ "@react-aria/selection": "^3.26.0",
+ "@react-aria/utils": "^3.31.0",
+ "@react-aria/visually-hidden": "^3.8.28",
+ "@react-stately/select": "^3.8.0",
+ "@react-types/button": "^3.14.1",
+ "@react-types/select": "^3.11.0",
+ "@react-types/shared": "^3.32.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": {
"version": "3.26.0",
"resolved": "https://registry.npmjs.org/@react-aria/selection/-/selection-3.26.0.tgz",
@@ -6416,6 +5360,20 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/separator": {
+ "version": "3.4.13",
+ "resolved": "https://registry.npmjs.org/@react-aria/separator/-/separator-3.4.13.tgz",
+ "integrity": "sha512-0NlcrdBfQbcjWEXdHl3+uSY1272n2ljT1gWL2RIf6aQsQWTZ0gz0rTgRHy0MTXN+y+tICItUERJT4vmTLtIzVg==",
+ "dependencies": {
+ "@react-aria/utils": "^3.31.0",
+ "@react-types/shared": "^3.32.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/slider": {
"version": "3.8.2",
"resolved": "https://registry.npmjs.org/@react-aria/slider/-/slider-3.8.2.tgz",
@@ -6527,6 +5485,27 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/tag": {
+ "version": "3.7.2",
+ "resolved": "https://registry.npmjs.org/@react-aria/tag/-/tag-3.7.2.tgz",
+ "integrity": "sha512-JV679P5r4DftbqyNBRt7Nw9mP7dxaKPfikjyQuvUoEOa06wBLbM/hU9RJUPRvqK+Un6lgBDAmXD9NNf4N2xpdw==",
+ "dependencies": {
+ "@react-aria/gridlist": "^3.14.1",
+ "@react-aria/i18n": "^3.12.13",
+ "@react-aria/interactions": "^3.25.6",
+ "@react-aria/label": "^3.7.22",
+ "@react-aria/selection": "^3.26.0",
+ "@react-aria/utils": "^3.31.0",
+ "@react-stately/list": "^3.13.1",
+ "@react-types/button": "^3.14.1",
+ "@react-types/shared": "^3.32.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/textfield": {
"version": "3.18.2",
"resolved": "https://registry.npmjs.org/@react-aria/textfield/-/textfield-3.18.2.tgz",
@@ -6616,6 +5595,25 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-aria/tree": {
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/@react-aria/tree/-/tree-3.1.4.tgz",
+ "integrity": "sha512-6pbFeN0dAsCOrFGUKU39CNjft20zCAjLfMqfkRWisL+JkUHI2nq6odUJF5jJTsU1C+1951+3oFOmVxPX+K+akQ==",
+ "dependencies": {
+ "@react-aria/gridlist": "^3.14.1",
+ "@react-aria/i18n": "^3.12.13",
+ "@react-aria/selection": "^3.26.0",
+ "@react-aria/utils": "^3.31.0",
+ "@react-stately/tree": "^3.9.3",
+ "@react-types/button": "^3.14.1",
+ "@react-types/shared": "^3.32.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/utils": {
"version": "3.31.0",
"resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.31.0.tgz",
@@ -6641,6 +5639,23 @@
"node": ">=6"
}
},
+ "node_modules/@react-aria/virtualizer": {
+ "version": "4.1.10",
+ "resolved": "https://registry.npmjs.org/@react-aria/virtualizer/-/virtualizer-4.1.10.tgz",
+ "integrity": "sha512-s0xOFh602ybTWuDrV/i6fV7Pz7vYghsY7F/RpYL/5IX9qCZ5C1FWFePpVktQAZghnd3ljH8hS8DULPeDfVLCrg==",
+ "dependencies": {
+ "@react-aria/i18n": "^3.12.13",
+ "@react-aria/interactions": "^3.25.6",
+ "@react-aria/utils": "^3.31.0",
+ "@react-stately/virtualizer": "^4.4.4",
+ "@react-types/shared": "^3.32.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/visually-hidden": {
"version": "3.8.28",
"resolved": "https://registry.npmjs.org/@react-aria/visually-hidden/-/visually-hidden-3.8.28.tgz",
@@ -6666,6 +5681,18 @@
"react-dom": "^18.0.0"
}
},
+ "node_modules/@react-stately/autocomplete": {
+ "version": "3.0.0-beta.3",
+ "resolved": "https://registry.npmjs.org/@react-stately/autocomplete/-/autocomplete-3.0.0-beta.3.tgz",
+ "integrity": "sha512-YfP/TrvkOCp6j7oqpZxJSvmSeXn+XtbKSOiBOuo+m2zCIhW2ncThmDB9uAUOkpmikDv/LkGKni40RQE8USdGdA==",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.8",
+ "@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/calendar": {
"version": "3.9.0",
"resolved": "https://registry.npmjs.org/@react-stately/calendar/-/calendar-3.9.0.tgz",
@@ -6708,6 +5735,25 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-stately/color": {
+ "version": "3.9.2",
+ "resolved": "https://registry.npmjs.org/@react-stately/color/-/color-3.9.2.tgz",
+ "integrity": "sha512-F+6Do8W3yu/4n7MpzZtbXwVukcLTFYYDIUtpoR+Jl52UmAr9Hf1CQgkyTI2azv1ZMzj1mVrTBhpBL0q27kFZig==",
+ "dependencies": {
+ "@internationalized/number": "^3.6.5",
+ "@internationalized/string": "^3.2.7",
+ "@react-stately/form": "^3.2.2",
+ "@react-stately/numberfield": "^3.10.2",
+ "@react-stately/slider": "^3.7.2",
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/color": "^3.1.2",
+ "@react-types/shared": "^3.32.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/combobox": {
"version": "3.12.0",
"resolved": "https://registry.npmjs.org/@react-stately/combobox/-/combobox-3.12.0.tgz",
@@ -6726,6 +5772,18 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-stately/data": {
+ "version": "3.14.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/data/-/data-3.14.1.tgz",
+ "integrity": "sha512-lDNc4gZ6kVZcrABeeQZPTTnP+1ykNylSvFzAC/Hq1fs8+s54xLRvoENWIyG+yK19N9TIGEoA0AOFG8PoAun43g==",
+ "dependencies": {
+ "@react-types/shared": "^3.32.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/datepicker": {
"version": "3.15.2",
"resolved": "https://registry.npmjs.org/@react-stately/datepicker/-/datepicker-3.15.2.tgz",
@@ -6744,6 +5802,32 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-stately/disclosure": {
+ "version": "3.0.8",
+ "resolved": "https://registry.npmjs.org/@react-stately/disclosure/-/disclosure-3.0.8.tgz",
+ "integrity": "sha512-/Ce/Z76y85eSBZiemfU/uEyXkBBa1RdfLRaKD13rnfUV7/nS3ae1VtNlsXgmwQjWv2pmAiSuEKYMbZfVL7q/lQ==",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/shared": "^3.32.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/dnd": {
+ "version": "3.7.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/dnd/-/dnd-3.7.1.tgz",
+ "integrity": "sha512-O1JBJ4HI1rVNKuoa5NXiC5FCrCEkr9KVBoKNlTZU8/cnQselhbEsUfMglAakO2EuwIaM1tIXoNF5J/N5P+6lTA==",
+ "dependencies": {
+ "@react-stately/selection": "^3.20.6",
+ "@react-types/shared": "^3.32.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/flags": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@react-stately/flags/-/flags-3.1.2.tgz",
@@ -6779,6 +5863,24 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-stately/layout": {
+ "version": "4.5.1",
+ "resolved": "https://registry.npmjs.org/@react-stately/layout/-/layout-4.5.1.tgz",
+ "integrity": "sha512-Zk92HM6a8KFdyPzslhLCOmrrsvJ28+vFBisgiKMwVhe96cWlax1m9i4ktmO43xaUpSZkn06DRD/2k0d1x+Uwjw==",
+ "dependencies": {
+ "@react-stately/collections": "^3.12.8",
+ "@react-stately/table": "^3.15.1",
+ "@react-stately/virtualizer": "^4.4.4",
+ "@react-types/grid": "^3.3.6",
+ "@react-types/shared": "^3.32.1",
+ "@react-types/table": "^3.13.4",
+ "@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-stately/list": {
"version": "3.13.1",
"resolved": "https://registry.npmjs.org/@react-stately/list/-/list-3.13.1.tgz",
@@ -6851,6 +5953,36 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-stately/searchfield": {
+ "version": "3.5.16",
+ "resolved": "https://registry.npmjs.org/@react-stately/searchfield/-/searchfield-3.5.16.tgz",
+ "integrity": "sha512-MRfqT1lZ24r94GuFNcGJXsfijZoWjSMySCT60T6NXtbOzVPuAF3K+pL70Rayq/EWLJjS2NPHND11VTs0VdcE0Q==",
+ "dependencies": {
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/searchfield": "^3.6.6",
+ "@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": {
+ "version": "3.8.0",
+ "resolved": "https://registry.npmjs.org/@react-stately/select/-/select-3.8.0.tgz",
+ "integrity": "sha512-A721nlt0DSCDit0wKvhcrXFTG5Vv1qkEVkeKvobmETZy6piKvwh0aaN8iQno5AFuZaj1iOZeNjZ/20TsDJR/4A==",
+ "dependencies": {
+ "@react-stately/form": "^3.2.2",
+ "@react-stately/list": "^3.13.1",
+ "@react-stately/overlays": "^3.6.20",
+ "@react-stately/utils": "^3.10.8",
+ "@react-types/select": "^3.11.0",
+ "@react-types/shared": "^3.32.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/selection": {
"version": "3.20.6",
"resolved": "https://registry.npmjs.org/@react-stately/selection/-/selection-3.20.6.tgz",
@@ -6990,12 +6122,14 @@
"react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
- "node_modules/@react-types/accordion": {
- "version": "3.0.0-alpha.26",
- "resolved": "https://registry.npmjs.org/@react-types/accordion/-/accordion-3.0.0-alpha.26.tgz",
- "integrity": "sha512-OXf/kXcD2vFlEnkcZy/GG+a/1xO9BN7Uh3/5/Ceuj9z2E/WwD55YwU3GFM5zzkZ4+DMkdowHnZX37XnmbyD3Mg==",
+ "node_modules/@react-types/autocomplete": {
+ "version": "3.0.0-alpha.35",
+ "resolved": "https://registry.npmjs.org/@react-types/autocomplete/-/autocomplete-3.0.0-alpha.35.tgz",
+ "integrity": "sha512-Wv5eU4WixfJ4M+fqvJUQqliWPbw7/VldRlgoJhqAlPwlNyLlHYwv5tlA64AySDXHGcSMIbzcS38LaHm44wt0AQ==",
"dependencies": {
- "@react-types/shared": "^3.27.0"
+ "@react-types/combobox": "^3.13.9",
+ "@react-types/searchfield": "^3.6.6",
+ "@react-types/shared": "^3.32.1"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
@@ -7047,6 +6181,18 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-types/color": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@react-types/color/-/color-3.1.2.tgz",
+ "integrity": "sha512-NP0TAY3j4tlMztOp/bBfMlPwC9AQKTjSiTFmc2oQNkx5M4sl3QpPqFPosdt7jZ8M4nItvfCWZrlZGjST4SB83A==",
+ "dependencies": {
+ "@react-types/shared": "^3.32.1",
+ "@react-types/slider": "^3.8.2"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-types/combobox": {
"version": "3.13.9",
"resolved": "https://registry.npmjs.org/@react-types/combobox/-/combobox-3.13.9.tgz",
@@ -7140,6 +6286,17 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-types/meter": {
+ "version": "3.4.13",
+ "resolved": "https://registry.npmjs.org/@react-types/meter/-/meter-3.4.13.tgz",
+ "integrity": "sha512-EiarfbpHcvmeyXvXcr6XLaHkNHuGc4g7fBVEiDPwssFJKKfbUzqnnknDxPjyspqUVRcXC08CokS98J1jYobqDg==",
+ "dependencies": {
+ "@react-types/progress": "^3.5.16"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-types/numberfield": {
"version": "3.8.15",
"resolved": "https://registry.npmjs.org/@react-types/numberfield/-/numberfield-3.8.15.tgz",
@@ -7184,6 +6341,29 @@
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
+ "node_modules/@react-types/searchfield": {
+ "version": "3.6.6",
+ "resolved": "https://registry.npmjs.org/@react-types/searchfield/-/searchfield-3.6.6.tgz",
+ "integrity": "sha512-cl3itr/fk7wbIQc2Gz5Ie8aVeUmPjVX/mRGS5/EXlmzycAKNYTvqf2mlxwObLndtLISmt7IgNjRRhbUUDI8Ang==",
+ "dependencies": {
+ "@react-types/shared": "^3.32.1",
+ "@react-types/textfield": "^3.12.6"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
+ "node_modules/@react-types/select": {
+ "version": "3.11.0",
+ "resolved": "https://registry.npmjs.org/@react-types/select/-/select-3.11.0.tgz",
+ "integrity": "sha512-SzIsMFVPCbXE1Z1TLfpdfiwJ1xnIkcL1/CjGilmUKkNk5uT7rYX1xCJqWCjXI0vAU1xM4Qn+T3n8de4fw6HRBg==",
+ "dependencies": {
+ "@react-types/shared": "^3.32.1"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/@react-types/shared": {
"version": "3.32.1",
"resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.32.1.tgz",
@@ -8232,22 +7412,6 @@
"react-dom": ">=16.8"
}
},
- "node_modules/@tanstack/react-virtual": {
- "version": "3.11.3",
- "resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.11.3.tgz",
- "integrity": "sha512-vCU+OTylXN3hdC8RKg68tPlBPjjxtzon7Ys46MgrSLE+JhSjSTPvoQifV6DQJeJmA8Q3KT6CphJbejupx85vFw==",
- "dependencies": {
- "@tanstack/virtual-core": "3.11.3"
- },
- "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.21.3",
"resolved": "https://registry.npmjs.org/@tanstack/table-core/-/table-core-8.21.3.tgz",
@@ -8260,15 +7424,6 @@
"url": "https://github.com/sponsors/tannerlinsley"
}
},
- "node_modules/@tanstack/virtual-core": {
- "version": "3.11.3",
- "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.11.3.tgz",
- "integrity": "sha512-v2mrNSnMwnPJtcVqNvV0c5roGCBqeogN8jDtgtuHCphdwBasOZ17x8UV8qpHUh+u0MLfX43c0uUHKje0s+Zb0w==",
- "funding": {
- "type": "github",
- "url": "https://github.com/sponsors/tannerlinsley"
- }
- },
"node_modules/@teppeis/multimaps": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@teppeis/multimaps/-/multimaps-3.0.0.tgz",
@@ -8710,7 +7865,7 @@
"version": "19.1.9",
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.9.tgz",
"integrity": "sha512-qXRuZaOsAdXKFyOhRBg6Lqqc0yay13vN7KrIg4L7N4aaHN68ma9OK3NE1BoDFgFOTfM7zg+3/8+2n8rLUH3OKQ==",
- "dev": true,
+ "devOptional": true,
"peerDependencies": {
"@types/react": "^19.0.0"
}
@@ -10439,6 +9594,11 @@
"resolved": "client",
"link": true
},
+ "node_modules/client-only": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
+ "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
+ },
"node_modules/cliui": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
@@ -10508,14 +9668,6 @@
"node": ">=0.8"
}
},
- "node_modules/clsx": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz",
- "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==",
- "engines": {
- "node": ">=6"
- }
- },
"node_modules/co": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
@@ -10534,18 +9686,6 @@
"dev": true,
"license": "MIT"
},
- "node_modules/color": {
- "version": "4.2.3",
- "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
- "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
- "dependencies": {
- "color-convert": "^2.0.1",
- "color-string": "^1.9.0"
- },
- "engines": {
- "node": ">=12.5.0"
- }
- },
"node_modules/color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
@@ -10564,20 +9704,6 @@
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"license": "MIT"
},
- "node_modules/color-string": {
- "version": "1.9.1",
- "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
- "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
- "dependencies": {
- "color-name": "^1.0.0",
- "simple-swizzle": "^0.2.2"
- }
- },
- "node_modules/color2k": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/color2k/-/color2k-2.0.3.tgz",
- "integrity": "sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog=="
- },
"node_modules/colorette": {
"version": "2.0.20",
"resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
@@ -10634,11 +9760,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/compute-scroll-into-view": {
- "version": "3.1.1",
- "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-3.1.1.tgz",
- "integrity": "sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw=="
- },
"node_modules/concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
@@ -10925,6 +10046,7 @@
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
"integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
+ "dev": true,
"license": "MIT",
"engines": {
"node": ">=0.10.0"
@@ -12110,14 +11232,6 @@
"url": "https://github.com/sponsors/sindresorhus"
}
},
- "node_modules/flat": {
- "version": "5.0.2",
- "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
- "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
- "bin": {
- "flat": "cli.js"
- }
- },
"node_modules/flat-cache": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
@@ -13051,15 +12165,6 @@
"node": ">=10"
}
},
- "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==",
- "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/inquirer": {
"version": "8.2.6",
"resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.6.tgz",
@@ -17451,6 +16556,99 @@
"node": ">=0.10.0"
}
},
+ "node_modules/react-aria": {
+ "version": "3.44.0",
+ "resolved": "https://registry.npmjs.org/react-aria/-/react-aria-3.44.0.tgz",
+ "integrity": "sha512-2Pq3GQxBgM4/2BlpKYXeaZ47a3tdIcYSW/AYvKgypE3XipxOdQMDG5Sr/NBn7zuJq+thzmtfRb0lB9bTbsmaRw==",
+ "dependencies": {
+ "@internationalized/string": "^3.2.7",
+ "@react-aria/breadcrumbs": "^3.5.29",
+ "@react-aria/button": "^3.14.2",
+ "@react-aria/calendar": "^3.9.2",
+ "@react-aria/checkbox": "^3.16.2",
+ "@react-aria/color": "^3.1.2",
+ "@react-aria/combobox": "^3.14.0",
+ "@react-aria/datepicker": "^3.15.2",
+ "@react-aria/dialog": "^3.5.31",
+ "@react-aria/disclosure": "^3.1.0",
+ "@react-aria/dnd": "^3.11.3",
+ "@react-aria/focus": "^3.21.2",
+ "@react-aria/gridlist": "^3.14.1",
+ "@react-aria/i18n": "^3.12.13",
+ "@react-aria/interactions": "^3.25.6",
+ "@react-aria/label": "^3.7.22",
+ "@react-aria/landmark": "^3.0.7",
+ "@react-aria/link": "^3.8.6",
+ "@react-aria/listbox": "^3.15.0",
+ "@react-aria/menu": "^3.19.3",
+ "@react-aria/meter": "^3.4.27",
+ "@react-aria/numberfield": "^3.12.2",
+ "@react-aria/overlays": "^3.30.0",
+ "@react-aria/progress": "^3.4.27",
+ "@react-aria/radio": "^3.12.2",
+ "@react-aria/searchfield": "^3.8.9",
+ "@react-aria/select": "^3.17.0",
+ "@react-aria/selection": "^3.26.0",
+ "@react-aria/separator": "^3.4.13",
+ "@react-aria/slider": "^3.8.2",
+ "@react-aria/ssr": "^3.9.10",
+ "@react-aria/switch": "^3.7.8",
+ "@react-aria/table": "^3.17.8",
+ "@react-aria/tabs": "^3.10.8",
+ "@react-aria/tag": "^3.7.2",
+ "@react-aria/textfield": "^3.18.2",
+ "@react-aria/toast": "^3.0.8",
+ "@react-aria/tooltip": "^3.8.8",
+ "@react-aria/tree": "^3.1.4",
+ "@react-aria/utils": "^3.31.0",
+ "@react-aria/visually-hidden": "^3.8.28",
+ "@react-types/shared": "^3.32.1"
+ },
+ "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-components": {
+ "version": "1.13.0",
+ "resolved": "https://registry.npmjs.org/react-aria-components/-/react-aria-components-1.13.0.tgz",
+ "integrity": "sha512-t1mm3AVy/MjUJBZ7zrb+sFC5iya8Vvw3go3mGKtTm269bXGZho7BLA4IgT+0nOS3j+ku6ChVi8NEoQVFoYzJJA==",
+ "dependencies": {
+ "@internationalized/date": "^3.10.0",
+ "@internationalized/string": "^3.2.7",
+ "@react-aria/autocomplete": "3.0.0-rc.3",
+ "@react-aria/collections": "^3.0.0",
+ "@react-aria/dnd": "^3.11.3",
+ "@react-aria/focus": "^3.21.2",
+ "@react-aria/interactions": "^3.25.6",
+ "@react-aria/live-announcer": "^3.4.4",
+ "@react-aria/overlays": "^3.30.0",
+ "@react-aria/ssr": "^3.9.10",
+ "@react-aria/textfield": "^3.18.2",
+ "@react-aria/toolbar": "3.0.0-beta.21",
+ "@react-aria/utils": "^3.31.0",
+ "@react-aria/virtualizer": "^4.1.10",
+ "@react-stately/autocomplete": "3.0.0-beta.3",
+ "@react-stately/layout": "^4.5.1",
+ "@react-stately/selection": "^3.20.6",
+ "@react-stately/table": "^3.15.1",
+ "@react-stately/utils": "^3.10.8",
+ "@react-stately/virtualizer": "^4.4.4",
+ "@react-types/form": "^3.7.16",
+ "@react-types/grid": "^3.3.6",
+ "@react-types/shared": "^3.32.1",
+ "@react-types/table": "^3.13.4",
+ "@swc/helpers": "^0.5.0",
+ "client-only": "^0.0.1",
+ "react-aria": "^3.44.0",
+ "react-stately": "^3.42.0",
+ "use-sync-external-store": "^1.4.0"
+ },
+ "peerDependencies": {
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
+ }
+ },
"node_modules/react-day-picker": {
"version": "9.11.1",
"resolved": "https://registry.npmjs.org/react-day-picker/-/react-day-picker-9.11.1.tgz",
@@ -17602,20 +16800,40 @@
"react-dom": ">=16.8"
}
},
- "node_modules/react-textarea-autosize": {
- "version": "8.5.9",
- "resolved": "https://registry.npmjs.org/react-textarea-autosize/-/react-textarea-autosize-8.5.9.tgz",
- "integrity": "sha512-U1DGlIQN5AwgjTyOEnI1oCcMuEr1pv1qOtklB2l4nyMGbHzWrI0eFsYK0zos2YWqAolJyG0IWJaqWmWj5ETh0A==",
+ "node_modules/react-stately": {
+ "version": "3.42.0",
+ "resolved": "https://registry.npmjs.org/react-stately/-/react-stately-3.42.0.tgz",
+ "integrity": "sha512-lYt2o1dd6dK8Bb4GRh08RG/2u64bSA1cqtRqtw4jEMgxC7Q17RFcIumBbChErndSdLzafEG/UBwV6shOfig6yw==",
"dependencies": {
- "@babel/runtime": "^7.20.13",
- "use-composed-ref": "^1.3.0",
- "use-latest": "^1.2.1"
- },
- "engines": {
- "node": ">=10"
+ "@react-stately/calendar": "^3.9.0",
+ "@react-stately/checkbox": "^3.7.2",
+ "@react-stately/collections": "^3.12.8",
+ "@react-stately/color": "^3.9.2",
+ "@react-stately/combobox": "^3.12.0",
+ "@react-stately/data": "^3.14.1",
+ "@react-stately/datepicker": "^3.15.2",
+ "@react-stately/disclosure": "^3.0.8",
+ "@react-stately/dnd": "^3.7.1",
+ "@react-stately/form": "^3.2.2",
+ "@react-stately/list": "^3.13.1",
+ "@react-stately/menu": "^3.9.8",
+ "@react-stately/numberfield": "^3.10.2",
+ "@react-stately/overlays": "^3.6.20",
+ "@react-stately/radio": "^3.11.2",
+ "@react-stately/searchfield": "^3.5.16",
+ "@react-stately/select": "^3.8.0",
+ "@react-stately/selection": "^3.20.6",
+ "@react-stately/slider": "^3.7.2",
+ "@react-stately/table": "^3.15.1",
+ "@react-stately/tabs": "^3.8.6",
+ "@react-stately/toast": "^3.1.2",
+ "@react-stately/toggle": "^3.9.2",
+ "@react-stately/tooltip": "^3.5.8",
+ "@react-stately/tree": "^3.9.3",
+ "@react-types/shared": "^3.32.1"
},
"peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
}
},
"node_modules/read-pkg": {
@@ -18116,9 +17334,9 @@
"peer": true
},
"node_modules/scheduler": {
- "version": "0.26.0",
- "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz",
- "integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA=="
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q=="
},
"node_modules/schema-utils": {
"version": "3.3.0",
@@ -18139,14 +17357,6 @@
"url": "https://opencollective.com/webpack"
}
},
- "node_modules/scroll-into-view-if-needed": {
- "version": "3.0.10",
- "resolved": "https://registry.npmjs.org/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.10.tgz",
- "integrity": "sha512-t44QCeDKAPf1mtQH3fYpWz8IM/DyvHLjs8wUvvwMYxk5moOqCzrMSxK6HQVD0QVmVjXFavoFIPRVrMuJPKAvtg==",
- "dependencies": {
- "compute-scroll-into-view": "^3.0.2"
- }
- },
"node_modules/seed-random": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/seed-random/-/seed-random-2.2.0.tgz",
@@ -18440,19 +17650,6 @@
"simple-concat": "^1.0.0"
}
},
- "node_modules/simple-swizzle": {
- "version": "0.2.4",
- "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.4.tgz",
- "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
- "dependencies": {
- "is-arrayish": "^0.3.1"
- }
- },
- "node_modules/simple-swizzle/node_modules/is-arrayish": {
- "version": "0.3.4",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.4.tgz",
- "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA=="
- },
"node_modules/sisteransi": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
@@ -19644,6 +18841,14 @@
"node": "*"
}
},
+ "node_modules/tw-animate-css": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/tw-animate-css/-/tw-animate-css-1.4.0.tgz",
+ "integrity": "sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==",
+ "funding": {
+ "url": "https://github.com/sponsors/Wombosvideo"
+ }
+ },
"node_modules/type-check": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
@@ -20091,48 +19296,6 @@
"punycode": "^2.1.0"
}
},
- "node_modules/use-composed-ref": {
- "version": "1.4.0",
- "resolved": "https://registry.npmjs.org/use-composed-ref/-/use-composed-ref-1.4.0.tgz",
- "integrity": "sha512-djviaxuOOh7wkj0paeO1Q/4wMZ8Zrnag5H6yBvzN7AKKe8beOaED9SF5/ByLqsku8NP4zQqsvM2u3ew/tJK8/w==",
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/use-isomorphic-layout-effect": {
- "version": "1.2.1",
- "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.2.1.tgz",
- "integrity": "sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==",
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
- "node_modules/use-latest": {
- "version": "1.3.0",
- "resolved": "https://registry.npmjs.org/use-latest/-/use-latest-1.3.0.tgz",
- "integrity": "sha512-mhg3xdm9NaM8q+gLT8KryJPnRFOz1/5XPBhmDEVZK1webPzDjrPk7f/mbpeLqTgB9msytYWANxgALOCJKnLvcQ==",
- "dependencies": {
- "use-isomorphic-layout-effect": "^1.1.1"
- },
- "peerDependencies": {
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
- },
- "peerDependenciesMeta": {
- "@types/react": {
- "optional": true
- }
- }
- },
"node_modules/use-sync-external-store": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",