From 86d4015ae51573e485134fd00c116e089028100f Mon Sep 17 00:00:00 2001 From: Alikia2x Date: Fri, 26 Apr 2024 22:20:49 +0800 Subject: [PATCH] feature: better base64NLP, add copy to clipboard for text --- components/search/onesearch/handleEnter.ts | 14 +- components/search/onesearch/onesearch.tsx | 18 +- components/search/search.tsx | 7 +- lib/copy.ts | 8 + lib/nlp/stopwords.ts | 5 +- lib/onesearch/baseCheck.ts | 2 +- package.json | 22 +- pnpm-lock.yaml | 2998 +++++++++++--------- 8 files changed, 1674 insertions(+), 1400 deletions(-) create mode 100644 lib/copy.ts diff --git a/components/search/onesearch/handleEnter.ts b/components/search/onesearch/handleEnter.ts index fdb8ca0..d77191c 100644 --- a/components/search/onesearch/handleEnter.ts +++ b/components/search/onesearch/handleEnter.ts @@ -1,14 +1,26 @@ import { settingsType, suggestionItem } from "@/global"; +import copyToClipboard from "@/lib/copy"; import { normalizeURL } from "@/lib/normalizeURL"; import search from "@/lib/search"; -export default function (index: number, suggestion: suggestionItem[], query: string, settings: settingsType) { +export default function ( + index: number, + suggestion: suggestionItem[], + query: string, + settings: settingsType, + searchBoxRef: React.RefObject +) { const selected = suggestion[index]; const engine = settings.searchEngines[settings.currentSearchEngine]; const newTab = settings.searchInNewTab; + let clipboard: any; if (selected.type === "QUERY" || selected.type === "default") { search(selected.suggestion, engine, newTab); } else if (selected.type === "NAVIGATION") { window.open(normalizeURL(selected.suggestion)); + } else if (selected.type === "text") { + console.log("????"); + copyToClipboard(selected.suggestion); + searchBoxRef.current?.focus(); } } diff --git a/components/search/onesearch/onesearch.tsx b/components/search/onesearch/onesearch.tsx index 191629e..c30ccdc 100644 --- a/components/search/onesearch/onesearch.tsx +++ b/components/search/onesearch/onesearch.tsx @@ -36,12 +36,11 @@ export default function () { .then((res) => res.json()) .then((data: suggestionsResponse) => { let suggestionToUpdate: suggestionItem[] = data.suggestions; - if (data.time > lastRequestTimeRef.current){ + if (data.time > lastRequestTimeRef.current) { cleanSuggestion("NAVIGATION", "QUERY"); lastRequestTimeRef.current = data.time; updateSuggestion(suggestionToUpdate); } - }); }, [query]); @@ -71,14 +70,13 @@ export default function () { } useEffect(() => { + cleanSuggestion("default-link", "default", "text"); if (validLink(query)) { - cleanSuggestion("default-link","default","text") updateSuggestion([ { type: "default-link", suggestion: query, relevance: 3000 }, { type: "default", suggestion: query, relevance: 1600 } ]); } else { - cleanSuggestion("default-link","default","text") updateSuggestion([ { type: "default", @@ -88,8 +86,8 @@ export default function () { ]); } const b64 = base64NLP(query); - if (b64.suggestion!==null){ - cleanSuggestion("default-link","default","text") + console.log(base64NLP(query)); + if (b64.suggestion !== null) { updateSuggestion([b64 as suggestionItem]); } }, [query, engineName]); @@ -125,11 +123,7 @@ export default function () { ); } else if (s.type === "NAVIGATION" || s.type === "default-link") { return ( - + {s.suggestion} {devMode && ( @@ -148,7 +142,7 @@ export default function () { )} - ) + ); } })} diff --git a/components/search/search.tsx b/components/search/search.tsx index 8fac048..23f2422 100644 --- a/components/search/search.tsx +++ b/components/search/search.tsx @@ -8,7 +8,7 @@ import { settingsType } from "@/global"; import handleEnter from "./onesearch/handleEnter"; import { selectedSuggestionState } from "../state/suggestionSelection"; import { suggestionsState } from "../state/suggestion"; -import { KeyboardEvent } from "react"; +import { KeyboardEvent, useRef } from "react"; export default function Search(props: { onFocus: () => void }) { const settings: settingsType = useRecoilValue(settingsState); @@ -16,13 +16,14 @@ export default function Search(props: { onFocus: () => void }) { const [query, setQuery] = useRecoilState(queryState); const [selectedSuggestion, setSelected] = useRecoilState(selectedSuggestionState); const suggestions = useRecoilValue(suggestionsState); + const searchBoxRef = useRef(null); let style = "default"; function handleKeydown(e: KeyboardEvent) { if (e.key == "Enter") { e.preventDefault(); - handleEnter(selectedSuggestion, suggestions, query, settings); + handleEnter(selectedSuggestion, suggestions, query, settings, searchBoxRef); return; } else if (e.key == "ArrowUp") { e.preventDefault(); @@ -58,6 +59,7 @@ export default function Search(props: { onFocus: () => void }) { autoCorrect="off" autoCapitalize="off" spellCheck="false" + ref={searchBoxRef} value={query} /> @@ -81,6 +83,7 @@ export default function Search(props: { onFocus: () => void }) { type="text" placeholder={t("placeholder")} onFocus={props.onFocus} + ref={searchBoxRef} /> ); diff --git a/lib/copy.ts b/lib/copy.ts new file mode 100644 index 0000000..12e27bd --- /dev/null +++ b/lib/copy.ts @@ -0,0 +1,8 @@ +export default function copyToClipboard(value: string){ + const textarea = document.createElement("textarea"); + textarea.value = value; + document.body.appendChild(textarea); + textarea.select(); + document.execCommand("copy"); + document.body.removeChild(textarea); +}; diff --git a/lib/nlp/stopwords.ts b/lib/nlp/stopwords.ts index 55dd3e5..c029189 100644 --- a/lib/nlp/stopwords.ts +++ b/lib/nlp/stopwords.ts @@ -1,7 +1,8 @@ const stopwords = ["a","about","above","after","again","against","all","am","an","and","any","are","aren't","as","at","be","because","been","before","being","below","between","both","but","by","can't","cannot","could","couldn't","did","didn't","do","does","doesn't","doing","don't","down","during","each","few","for","from","further","had","hadn't","has","hasn't","have","haven't","having","he","he'd","he'll","he's","her","here","here's","hers","herself","him","himself","his","how","how's","i","i'd","i'll","i'm","i've","if","in","into","is","isn't","it","it's","its","itself","let's","me","more","most","mustn't","my","myself","no","nor","not","of","off","on","once","only","or","other","ought","our","ours ourselves","out","over","own","same","shan't","she","she'd","she'll","she's","should","shouldn't","so","some","such","than","that","that's","the","their","theirs","them","themselves","then","there","there's","these","they","they'd","they'll","they're","they've","this","those","through","to","too","under","until","up","very","was","wasn't","we","we'd","we'll","we're","we've","were","weren't","what","what's","when","when's","where","where's","which","while","who","who's","whom","why","why's","with","won't","would","wouldn't","you","you'd","you'll","you're","you've","your","yours","yourself","yourselves"]; -export default function removeStopwords(str: string, extraStopwords: string[] = []){ - for (let word of stopwords.concat(extraStopwords)){ +export default function removeStopwords(str: string, extraStopwords: string[] = [], disableDefault: boolean = false){ + const list = disableDefault ? extraStopwords : stopwords.concat(extraStopwords); + for (let word of list){ str = str.replace(new RegExp(`\\b${word}\\b`, 'gi'), ''); } return str; diff --git a/lib/onesearch/baseCheck.ts b/lib/onesearch/baseCheck.ts index 84168e4..97a8103 100644 --- a/lib/onesearch/baseCheck.ts +++ b/lib/onesearch/baseCheck.ts @@ -46,7 +46,7 @@ export function base64NLP(str: string) { let processedQuery = ""; if (result.intention==="base64.encode"){ - processedQuery = str.split(" ")[str.split(" ").length-1]; + processedQuery = removeStopwords(str, Object.keys(keywords).concat(Object.keys(intentions)), true).trim(); } else if (result.intention==="base64.decode") { processedQuery = removeStopwords(str, Object.keys(keywords).concat(Object.keys(intentions))).trim(); } diff --git a/package.json b/package.json index 0d0883b..616e6f0 100644 --- a/package.json +++ b/package.json @@ -10,18 +10,18 @@ "test": "jest" }, "dependencies": { - "@nextui-org/react": "^2.2.10", - "clsx": "^2.1.0", - "framer-motion": "^11.0.25", + "@nextui-org/react": "^2.3.6", + "clsx": "^2.1.1", + "framer-motion": "^11.1.7", "next": "14.1.4", - "next-intl": "^3.11.1", + "next-intl": "^3.12.0", "next-themes": "^0.3.0", "punycode": "^2.3.1", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "react": "^18.3.0", + "react-dom": "^18.3.0", "recoil": "^0.7.7", "search-engine-autocomplete": "^0.4.3", - "tailwind-merge": "^2.2.2", + "tailwind-merge": "^2.3.0", "ts-node": "^10.9.2", "valid-url": "^1.0.9", "validate-color": "^2.2.4" @@ -29,12 +29,12 @@ "devDependencies": { "@jest/globals": "^29.7.0", "@testing-library/jest-dom": "^6.4.2", - "@testing-library/react": "^14.3.0", + "@testing-library/react": "^14.3.1", "@types/jest": "^29.5.12", "@types/node": "^20.12.7", "@types/punycode": "^2.1.4", - "@types/react": "^18.2.75", - "@types/react-dom": "^18.2.24", + "@types/react": "^18.3.0", + "@types/react-dom": "^18.3.0", "@types/valid-url": "^1.0.7", "autoprefixer": "^10.4.19", "jest": "^29.7.0", @@ -42,6 +42,6 @@ "postcss": "^8.4.38", "tailwindcss": "^3.4.3", "ts-jest": "^29.1.2", - "typescript": "^5.4.4" + "typescript": "^5.4.5" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 06f9563..7a0b2e0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,44 +6,44 @@ settings: dependencies: '@nextui-org/react': - specifier: ^2.2.10 - version: 2.2.10(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1)(tailwindcss@3.4.3) + specifier: ^2.3.6 + version: 2.3.6(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1)(tailwindcss@3.4.3) clsx: - specifier: ^2.1.0 - version: 2.1.0 + specifier: ^2.1.1 + version: 2.1.1 framer-motion: - specifier: ^11.0.25 - version: 11.0.25(react-dom@18.2.0)(react@18.2.0) + specifier: ^11.1.7 + version: 11.1.7(react-dom@18.3.0)(react@18.3.0) next: specifier: 14.1.4 - version: 14.1.4(@babel/core@7.24.4)(react-dom@18.2.0)(react@18.2.0) + version: 14.1.4(@babel/core@7.24.4)(react-dom@18.3.0)(react@18.3.0) next-intl: - specifier: ^3.11.1 - version: 3.11.1(next@14.1.4)(react@18.2.0) + specifier: ^3.12.0 + version: 3.12.0(next@14.1.4)(react@18.3.0) next-themes: specifier: ^0.3.0 - version: 0.3.0(react-dom@18.2.0)(react@18.2.0) + version: 0.3.0(react-dom@18.3.0)(react@18.3.0) punycode: specifier: ^2.3.1 version: 2.3.1 react: - specifier: ^18.2.0 - version: 18.2.0 + specifier: ^18.3.0 + version: 18.3.0 react-dom: - specifier: ^18.2.0 - version: 18.2.0(react@18.2.0) + specifier: ^18.3.0 + version: 18.3.0(react@18.3.0) recoil: specifier: ^0.7.7 - version: 0.7.7(react-dom@18.2.0)(react@18.2.0) + version: 0.7.7(react-dom@18.3.0)(react@18.3.0) search-engine-autocomplete: specifier: ^0.4.3 version: 0.4.3 tailwind-merge: - specifier: ^2.2.2 - version: 2.2.2 + specifier: ^2.3.0 + version: 2.3.0 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.12.7)(typescript@5.4.4) + version: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) valid-url: specifier: ^1.0.9 version: 1.0.9 @@ -59,8 +59,8 @@ devDependencies: specifier: ^6.4.2 version: 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0) '@testing-library/react': - specifier: ^14.3.0 - version: 14.3.0(react-dom@18.2.0)(react@18.2.0) + specifier: ^14.3.1 + version: 14.3.1(react-dom@18.3.0)(react@18.3.0) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -71,11 +71,11 @@ devDependencies: specifier: ^2.1.4 version: 2.1.4 '@types/react': - specifier: ^18.2.75 - version: 18.2.75 + specifier: ^18.3.0 + version: 18.3.0 '@types/react-dom': - specifier: ^18.2.24 - version: 18.2.24 + specifier: ^18.3.0 + version: 18.3.0 '@types/valid-url': specifier: ^1.0.7 version: 1.0.7 @@ -96,10 +96,10 @@ devDependencies: version: 3.4.3(ts-node@10.9.2) ts-jest: specifier: ^29.1.2 - version: 29.1.2(@babel/core@7.24.4)(jest@29.7.0)(typescript@5.4.4) + version: 29.1.2(@babel/core@7.24.4)(jest@29.7.0)(typescript@5.4.5) typescript: - specifier: ^5.4.4 - version: 5.4.4 + specifier: ^5.4.5 + version: 5.4.5 packages: @@ -516,26 +516,26 @@ packages: /@internationalized/date@3.5.2: resolution: {integrity: sha512-vo1yOMUt2hzp63IutEaTUxROdvQg1qlMRsbCvbay2AK2Gai7wIgCyK5weEX3nHkiLgo4qCXHijFNC/ILhlRpOQ==} dependencies: - '@swc/helpers': 0.5.8 + '@swc/helpers': 0.5.11 dev: false /@internationalized/message@3.1.2: resolution: {integrity: sha512-MHAWsZWz8jf6jFPZqpTudcCM361YMtPIRu9CXkYmKjJ/0R3pQRScV5C0zS+Qi50O5UAm8ecKhkXx6mWDDcF6/g==} dependencies: - '@swc/helpers': 0.5.8 + '@swc/helpers': 0.5.11 intl-messageformat: 10.5.11 dev: false /@internationalized/number@3.5.1: resolution: {integrity: sha512-N0fPU/nz15SwR9IbfJ5xaS9Ss/O5h1sVXMZf43vc9mxEG48ovglvvzBjF53aHlq20uoR6c+88CrIXipU/LSzwg==} dependencies: - '@swc/helpers': 0.5.8 + '@swc/helpers': 0.5.11 dev: false /@internationalized/string@3.2.1: resolution: {integrity: sha512-vWQOvRIauvFMzOO+h7QrdsJmtN1AXAFVcaLWP9AseRN2o7iHceZ6bIXhBD4teZl8i91A3gxKnWBlGgjCwU6MFQ==} dependencies: - '@swc/helpers': 0.5.8 + '@swc/helpers': 0.5.11 dev: false /@isaacs/cliui@8.0.2: @@ -895,8 +895,8 @@ packages: dev: false optional: true - /@nextui-org/accordion@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-WzD7sscL+4K0TFyUutTn1AhU0wcS68TqNCTNv7KgON6ODdwieydilMxAyXvwo3RgXeWG+8BbdxJC/6W+/iLBTg==} + /@nextui-org/accordion@2.0.32(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-iwvEd89SdOrtCxeX2Pq44wmgFm6a01sCq79BgCKuqMcsCFekZ5/yQu09R3kBB6Kne4ghZWF6MXgmzOgbS04atg==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -904,52 +904,51 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-accordion': 2.0.2(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@react-aria/button': 3.9.3(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/tree': 3.7.6(react@18.2.0) - '@react-types/accordion': 3.0.0-alpha.17(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/aria-utils': 2.0.18(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/divider': 2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/framer-utils': 2.0.18(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-accordion': 2.0.4(react-dom@18.3.0)(react@18.3.0) + '@react-aria/button': 3.9.3(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/tree': 3.7.6(react@18.3.0) + '@react-types/accordion': 3.0.0-alpha.19(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/aria-utils@2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-4M4jeJ/ghGaia9064yS+mEZ3sFPH80onmjNGWJZkkZDmUV4R88lNkqe/XYBK1tbxfl4Kxa8jc/ALsZkUkkvR5w==} + /@nextui-org/aria-utils@2.0.18(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-9ZIZgWFU26csBnfAxsG5HEcz/nLmbeUusbi3kME3sm69iu5B0+A0WSABW+Ffk1Vhtyh73zJZRpA8baC673+5tQ==} peerDependencies: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-rsc-utils': 2.0.10 - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-rsc-utils': 2.0.12 + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-types/overlays': 3.8.5(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - '@nextui-org/theme' - tailwind-variants dev: false - /@nextui-org/autocomplete@2.0.10(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-nQr8VC5RtpjnPef1qXgjNxRAw8JbN6q5qIFtsHWOCzvvn5jGAtdxkAkNE4C7DTvlMWZkIlEuR4DyAmFfY8CChQ==} + /@nextui-org/autocomplete@2.0.16(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-cVkFTiiM6Io7XPKMMdNZdTg9OpC/SVOsO48RrbxIv9Nl2HzvQYadhsiYett3skSMTy4u3Az8FJPUp+ql0GmxxA==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -957,97 +956,98 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/input': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/scroll-shadow': 2.1.13(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/spinner': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) - '@react-aria/combobox': 3.8.4(react-dom@18.2.0)(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/combobox': 3.8.2(react@18.2.0) - '@react-types/combobox': 3.10.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/aria-utils': 2.0.18(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/button': 2.0.31(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/input': 2.1.21(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/listbox': 2.1.19(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/popover': 2.1.21(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/spinner': 2.0.28(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-button': 2.0.7(react@18.3.0) + '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.0) + '@react-aria/combobox': 3.8.4(react-dom@18.3.0)(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + '@react-stately/combobox': 3.8.2(react@18.3.0) + '@react-types/combobox': 3.10.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - '@types/react' - tailwind-variants dev: false - /@nextui-org/avatar@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-3QUn8v61iNvAYogUbEDVnhDjBK6WBxxFYLp95a0H52zN0p2LHXe+UNwdGZYFo5QNWx6CHGH3vh2AHlLLy3WFSQ==} + /@nextui-org/avatar@2.0.27(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-rmEWhzg7bHOYWCvcFWBjex80aRtnLE7QyHWTHr9+KtOQRJRtv33Kxy5JfDcCQ6vKBz/ZPAWJ76ftUaba3yvXjQ==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-image': 2.0.4(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-image': 2.0.5(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/badge@2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-FA3XgqEbyKWepMXqMZg7D+1IRf7flrb2LzFvTbkmsbvWQ4yYz1LqJXZ/HDmoCydvh2pOnc+1zPK3BpB7vGrrwA==} + /@nextui-org/badge@2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-7JH8X7F4FvsPjygToTId87/syh0ZPS6GK8z3zCZHu7zgA10FrwbCyQGuTpznF2GAnmtW3DxTWpemOOJD0dMJbQ==} peerDependencies: '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system-rsc': 2.1.1(@nextui-org/theme@2.2.3)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/breadcrumbs@2.0.4(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-SAE0+QRgA7vxUHPL65TKz3MRj7u2mbSwk8Eifkwo6hPcF0d34zv2QDupTGyphIjoGCSrQHFIq/CPAkXyaOXZxw==} + /@nextui-org/breadcrumbs@2.0.7(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-4xD3hUy5QFtYSZWxjY8Cprq4BpSPfqkR9RyVmG9q5MCeJ8zJQTZlEZ1VCZjnwx4Mtif4kDxAgEm/eBhn6dW7mA==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@react-aria/breadcrumbs': 3.5.11(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/breadcrumbs': 3.7.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-aria/breadcrumbs': 3.5.11(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/breadcrumbs': 3.7.3(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/button@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-oErzUr9KtE/qjUx4dSbalphxURssxGf9tv0mW++ZMkmVX1E6i887FwZb9xAVm9oBwYwR6+xpJaqjQLmt8aN/rQ==} + /@nextui-org/button@2.0.31(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-EqrmTLhJaIFqDCK247XHuEE0c10A1mnRpIoMEgwP5GUjAFC/5itpdU80zRDi4zWXUaI6ppaVpZqWnDOCK5Qvwg==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1055,28 +1055,66 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/spinner': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) - '@react-aria/button': 3.9.3(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/ripple': 2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/spinner': 2.0.28(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-button': 2.0.7(react@18.3.0) + '@react-aria/button': 3.9.3(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-16uAS0i6+EO+u8aqtmaCXatjovsyuTq51JwCLBlB67OldfgXoYcYl3GaE2VoZdEwxVu1G/qypDfXv29k46nZuA==} + /@nextui-org/calendar@2.0.4(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-B1OqFBt9Z8jh42qPW6u5W0fsyf1iYs2d1hdhHfVEvFgK7E1KoNaVe03pwZsZV/tYTW/Mh5zSuNwWhhWxphzrHA==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.0.0' + react: '>=18' + react-dom: '>=18' + dependencies: + '@internationalized/date': 3.5.2 + '@nextui-org/button': 2.0.31(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/framer-utils': 2.0.18(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-button': 2.0.7(react@18.3.0) + '@react-aria/calendar': 3.5.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + '@react-stately/calendar': 3.4.1(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/calendar': 3.4.1(react@18.3.0) + '@react-types/shared': 3.21.0(react@18.3.0) + '@types/lodash.debounce': 4.0.9 + lodash.debounce: 4.0.8 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + scroll-into-view-if-needed: 3.0.10 + transitivePeerDependencies: + - framer-motion + - tailwind-variants + dev: false + + /@nextui-org/card@2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-Vwa7Poi1kxqjnTWQS9FAGlQw301RqkMlY5cnYQCGeKNbFX+y6u1MlqTSi8ed6RqmdjO23j1zG2+XlBieFyJ9Mg==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1084,107 +1122,164 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) - '@react-aria/button': 3.9.3(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/ripple': 2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-button': 2.0.7(react@18.3.0) + '@react-aria/button': 3.9.3(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/checkbox@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-X6WkwPbZlDvioEcXF6HhKH21wD6OK+3+FSroKkzMPQLJrj2KYUIYGbiuw9rT9aCtdjbT+6HUCv+FA8/cBQr7cA==} + /@nextui-org/checkbox@2.0.29(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-Ed1ahtrFoewt61TPi3aDFZAeA2+Dn+D4A798A2OPBPMHLe70xBPL84Vi35okeY3bzUdBwWQKLMGXbz9nM26sZA==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@react-aria/checkbox': 3.14.1(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/checkbox': 3.6.3(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-callback-ref': 2.0.5(react@18.3.0) + '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.0) + '@react-aria/checkbox': 3.14.1(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + '@react-stately/checkbox': 3.6.3(react@18.3.0) + '@react-stately/toggle': 3.7.2(react@18.3.0) + '@react-types/checkbox': 3.7.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/chip@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-hfVSaq5JWzGn97s3K2Ac/xOopHWelaUW3eus0O0wns/6+NCI0QUjgwNt2bAQSNvnE6vjvYLJTqGG/jFHyFJjOg==} + /@nextui-org/chip@2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-oD28KZx+PuaWkHlizvMgOAxIkL9cblwun0IhqEztKcR2DMRVdH/4r8/Zdo6QQFDhXlUU0Ub5+WUOyHndwNj0pg==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/checkbox': 3.7.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/code@2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-Kw/uOQtdytRWY99zMQuGHqMAAGXWBAxHlyMMge1OCckpadCDfX6plPjqoS18SGM0orJ4fox+a1FM8VhnRQ2kQw==} + /@nextui-org/code@2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-gDK48LMNSgQIeUs5WZ53s/hRqDfTMuDdDNgQcmt0bRWMlUC2BTuBfQGzK4y9wbJA9mlWocia7ZDWRWyJrB4vjQ==} peerDependencies: '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system-rsc': 2.1.1(@nextui-org/theme@2.2.3)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/divider@2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-yEvHqYlhNBwmF68pfjJKdzC8gVQtL+txxD5COBGF9uFyfxA5hVw2D6GmYgOH514bxrFBuWOLcQX6gyljgcN3bA==} + /@nextui-org/date-input@2.0.3(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-7WMJGptHHl+P0LpKk3a7e/Dj86Np66RGLVzWWlFipe7hrg+wJCdkuWCyj6V9mNgH/sdkVKhfkGYT2MogNbOhdA==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.0.0' + react: '>=18' + react-dom: '>=18' + dependencies: + '@internationalized/date': 3.5.2 + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-aria/datepicker': 3.9.3(react-dom@18.3.0)(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/datepicker': 3.9.2(react@18.3.0) + '@react-types/datepicker': 3.7.2(react@18.3.0) + '@react-types/shared': 3.21.0(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + dev: false + + /@nextui-org/date-picker@2.0.7(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-03Jys6JMthgX1BMW9R1MKPkHkoetXf4bYZRETAXU5Y9cY1TcosY0FiDEwAUCjlusYOq2UWMRYH4q83tCmir6ag==} + peerDependencies: + '@nextui-org/system': '>=2.0.0' + '@nextui-org/theme': '>=2.0.0' + react: '>=18' + react-dom: '>=18' + dependencies: + '@internationalized/date': 3.5.2 + '@nextui-org/button': 2.0.31(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/calendar': 2.0.4(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/date-input': 2.0.3(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/popover': 2.1.21(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-aria/datepicker': 3.9.3(react-dom@18.3.0)(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/datepicker': 3.9.2(react@18.3.0) + '@react-stately/overlays': 3.6.5(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/datepicker': 3.7.2(react@18.3.0) + '@react-types/shared': 3.21.0(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + transitivePeerDependencies: + - '@types/react' + - framer-motion + - tailwind-variants + dev: false + + /@nextui-org/divider@2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-530oEHonzaxKxspoaKnBFJ4InGqXv2FgOYzEPAMWoMmLb4/zp7e5lRipFKqRsN+zdwIkRNH6c0VJmHfyWI+bUg==} peerDependencies: '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-rsc-utils': 2.0.10 - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-rsc-utils': 2.0.12 + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system-rsc': 2.1.1(@nextui-org/theme@2.2.3)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/dropdown@2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-Hxmz1Yf/LjjOLqWRF49Q5ZYJtae6ydDEk1mv8oMKNmSWHi92lrgmHlwkGvR3mjczbRuF+WkXHLEhVZH6/tZQ7A==} + /@nextui-org/dropdown@2.1.23(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-4wAzUbKztvuzzuJcLuDKhvnxB++EQ2aATbCdnfcBA5IyBxj6k4lbalgmSQxtx6D4dm5iJeiOWCJHRZgsIqkxRg==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1192,187 +1287,188 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/menu': 3.13.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/menu': 3.6.1(react@18.2.0) - '@react-types/menu': 3.9.7(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/menu': 2.0.22(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/popover': 2.1.21(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/menu': 3.13.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/menu': 3.6.1(react@18.3.0) + '@react-types/menu': 3.9.7(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - '@types/react' - tailwind-variants dev: false - /@nextui-org/framer-transitions@2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-UlWMCAFdrq8wKrYFGwc+O4kFhKCkL4L9ZadBkP0PqjmfyAC2gA3ygRbNqtKhFMWeKbBAiC8qQ9aTBEA/+0r/EA==} + /@nextui-org/framer-utils@2.0.18(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-RNI5/wKjgLNjEaVdLrXH8J/mkC7HKZ6S99JNFmviU1JiVgWzwHKtuci5ZPDntUFGg6G8kX6P7OCDh+d/pMJQAA==} peerDependencies: framer-motion: '>=4.0.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/use-measure': 2.0.1(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - '@nextui-org/theme' - tailwind-variants dev: false - /@nextui-org/image@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-bps5D5ki7PoLldb8wcJEf6C4EUFZm3PocLytNaGa7dNxFfaCOD78So+kq+K+0IRusK3yn94K8r31qMvpI3Gg2Q==} + /@nextui-org/image@2.0.27(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-EJa1bsZL8zsnTOVd+ZY04ldBz177CO/igz16rpRjo1KPMDX0fxlcjUbUopMfujIASytA68Yq4U1rxfO/xJthuQ==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-image': 2.0.4(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-image': 2.0.5(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/input@2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-3FW3NDDbQOa5IlUCpO2Ma/XEjGnx4TQLM8MvMbskc+GNbZ0mtzfV0hCeQkqxxJ2lP4Mkp4QhwGRRkRrDu1G0Wg==} + /@nextui-org/input@2.1.21(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-jwTD4RnpTuieSuLOYqW7Dw2To6E9OVJtcyRBYNIT6GaejT3YG4qaST7BMKz0pJW6mgF9M+pDeKcdOvOqEbOoDg==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/textfield': 3.14.3(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/textfield': 3.9.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-textarea-autosize: 8.5.3(@types/react@18.2.75)(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/textfield': 3.14.3(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@react-types/textfield': 3.9.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + react-textarea-autosize: 8.5.3(@types/react@18.3.0)(react@18.3.0) transitivePeerDependencies: - '@types/react' dev: false - /@nextui-org/kbd@2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-cYwbEjp/+/tjtOdmiRy2UHjfBhP3bqd5e+JFTa5sY1HotckUZrCintATyBcg9bPa3iSPUI44M6Cb9e0oAUUeMA==} + /@nextui-org/kbd@2.0.28(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-raH2Nw+wAHO54swTduLLs/Vdg2/mbMHEe0Y7ud6D13lPexWHVfxUzt7C39/9y8nKh0SpgOkcWV+EmQBydLAI7A==} peerDependencies: '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@react-aria/utils': 3.23.2(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system-rsc': 2.1.1(@nextui-org/theme@2.2.3)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-aria/utils': 3.23.2(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/link@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-X8zX3U5MWfiStOCd45oIZ2YKZG0GoUio6PcMFYjpOPsEG7wV58CuhUSxpyx3QTF8JavVSO/p/cl4Pc9pukVDUg==} + /@nextui-org/link@2.0.29(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-OfOi7GLj3apimwAsAXTRZ8/B0tWvx/yXLZFtEe9676+tlLND1nfmWyBHdDIx5WMMiLc3Q1M3FkNrZvigeKQIbQ==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-link': 2.0.15(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/link': 3.6.5(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/link': 3.5.3(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-link': 2.0.16(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/link': 3.6.5(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/link': 3.5.3(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/listbox@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-5PmUCoHFgAr+1nAU3IlqPFTgyHo7zsTcNeja4wcErD/KseCF2h7Uk5OqUX5hQDN9B9fZuGjPrkG4yoK/6pqcUQ==} + /@nextui-org/listbox@2.1.19(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-9qQs9KwdDHZ3VaSz4SkYcqn8onuSMCiZElta1vyqJGMWW6JYjJ4DtUOiyqwJdzZOQLIlxazT+GCWjjFUZwFZlQ==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@nextui-org/use-is-mobile': 2.0.6(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/listbox': 3.11.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-types/menu': 3.9.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/aria-utils': 2.0.18(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/divider': 2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-is-mobile': 2.0.7(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/listbox': 3.11.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/list': 3.10.3(react@18.3.0) + '@react-types/menu': 3.9.7(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/menu@2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-qr/BPDbBvg5tpAZZLkLx8eNnvYwJYM3Q72fmRYbzwmG3upNtdjln0QYxSwPXUz7RYqTKEFWc9JPxq2pgPM15Wg==} + /@nextui-org/menu@2.0.22(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-zU1MbyDPk0QNAVZUSDJSMmdVxpFzWHyiLqOtS+b+kZLdn0va+QBR6LPj237PhyQueChNyz/y8eDDbJ0D6bWf/g==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@nextui-org/use-is-mobile': 2.0.6(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/menu': 3.13.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/menu': 3.6.1(react@18.2.0) - '@react-stately/tree': 3.7.6(react@18.2.0) - '@react-types/menu': 3.9.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/aria-utils': 2.0.18(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/divider': 2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-menu': 2.0.2(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/use-is-mobile': 2.0.7(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/menu': 3.13.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/menu': 3.6.1(react@18.3.0) + '@react-stately/tree': 3.7.6(react@18.3.0) + '@react-types/menu': 3.9.7(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/modal@2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-C/pvw0fAPWKbfMoGfIVZWhMRbe+DRGEg7GqPVY7EmW4FSSIK7Sfdn6Jxm+sSv+a7xHpDr86nirFbvN3S4jCaHw==} + /@nextui-org/modal@2.0.33(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-YCgWUMNiVMXAgd6SmU4yH7Ifrz+cmtlF2sK9DBL8kaIZtqAjuhPQj0uQnetvXpY649vomJWVdh9QYHNfD1Jv1Q==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1380,33 +1476,31 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) - '@nextui-org/use-aria-modal-overlay': 2.0.6(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/use-disclosure': 2.0.6(react@18.2.0) - '@react-aria/dialog': 3.5.12(react-dom@18.2.0)(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.9(@types/react@18.2.75)(react@18.2.0) + '@nextui-org/framer-utils': 2.0.18(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-button': 2.0.7(react@18.3.0) + '@nextui-org/use-aria-modal-overlay': 2.0.8(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/use-disclosure': 2.0.7(react@18.3.0) + '@react-aria/dialog': 3.5.12(react-dom@18.3.0)(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/overlays': 3.21.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/overlays': 3.6.5(react@18.3.0) + '@react-types/overlays': 3.8.5(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - - '@types/react' - tailwind-variants dev: false - /@nextui-org/navbar@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-iP4Pn4ItQkAW1nbu1Jmrh5l9pMVG43lDxq9rbx6DbLjLnnZOOrE6fURb8uN5NVy3ooV5dF02zKAoxlkE5fN/xw==} + /@nextui-org/navbar@2.0.30(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-Iaw3BU0gdX14nBtZUUFRnsXodnCe1Sbsv9Xk7OI44p+KbOhySgfcjf4iFcXM0vfTOMlOkBSsUzR9bt+/69G5pw==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1414,54 +1508,53 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-toggle-button': 2.0.6(react@18.2.0) - '@nextui-org/use-scroll-position': 2.0.4(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.9(@types/react@18.2.75)(react@18.2.0) + '@nextui-org/framer-utils': 2.0.18(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-toggle-button': 2.0.7(react@18.3.0) + '@nextui-org/use-scroll-position': 2.0.5(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/overlays': 3.21.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/toggle': 3.7.2(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + react-remove-scroll: 2.5.9(@types/react@18.3.0)(react@18.3.0) transitivePeerDependencies: - '@types/react' - tailwind-variants dev: false - /@nextui-org/pagination@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-v1tSsb0Q863/gKVUxuN7FcE1TZWuvcbWZOrWjKe0/llRgfZ23/4KD1AmFyYuKo5RDFt+i1JWSfzAu08j0Hzzqg==} + /@nextui-org/pagination@2.0.30(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-tdlSbNTpqr+aww8h9+7d2Iu0ZX6GGtREeVAbf2+jr5j7VF/VVMVm2eaLJ4m1vw7VQIrEMwKNrcP8QCMMT0a+SQ==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@nextui-org/use-pagination': 2.0.5(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-pagination': 2.0.6(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) scroll-into-view-if-needed: 3.0.10 dev: false - /@nextui-org/popover@2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-FQ66y49sQvXvyDrEsEFAC0qfpl2X+5ZPGaVXdNd3Cjox/jxAxp93cSUkk0iOfYvdsbO5zVFjuM0L3Dqn4hsHMw==} + /@nextui-org/popover@2.1.21(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-Loa6eoAYW0DacDIW+/SC//0LhDDAMnUcd8R9axXtKd00N0Zgnj3YpUJoyLRYvwl5I/FWwV1nCOAvndzW6JJvpQ==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1469,150 +1562,153 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) - '@nextui-org/use-safe-layout-effect': 2.0.4(react@18.2.0) - '@react-aria/dialog': 3.5.12(react-dom@18.2.0)(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.9(@types/react@18.2.75)(react@18.2.0) + '@nextui-org/aria-utils': 2.0.18(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/button': 2.0.31(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/framer-utils': 2.0.18(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-button': 2.0.7(react@18.3.0) + '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.0) + '@react-aria/dialog': 3.5.12(react-dom@18.3.0)(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/overlays': 3.21.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/overlays': 3.6.5(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/overlays': 3.8.5(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + react-remove-scroll: 2.5.9(@types/react@18.3.0)(react@18.3.0) transitivePeerDependencies: - '@types/react' - tailwind-variants dev: false - /@nextui-org/progress@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-EFVxwT0CXq+2scPLhKKRHkWb6xNa6Vjx+HdgSg3l4lgAxAUryvdfksjW8vjxn6x4I2rGbdzAYPEu27p2KaK7jg==} + /@nextui-org/progress@2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-3Wp6mUeKzw0onLB7/JR1HI3+Y4zf0immVnQp3TYr2zvM5PLAy6RXKtACEGkJanBPfvx4tv3YAIF3419WMvmniw==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-is-mounted': 2.0.4(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/progress': 3.4.11(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/progress': 3.5.2(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-is-mounted': 2.0.5(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/progress': 3.4.11(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/progress': 3.5.2(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/radio@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-vRX0ppM5Tlzu0HoqTG6LdmQnMjk8RRl66BH1+QaosvZRXA1iIdA3BduqQYqn5ZZHBBlJ2u9QzaD3lTAlWIHvNg==} + /@nextui-org/radio@2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-h8SSQTDj0NzB13r77RrcEDuWNSpE00ioO7GJKTROd09YQSmck/AID1+ktsDMRQYjoPMPJ7vgwJHuRoKIjXn1CQ==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/radio': 3.10.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/radio': 3.10.2(react@18.2.0) - '@react-types/radio': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/radio': 3.10.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + '@react-stately/radio': 3.10.2(react@18.3.0) + '@react-types/radio': 3.7.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/react-rsc-utils@2.0.10: - resolution: {integrity: sha512-LNePDEThUF9PAbJW4T8k7EgSfqwlvGku5fIqJ1IA9+OpVy5LqhrUQehjvgXe63N1RupC7Pt+XvaaxkGu9U2FiQ==} + /@nextui-org/react-rsc-utils@2.0.12: + resolution: {integrity: sha512-s2IG4pM1K+kbm6A2g3UpqrS592AExpGixtZNPJ2lV5+UQi1ld3vb4EiBIOViZMoSCNCoNdaeO5Yqo6cKghwCPA==} dev: false - /@nextui-org/react-utils@2.0.10(react@18.2.0): - resolution: {integrity: sha512-bcA+k7ZdcgcK+r/8nrCtbdgHo0SD6jicbazWIokknFwjb97JQ7ooaMwxnLt5E5sswCAv0XeLwybOmrgm7JA5TA==} + /@nextui-org/react-utils@2.0.13(react@18.3.0): + resolution: {integrity: sha512-4DM1Cph1lVY64T/HDyEqcxYkInXx6hdL1Kp9StLza9yqgYmVipTaPkWZdmWbfkhP+dVVqrH3DVFfHtpLTQ625w==} peerDependencies: react: '>=18' dependencies: - '@nextui-org/react-rsc-utils': 2.0.10 - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - react: 18.2.0 + '@nextui-org/react-rsc-utils': 2.0.12 + '@nextui-org/shared-utils': 2.0.5 + react: 18.3.0 dev: false - /@nextui-org/react@2.2.10(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1)(tailwindcss@3.4.3): - resolution: {integrity: sha512-YJhUIeLnO/FGDbZgfeWEz32RBrH2YFA1qsJQtMF7mza8rjspX/CkankvI7xs1o6sW/TYLSTq7sOF9RGMxLTIAA==} + /@nextui-org/react@2.3.6(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1)(tailwindcss@3.4.3): + resolution: {integrity: sha512-mA3IgPBmVZLpwLxn1t97fpwjBL+dZdAt4x9+3TjJfEQjbH9j/FvUsOAIpaT53BMcDIWrqP3Co3yR+AbplgSiEg==} peerDependencies: framer-motion: '>=4.0.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/accordion': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/autocomplete': 2.0.10(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/avatar': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/badge': 2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/breadcrumbs': 2.0.4(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/card': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/checkbox': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/chip': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/code': 2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/dropdown': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/image': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/input': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/kbd': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/link': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/modal': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/navbar': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/pagination': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/progress': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/radio': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/scroll-shadow': 2.1.13(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/select': 2.1.21(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/skeleton': 2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/slider': 2.2.6(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/snippet': 2.0.31(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/spacer': 2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/spinner': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/switch': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/table': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/tabs': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/user': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/accordion': 2.0.32(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/autocomplete': 2.0.16(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/avatar': 2.0.27(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/badge': 2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/breadcrumbs': 2.0.7(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/button': 2.0.31(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/calendar': 2.0.4(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/card': 2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/checkbox': 2.0.29(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/chip': 2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/code': 2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/date-input': 2.0.3(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/date-picker': 2.0.7(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/divider': 2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/dropdown': 2.1.23(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/framer-utils': 2.0.18(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/image': 2.0.27(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/input': 2.1.21(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/kbd': 2.0.28(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/link': 2.0.29(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/listbox': 2.1.19(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/menu': 2.0.22(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/modal': 2.0.33(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/navbar': 2.0.30(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/pagination': 2.0.30(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/popover': 2.1.21(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/progress': 2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/radio': 2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/ripple': 2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/select': 2.1.27(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/skeleton': 2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/slider': 2.2.9(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/snippet': 2.0.35(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/spacer': 2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/spinner': 2.0.28(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/switch': 2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/table': 2.0.33(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/tabs': 2.0.29(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/tooltip': 2.0.33(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/user': 2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - '@types/react' - tailwind-variants - tailwindcss dev: false - /@nextui-org/ripple@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-PCvAk9ErhmPX46VRmhsg8yMxw3Qd9LY7BDkRRfIF8KftgRDyOpG2vV8DxvSOxQu1/aqBWkkHNUuEjM/EvSEung==} + /@nextui-org/ripple@2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-tAxuPjVncx6rSzdHqcFGiprlUo7p+tkTf0c9RMC47DtgIG1DLhFVr0z6QkggmLd1Tgwcj4a3Oyj/PAQMDRxswg==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1620,34 +1716,34 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/scroll-shadow@2.1.13(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-hFoVGplGMWuE+KXRz9gtKRq3e0YYkxutrqjDD0BiDHk4WkiyOrTnNuE6wnJTnd6Hd+kavLPBDu2+yGauDb7/Qg==} + /@nextui-org/scroll-shadow@2.1.16(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-QkOHNFQqEdfSj6iAKd4SusZpmyaJcBFCvx4zLLrWCXGS0+0KWvuaq/dOE8PXSPo4vts4TGDQp6qQGhk0BFvttg==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-data-scroll-overflow': 2.1.3(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-data-scroll-overflow': 2.1.4(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/select@2.1.21(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-BVfmxIsZTL6dBiZ1Q5RbAnqiNpVnaJgWi0M1QMV448FHMaDHLTWtNOJPMD0QyxHRNPfDgFrqEAq6a1+pA26ckQ==} + /@nextui-org/select@2.1.27(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-SLEOir+I09y9wA1reIJRefovyR48Pn+L6oMIiZqYCA0ndGnz3K1g2gsSZ6fyCb9obwZvjzFGvIsrYkW0btUzlA==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1655,94 +1751,91 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.75)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/scroll-shadow': 2.1.13(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/spinner': 2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) - '@nextui-org/use-aria-multiselect': 2.1.4(react-dom@18.2.0)(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/aria-utils': 2.0.18(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/listbox': 2.1.19(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/popover': 2.1.21(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(@types/react@18.3.0)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/scroll-shadow': 2.1.16(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/spinner': 2.0.28(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-aria-button': 2.0.7(react@18.3.0) + '@nextui-org/use-aria-multiselect': 2.1.5(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/form': 3.0.3(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - '@types/react' - tailwind-variants dev: false - /@nextui-org/shared-icons@2.0.6(react@18.2.0): - resolution: {integrity: sha512-Mw5utPJAclFaeKAZowznEgabI5gdhXrW0iMaMA18Y4zcZRTidAc0WFeGYUlX876NxYLPc1Zk4bZUhQvMe+7uWg==} + /@nextui-org/shared-icons@2.0.7(react@18.3.0): + resolution: {integrity: sha512-GsotFeRbwxhc2eQt7Z6edcVYfklpaSzo93Xodryb82SokRaSOKt9BEpUXgk2TExAvJMjDnB4T8nk8ANWsFaXOw==} peerDependencies: react: '>=18' dependencies: - react: 18.2.0 + react: 18.3.0 dev: false - /@nextui-org/shared-utils@2.0.4(react@18.2.0): - resolution: {integrity: sha512-Ms7A6UCvo/SZt/9Nmb7cZwHe9fZFw+EPsieTnC1vtpvDNCasxrTB0hj9VWFoYfWOaCzzqxl1AL9maIz/gMvckQ==} - peerDependencies: - react: '>=18' - dependencies: - react: 18.2.0 + /@nextui-org/shared-utils@2.0.5: + resolution: {integrity: sha512-aFc/CUL8RVfBh0IotIpxkpKjyUPc/zJaMJd5pRCQA1kIpKLdSrlh3//MLYMaP/fo/NQtE3DPeXqfKhHRr1fkEw==} dev: false - /@nextui-org/skeleton@2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-bsb+lYugSfQV3RHrEHLbHhkkeslaxybnnT4z485Y/GBYTENOiHIOnWFWntfxCbjZ6vCewGlfgnphj6zeqlk20g==} + /@nextui-org/skeleton@2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-AolxdzJ4xCyb7i2DwZ1iQGSaLGUBYh/rorO8llBqsXDpvhBANcFF3DbRO3kQ+EVGr5AEbEeurd3RabC2F6wVDA==} peerDependencies: '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system-rsc': 2.1.1(@nextui-org/theme@2.2.3)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/slider@2.2.6(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-adCjQ8k4bUwWcvmOJUki3+UVsCz4ms+qLG4jnY2wClPdQAwISMbZzQsuv3km+1HIZE5Ja7jzeeT/dMd8l3n+bg==} + /@nextui-org/slider@2.2.9(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-y/Oxhl1OkY7amgYpHZwCF4dF6Uop0Pb+k6m6CNCeXIBL3KFT1Hw9yd17NrV05BekA1llfJrVHEvzneBuTTbbbA==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/slider': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/slider': 3.5.2(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/tooltip': 2.0.33(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/slider': 3.7.6(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + '@react-stately/slider': 3.5.2(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - framer-motion - tailwind-variants dev: false - /@nextui-org/snippet@2.0.31(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-WooH5cqlHoa6SqUhzseKY7g1ah8kzSv382u95Or9kIgSirEZCrjygup3nFeKTMAe01NZoAz3OOYO7XNFWJ57vA==} + /@nextui-org/snippet@2.0.35(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-2GYxzt6ZBqgEn6XYgi+uU8YMPfMPCAORMXiw/Q+QTuoLQPgKFqsjnQKV7FI581Dax61mIMI5QL5WsQ0oG6PtFw==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1750,144 +1843,145 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/use-clipboard': 2.0.4(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/button': 2.0.31(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/tooltip': 2.0.33(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/use-clipboard': 2.0.5(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/spacer@2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-bLnhPRnoyHQXhLneHjbRqZNxJWMFOBYOZkuX83uy59/FFUY07BcoNsb2s80tN3GoVxsaZ2jB6NxxVbaCJwoPog==} + /@nextui-org/spacer@2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-2zYe6PR7Mk4xQpzEhAAkZ8fBp75h7XhgSB7u1aiqW2hJzcuD82hn1SLoUacrYJeO/FBO5UJKQmc8LT63JtuzWQ==} peerDependencies: '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system-rsc': 2.1.1(@nextui-org/theme@2.2.3)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/spinner@2.0.25(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-s2iqaB71sanRxglJtG4UZF+Rz/W6UxnYegbkhnkkljH20vhOcrhwm5jKGStq8jkata8UZ0ajS67H8KY8lHV8nw==} + /@nextui-org/spinner@2.0.28(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-hlixGubd91KFSHIjwE0/vLmkSOtUwl56uFrsHBred2pqq8/1CAVlN7aINwoUotZRc5W0T7lyEQGvf88t0Dd3CA==} peerDependencies: '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system-rsc': 2.1.1(@nextui-org/theme@2.2.3)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/switch@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-U7g68eReMSkgG0bBOSdzRLK+npv422YK6WYHpYOSkEBDqGwQ7LCeMRQreT/KxN0QFxIKmafebdLHAbuKc/X+5Q==} + /@nextui-org/switch@2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-cogzyB7Ng95WP/neMBWgOLRkw2GC/qLQoW0gTuuT53lTEnAtatFikNoL30CyA/EZzz7YsUjLH2W+9kBiZLtITQ==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/switch': 3.6.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/switch': 3.6.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + '@react-stately/toggle': 3.7.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/system-rsc@2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-1QqZ+GM7Ii0rsfSHXS6BBjzKOoLIWwb72nm4h4WgjlMXbRKLZcCQasRHVe5HMSBMvN0JUo7qyGExchfDFl/Ubw==} + /@nextui-org/system-rsc@2.1.1(@nextui-org/theme@2.2.3)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-gkTKNAbTZVl81SVJsaLHp4iqyd956y40UIGUXPeq0pwOGLM0xGWSkLbkNT8WtdPUt3bSD9y0xuKbiV3tpSBGOA==} peerDependencies: '@nextui-org/theme': '>=2.1.0' react: '>=18' tailwind-variants: '>=0.1.13' dependencies: - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) clsx: 1.2.1 - react: 18.2.0 + react: 18.3.0 tailwind-variants: 0.2.1(tailwindcss@3.4.3) dev: false - /@nextui-org/system@2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-WFDq+Rx6D+gmK1YGEG2RBARPK9EOYonQDt5Tq2tUchzOOqj3kXXcM5Z0F3fudM59eIncLa/tX/ApJSTLry+hsw==} + /@nextui-org/system@2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-dkj2DAye6pjpVheoJKup+L8CyK774YORudkum+5zCuwyOe50IV2j6wbGqyWir9cI1fruFUsfzQ1NR4KljWNqFQ==} peerDependencies: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.1) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@internationalized/date': 3.5.2 + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/system-rsc': 2.1.1(@nextui-org/theme@2.2.3)(react@18.3.0)(tailwind-variants@0.2.1) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/overlays': 3.21.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - '@nextui-org/theme' - tailwind-variants dev: false - /@nextui-org/table@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-qH/7jdV5+tiMDDvBfMrUZN4jamds0FsL5Ak+ighoKIUYRFTSXOroi+63ZzzAh/mZAsUALCPPcfbXt4r4aBFDzg==} + /@nextui-org/table@2.0.33(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-mUqGGWCoEo5z49s60IrVnBDcSgT8K2T5+x5qqmk30v09B6s5c8dqyL7NAC+pk7BayHqr5xEW42EqMbRKmVvtCw==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/checkbox': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-icons': 2.0.6(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/spacer': 2.0.24(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/table': 3.13.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/table': 3.11.6(react@18.2.0) - '@react-stately/virtualizer': 3.6.8(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/table': 3.9.3(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/checkbox': 2.0.29(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-icons': 2.0.7(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/spacer': 2.0.27(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/table': 3.13.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + '@react-stately/table': 3.11.6(react@18.3.0) + '@react-stately/virtualizer': 3.6.8(react@18.3.0) + '@react-types/grid': 3.2.4(react@18.3.0) + '@react-types/table': 3.9.3(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/tabs@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-GjERgBYUAY1KD4GqNVy0cRi6GyQnf62q0ddcN4je3sEM6rsq3PygEXhkN5pxxFPacoYM/UE6rBswHSKlbjJjgw==} + /@nextui-org/tabs@2.0.29(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-RthZ+lNyXQ3CNXMRiQdQMGGsWJurS7ESrhowLRtTiDOPYhnJxAMqrqzI3k8ZgDIBirC/1zEoOdn89oqd2Pa5gw==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1895,33 +1989,33 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-is-mounted': 2.0.4(react@18.2.0) - '@nextui-org/use-update-effect': 2.0.4(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/tabs': 3.8.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/tabs': 3.6.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/tabs': 3.3.5(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/aria-utils': 2.0.18(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/framer-utils': 2.0.18(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-is-mounted': 2.0.5(react@18.3.0) + '@nextui-org/use-update-effect': 2.0.5(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/tabs': 3.8.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/tabs': 3.6.4(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@react-types/tabs': 3.3.5(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) scroll-into-view-if-needed: 3.0.10 transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/theme@2.1.18(tailwindcss@3.4.3): - resolution: {integrity: sha512-2ptDh350lVD0yejZTpGv4fkeoGKB8+B/Coblzpjijfofn/t6MQIRIRRLp04wCCa/IbeevjS2wyadWpMDtVh3CQ==} + /@nextui-org/theme@2.2.3(tailwindcss@3.4.3): + resolution: {integrity: sha512-p8gZ+4dQxA4ZO9RxVljAs37EYtQsw0n9DtXD6f395gpl0DLKRq/d4oCQ887oC6lHDyTibtaHHtOu+MKzK6j7Gw==} peerDependencies: - tailwindcss: '*' + tailwindcss: '>=3.4.0' dependencies: color: 4.2.3 color2k: 2.0.3 @@ -1936,8 +2030,8 @@ packages: tailwindcss: 3.4.3(ts-node@10.9.2) dev: false - /@nextui-org/tooltip@2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1): - resolution: {integrity: sha512-V3N9o/oNU1Y11etiilrlqt5dF4/o9eJSttgN2CPo8eRAPc96+sRpdGPGX3XcLJZNFRcNx8BkD/bcEUcrDdjmRA==} + /@nextui-org/tooltip@2.0.33(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1): + resolution: {integrity: sha512-WUpBuoZ1ya2iD9EI2d/E58BpPrRJQ2NDnpIU6RjwWe/MGqtxf3oJVQZd6kKpgaD8eB6P3OSiFTwTUK7+AoLmDQ==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' @@ -1945,248 +2039,262 @@ packages: react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.25)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@nextui-org/use-safe-layout-effect': 2.0.4(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/tooltip': 3.7.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/tooltip': 3.4.7(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/tooltip': 3.4.7(react@18.2.0) - framer-motion: 11.0.25(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/aria-utils': 2.0.18(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/framer-utils': 2.0.18(@nextui-org/theme@2.2.3)(framer-motion@11.1.7)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/overlays': 3.21.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/tooltip': 3.7.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/tooltip': 3.4.7(react@18.3.0) + '@react-types/overlays': 3.8.5(react@18.3.0) + '@react-types/tooltip': 3.4.7(react@18.3.0) + framer-motion: 11.1.7(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) transitivePeerDependencies: - tailwind-variants dev: false - /@nextui-org/use-aria-accordion@2.0.2(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-ebYr4CdvWifuTM/yyhQLKCa7aUqbVrWyR0SB6VNCGDID/kvRUW52puWnY9k24xdwY0cKbW3JRciKtQkrokRQwg==} + /@nextui-org/use-aria-accordion@2.0.4(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-5OEi7zrv1F25XCjXSx+tOvyJWN/Modj9+iz5v/QXDJN76sFVIoCoNsUlZS5Vokyt5fImXb3SAlWvOPehqLbSGA==} peerDependencies: react: '>=18' dependencies: - '@react-aria/button': 3.9.3(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/tree': 3.7.6(react@18.2.0) - '@react-types/accordion': 3.0.0-alpha.17(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-aria/button': 3.9.3(react@18.3.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/selection': 3.17.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/tree': 3.7.6(react@18.3.0) + '@react-types/accordion': 3.0.0-alpha.19(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 transitivePeerDependencies: - react-dom dev: false - /@nextui-org/use-aria-button@2.0.6(react@18.2.0): - resolution: {integrity: sha512-38DZ3FK/oPZ3sppfM5EtgJ4DITOajNwSKkAMePBmuSZl+bsW7peP8g5JNd9uPOEz3edCOppT60AQSICsYiH3cg==} + /@nextui-org/use-aria-button@2.0.7(react@18.3.0): + resolution: {integrity: sha512-Cttt4C802RQX6Wae/IiuzdOCVjzHDnUMK8MBwkdDEKR/TVGjaTvPbLOJSw7FNmz0mIrtp7zaTHlRvrbDJmvnIQ==} peerDependencies: react: '>=18' dependencies: - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@nextui-org/use-aria-link@2.0.15(react@18.2.0): - resolution: {integrity: sha512-znzOeTZ10o3O5F2nihi8BR8rAhRHgrRWcEBovV7OqJeFzvTQwsHl9/xy45zBfwJQksBtfcBfQf+GEHXeDwfigA==} + /@nextui-org/use-aria-link@2.0.16(react@18.3.0): + resolution: {integrity: sha512-nxaSkHlSNbsODYDusoh6+bt8B7ndoAD82pC1b0c0M0kFP14hktzIf9noaY+bSujcI9MlLJR1WLwZoHGYC5Mlng==} peerDependencies: react: '>=18' dependencies: - '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/link': 3.5.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/link': 3.5.3(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@nextui-org/use-aria-modal-overlay@2.0.6(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-JfhXvH2RObWpHeLmxdIBDPF2SDzV4SqBvEh01yRvg/EuZ3HDRfCnTDh+5HD0ziUVdk/kWuy/hZLX59sMX7QHWA==} + /@nextui-org/use-aria-menu@2.0.2(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-YV/tp246bWTfZIa6eDnN19Z0VkOB5/SP9qlLtigY0a2lPuGQ/6o3LpcWZxQPOgLwBd6PQwUgNe/RakOO3rRrAQ==} peerDependencies: react: '>=18' react-dom: '>=18' dependencies: - '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/menu': 3.13.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/selection': 3.17.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-stately/tree': 3.7.6(react@18.3.0) + '@react-types/menu': 3.9.7(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/use-aria-multiselect@2.1.4(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-F95sF4eY5TLkom5tIMb+eoT4i0Cc4qygnQRqIosg8OryDbH62/MV4x88GjQsgDCY8dNeWCNVodHXxaWmVSAgyQ==} + /@nextui-org/use-aria-modal-overlay@2.0.8(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-fzMh/UtNEzYKOcjXyM1esGoxorB4nBPkg8vyGqVgkhU+QeI0JdWPEnC6nXAU6j57eh3ZYx/jLEMh1Jeu5IAEmw==} peerDependencies: react: '>=18' react-dom: '>=18' dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/listbox': 3.11.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/menu': 3.13.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-stately/menu': 3.6.1(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/select': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-aria/overlays': 3.21.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/overlays': 3.6.5(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@nextui-org/use-aria-press@2.0.1(react@18.2.0): - resolution: {integrity: sha512-T3MjHH5TU9qnkf872GmhcfQK16ITMmMW9zir6xsSsz0w6ay9Y0XTSPrI2zRL6ociFyfJjP840XCLtSx6VBfEBQ==} + /@nextui-org/use-aria-multiselect@2.1.5(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-AIWVu6iW4EX8RrnNtt3mHxDFtbQ7Io/mr0dpaE/s5HbfPMjljktMdP22YLYUnRXHqOeAfqtRSa9Mq7Qpec2Vtw==} + peerDependencies: + react: '>=18' + react-dom: '>=18' + dependencies: + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/label': 3.7.6(react@18.3.0) + '@react-aria/listbox': 3.11.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/menu': 3.13.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/selection': 3.17.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-stately/list': 3.10.3(react@18.3.0) + '@react-stately/menu': 3.6.1(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/overlays': 3.8.5(react@18.3.0) + '@react-types/select': 3.9.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + dev: false + + /@nextui-org/use-aria-toggle-button@2.0.7(react@18.3.0): + resolution: {integrity: sha512-m+1qjSoJrzMf6oefh1RTYSA0l/JbU9v3cHwpoX/OjCE6q3EpLaqgI/U679oxpd7OLPrWq6HmBKOzKt6ZmokMYw==} peerDependencies: react: '>=18' dependencies: - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@nextui-org/use-aria-button': 2.0.7(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/toggle': 3.7.2(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@nextui-org/use-aria-toggle-button@2.0.6(react@18.2.0): - resolution: {integrity: sha512-6Sjp7a0HQjmboLKNZu9AtZmyHz8+vhqcDwJDYTZjrrna0udxEXG+6C14YZzQxoJcvuaMimr5E8Aq0AxyRAr0MQ==} + /@nextui-org/use-callback-ref@2.0.5(react@18.3.0): + resolution: {integrity: sha512-lcjlV5yaDTiFSv06E5RtQNqy+O6XqH/Q/yz+ka1ZBlZF/FdzEPNRfJ0shN2D7Sh3DdbvV2lySbA2g/0d94geaw==} peerDependencies: react: '>=18' dependencies: - '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.0) + react: 18.3.0 dev: false - /@nextui-org/use-callback-ref@2.0.4(react@18.2.0): - resolution: {integrity: sha512-GF50SzOFU/R0gQT1TmjbEUiS8CQ87qiV5Rp/TD5pqys1xprVgGLUUNQzlh+YDS2JHNu5FGlZc4sJKhtf2xF5aw==} + /@nextui-org/use-clipboard@2.0.5(react@18.3.0): + resolution: {integrity: sha512-1ExwXM8ENmc/kVDqKoiPGrBP/0B7rZ43iSv2MoWD1Qpc8GHg71Rv7NTIlBDoD/pfUfqkab6x66iKC7AVR8rifA==} peerDependencies: react: '>=18' dependencies: - '@nextui-org/use-safe-layout-effect': 2.0.4(react@18.2.0) - react: 18.2.0 + react: 18.3.0 dev: false - /@nextui-org/use-clipboard@2.0.4(react@18.2.0): - resolution: {integrity: sha512-rMcaX0QsolOJ1BQbp1T/FVsSPn2m0Ss4Z+bbdS7eM6EFKtJdVJWlpbrST0/kR2UcW1KWeK27NYmtNPF5+hgZMA==} + /@nextui-org/use-data-scroll-overflow@2.1.4(react@18.3.0): + resolution: {integrity: sha512-0YqUAe/b9aZftUQOH7sWqBMJHGLyC2Q/ixFyjq8Q1TijrqEyGESGQ2tm0+FHytI04drV+mnsbf6+q2QIKyqGSg==} peerDependencies: react: '>=18' dependencies: - react: 18.2.0 + '@nextui-org/shared-utils': 2.0.5 + react: 18.3.0 dev: false - /@nextui-org/use-data-scroll-overflow@2.1.3(react@18.2.0): - resolution: {integrity: sha512-f4rDr4MHGQTyqTd6L4MpKAcKfPDiVeWfYXXXX6gdN8UVTk+PzW675Fe+l7ATBgmaVTn1AEPJwW9dDUJcDpn21g==} + /@nextui-org/use-disclosure@2.0.7(react@18.3.0): + resolution: {integrity: sha512-h86z6H/eTQ6RMAYkWBvItgV0uh4UDTbJIa8hvDguzYLyGk5Ji+7HXotCUwKELrK/+QuOtAFYcJ6+Cp8zp7tZuA==} peerDependencies: react: '>=18' dependencies: - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - react: 18.2.0 + '@nextui-org/use-callback-ref': 2.0.5(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + react: 18.3.0 dev: false - /@nextui-org/use-disclosure@2.0.6(react@18.2.0): - resolution: {integrity: sha512-pazzLsAGKjUD4cMVySTivItmIgpsfIf4baP/02K0Xc8tbFAH4K1n7cUnEEjs+MTXy1Bprvz3pfAHDGZRDI1yYg==} + /@nextui-org/use-image@2.0.5(react@18.3.0): + resolution: {integrity: sha512-FAMyvZS9XSNLqHEmU6xykMgwIFJj/V9/JpTiZAQziz2wqMiUONIBpYpGOlI+pPBNlhCkw62KHm/19vHW49FWhA==} peerDependencies: react: '>=18' dependencies: - '@nextui-org/use-callback-ref': 2.0.4(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - react: 18.2.0 + '@nextui-org/use-safe-layout-effect': 2.0.5(react@18.3.0) + react: 18.3.0 dev: false - /@nextui-org/use-image@2.0.4(react@18.2.0): - resolution: {integrity: sha512-tomOkrhlhTA45qA/MLh1YmiWVGgJ2KeM0qBSLP1ikVcppc/e9UtkIJjHIGdNCnHZTjoPEh53HzyJeUMlYUM9uw==} + /@nextui-org/use-is-mobile@2.0.7(react@18.3.0): + resolution: {integrity: sha512-BmOseC8Xmp5Xl8EKrsl/MoYtz0aIkezMatYGBCoGDGUosaKx8kNYv6T2WVA3uKj1Gr3s4dHhMCuISvcpE9XOiQ==} peerDependencies: react: '>=18' dependencies: - '@nextui-org/use-safe-layout-effect': 2.0.4(react@18.2.0) - react: 18.2.0 + '@react-aria/ssr': 3.9.2(react@18.3.0) + react: 18.3.0 dev: false - /@nextui-org/use-is-mobile@2.0.6(react@18.2.0): - resolution: {integrity: sha512-HeglWUoq6Ln8P5n6s1SZvBRatLYMKsiXQM7Mk2l+6jFByzZh3VWtZ05xmuX8te/1rGmeUxjeXtW6x+F7/f/JoA==} + /@nextui-org/use-is-mounted@2.0.5(react@18.3.0): + resolution: {integrity: sha512-gk698Uwmj/XhchBsnI5Ups5uzEXuZvsPK45K6goi2/ADKXSYxHOcSgwoexytqJBb/7tpi+emi2CRTAjAFZDQqA==} peerDependencies: react: '>=18' dependencies: - '@react-aria/ssr': 3.9.2(react@18.2.0) - react: 18.2.0 + react: 18.3.0 dev: false - /@nextui-org/use-is-mounted@2.0.4(react@18.2.0): - resolution: {integrity: sha512-NSQwQjg8+k02GVov9cDwtAdop1Cr90eDgB0MAdvu7QCMgfBZjy88IdQnx3Yo7bG4wP45xC0vLjqDBanaK+11hw==} + /@nextui-org/use-measure@2.0.1(react@18.3.0): + resolution: {integrity: sha512-uEtdrdBdFz4Fgbfk2vmQ+rEb+eFa5o4yI90udasvfpaIrMBfrFOlRW5+yn3uXKB8JThET4Gf2on/wlJpo567Dg==} peerDependencies: react: '>=18' dependencies: - react: 18.2.0 + react: 18.3.0 dev: false - /@nextui-org/use-pagination@2.0.5(react@18.2.0): - resolution: {integrity: sha512-wH0sC85XeTPPE4zRq0ycAVB+SpmPEiSmTEGxpBG2sqiJlsrNfEeXvTKf73INXM4IWfP53ONAQ7Nd1T7EVuYSkw==} + /@nextui-org/use-pagination@2.0.6(react@18.3.0): + resolution: {integrity: sha512-/EIrpC/q6xQNDQrODivC3VVkphVmExiFjqqXdyxOHWnhfgC1BhQOqGK0qIPvDoHmk1U7ULKnlh/VuYjGtfTJgg==} peerDependencies: react: '>=18' dependencies: - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - react: 18.2.0 + '@nextui-org/shared-utils': 2.0.5 + '@react-aria/i18n': 3.10.2(react@18.3.0) + react: 18.3.0 dev: false - /@nextui-org/use-safe-layout-effect@2.0.4(react@18.2.0): - resolution: {integrity: sha512-K7ppEhTfzdVOzbgKaNFEBi4HwRfQ8j+kRBQqsU5yo8bSM+5uv8OUy/mjpEf4i02PUDIBmsgJC4En9S537DXrwg==} + /@nextui-org/use-safe-layout-effect@2.0.5(react@18.3.0): + resolution: {integrity: sha512-YQQlqz82aYxMoEq23jQNG/JBPHF1x3opzyXRHAVxgBEFo9OJqBMZTm23ukpTXm2Ev98T6mpWiTHdfyHJ7IoRog==} peerDependencies: react: '>=18' dependencies: - react: 18.2.0 + react: 18.3.0 dev: false - /@nextui-org/use-scroll-position@2.0.4(react@18.2.0): - resolution: {integrity: sha512-5ugiHqQ1OptBmujOsJGigbUt/rQ826+8RKYSpBp1uax1eF7TlpigXt6mS1PDsJIyEauHi8rjH5B3weOn1//tug==} + /@nextui-org/use-scroll-position@2.0.5(react@18.3.0): + resolution: {integrity: sha512-SSHEmv51rXWF4pfQ3YjJuEmUmHFZBLRSM2jtVSfghR3pjckMykFtlyxGhTAcXKAwi5I7rTHcVL2HFOKWSZBdaQ==} peerDependencies: react: '>=18' dependencies: - react: 18.2.0 + react: 18.3.0 dev: false - /@nextui-org/use-update-effect@2.0.4(react@18.2.0): - resolution: {integrity: sha512-HycSl9Eopmy3ypZQxXVR7eov2D0q0zcgldgbIPvlKExbj8OInaIImc9zLMI9oQgfmg/YdvLeFSrfwc5BPrIvlg==} + /@nextui-org/use-update-effect@2.0.5(react@18.3.0): + resolution: {integrity: sha512-4r2CXAD598xc2ifMu97kf8V/lj+NDct2oITbxgXeV4ezWaXHy5/26r1iyVnBzRN/VBz3fwHx3hHdftzcYSZxdA==} peerDependencies: react: '>=18' dependencies: - react: 18.2.0 + react: 18.3.0 dev: false - /@nextui-org/user@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-Ykh65O0ynJBlstlZowM8KrX6zv/VLfDgYX892Dk0goLwU8gcSILPZE7yGIBZi1XsNN7mE3dmTp/APLFDbkzzXw==} + /@nextui-org/user@2.0.28(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-1WaAZSIzgRMaA+2+BACelxIE4YvPN6MFW+I3SvODwn98aju1yU485akxjenc7XM/5CC6TGZDAXiFz2VcEFIcZA==} peerDependencies: '@nextui-org/system': '>=2.0.0' '@nextui-org/theme': '>=2.1.0' react: '>=18' react-dom: '>=18' dependencies: - '@nextui-org/avatar': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0) - '@nextui-org/react-utils': 2.0.10(react@18.2.0) - '@nextui-org/shared-utils': 2.0.4(react@18.2.0) - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.18)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.1) - '@nextui-org/theme': 2.1.18(tailwindcss@3.4.3) - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@nextui-org/avatar': 2.0.27(@nextui-org/system@2.1.2)(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0) + '@nextui-org/react-utils': 2.0.13(react@18.3.0) + '@nextui-org/shared-utils': 2.0.5 + '@nextui-org/system': 2.1.2(@nextui-org/theme@2.2.3)(react-dom@18.3.0)(react@18.3.0)(tailwind-variants@0.2.1) + '@nextui-org/theme': 2.2.3(tailwindcss@3.4.3) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false /@nodelib/fs.scandir@2.1.5: @@ -2213,146 +2321,194 @@ packages: requiresBuild: true optional: true - /@react-aria/breadcrumbs@3.5.11(react@18.2.0): + /@react-aria/breadcrumbs@3.5.11(react@18.3.0): resolution: {integrity: sha512-bQz4g2tKvcWxeqPGj9O0RQf++Ka8f2o/pJMJB+QQ27DVQWhxpQpND//oFku2aFYkxHB/fyD9qVoiqpQR25bidw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/link': 3.6.5(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/breadcrumbs': 3.7.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/link': 3.6.5(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/breadcrumbs': 3.7.3(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/button@3.9.3(react@18.2.0): + /@react-aria/button@3.9.3(react@18.3.0): resolution: {integrity: sha512-ZXo2VGTxfbaTEnfeIlm5ym4vYpGAy8sGrad8Scv+EyDAJWLMKokqctfaN6YSWbqUApC3FN63IvMqASflbmnYig==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/toggle': 3.7.2(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/checkbox@3.14.1(react@18.2.0): + /@react-aria/calendar@3.5.1(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-3gGiI2arrGQtlPD9633l00TR4y5dj9IMFapEiCDuwVwNSCsnH8aiz/emg+3hGFq86QoyvkFBvnKmezJIVKfPkA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + dependencies: + '@internationalized/date': 3.5.2 + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/live-announcer': 3.3.2 + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/calendar': 3.4.1(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/calendar': 3.4.1(react@18.3.0) + '@react-types/shared': 3.21.0(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + dev: false + + /@react-aria/checkbox@3.14.1(react@18.3.0): resolution: {integrity: sha512-b4rtrg5SpRSa9jBOqzJMmprJ+jDi3KyVvUh+DsvISe5Ti7gVAhMBgnca1D0xBp22w2jhk/o4gyu1bYxGLum0GA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/toggle': 3.10.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/checkbox': 3.6.3(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/form': 3.0.3(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/label': 3.7.6(react@18.3.0) + '@react-aria/toggle': 3.10.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/checkbox': 3.6.3(react@18.3.0) + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-stately/toggle': 3.7.2(react@18.3.0) + '@react-types/checkbox': 3.7.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/combobox@3.8.4(react-dom@18.2.0)(react@18.2.0): + /@react-aria/combobox@3.8.4(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-HyTWIo2B/0xq0Of+sDEZCfJyf4BvCvDYIWG4UhjqL1kHIHIGQyyr+SldbVUjXVYnk8pP1eGB3ttiREujjjALPQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/listbox': 3.11.5(react-dom@18.2.0)(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/listbox': 3.11.5(react-dom@18.3.0)(react@18.3.0) '@react-aria/live-announcer': 3.3.2 - '@react-aria/menu': 3.13.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/textfield': 3.14.3(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/combobox': 3.8.2(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/combobox': 3.10.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-aria/menu': 3.13.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/overlays': 3.21.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/selection': 3.17.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/textfield': 3.14.3(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-stately/combobox': 3.8.2(react@18.3.0) + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/combobox': 3.10.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@react-aria/dialog@3.5.12(react-dom@18.2.0)(react@18.2.0): + /@react-aria/datepicker@3.9.3(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-1AjCAizd88ACKjVNhFazX4HZZFwWi2rsSlGCTm66Nx6wm5N/Cpbm466dpYEFyQUsKSOG4CC65G1zfYoMPe48MQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + dependencies: + '@internationalized/date': 3.5.2 + '@internationalized/number': 3.5.1 + '@internationalized/string': 3.2.1 + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/form': 3.0.3(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/label': 3.7.6(react@18.3.0) + '@react-aria/spinbutton': 3.6.3(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/datepicker': 3.9.2(react@18.3.0) + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/calendar': 3.4.4(react@18.3.0) + '@react-types/datepicker': 3.7.2(react@18.3.0) + '@react-types/dialog': 3.5.8(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + dev: false + + /@react-aria/dialog@3.5.12(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-7UJR/h/Y364u6Ltpw0bT51B48FybTuIBacGpEJN5IxZlpxvQt0KQcBDiOWfAa/GQogw4B5hH6agaOO0nJcP49Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/dialog': 3.5.8(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/overlays': 3.21.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/dialog': 3.5.8(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@react-aria/focus@3.16.2(react@18.2.0): + /@react-aria/focus@3.16.2(react@18.3.0): resolution: {integrity: sha512-Rqo9ummmgotESfypzFjI3uh58yMpL+E+lJBbQuXkBM0u0cU2YYzu0uOrFrq3zcHk997udZvq1pGK/R+2xk9B7g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - clsx: 2.1.0 - react: 18.2.0 + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + clsx: 2.1.1 + react: 18.3.0 dev: false - /@react-aria/form@3.0.3(react@18.2.0): + /@react-aria/form@3.0.3(react@18.3.0): resolution: {integrity: sha512-5Q2BHE4TTPDzGY2npCzpRRYshwWUb3SMUA/Cbz7QfEtBk+NYuVaq3KjvqLqgUUdyKtqLZ9Far0kIAexloOC4jw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/grid@3.8.8(react-dom@18.2.0)(react@18.2.0): + /@react-aria/grid@3.8.8(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-7Bzbya4tO0oIgqexwRb8D6ZdC0GASYq9f/pnkrqocgvG9e1SCld4zOioKbYQDvAK/NnbCgXmmdqFAcLM/iazaA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) '@react-aria/live-announcer': 3.3.2 - '@react-aria/selection': 3.17.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/grid': 3.8.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-stately/virtualizer': 3.6.8(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-aria/selection': 3.17.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-stately/grid': 3.8.5(react@18.3.0) + '@react-stately/selection': 3.14.3(react@18.3.0) + '@react-stately/virtualizer': 3.6.8(react@18.3.0) + '@react-types/checkbox': 3.7.1(react@18.3.0) + '@react-types/grid': 3.2.4(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@react-aria/i18n@3.10.2(react@18.2.0): + /@react-aria/i18n@3.10.2(react@18.3.0): resolution: {integrity: sha512-Z1ormoIvMOI4mEdcFLYsoJy9w/EzBdBmgfLP+S/Ah+1xwQOXpgwZxiKOhYHpWa0lf6hkKJL34N9MHJvCJ5Crvw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -2361,360 +2517,406 @@ packages: '@internationalized/message': 3.1.2 '@internationalized/number': 3.5.1 '@internationalized/string': 3.2.1 - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/ssr': 3.9.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/interactions@3.21.1(react@18.2.0): + /@react-aria/interactions@3.21.1(react@18.3.0): resolution: {integrity: sha512-AlHf5SOzsShkHfV8GLLk3v9lEmYqYHURKcXWue0JdYbmquMRkUsf/+Tjl1+zHVAQ8lKqRnPYbTmc4AcZbqxltw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/ssr': 3.9.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/label@3.7.6(react@18.2.0): + /@react-aria/label@3.7.6(react@18.3.0): resolution: {integrity: sha512-ap9iFS+6RUOqeW/F2JoNpERqMn1PvVIo3tTMrJ1TY1tIwyJOxdCBRgx9yjnPBnr+Ywguep+fkPNNi/m74+tXVQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/link@3.6.5(react@18.2.0): + /@react-aria/link@3.6.5(react@18.3.0): resolution: {integrity: sha512-kg8CxKqkciQFzODvLAfxEs8gbqNXFZCW/ISOE2LHYKbh9pA144LVo71qO3SPeYVVzIjmZeW4vEMdZwqkNozecw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/link': 3.5.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/link': 3.5.3(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/listbox@3.11.5(react-dom@18.2.0)(react@18.2.0): + /@react-aria/listbox@3.11.5(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-y3a3zQYjT+JKgugCMMKS7K9sRoCoP1Z6Fiiyfd77OHXWzh9RlnvWGsseljynmbxLzSuPwFtCYkU1Jz4QwsPUIg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-types/listbox': 3.4.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/label': 3.7.6(react@18.3.0) + '@react-aria/selection': 3.17.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-stately/list': 3.10.3(react@18.3.0) + '@react-types/listbox': 3.4.7(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false /@react-aria/live-announcer@3.3.2: resolution: {integrity: sha512-aOyPcsfyY9tLCBhuUaYCruwcd1IrYLc47Ou+J7wMzjeN9v4lsaEfiN12WFl8pDqOwfy6/7It2wmlm5hOuZY8wQ==} dependencies: - '@swc/helpers': 0.5.8 + '@swc/helpers': 0.5.11 dev: false - /@react-aria/menu@3.13.1(react-dom@18.2.0)(react@18.2.0): + /@react-aria/menu@3.13.1(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-jF80YIcvD16Fgwm5pj7ViUE3Dj7z5iewQixLaFVdvpgfyE58SD/ZVU9/JkK5g/03DYM0sjpUKZGkdFxxw8eKnw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/menu': 3.6.1(react@18.2.0) - '@react-stately/tree': 3.7.6(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/menu': 3.9.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/overlays': 3.21.1(react-dom@18.3.0)(react@18.3.0) + '@react-aria/selection': 3.17.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-stately/menu': 3.6.1(react@18.3.0) + '@react-stately/tree': 3.7.6(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/menu': 3.9.7(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@react-aria/overlays@3.21.1(react-dom@18.2.0)(react@18.2.0): + /@react-aria/overlays@3.21.1(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-djEBDF+TbIIOHWWNpdm19+z8xtY8U+T+wKVQg/UZ6oWnclSqSWeGl70vu73Cg4HVBJ4hKf1SRx4Z/RN6VvH4Yw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/ssr': 3.9.2(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + '@react-stately/overlays': 3.6.5(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/overlays': 3.8.5(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@react-aria/progress@3.4.11(react@18.2.0): + /@react-aria/progress@3.4.11(react@18.3.0): resolution: {integrity: sha512-RePHbS15/KYFiApYLdwazwvWKsB9q0Kn5DGCSb0hqCC+k2Eui8iVVOsegswiP+xqkk/TiUCIkBEw22W3Az4kTg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/progress': 3.5.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/label': 3.7.6(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/progress': 3.5.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/radio@3.10.2(react@18.2.0): + /@react-aria/radio@3.10.2(react@18.3.0): resolution: {integrity: sha512-CTUTR+qt3BLjmyQvKHZuVm+1kyvT72ZptOty++sowKXgJApTLdjq8so1IpaLAr8JIfzqD5I4tovsYwIQOX8log==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/radio': 3.10.2(react@18.2.0) - '@react-types/radio': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/form': 3.0.3(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/label': 3.7.6(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/radio': 3.10.2(react@18.3.0) + '@react-types/radio': 3.7.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/selection@3.17.5(react-dom@18.2.0)(react@18.2.0): + /@react-aria/selection@3.17.5(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-gO5jBUkc7WdkiFMlWt3x9pTSuj3Yeegsxfo44qU5NPlKrnGtPRZDWrlACNgkDHu645RNNPhlyoX0C+G8mUg1xA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/selection': 3.14.3(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@react-aria/slider@3.7.6(react@18.2.0): + /@react-aria/slider@3.7.6(react@18.3.0): resolution: {integrity: sha512-ZeZhyHzhk9gxGuThPKgX2K3RKsxPxsFig1iYoJvqP8485NtHYQIPht2YcpEKA9siLxGF0DR9VCfouVhSoW0AEA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/slider': 3.5.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/slider': 3.7.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/label': 3.7.6(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/slider': 3.5.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@react-types/slider': 3.7.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/ssr@3.9.2(react@18.2.0): + /@react-aria/spinbutton@3.6.3(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-IlfhRu/pc9zOt2C5zSEB7NmmzddvWisGx2iGzw8BwIKMD+cN3uy+Qwp+sG6Z/JzFEBN0F6Mxm3l5lhbiqjpICQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + dependencies: + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/live-announcer': 3.3.2 + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/button': 3.9.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + dev: false + + /@react-aria/ssr@3.9.2(react@18.3.0): resolution: {integrity: sha512-0gKkgDYdnq1w+ey8KzG9l+H5Z821qh9vVjztk55rUg71vTk/Eaebeir+WtzcLLwTjw3m/asIjx8Y59y1lJZhBw==} engines: {node: '>= 12'} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/switch@3.6.2(react@18.2.0): + /@react-aria/switch@3.6.2(react@18.3.0): resolution: {integrity: sha512-X5m/omyhXK+V/vhJFsHuRs2zmt9Asa/RuzlldbXnWohLdeuHMPgQnV8C9hg3f+sRi3sh9UUZ64H61pCtRoZNwg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/toggle': 3.10.2(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/switch': 3.5.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/toggle': 3.10.2(react@18.3.0) + '@react-stately/toggle': 3.7.2(react@18.3.0) + '@react-types/switch': 3.5.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/table@3.13.5(react-dom@18.2.0)(react@18.2.0): + /@react-aria/table@3.13.5(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-P2nHEDk2CCoEbMFKNCyBC9qvmv7F/IXARDt/7z/J4mKFgU2iNSK+/zw6yrb38q33Zlk8hDaqSYNxHlMrh+/1MQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/grid': 3.8.8(react-dom@18.2.0)(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/grid': 3.8.8(react-dom@18.3.0)(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) '@react-aria/live-announcer': 3.3.2 - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-aria/visually-hidden': 3.8.10(react@18.2.0) - '@react-stately/collections': 3.10.5(react@18.2.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-aria/visually-hidden': 3.8.10(react@18.3.0) + '@react-stately/collections': 3.10.5(react@18.3.0) '@react-stately/flags': 3.0.1 - '@react-stately/table': 3.11.6(react@18.2.0) - '@react-stately/virtualizer': 3.6.8(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/table': 3.9.3(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-stately/table': 3.11.6(react@18.3.0) + '@react-stately/virtualizer': 3.6.8(react@18.3.0) + '@react-types/checkbox': 3.7.1(react@18.3.0) + '@react-types/grid': 3.2.4(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@react-types/table': 3.9.3(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@react-aria/tabs@3.8.5(react-dom@18.2.0)(react@18.2.0): + /@react-aria/tabs@3.8.5(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-Jvt33/W+66n5oCxVwHAYarJ3Fit61vULiPcG7uTez0Mf11cq/C72wOrj+ZuNz6PTLTi2veBNQ7MauY72SnOjRg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/selection': 3.17.5(react-dom@18.2.0)(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/tabs': 3.6.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/tabs': 3.3.5(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/i18n': 3.10.2(react@18.3.0) + '@react-aria/selection': 3.17.5(react-dom@18.3.0)(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/tabs': 3.6.4(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@react-types/tabs': 3.3.5(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /@react-aria/textfield@3.14.3(react@18.2.0): + /@react-aria/textfield@3.14.3(react@18.3.0): resolution: {integrity: sha512-wPSjj/mTABspYQdahg+l5YMtEQ3m5iPCTtb5g6nR1U1rzJkvS4i5Pug6PUXeLeMz2H3ToflPWGlNOqBioAFaOQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/textfield': 3.9.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/form': 3.0.3(react@18.3.0) + '@react-aria/label': 3.7.6(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@react-types/textfield': 3.9.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/toggle@3.10.2(react@18.2.0): + /@react-aria/toggle@3.10.2(react@18.3.0): resolution: {integrity: sha512-DgitscHWgI6IFgnvp2HcMpLGX/cAn+XX9kF5RJQbRQ9NqUgruU5cEEGSOLMrEJ6zXDa2xmOiQ+kINcyNhA+JLg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/toggle': 3.7.2(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/toggle': 3.7.2(react@18.3.0) + '@react-types/checkbox': 3.7.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/tooltip@3.7.2(react@18.2.0): + /@react-aria/tooltip@3.7.2(react@18.3.0): resolution: {integrity: sha512-6jXOSGPao3gPgUQWLbH2r/jxGMqIaIKrJgfwu9TQrh+UkwwiTYW20EpEDCYY2nRFlcoi7EYAiPDSEbHCwXS7Lg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-stately/tooltip': 3.4.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/tooltip': 3.4.7(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/focus': 3.16.2(react@18.3.0) + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-stately/tooltip': 3.4.7(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@react-types/tooltip': 3.4.7(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-aria/utils@3.23.2(react@18.2.0): + /@react-aria/utils@3.23.2(react@18.3.0): resolution: {integrity: sha512-yznR9jJ0GG+YJvTMZxijQwVp+ahP66DY0apZf7X+dllyN+ByEDW+yaL1ewYPIpugxVzH5P8jhnBXsIyHKN411g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - clsx: 2.1.0 - react: 18.2.0 + '@react-aria/ssr': 3.9.2(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + clsx: 2.1.1 + react: 18.3.0 dev: false - /@react-aria/visually-hidden@3.8.10(react@18.2.0): + /@react-aria/visually-hidden@3.8.10(react@18.3.0): resolution: {integrity: sha512-np8c4wxdbE7ZrMv/bnjwEfpX0/nkWy9sELEb0sK8n4+HJ+WycoXXrVxBUb9tXgL/GCx5ReeDQChjQWwajm/z3A==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/interactions': 3.21.1(react@18.3.0) + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/checkbox@3.6.3(react@18.2.0): + /@react-stately/calendar@3.4.1(react@18.3.0): + resolution: {integrity: sha512-XKCdrXNA7/ukZ842EeDZfLqYUQDv/x5RoAVkzTbp++3U/MLM1XZXsqj+5xVlQfJiWpQzM9L6ySjxzzgepJDeuw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + dependencies: + '@internationalized/date': 3.5.2 + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/calendar': 3.4.1(react@18.3.0) + '@react-types/datepicker': 3.7.2(react@18.3.0) + '@react-types/shared': 3.21.0(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + dev: false + + /@react-stately/checkbox@3.6.3(react@18.3.0): resolution: {integrity: sha512-hWp0GXVbMI4sS2NbBjWgOnHNrRqSV4jeftP8zc5JsIYRmrWBUZitxluB34QuVPzrBO29bGsF0GTArSiQZt6BWw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/checkbox': 3.7.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/collections@3.10.5(react@18.2.0): + /@react-stately/collections@3.10.5(react@18.3.0): resolution: {integrity: sha512-k8Q29Nnvb7iAia1QvTanZsrWP2aqVNBy/1SlE6kLL6vDqtKZC+Esd1SDLHRmIcYIp5aTdfwIGd0NuiRQA7a81Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/combobox@3.8.2(react@18.2.0): + /@react-stately/combobox@3.8.2(react@18.3.0): resolution: {integrity: sha512-f+IHuFW848VoMbvTfSakn2WIh2urDxO355LrKxnisXPCkpQHpq3lvT2mJtKJwkPxjAy7xPjpV8ejgga2R6p53Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-stately/select': 3.6.2(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/combobox': 3.10.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-stately/list': 3.10.3(react@18.3.0) + '@react-stately/overlays': 3.6.5(react@18.3.0) + '@react-stately/select': 3.6.2(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/combobox': 3.10.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 + dev: false + + /@react-stately/datepicker@3.9.2(react@18.3.0): + resolution: {integrity: sha512-Z6FrK6Af7R5BizqHhJFCj3Hn32mg5iLSDdEgFQAuO043guOXUKFUAnbxfbQUjL6PGE6QwWMfQD7PPGebHn9Ifw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + dependencies: + '@internationalized/date': 3.5.2 + '@internationalized/string': 3.2.1 + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-stately/overlays': 3.6.5(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/datepicker': 3.7.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false /@react-stately/flags@3.0.1: @@ -2723,391 +2925,431 @@ packages: '@swc/helpers': 0.4.36 dev: false - /@react-stately/form@3.0.1(react@18.2.0): + /@react-stately/form@3.0.1(react@18.3.0): resolution: {integrity: sha512-T1Ul2Ou0uE/S4ECLcGKa0OfXjffdjEHfUFZAk7OZl0Mqq/F7dl5WpoLWJ4d4IyvZzGO6anFNenP+vODWbrF3NA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/grid@3.8.5(react@18.2.0): + /@react-stately/grid@3.8.5(react@18.3.0): resolution: {integrity: sha512-KCzi0x0p1ZKK+OptonvJqMbn6Vlgo6GfOIlgcDd0dNYDP8TJ+3QFJAFre5mCr7Fubx7LcAOio4Rij0l/R8fkXQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-stately/selection': 3.14.3(react@18.3.0) + '@react-types/grid': 3.2.4(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/list@3.10.3(react@18.2.0): + /@react-stately/list@3.10.3(react@18.3.0): resolution: {integrity: sha512-Ul8el0tQy2Ucl3qMQ0fiqdJ874W1ZNjURVSgSxN+pGwVLNBVRjd6Fl7YwZFCXER2YOlzkwg+Zqozf/ZlS0EdXA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-stately/selection': 3.14.3(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/menu@3.6.1(react@18.2.0): + /@react-stately/menu@3.6.1(react@18.3.0): resolution: {integrity: sha512-3v0vkTm/kInuuG8jG7jbxXDBnMQcoDZKWvYsBQq7+POt0LmijbLdbdZPBoz9TkZ3eo/OoP194LLHOaFTQyHhlw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/menu': 3.9.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/overlays': 3.6.5(react@18.3.0) + '@react-types/menu': 3.9.7(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/overlays@3.6.5(react@18.2.0): + /@react-stately/overlays@3.6.5(react@18.3.0): resolution: {integrity: sha512-U4rCFj6TPJPXLUvYXAcvh+yP/CO2W+7f0IuqP7ZZGE+Osk9qFkT+zRK5/6ayhBDFpmueNfjIEAzT9gYPQwNHFw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/overlays': 3.8.5(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/radio@3.10.2(react@18.2.0): + /@react-stately/radio@3.10.2(react@18.3.0): resolution: {integrity: sha512-JW5ZWiNMKcZvMTsuPeWJQLHXD5rlqy7Qk6fwUx/ZgeibvMBW/NnW19mm2+IMinzmbtERXvR6nsiA837qI+4dew==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/radio': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/radio': 3.7.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/select@3.6.2(react@18.2.0): + /@react-stately/select@3.6.2(react@18.3.0): resolution: {integrity: sha512-duOxdHKol93h6Ew6fap6Amz+zngoERKZLSKVm/8I8uaBgkoBhEeTFv7mlpHTgINxymMw3mMrvy6GL/gfKFwkqg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/select': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/form': 3.0.1(react@18.3.0) + '@react-stately/list': 3.10.3(react@18.3.0) + '@react-stately/overlays': 3.6.5(react@18.3.0) + '@react-types/select': 3.9.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/selection@3.14.3(react@18.2.0): + /@react-stately/selection@3.14.3(react@18.3.0): resolution: {integrity: sha512-d/t0rIWieqQ7wjLoMoWnuHEUSMoVXxkPBFuSlJF3F16289FiQ+b8aeKFDzFTYN7fFD8rkZTnpuE4Tcxg3TmA+w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/slider@3.5.2(react@18.2.0): + /@react-stately/slider@3.5.2(react@18.3.0): resolution: {integrity: sha512-ntH3NLRG+AwVC7q4Dx9DcmMkMh9vmHjHNXAgaoqNjhvwfSIae7sQ69CkVe6XeJjIBy6LlH81Kgapz+ABe5a1ZA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/slider': 3.7.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@react-types/slider': 3.7.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/table@3.11.6(react@18.2.0): + /@react-stately/table@3.11.6(react@18.3.0): resolution: {integrity: sha512-34YsfOILXusj3p6QNcKEaDWVORhM6WEhwPSLCZlkwAJvkxuRQFdih5rQKoIDc0uV5aZsB6bYBqiFhnjY0VERhw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) + '@react-stately/collections': 3.10.5(react@18.3.0) '@react-stately/flags': 3.0.1 - '@react-stately/grid': 3.8.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/table': 3.9.3(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/grid': 3.8.5(react@18.3.0) + '@react-stately/selection': 3.14.3(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/grid': 3.2.4(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@react-types/table': 3.9.3(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/tabs@3.6.4(react@18.2.0): + /@react-stately/tabs@3.6.4(react@18.3.0): resolution: {integrity: sha512-WZJgMBqzLgN88RN8AxhY4aH1+I+4w1qQA0Lh3LRSDegaytd+NHixCWaP3IPjePgCB5N1UsPe96Xglw75zjHmDg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/tabs': 3.3.5(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/list': 3.10.3(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@react-types/tabs': 3.3.5(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/toggle@3.7.2(react@18.2.0): + /@react-stately/toggle@3.7.2(react@18.3.0): resolution: {integrity: sha512-SHCF2btcoK57c4lyhucRbyPBAFpp0Pdp0vcPdn3hUgqbu6e5gE0CwG/mgFmZRAQoc7PRc7XifL0uNw8diJJI0Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/checkbox': 3.7.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/tooltip@3.4.7(react@18.2.0): + /@react-stately/tooltip@3.4.7(react@18.3.0): resolution: {integrity: sha512-ACtRgBQ8rphBtsUaaxvEAM0HHN9PvMuyvL0vUHd7jvBDCVZJ6it1BKu9SBKjekBkoBOw9nemtkplh9R2CA6V8Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/tooltip': 3.4.7(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/overlays': 3.6.5(react@18.3.0) + '@react-types/tooltip': 3.4.7(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/tree@3.7.6(react@18.2.0): + /@react-stately/tree@3.7.6(react@18.3.0): resolution: {integrity: sha512-y8KvEoZX6+YvqjNCVGS3zA/BKw4D3XrUtUKIDme3gu5Mn6z97u+hUXKdXVCniZR7yvV3fHAIXwE5V2K8Oit4aw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-stately/collections': 3.10.5(react@18.3.0) + '@react-stately/selection': 3.14.3(react@18.3.0) + '@react-stately/utils': 3.9.1(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/utils@3.9.1(react@18.2.0): + /@react-stately/utils@3.9.1(react@18.3.0): resolution: {integrity: sha512-yzw75GE0iUWiyps02BOAPTrybcsMIxEJlzXqtvllAb01O9uX5n0i3X+u2eCpj2UoDF4zS08Ps0jPgWxg8xEYtA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-stately/virtualizer@3.6.8(react@18.2.0): + /@react-stately/virtualizer@3.6.8(react@18.3.0): resolution: {integrity: sha512-Pf06ihTwExRJltGhi72tmLIo0pcjkL55nu7ifMafAAdxZK4ONxRLSuUjjpvYf/0Rs92xRZy2t/XmHREnfirdkQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.8 - react: 18.2.0 + '@react-aria/utils': 3.23.2(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + '@swc/helpers': 0.5.11 + react: 18.3.0 dev: false - /@react-types/accordion@3.0.0-alpha.17(react@18.2.0): - resolution: {integrity: sha512-Wsp31bYRu9wy4zAAV2W8FLvVGFF3Vk/JKn2MxqhzaSHwHBw/dfgJTvRRUW+OmBgnqVN97ur893TP9A3odpoZEg==} + /@react-types/accordion@3.0.0-alpha.19(react@18.3.0): + resolution: {integrity: sha512-WJaitKz56zRKUwBqDM4OOKtmIdD0lr5nruWoM2IlGRO50WUzSFmAy/1aFiodAVZbun1v5IxbjST6/qSV4jPqug==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/breadcrumbs@3.7.3(react@18.2.0): + /@react-types/breadcrumbs@3.7.3(react@18.3.0): resolution: {integrity: sha512-eFto/+6J+JR58vThNcALZRA1OlqlG3GzQ/bq3q8IrrkOZcrfbEJJCWit/+53Ia98siJKuF4OJHnotxIVIz5I3w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/link': 3.5.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/link': 3.5.3(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/button@3.9.2(react@18.2.0): + /@react-types/button@3.9.2(react@18.3.0): resolution: {integrity: sha512-EnPTkGHZRtiwAoJy5q9lDjoG30bEzA/qnvKG29VVXKYAGeqY2IlFs1ypmU+z1X/CpJgPcG3I5cakM7yTVm3pSg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/checkbox@3.7.1(react@18.2.0): + /@react-types/calendar@3.4.1(react@18.3.0): + resolution: {integrity: sha512-tiCkHi6IQtYcVoAESG79eUBWDXoo8NImo+Mj8WAWpo1lOA3SV1W2PpeXkoRNqtloilQ0aYcmsaJJUhciQG4ndg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + dependencies: + '@internationalized/date': 3.5.2 + '@react-types/shared': 3.21.0(react@18.3.0) + react: 18.3.0 + dev: false + + /@react-types/calendar@3.4.4(react@18.3.0): + resolution: {integrity: sha512-hV1Thmb/AES5OmfPvvmyjSkmsEULjiDfA7Yyy70L/YKuSNKb7Su+Bf2VnZuDW3ec+GxO4JJNlpJ0AkbphWBvcg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + dependencies: + '@internationalized/date': 3.5.2 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + dev: false + + /@react-types/checkbox@3.7.1(react@18.3.0): resolution: {integrity: sha512-kuGqjQFex0As/3gfWyk+e9njCcad/ZdnYLLiNvhlk15730xfa0MmnOdpqo9jfuFSXBjOcpxoofvEhvrRMtEdUA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/combobox@3.10.1(react@18.2.0): + /@react-types/combobox@3.10.1(react@18.3.0): resolution: {integrity: sha512-XMno1rgVRNta49vf5nV7VJpVSVAV20tt79t618gG1qRKH5Kt2Cy8lz2fQ5vHG6UTv/6jUOvU8g5Pc93sLaTmoA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/dialog@3.5.8(react@18.2.0): + /@react-types/datepicker@3.7.2(react@18.3.0): + resolution: {integrity: sha512-zThqFAdhQL1dqyVDsDSSTdfCjoD6634eyg/B0ZJfQxcLUR/5pch3v/gxBhbyCVDGMNHRWUWIJvY9DVOepuoSug==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + dependencies: + '@internationalized/date': 3.5.2 + '@react-types/calendar': 3.4.4(react@18.3.0) + '@react-types/overlays': 3.8.5(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 + dev: false + + /@react-types/dialog@3.5.8(react@18.3.0): resolution: {integrity: sha512-RX8JsMvty8ADHRqVEkppoynXLtN4IzUh8d5z88UEBbcvWKlHfd6bOBQjQcBH3AUue5wjfpPIt6brw2VzgBY/3Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/overlays': 3.8.5(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/grid@3.2.4(react@18.2.0): + /@react-types/grid@3.2.4(react@18.3.0): resolution: {integrity: sha512-sDVoyQcH7MoGdx5nBi5ZOU/mVFBt9YTxhvr0PZ97dMdEHZtJC1w9SuezwWS34f50yb8YAXQRTICbZYcK4bAlDA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/link@3.5.3(react@18.2.0): + /@react-types/link@3.5.3(react@18.3.0): resolution: {integrity: sha512-yVafjW3IejyVnK3oMBNjFABCGG6J27EUG8rvkaGaI1uB6srGUEhpJ97XLv11aj1QkXHBy3VGXqxEV3S7wn4HTw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/listbox@3.4.7(react@18.2.0): + /@react-types/listbox@3.4.7(react@18.3.0): resolution: {integrity: sha512-68y5H9CVSPFiwO6MOFxTbry9JQMK/Lb1M9i3M8TDyq1AbJxBPpgAvJ9RaqIMCucsnqCzpY/zA3D/X417zByL1w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/menu@3.9.7(react@18.2.0): + /@react-types/menu@3.9.7(react@18.3.0): resolution: {integrity: sha512-K6KhloJVoGsqwkdeez72fkNI9dfrmLI/sNrB4XuOKo2crDQ/eyZYWyJmzz8giz/tHME9w774k487rVoefoFh5w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/overlays': 3.8.5(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/overlays@3.8.5(react@18.2.0): + /@react-types/overlays@3.8.5(react@18.3.0): resolution: {integrity: sha512-4D7EEBQigD/m8hE68Ys8eloyyZFHHduqykSIgINJ0edmo0jygRbWlTwuhWFR9USgSP4dK54duN0Mvq0m4HEVEw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/progress@3.5.2(react@18.2.0): + /@react-types/progress@3.5.2(react@18.3.0): resolution: {integrity: sha512-aQql22kusEudsHwDEzq6y/Mh29AM+ftRDKdS5E5g4MkCY5J4FMbOYco1T5So83NIvvG9+eKcxPoJUMjQQACAyA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/radio@3.7.1(react@18.2.0): + /@react-types/radio@3.7.1(react@18.3.0): resolution: {integrity: sha512-Zut3rN1odIUBLZdijeyou+UqsLeRE76d9A+npykYGu29ndqmo3w4sLn8QeQcdj1IR71ZnG0pW2Y2BazhK5XrrQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/select@3.9.2(react@18.2.0): + /@react-types/select@3.9.2(react@18.3.0): resolution: {integrity: sha512-fGFrunednY3Pq/BBwVOf87Fsuyo/SlevL0wFIE9OOl2V5NXVaTY7/7RYA8hIOHPzmvsMbndy419BEudiNGhv4A==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/shared@3.22.1(react@18.2.0): + /@react-types/shared@3.21.0(react@18.3.0): + resolution: {integrity: sha512-wJA2cUF8dP4LkuNUt9Vh2kkfiQb2NLnV2pPXxVnKJZ7d4x2/7VPccN+LYPnH8m0X3+rt50cxWuPKQmjxSsCFOg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + dependencies: + react: 18.3.0 + dev: false + + /@react-types/shared@3.22.1(react@18.3.0): resolution: {integrity: sha512-PCpa+Vo6BKnRMuOEzy5zAZ3/H5tnQg1e80khMhK2xys0j6ZqzkgQC+fHMNZ7VDFNLqqNMj/o0eVeSBDh2POjkw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - react: 18.2.0 + react: 18.3.0 dev: false - /@react-types/slider@3.7.1(react@18.2.0): + /@react-types/slider@3.7.1(react@18.3.0): resolution: {integrity: sha512-FKO3YZYdrBs00XbBW5acP+0L1cCdevl/uRJiXbnLpGysO5PrSFIRS7Wlv4M7ztf6gT7b1Ao4FNC9crbxBr6BzA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/switch@3.5.1(react@18.2.0): + /@react-types/switch@3.5.1(react@18.3.0): resolution: {integrity: sha512-2LFEKMGeufqyYmeN/5dtkDkCPG6x9O4eu6aaBaJmPGon7C/l3yiFEgRue6oCUYc1HixR7Qlp0sPxk0tQeWzrSg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/table@3.9.3(react@18.2.0): + /@react-types/table@3.9.3(react@18.3.0): resolution: {integrity: sha512-Hs/pMbxJdga2zBol4H5pV1FVIiRjCuSTXst6idJjkctanTexR4xkyrtBwl+rdLNoGwQ2pGii49vgklc5bFK7zA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/grid': 3.2.4(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/tabs@3.3.5(react@18.2.0): + /@react-types/tabs@3.3.5(react@18.3.0): resolution: {integrity: sha512-6NTSZBOWekCtApdZrhu5tHhE/8q52oVohQN+J5T7shAXd6ZAtu8PABVR/nH4BWucc8FL0OUajRqunqzQMU13gA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/textfield@3.9.1(react@18.2.0): + /@react-types/textfield@3.9.1(react@18.3.0): resolution: {integrity: sha512-JBHY9M2CkL6xFaGSfWmUJVu3tEK09FaeB1dU3IEh6P41xxbFnPakYHSSAdnwMXBtXPoSHIVsUBickW/pjgfe5g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false - /@react-types/tooltip@3.4.7(react@18.2.0): + /@react-types/tooltip@3.4.7(react@18.3.0): resolution: {integrity: sha512-rV4HZRQxLRNhe24yATOxnFQtGRUmsR7mqxMupXCmd1vrw8h+rdKlQv1zW2q8nALAKNmnRXZJHxYQ1SFzb98fgg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 dependencies: - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 + '@react-types/overlays': 3.8.5(react@18.3.0) + '@react-types/shared': 3.22.1(react@18.3.0) + react: 18.3.0 dev: false /@sinclair/typebox@0.27.8: @@ -3139,14 +3381,14 @@ packages: tslib: 2.6.2 dev: false - /@swc/helpers@0.5.2: - resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} + /@swc/helpers@0.5.11: + resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==} dependencies: tslib: 2.6.2 dev: false - /@swc/helpers@0.5.8: - resolution: {integrity: sha512-lruDGw3pnfM3wmZHeW7JuhkGQaJjPyiKjxeGhdmfoOT53Ic9qb5JLDNaK2HUdl1zLDeX28H221UvKjfdvSLVMg==} + /@swc/helpers@0.5.2: + resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==} dependencies: tslib: 2.6.2 dev: false @@ -3199,8 +3441,8 @@ packages: redent: 3.0.0 dev: true - /@testing-library/react@14.3.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-AYJGvNFMbCa5vt1UtDCa/dcaABrXq8gph6VN+cffIx0UeA0qiGqS+sT60+sb+Gjc8tGXdECWYQgaF0khf8b+Lg==} + /@testing-library/react@14.3.1(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-H99XjUhWQw0lTgyMN05W3xQG1Nh4lq574D8keFf1dDoNTJgp66VbJozRaczoF+wsiaPJNt/TcnfpLGufGxSrZQ==} engines: {node: '>=14'} peerDependencies: react: ^18.0.0 @@ -3208,9 +3450,9 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@testing-library/dom': 9.3.4 - '@types/react-dom': 18.2.24 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@types/react-dom': 18.3.0 + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: true /@tootallnate/once@2.0.0: @@ -3300,6 +3542,16 @@ packages: parse5: 7.1.2 dev: true + /@types/lodash.debounce@4.0.9: + resolution: {integrity: sha512-Ma5JcgTREwpLRwMM+XwBR7DaWe96nC38uCBDFKZWbNKD+osjVzdpnUSwBcqCptrp16sSOLBAUb50Car5I0TCsQ==} + dependencies: + '@types/lodash': 4.17.0 + dev: false + + /@types/lodash@4.17.0: + resolution: {integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==} + dev: false + /@types/node@20.12.7: resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} dependencies: @@ -3312,14 +3564,14 @@ packages: resolution: {integrity: sha512-trzh6NzBnq8yw5e35f8xe8VTYjqM3NE7bohBtvDVf/dtUer3zYTLK1Ka3DG3p7bdtoaOHZucma6FfVKlQ134pQ==} dev: true - /@types/react-dom@18.2.24: - resolution: {integrity: sha512-cN6upcKd8zkGy4HU9F1+/s98Hrp6D4MOcippK4PoE8OZRngohHZpbJn1GsaDLz87MqvHNoT13nHvNqM9ocRHZg==} + /@types/react-dom@18.3.0: + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} dependencies: - '@types/react': 18.2.75 + '@types/react': 18.3.0 dev: true - /@types/react@18.2.75: - resolution: {integrity: sha512-+DNnF7yc5y0bHkBTiLKqXFe+L4B3nvOphiMY3tuA5X10esmjqk7smyBZzbGTy2vsiy/Bnzj8yFIBL8xhRacoOg==} + /@types/react@18.3.0: + resolution: {integrity: sha512-DiUcKjzE6soLyln8NNZmyhcQjVv+WsUIFSqetMN0p8927OztKT4VTfFTqsbAi5oAGIcgOmOajlfBqyptDDjZRw==} dependencies: '@types/prop-types': 15.7.12 csstype: 3.1.3 @@ -3466,7 +3718,7 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.23.0 - caniuse-lite: 1.0.30001608 + caniuse-lite: 1.0.30001612 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.0 @@ -3583,8 +3835,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001608 - electron-to-chromium: 1.4.731 + caniuse-lite: 1.0.30001612 + electron-to-chromium: 1.4.749 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) @@ -3642,8 +3894,8 @@ packages: engines: {node: '>=10'} dev: true - /caniuse-lite@1.0.30001608: - resolution: {integrity: sha512-cjUJTQkk9fQlJR2s4HMuPMvTiRggl0rAVMtthQuyOlDWuqHXqN8azLq+pi8B2TjwKJ32diHjUqRIKeFX4z1FoA==} + /caniuse-lite@1.0.30001612: + resolution: {integrity: sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==} /chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} @@ -3715,8 +3967,8 @@ packages: engines: {node: '>=6'} dev: false - /clsx@2.1.0: - resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} + /clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} engines: {node: '>=6'} dev: false @@ -3868,8 +4120,8 @@ packages: resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} dev: true - /dedent@1.5.1: - resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} + /dedent@1.5.3: + resolution: {integrity: sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ==} peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: @@ -3976,8 +4228,8 @@ packages: /eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - /electron-to-chromium@1.4.731: - resolution: {integrity: sha512-+TqVfZjpRz2V/5SPpmJxq9qK620SC5SqCnxQIOi7i/U08ZDcTpKbT7Xjj9FU5CbXTMUb4fywbIr8C7cGv4hcjw==} + /electron-to-chromium@1.4.749: + resolution: {integrity: sha512-LRMMrM9ITOvue0PoBrvNIraVmuDbJV5QC9ierz/z5VilMdPOVMjOtpICNld3PuXuTZ3CHH/UPxX9gHhAPwi+0Q==} /emittery@0.13.1: resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} @@ -4169,8 +4421,8 @@ packages: resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} dev: true - /framer-motion@11.0.25(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-mRt7vQGzA7++wTgb+PW1TrlXXgndqR6hCiJ48fXr2X9alte2hPQiAq556HRwDCt0Q5X98MNvcSe4KUa27Gm5Lg==} + /framer-motion@11.1.7(react-dom@18.3.0)(react@18.3.0): + resolution: {integrity: sha512-cW11Pu53eDAXUEhv5hEiWuIXWhfkbV32PlgVISn7jRdcAiVrJ1S03YQQ0/DzoswGYYwKi4qYmHHjCzAH52eSdQ==} peerDependencies: '@emotion/is-prop-valid': '*' react: ^18.0.0 @@ -4183,8 +4435,8 @@ packages: react-dom: optional: true dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) tslib: 2.6.2 dev: false @@ -4687,7 +4939,7 @@ packages: '@types/node': 20.12.7 chalk: 4.1.2 co: 4.6.0 - dedent: 1.5.1 + dedent: 1.5.3 is-generator-fn: 2.1.0 jest-each: 29.7.0 jest-matcher-utils: 29.7.0 @@ -4768,7 +5020,7 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.4) + ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -5139,7 +5391,7 @@ packages: http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 - nwsapi: 2.2.7 + nwsapi: 2.2.9 parse5: 7.1.2 saxes: 6.0.0 symbol-tree: 3.2.4 @@ -5199,6 +5451,10 @@ packages: p-locate: 4.1.0 dev: true + /lodash.debounce@4.0.8: + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + dev: false + /lodash.foreach@4.5.0: resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==} dev: false @@ -5233,8 +5489,8 @@ packages: dependencies: js-tokens: 4.0.0 - /lru-cache@10.2.0: - resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} + /lru-cache@10.2.1: + resolution: {integrity: sha512-tS24spDe/zXhWbNPErCHs/AGOzbKGHT+ybSBqmdLm8WZ1xXLWvH8Qn71QPAlqVhd0qUTWjy+Kl9JmISgDdEjsA==} engines: {node: 14 || >=16.14} /lru-cache@5.1.1: @@ -5347,30 +5603,30 @@ packages: engines: {node: '>= 0.6'} dev: false - /next-intl@3.11.1(next@14.1.4)(react@18.2.0): - resolution: {integrity: sha512-KaMdMMTLJ8Qs15AfltKFTdzk3OjAEIKRGmRu6kpH5Mv3DPUoOX9sQ+fXvNlKmLzw+TeBt5yPCswzLZFmJMbsOA==} + /next-intl@3.12.0(next@14.1.4)(react@18.3.0): + resolution: {integrity: sha512-N3DHT6ce6K4VHVA3y2p3U7wfBx4c31qEgQSTFCFJuNnE7XYzy49O576ewEz7/k2YaB/U5bfxaWWaMMkskofwoQ==} peerDependencies: next: ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@formatjs/intl-localematcher': 0.2.32 negotiator: 0.6.3 - next: 14.1.4(@babel/core@7.24.4)(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - use-intl: 3.11.1(react@18.2.0) + next: 14.1.4(@babel/core@7.24.4)(react-dom@18.3.0)(react@18.3.0) + react: 18.3.0 + use-intl: 3.12.0(react@18.3.0) dev: false - /next-themes@0.3.0(react-dom@18.2.0)(react@18.2.0): + /next-themes@0.3.0(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==} peerDependencies: react: ^16.8 || ^17 || ^18 react-dom: ^16.8 || ^17 || ^18 dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false - /next@14.1.4(@babel/core@7.24.4)(react-dom@18.2.0)(react@18.2.0): + /next@14.1.4(@babel/core@7.24.4)(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-1WTaXeSrUwlz/XcnhGTY7+8eiaFvdet5z9u3V2jb+Ek1vFo0VhHKSAIJvDWfQpttWjnyw14kBeq28TPq7bTeEQ==} engines: {node: '>=18.17.0'} hasBin: true @@ -5388,12 +5644,12 @@ packages: '@next/env': 14.1.4 '@swc/helpers': 0.5.2 busboy: 1.6.0 - caniuse-lite: 1.0.30001608 + caniuse-lite: 1.0.30001612 graceful-fs: 4.2.11 postcss: 8.4.31 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.1.1(@babel/core@7.24.4)(react@18.2.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) + styled-jsx: 5.1.1(@babel/core@7.24.4)(react@18.3.0) optionalDependencies: '@next/swc-darwin-arm64': 14.1.4 '@next/swc-darwin-x64': 14.1.4 @@ -5432,8 +5688,8 @@ packages: path-key: 3.1.1 dev: true - /nwsapi@2.2.7: - resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} + /nwsapi@2.2.9: + resolution: {integrity: sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg==} dev: true /object-assign@4.1.1: @@ -5547,7 +5803,7 @@ packages: resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==} engines: {node: '>=16 || 14 >=14.17'} dependencies: - lru-cache: 10.2.0 + lru-cache: 10.2.1 minipass: 7.0.4 /picocolors@1.0.0: @@ -5611,7 +5867,7 @@ packages: dependencies: lilconfig: 3.1.1 postcss: 8.4.38 - ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.4) + ts-node: 10.9.2(@types/node@20.12.7)(typescript@5.4.5) yaml: 2.4.1 /postcss-nested@6.0.1(postcss@8.4.38): @@ -5665,7 +5921,7 @@ packages: dependencies: '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 - react-is: 18.2.0 + react-is: 18.3.0 dev: true /prompts@2.4.2: @@ -5695,24 +5951,24 @@ packages: /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - /react-dom@18.2.0(react@18.2.0): - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + /react-dom@18.3.0(react@18.3.0): + resolution: {integrity: sha512-zaKdLBftQJnvb7FtDIpZtsAIb2MZU087RM8bRDZU8LVCCFYjPTsDZJNFUWPcVz3HFSN1n/caxi0ca4B/aaVQGQ==} peerDependencies: - react: ^18.2.0 + react: ^18.3.0 dependencies: loose-envify: 1.4.0 - react: 18.2.0 - scheduler: 0.23.0 + react: 18.3.0 + scheduler: 0.23.1 /react-is@17.0.2: resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} dev: true - /react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + /react-is@18.3.0: + resolution: {integrity: sha512-wRiUsea88TjKDc4FBEn+sLvIDesp6brMbGWnJGjew2waAc9evdhja/2LvePc898HJbHw0L+MTWy7NhpnELAvLQ==} dev: true - /react-remove-scroll-bar@2.3.6(@types/react@18.2.75)(react@18.2.0): + /react-remove-scroll-bar@2.3.6(@types/react@18.3.0)(react@18.3.0): resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} engines: {node: '>=10'} peerDependencies: @@ -5722,13 +5978,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.75 - react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.75)(react@18.2.0) + '@types/react': 18.3.0 + react: 18.3.0 + react-style-singleton: 2.2.1(@types/react@18.3.0)(react@18.3.0) tslib: 2.6.2 dev: false - /react-remove-scroll@2.5.9(@types/react@18.2.75)(react@18.2.0): + /react-remove-scroll@2.5.9(@types/react@18.3.0)(react@18.3.0): resolution: {integrity: sha512-bvHCLBrFfM2OgcrpPY2YW84sPdS2o2HKWJUf1xGyGLnSoEnOTOBpahIarjRuYtN0ryahCeP242yf+5TrBX/pZA==} engines: {node: '>=10'} peerDependencies: @@ -5738,16 +5994,16 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.75 - react: 18.2.0 - react-remove-scroll-bar: 2.3.6(@types/react@18.2.75)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.75)(react@18.2.0) + '@types/react': 18.3.0 + react: 18.3.0 + react-remove-scroll-bar: 2.3.6(@types/react@18.3.0)(react@18.3.0) + react-style-singleton: 2.2.1(@types/react@18.3.0)(react@18.3.0) tslib: 2.6.2 - use-callback-ref: 1.3.2(@types/react@18.2.75)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.75)(react@18.2.0) + use-callback-ref: 1.3.2(@types/react@18.3.0)(react@18.3.0) + use-sidecar: 1.1.2(@types/react@18.3.0)(react@18.3.0) dev: false - /react-style-singleton@2.2.1(@types/react@18.2.75)(react@18.2.0): + /react-style-singleton@2.2.1(@types/react@18.3.0)(react@18.3.0): resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -5757,29 +6013,29 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.75 + '@types/react': 18.3.0 get-nonce: 1.0.1 invariant: 2.2.4 - react: 18.2.0 + react: 18.3.0 tslib: 2.6.2 dev: false - /react-textarea-autosize@8.5.3(@types/react@18.2.75)(react@18.2.0): + /react-textarea-autosize@8.5.3(@types/react@18.3.0)(react@18.3.0): resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} engines: {node: '>=10'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@babel/runtime': 7.24.4 - react: 18.2.0 - use-composed-ref: 1.3.0(react@18.2.0) - use-latest: 1.2.1(@types/react@18.2.75)(react@18.2.0) + react: 18.3.0 + use-composed-ref: 1.3.0(react@18.3.0) + use-latest: 1.2.1(@types/react@18.3.0)(react@18.3.0) transitivePeerDependencies: - '@types/react' dev: false - /react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + /react@18.3.0: + resolution: {integrity: sha512-RPutkJftSAldDibyrjuku7q11d3oy6wKOyPe5K1HA/HwwrXcEqBdHsLypkC2FFYjP7bPUa6gbzSBhw4sY2JcDg==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 @@ -5795,7 +6051,7 @@ packages: dependencies: picomatch: 2.3.1 - /recoil@0.7.7(react-dom@18.2.0)(react@18.2.0): + /recoil@0.7.7(react-dom@18.3.0)(react@18.3.0): resolution: {integrity: sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==} peerDependencies: react: '>=16.13.1' @@ -5808,8 +6064,8 @@ packages: optional: true dependencies: hamt_plus: 1.0.2 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.0 + react-dom: 18.3.0(react@18.3.0) dev: false /redent@3.0.0: @@ -5887,8 +6143,8 @@ packages: xmlchars: 2.2.0 dev: true - /scheduler@0.23.0: - resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + /scheduler@0.23.1: + resolution: {integrity: sha512-5GKS5JGfiah1O38Vfa9srZE4s3wdHbwjlCrvIookrg2FO9aIwKLOJXuJQFlEfNcVSOXuaL2hzDeY20uVXcUtrw==} dependencies: loose-envify: 1.4.0 @@ -6076,7 +6332,7 @@ packages: engines: {node: '>=8'} dev: true - /styled-jsx@5.1.1(@babel/core@7.24.4)(react@18.2.0): + /styled-jsx@5.1.1(@babel/core@7.24.4)(react@18.3.0): resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -6091,7 +6347,7 @@ packages: dependencies: '@babel/core': 7.24.4 client-only: 0.0.1 - react: 18.2.0 + react: 18.3.0 dev: false /sucrase@3.35.0: @@ -6139,8 +6395,8 @@ packages: resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==} dev: false - /tailwind-merge@2.2.2: - resolution: {integrity: sha512-tWANXsnmJzgw6mQ07nE3aCDkCK4QdT3ThPMCzawoYA2Pws7vSTCvz3Vrjg61jVUGfFZPJzxEP+NimbcW+EdaDw==} + /tailwind-merge@2.3.0: + resolution: {integrity: sha512-vkYrLpIP+lgR0tQCG6AP7zZXCTLc1Lnv/CCRT3BqJ9CZ3ui2++GPaGb1x/ILsINIMSYqqvrpqjUFsMNLlW99EA==} dependencies: '@babel/runtime': 7.24.4 dev: false @@ -6161,7 +6417,7 @@ packages: peerDependencies: tailwindcss: '*' dependencies: - tailwind-merge: 2.2.2 + tailwind-merge: 2.3.0 tailwindcss: 3.4.3(ts-node@10.9.2) dev: false @@ -6249,7 +6505,7 @@ packages: /ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - /ts-jest@29.1.2(@babel/core@7.24.4)(jest@29.7.0)(typescript@5.4.4): + /ts-jest@29.1.2(@babel/core@7.24.4)(jest@29.7.0)(typescript@5.4.5): resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==} engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true @@ -6279,11 +6535,11 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.0 - typescript: 5.4.4 + typescript: 5.4.5 yargs-parser: 21.1.1 dev: true - /ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.4): + /ts-node@10.9.2(@types/node@20.12.7)(typescript@5.4.5): resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} hasBin: true peerDependencies: @@ -6309,7 +6565,7 @@ packages: create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.4.4 + typescript: 5.4.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 @@ -6327,8 +6583,8 @@ packages: engines: {node: '>=10'} dev: true - /typescript@5.4.4: - resolution: {integrity: sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==} + /typescript@5.4.5: + resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} engines: {node: '>=14.17'} hasBin: true @@ -6357,7 +6613,7 @@ packages: requires-port: 1.0.0 dev: true - /use-callback-ref@1.3.2(@types/react@18.2.75)(react@18.2.0): + /use-callback-ref@1.3.2(@types/react@18.3.0)(react@18.3.0): resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} engines: {node: '>=10'} peerDependencies: @@ -6367,30 +6623,30 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.75 - react: 18.2.0 + '@types/react': 18.3.0 + react: 18.3.0 tslib: 2.6.2 dev: false - /use-composed-ref@1.3.0(react@18.2.0): + /use-composed-ref@1.3.0(react@18.3.0): resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - react: 18.2.0 + react: 18.3.0 dev: false - /use-intl@3.11.1(react@18.2.0): - resolution: {integrity: sha512-pFfrQXa3LBHh2MairVFUEXp6BnVcqJno9wbHIEaH0n7ib2kNTMP8jjjuboLHEIphRHygEpbFAjKIr0glUHCytA==} + /use-intl@3.12.0(react@18.3.0): + resolution: {integrity: sha512-tTJBSaxpVF1ZHqJ5+1JOaBsPmvBPscXHR0soMNQFWIURZspOueLaMXx1XHNdBv9KZGwepBju5aWXkJ0PM6ztXg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@formatjs/ecma402-abstract': 1.18.2 intl-messageformat: 9.13.0 - react: 18.2.0 + react: 18.3.0 dev: false - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.75)(react@18.2.0): + /use-isomorphic-layout-effect@1.1.2(@types/react@18.3.0)(react@18.3.0): resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -6399,11 +6655,11 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.75 - react: 18.2.0 + '@types/react': 18.3.0 + react: 18.3.0 dev: false - /use-latest@1.2.1(@types/react@18.2.75)(react@18.2.0): + /use-latest@1.2.1(@types/react@18.3.0)(react@18.3.0): resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' @@ -6412,12 +6668,12 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.75 - react: 18.2.0 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.75)(react@18.2.0) + '@types/react': 18.3.0 + react: 18.3.0 + use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.0)(react@18.3.0) dev: false - /use-sidecar@1.1.2(@types/react@18.2.75)(react@18.2.0): + /use-sidecar@1.1.2(@types/react@18.3.0)(react@18.3.0): resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -6427,9 +6683,9 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.75 + '@types/react': 18.3.0 detect-node-es: 1.1.0 - react: 18.2.0 + react: 18.3.0 tslib: 2.6.2 dev: false