The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

add /ai pagination

Luna f6fd1455 f43508da

+414 -371
+20 -4
app/(home)/ai/page.tsx
··· 13 13 import cn from "@/utils/cn"; 14 14 import { getBaseUrl, getCanonicalUrl } from "@/utils/urls"; 15 15 16 + import Pagination from "./pagination.component"; 17 + 16 18 const montserrat = Montserrat({ subsets: ["latin"] }); 17 19 18 20 export const revalidate = 3600; 21 + 22 + interface Props { 23 + searchParams: { page: string, model: string }; 24 + } 19 25 20 26 export const generateMetadata = async (): Promise<Metadata> => { 21 27 ··· 46 52 }; 47 53 }; 48 54 49 - export default async function Home() { 50 - const uploads = await getUploads(); 55 + export default async function Home({ searchParams }: Props) { 56 + const uploads = await getUploads({ page: parseInt(searchParams.page || "1"), model: searchParams.model }); 51 57 52 58 const styles = { 53 59 h2: cn(montserrat.className, "lg:text-5xl text-4xl bg-gradient-to-b bg-clip-text text-transparent from-neutral-200 from-40% to-neutral-400 font-bold underline decoration-violet-400"), ··· 105 111 </div> 106 112 </div> 107 113 108 - <article itemScope itemType="http://schema.org/Article" className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 mb-10 w-full"> 114 + <article 115 + className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6 mb-10 w-full" 116 + itemScope 117 + itemType="http://schema.org/Article" 118 + > 109 119 {Array.isArray(uploads) ? 110 120 uploads 111 121 .map((item, i) => ( ··· 141 151 } 142 152 </article> 143 153 154 + <Pagination 155 + key={searchParams.model} 156 + searchParams={searchParams} 157 + pages={2} 158 + /> 159 + 144 160 <Image 145 161 alt="/image command usage" 146 - className="w-full rounded-md shadow-md" 162 + className="w-full rounded-md shadow-md mt-6" 147 163 height={438} 148 164 src={CommandPic} 149 165 width={1723}
+6 -6
package.json
··· 9 9 "lint": "next lint" 10 10 }, 11 11 "dependencies": { 12 - "@nextui-org/react": "^2.2.9", 12 + "@nextui-org/react": "^2.2.10", 13 13 "autoprefixer": "10.4.17", 14 14 "clsx": "^2.1.0", 15 15 "eslint": "8.56.0", 16 16 "eslint-config-next": "14.1.0", 17 - "framer-motion": "^11.0.6", 17 + "framer-motion": "^11.0.8", 18 18 "next": "14.1.0", 19 19 "postcss": "8.4.33", 20 20 "react": "18.2.0", ··· 24 24 "react-loading-icons": "^1.1.0", 25 25 "react-markdown": "^8.0.7", 26 26 "react-query": "^3.39.3", 27 - "recharts": "^2.12.1", 27 + "recharts": "^2.12.2", 28 28 "rehype-raw": "^7.0.0", 29 29 "sharp": "^0.33.2", 30 30 "tailwind-merge": "^2.2.1", 31 31 "tailwindcss": "3.4.1", 32 32 "typescript": "5.3.3", 33 - "zustand": "^4.5.1" 33 + "zustand": "^4.5.2" 34 34 }, 35 35 "devDependencies": { 36 - "@types/node": "^20.11.20", 37 - "@types/react": "^18.2.58", 36 + "@types/node": "^20.11.24", 37 + "@types/react": "^18.2.63", 38 38 "@types/react-dom": "^18.2.19", 39 39 "@typescript-eslint/eslint-plugin": "^5.62.0", 40 40 "@typescript-eslint/parser": "^5.62.0",
+388 -361
pnpm-lock.yaml
··· 6 6 7 7 dependencies: 8 8 '@nextui-org/react': 9 - specifier: ^2.2.9 10 - version: 2.2.9(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0)(tailwindcss@3.4.1) 9 + specifier: ^2.2.10 10 + version: 2.2.10(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0)(tailwindcss@3.4.1) 11 11 autoprefixer: 12 12 specifier: 10.4.17 13 13 version: 10.4.17(postcss@8.4.33) ··· 21 21 specifier: 14.1.0 22 22 version: 14.1.0(eslint@8.56.0)(typescript@5.3.3) 23 23 framer-motion: 24 - specifier: ^11.0.6 25 - version: 11.0.6(react-dom@18.2.0)(react@18.2.0) 24 + specifier: ^11.0.8 25 + version: 11.0.8(react-dom@18.2.0)(react@18.2.0) 26 26 next: 27 27 specifier: 14.1.0 28 28 version: 14.1.0(react-dom@18.2.0)(react@18.2.0) ··· 46 46 version: 1.1.0 47 47 react-markdown: 48 48 specifier: ^8.0.7 49 - version: 8.0.7(@types/react@18.2.58)(react@18.2.0) 49 + version: 8.0.7(@types/react@18.2.63)(react@18.2.0) 50 50 react-query: 51 51 specifier: ^3.39.3 52 52 version: 3.39.3(react-dom@18.2.0)(react@18.2.0) 53 53 recharts: 54 - specifier: ^2.12.1 55 - version: 2.12.1(react-dom@18.2.0)(react@18.2.0) 54 + specifier: ^2.12.2 55 + version: 2.12.2(react-dom@18.2.0)(react@18.2.0) 56 56 rehype-raw: 57 57 specifier: ^7.0.0 58 58 version: 7.0.0 ··· 69 69 specifier: 5.3.3 70 70 version: 5.3.3 71 71 zustand: 72 - specifier: ^4.5.1 73 - version: 4.5.1(@types/react@18.2.58)(react@18.2.0) 72 + specifier: ^4.5.2 73 + version: 4.5.2(@types/react@18.2.63)(react@18.2.0) 74 74 75 75 devDependencies: 76 76 '@types/node': 77 - specifier: ^20.11.20 78 - version: 20.11.20 77 + specifier: ^20.11.24 78 + version: 20.11.24 79 79 '@types/react': 80 - specifier: ^18.2.58 81 - version: 18.2.58 80 + specifier: ^18.2.63 81 + version: 18.2.63 82 82 '@types/react-dom': 83 83 specifier: ^18.2.19 84 84 version: 18.2.19 ··· 109 109 engines: {node: '>=10'} 110 110 dev: false 111 111 112 - /@babel/runtime@7.23.9: 113 - resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==} 112 + /@babel/runtime@7.24.0: 113 + resolution: {integrity: sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw==} 114 114 engines: {node: '>=6.9.0'} 115 115 dependencies: 116 116 regenerator-runtime: 0.14.1 ··· 447 447 wrap-ansi-cjs: /wrap-ansi@7.0.0 448 448 dev: false 449 449 450 - /@jridgewell/gen-mapping@0.3.3: 451 - resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 450 + /@jridgewell/gen-mapping@0.3.5: 451 + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 452 452 engines: {node: '>=6.0.0'} 453 453 dependencies: 454 - '@jridgewell/set-array': 1.1.2 454 + '@jridgewell/set-array': 1.2.1 455 455 '@jridgewell/sourcemap-codec': 1.4.15 456 - '@jridgewell/trace-mapping': 0.3.22 456 + '@jridgewell/trace-mapping': 0.3.25 457 457 dev: false 458 458 459 459 /@jridgewell/resolve-uri@3.1.2: ··· 461 461 engines: {node: '>=6.0.0'} 462 462 dev: false 463 463 464 - /@jridgewell/set-array@1.1.2: 465 - resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 464 + /@jridgewell/set-array@1.2.1: 465 + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 466 466 engines: {node: '>=6.0.0'} 467 467 dev: false 468 468 ··· 470 470 resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 471 471 dev: false 472 472 473 - /@jridgewell/trace-mapping@0.3.22: 474 - resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==} 473 + /@jridgewell/trace-mapping@0.3.25: 474 + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 475 475 dependencies: 476 476 '@jridgewell/resolve-uri': 3.1.2 477 477 '@jridgewell/sourcemap-codec': 1.4.15 ··· 568 568 dev: false 569 569 optional: true 570 570 571 - /@nextui-org/accordion@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 571 + /@nextui-org/accordion@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 572 572 resolution: {integrity: sha512-WzD7sscL+4K0TFyUutTn1AhU0wcS68TqNCTNv7KgON6ODdwieydilMxAyXvwo3RgXeWG+8BbdxJC/6W+/iLBTg==} 573 573 peerDependencies: 574 574 '@nextui-org/system': '>=2.0.0' ··· 577 577 react: '>=18' 578 578 react-dom: '>=18' 579 579 dependencies: 580 - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 581 - '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 582 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 580 + '@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.0) 581 + '@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.0) 582 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 583 583 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 584 584 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 585 585 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 586 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 587 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 586 + '@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.0) 587 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 588 588 '@nextui-org/use-aria-accordion': 2.0.2(react-dom@18.2.0)(react@18.2.0) 589 589 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 590 590 '@react-aria/button': 3.9.3(react@18.2.0) ··· 594 594 '@react-stately/tree': 3.7.6(react@18.2.0) 595 595 '@react-types/accordion': 3.0.0-alpha.17(react@18.2.0) 596 596 '@react-types/shared': 3.22.1(react@18.2.0) 597 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 597 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 598 598 react: 18.2.0 599 599 react-dom: 18.2.0(react@18.2.0) 600 600 transitivePeerDependencies: 601 601 - tailwind-variants 602 602 dev: false 603 603 604 - /@nextui-org/aria-utils@2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 604 + /@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.0): 605 605 resolution: {integrity: sha512-4M4jeJ/ghGaia9064yS+mEZ3sFPH80onmjNGWJZkkZDmUV4R88lNkqe/XYBK1tbxfl4Kxa8jc/ALsZkUkkvR5w==} 606 606 peerDependencies: 607 607 react: '>=18' ··· 609 609 dependencies: 610 610 '@nextui-org/react-rsc-utils': 2.0.10 611 611 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 612 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 612 + '@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.0) 613 613 '@react-aria/utils': 3.23.2(react@18.2.0) 614 614 '@react-stately/collections': 3.10.5(react@18.2.0) 615 615 '@react-types/overlays': 3.8.5(react@18.2.0) ··· 621 621 - tailwind-variants 622 622 dev: false 623 623 624 - /@nextui-org/autocomplete@2.0.9(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 625 - resolution: {integrity: sha512-ViPXrZnP35k7LF+TBA4w8nqu0OEj9p1z9Rt7rwrACmY2VmDGY6h6a6nDCMjhuTVXptftRvzxfIPsIyzBYqxb0g==} 624 + /@nextui-org/autocomplete@2.0.10(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 625 + resolution: {integrity: sha512-nQr8VC5RtpjnPef1qXgjNxRAw8JbN6q5qIFtsHWOCzvvn5jGAtdxkAkNE4C7DTvlMWZkIlEuR4DyAmFfY8CChQ==} 626 626 peerDependencies: 627 627 '@nextui-org/system': '>=2.0.0' 628 628 '@nextui-org/theme': '>=2.1.0' ··· 630 630 react: '>=18' 631 631 react-dom: '>=18' 632 632 dependencies: 633 - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 634 - '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 635 - '@nextui-org/input': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(react-dom@18.2.0)(react@18.2.0) 636 - '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 637 - '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 633 + '@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.0) 634 + '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 635 + '@nextui-org/input': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(react-dom@18.2.0)(react@18.2.0) 636 + '@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.0) 637 + '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 638 638 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 639 - '@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 639 + '@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) 640 640 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 641 641 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 642 - '@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 643 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 644 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 642 + '@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.0) 643 + '@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.0) 644 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 645 645 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 646 646 '@react-aria/combobox': 3.8.4(react-dom@18.2.0)(react@18.2.0) 647 647 '@react-aria/focus': 3.16.2(react@18.2.0) ··· 652 652 '@react-stately/combobox': 3.8.2(react@18.2.0) 653 653 '@react-types/combobox': 3.10.1(react@18.2.0) 654 654 '@react-types/shared': 3.22.1(react@18.2.0) 655 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 655 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 656 656 react: 18.2.0 657 657 react-dom: 18.2.0(react@18.2.0) 658 658 transitivePeerDependencies: ··· 660 660 - tailwind-variants 661 661 dev: false 662 662 663 - /@nextui-org/avatar@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 663 + /@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): 664 664 resolution: {integrity: sha512-3QUn8v61iNvAYogUbEDVnhDjBK6WBxxFYLp95a0H52zN0p2LHXe+UNwdGZYFo5QNWx6CHGH3vh2AHlLLy3WFSQ==} 665 665 peerDependencies: 666 666 '@nextui-org/system': '>=2.0.0' ··· 670 670 dependencies: 671 671 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 672 672 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 673 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 674 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 673 + '@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.0) 674 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 675 675 '@nextui-org/use-image': 2.0.4(react@18.2.0) 676 676 '@react-aria/focus': 3.16.2(react@18.2.0) 677 677 '@react-aria/interactions': 3.21.1(react@18.2.0) ··· 680 680 react-dom: 18.2.0(react@18.2.0) 681 681 dev: false 682 682 683 - /@nextui-org/badge@2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 683 + /@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.0): 684 684 resolution: {integrity: sha512-FA3XgqEbyKWepMXqMZg7D+1IRf7flrb2LzFvTbkmsbvWQ4yYz1LqJXZ/HDmoCydvh2pOnc+1zPK3BpB7vGrrwA==} 685 685 peerDependencies: 686 686 '@nextui-org/theme': '>=2.1.0' ··· 689 689 dependencies: 690 690 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 691 691 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 692 - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.2.0) 693 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 692 + '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.0) 693 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 694 694 react: 18.2.0 695 695 react-dom: 18.2.0(react@18.2.0) 696 696 transitivePeerDependencies: 697 697 - tailwind-variants 698 698 dev: false 699 699 700 - /@nextui-org/breadcrumbs@2.0.4(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 700 + /@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): 701 701 resolution: {integrity: sha512-SAE0+QRgA7vxUHPL65TKz3MRj7u2mbSwk8Eifkwo6hPcF0d34zv2QDupTGyphIjoGCSrQHFIq/CPAkXyaOXZxw==} 702 702 peerDependencies: 703 703 '@nextui-org/system': '>=2.0.0' ··· 708 708 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 709 709 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 710 710 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 711 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 712 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 711 + '@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.0) 712 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 713 713 '@react-aria/breadcrumbs': 3.5.11(react@18.2.0) 714 714 '@react-aria/focus': 3.16.2(react@18.2.0) 715 715 '@react-aria/utils': 3.23.2(react@18.2.0) ··· 719 719 react-dom: 18.2.0(react@18.2.0) 720 720 dev: false 721 721 722 - /@nextui-org/button@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 723 - resolution: {integrity: sha512-mDrSII1oneY4omwDdxUhl5oLa3AhoWCchwV/jt7egunnAFie32HbTqfFYGpLGiJw3JMMh3WDUthrI1islVTRKA==} 722 + /@nextui-org/button@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 723 + resolution: {integrity: sha512-oErzUr9KtE/qjUx4dSbalphxURssxGf9tv0mW++ZMkmVX1E6i887FwZb9xAVm9oBwYwR6+xpJaqjQLmt8aN/rQ==} 724 724 peerDependencies: 725 725 '@nextui-org/system': '>=2.0.0' 726 726 '@nextui-org/theme': '>=2.1.0' ··· 729 729 react-dom: '>=18' 730 730 dependencies: 731 731 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 732 - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0) 732 + '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0) 733 733 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 734 - '@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 735 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 736 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 734 + '@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.0) 735 + '@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.0) 736 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 737 737 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 738 738 '@react-aria/button': 3.9.3(react@18.2.0) 739 739 '@react-aria/focus': 3.16.2(react@18.2.0) ··· 741 741 '@react-aria/utils': 3.23.2(react@18.2.0) 742 742 '@react-types/button': 3.9.2(react@18.2.0) 743 743 '@react-types/shared': 3.22.1(react@18.2.0) 744 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 744 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 745 745 react: 18.2.0 746 746 react-dom: 18.2.0(react@18.2.0) 747 747 transitivePeerDependencies: 748 748 - tailwind-variants 749 749 dev: false 750 750 751 - /@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0): 751 + /@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0): 752 752 resolution: {integrity: sha512-16uAS0i6+EO+u8aqtmaCXatjovsyuTq51JwCLBlB67OldfgXoYcYl3GaE2VoZdEwxVu1G/qypDfXv29k46nZuA==} 753 753 peerDependencies: 754 754 '@nextui-org/system': '>=2.0.0' ··· 758 758 react-dom: '>=18' 759 759 dependencies: 760 760 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 761 - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0) 761 + '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0) 762 762 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 763 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 764 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 763 + '@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.0) 764 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 765 765 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 766 766 '@react-aria/button': 3.9.3(react@18.2.0) 767 767 '@react-aria/focus': 3.16.2(react@18.2.0) 768 768 '@react-aria/interactions': 3.21.1(react@18.2.0) 769 769 '@react-aria/utils': 3.23.2(react@18.2.0) 770 770 '@react-types/shared': 3.22.1(react@18.2.0) 771 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 771 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 772 772 react: 18.2.0 773 773 react-dom: 18.2.0(react@18.2.0) 774 774 dev: false 775 775 776 - /@nextui-org/checkbox@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 776 + /@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): 777 777 resolution: {integrity: sha512-X6WkwPbZlDvioEcXF6HhKH21wD6OK+3+FSroKkzMPQLJrj2KYUIYGbiuw9rT9aCtdjbT+6HUCv+FA8/cBQr7cA==} 778 778 peerDependencies: 779 779 '@nextui-org/system': '>=2.0.0' ··· 783 783 dependencies: 784 784 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 785 785 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 786 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 787 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 786 + '@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.0) 787 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 788 788 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 789 789 '@react-aria/checkbox': 3.14.1(react@18.2.0) 790 790 '@react-aria/focus': 3.16.2(react@18.2.0) ··· 799 799 react-dom: 18.2.0(react@18.2.0) 800 800 dev: false 801 801 802 - /@nextui-org/chip@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 802 + /@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): 803 803 resolution: {integrity: sha512-hfVSaq5JWzGn97s3K2Ac/xOopHWelaUW3eus0O0wns/6+NCI0QUjgwNt2bAQSNvnE6vjvYLJTqGG/jFHyFJjOg==} 804 804 peerDependencies: 805 805 '@nextui-org/system': '>=2.0.0' ··· 810 810 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 811 811 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 812 812 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 813 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 814 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 813 + '@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.0) 814 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 815 815 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 816 816 '@react-aria/focus': 3.16.2(react@18.2.0) 817 817 '@react-aria/interactions': 3.21.1(react@18.2.0) ··· 821 821 react-dom: 18.2.0(react@18.2.0) 822 822 dev: false 823 823 824 - /@nextui-org/code@2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 824 + /@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.0): 825 825 resolution: {integrity: sha512-Kw/uOQtdytRWY99zMQuGHqMAAGXWBAxHlyMMge1OCckpadCDfX6plPjqoS18SGM0orJ4fox+a1FM8VhnRQ2kQw==} 826 826 peerDependencies: 827 827 '@nextui-org/theme': '>=2.1.0' ··· 830 830 dependencies: 831 831 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 832 832 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 833 - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.2.0) 834 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 833 + '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.0) 834 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 835 835 react: 18.2.0 836 836 react-dom: 18.2.0(react@18.2.0) 837 837 transitivePeerDependencies: 838 838 - tailwind-variants 839 839 dev: false 840 840 841 - /@nextui-org/divider@2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 841 + /@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.0): 842 842 resolution: {integrity: sha512-yEvHqYlhNBwmF68pfjJKdzC8gVQtL+txxD5COBGF9uFyfxA5hVw2D6GmYgOH514bxrFBuWOLcQX6gyljgcN3bA==} 843 843 peerDependencies: 844 844 '@nextui-org/theme': '>=2.1.0' ··· 847 847 dependencies: 848 848 '@nextui-org/react-rsc-utils': 2.0.10 849 849 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 850 - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.2.0) 851 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 850 + '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.0) 851 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 852 852 '@react-types/shared': 3.22.1(react@18.2.0) 853 853 react: 18.2.0 854 854 react-dom: 18.2.0(react@18.2.0) ··· 856 856 - tailwind-variants 857 857 dev: false 858 858 859 - /@nextui-org/dropdown@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 860 - resolution: {integrity: sha512-3KINNvC7Cz+deQltCM8gaB7iJCfU4Qsp1fwnoy1wUEjeZhEtPOPR59oTyqT+gPaPIisP1+LLOfcqRl4jNQoVXw==} 859 + /@nextui-org/dropdown@2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 860 + resolution: {integrity: sha512-Hxmz1Yf/LjjOLqWRF49Q5ZYJtae6ydDEk1mv8oMKNmSWHi92lrgmHlwkGvR3mjczbRuF+WkXHLEhVZH6/tZQ7A==} 861 861 peerDependencies: 862 862 '@nextui-org/system': '>=2.0.0' 863 863 '@nextui-org/theme': '>=2.1.0' ··· 865 865 react: '>=18' 866 866 react-dom: '>=18' 867 867 dependencies: 868 - '@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 869 - '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 868 + '@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.0) 869 + '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 870 870 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 871 871 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 872 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 873 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 872 + '@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.0) 873 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 874 874 '@react-aria/focus': 3.16.2(react@18.2.0) 875 875 '@react-aria/menu': 3.13.1(react-dom@18.2.0)(react@18.2.0) 876 876 '@react-aria/utils': 3.23.2(react@18.2.0) 877 877 '@react-stately/menu': 3.6.1(react@18.2.0) 878 878 '@react-types/menu': 3.9.7(react@18.2.0) 879 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 879 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 880 880 react: 18.2.0 881 881 react-dom: 18.2.0(react@18.2.0) 882 882 transitivePeerDependencies: ··· 884 884 - tailwind-variants 885 885 dev: false 886 886 887 - /@nextui-org/framer-transitions@2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 887 + /@nextui-org/framer-transitions@2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 888 888 resolution: {integrity: sha512-UlWMCAFdrq8wKrYFGwc+O4kFhKCkL4L9ZadBkP0PqjmfyAC2gA3ygRbNqtKhFMWeKbBAiC8qQ9aTBEA/+0r/EA==} 889 889 peerDependencies: 890 890 framer-motion: '>=4.0.0' ··· 892 892 react-dom: '>=18' 893 893 dependencies: 894 894 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 895 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 896 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 895 + '@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.0) 896 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 897 897 react: 18.2.0 898 898 react-dom: 18.2.0(react@18.2.0) 899 899 transitivePeerDependencies: ··· 901 901 - tailwind-variants 902 902 dev: false 903 903 904 - /@nextui-org/image@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 904 + /@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): 905 905 resolution: {integrity: sha512-bps5D5ki7PoLldb8wcJEf6C4EUFZm3PocLytNaGa7dNxFfaCOD78So+kq+K+0IRusK3yn94K8r31qMvpI3Gg2Q==} 906 906 peerDependencies: 907 907 '@nextui-org/system': '>=2.0.0' ··· 911 911 dependencies: 912 912 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 913 913 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 914 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 915 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 914 + '@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.0) 915 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 916 916 '@nextui-org/use-image': 2.0.4(react@18.2.0) 917 917 react: 18.2.0 918 918 react-dom: 18.2.0(react@18.2.0) 919 919 dev: false 920 920 921 - /@nextui-org/input@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(react-dom@18.2.0)(react@18.2.0): 922 - resolution: {integrity: sha512-nUTlAvsXj5t88ycvQdICxf78/pko6Wznx2OomvYjb3E45eb77twQcWUDhydkJCWIh3b4AhGHSMM6GYxwWUgMDA==} 921 + /@nextui-org/input@2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(react-dom@18.2.0)(react@18.2.0): 922 + resolution: {integrity: sha512-3FW3NDDbQOa5IlUCpO2Ma/XEjGnx4TQLM8MvMbskc+GNbZ0mtzfV0hCeQkqxxJ2lP4Mkp4QhwGRRkRrDu1G0Wg==} 923 923 peerDependencies: 924 924 '@nextui-org/system': '>=2.0.0' 925 925 '@nextui-org/theme': '>=2.1.0' ··· 929 929 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 930 930 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 931 931 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 932 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 933 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 932 + '@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.0) 933 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 934 934 '@react-aria/focus': 3.16.2(react@18.2.0) 935 935 '@react-aria/interactions': 3.21.1(react@18.2.0) 936 936 '@react-aria/textfield': 3.14.3(react@18.2.0) ··· 940 940 '@react-types/textfield': 3.9.1(react@18.2.0) 941 941 react: 18.2.0 942 942 react-dom: 18.2.0(react@18.2.0) 943 - react-textarea-autosize: 8.5.3(@types/react@18.2.58)(react@18.2.0) 943 + react-textarea-autosize: 8.5.3(@types/react@18.2.63)(react@18.2.0) 944 944 transitivePeerDependencies: 945 945 - '@types/react' 946 946 dev: false 947 947 948 - /@nextui-org/kbd@2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 948 + /@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.0): 949 949 resolution: {integrity: sha512-cYwbEjp/+/tjtOdmiRy2UHjfBhP3bqd5e+JFTa5sY1HotckUZrCintATyBcg9bPa3iSPUI44M6Cb9e0oAUUeMA==} 950 950 peerDependencies: 951 951 '@nextui-org/theme': '>=2.1.0' ··· 954 954 dependencies: 955 955 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 956 956 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 957 - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.2.0) 958 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 957 + '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.0) 958 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 959 959 '@react-aria/utils': 3.23.2(react@18.2.0) 960 960 react: 18.2.0 961 961 react-dom: 18.2.0(react@18.2.0) ··· 963 963 - tailwind-variants 964 964 dev: false 965 965 966 - /@nextui-org/link@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 966 + /@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): 967 967 resolution: {integrity: sha512-X8zX3U5MWfiStOCd45oIZ2YKZG0GoUio6PcMFYjpOPsEG7wV58CuhUSxpyx3QTF8JavVSO/p/cl4Pc9pukVDUg==} 968 968 peerDependencies: 969 969 '@nextui-org/system': '>=2.0.0' ··· 974 974 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 975 975 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 976 976 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 977 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 978 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 977 + '@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.0) 978 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 979 979 '@nextui-org/use-aria-link': 2.0.15(react@18.2.0) 980 980 '@react-aria/focus': 3.16.2(react@18.2.0) 981 981 '@react-aria/link': 3.6.5(react@18.2.0) ··· 985 985 react-dom: 18.2.0(react@18.2.0) 986 986 dev: false 987 987 988 - /@nextui-org/listbox@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 988 + /@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.0): 989 989 resolution: {integrity: sha512-5PmUCoHFgAr+1nAU3IlqPFTgyHo7zsTcNeja4wcErD/KseCF2h7Uk5OqUX5hQDN9B9fZuGjPrkG4yoK/6pqcUQ==} 990 990 peerDependencies: 991 991 '@nextui-org/system': '>=2.0.0' ··· 993 993 react: '>=18' 994 994 react-dom: '>=18' 995 995 dependencies: 996 - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 997 - '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 996 + '@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.0) 997 + '@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.0) 998 998 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 999 999 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1000 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1001 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1000 + '@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.0) 1001 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1002 1002 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1003 1003 '@nextui-org/use-is-mobile': 2.0.6(react@18.2.0) 1004 1004 '@react-aria/focus': 3.16.2(react@18.2.0) ··· 1014 1014 - tailwind-variants 1015 1015 dev: false 1016 1016 1017 - /@nextui-org/menu@2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1017 + /@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.0): 1018 1018 resolution: {integrity: sha512-qr/BPDbBvg5tpAZZLkLx8eNnvYwJYM3Q72fmRYbzwmG3upNtdjln0QYxSwPXUz7RYqTKEFWc9JPxq2pgPM15Wg==} 1019 1019 peerDependencies: 1020 1020 '@nextui-org/system': '>=2.0.0' ··· 1022 1022 react: '>=18' 1023 1023 react-dom: '>=18' 1024 1024 dependencies: 1025 - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1026 - '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1025 + '@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.0) 1026 + '@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.0) 1027 1027 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1028 1028 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1029 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1030 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1029 + '@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.0) 1030 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1031 1031 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1032 1032 '@nextui-org/use-is-mobile': 2.0.6(react@18.2.0) 1033 1033 '@react-aria/focus': 3.16.2(react@18.2.0) ··· 1044 1044 - tailwind-variants 1045 1045 dev: false 1046 1046 1047 - /@nextui-org/modal@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1048 - resolution: {integrity: sha512-unfP0EMF3FDg5CkRqou03s4/BopWbaBTeVIMZeA2A1WF5teHUOmpLdp44Z1KOoWB1RVMDVd4JeoauNHNhJMp0g==} 1047 + /@nextui-org/modal@2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1048 + resolution: {integrity: sha512-C/pvw0fAPWKbfMoGfIVZWhMRbe+DRGEg7GqPVY7EmW4FSSIK7Sfdn6Jxm+sSv+a7xHpDr86nirFbvN3S4jCaHw==} 1049 1049 peerDependencies: 1050 1050 '@nextui-org/system': '>=2.0.0' 1051 1051 '@nextui-org/theme': '>=2.1.0' ··· 1053 1053 react: '>=18' 1054 1054 react-dom: '>=18' 1055 1055 dependencies: 1056 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1056 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1057 1057 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1058 1058 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1059 1059 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1060 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1061 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1060 + '@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.0) 1061 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1062 1062 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 1063 1063 '@nextui-org/use-aria-modal-overlay': 2.0.6(react-dom@18.2.0)(react@18.2.0) 1064 1064 '@nextui-org/use-disclosure': 2.0.6(react@18.2.0) ··· 1069 1069 '@react-aria/utils': 3.23.2(react@18.2.0) 1070 1070 '@react-stately/overlays': 3.6.5(react@18.2.0) 1071 1071 '@react-types/overlays': 3.8.5(react@18.2.0) 1072 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 1072 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1073 1073 react: 18.2.0 1074 1074 react-dom: 18.2.0(react@18.2.0) 1075 - react-remove-scroll: 2.5.7(@types/react@18.2.58)(react@18.2.0) 1075 + react-remove-scroll: 2.5.7(@types/react@18.2.63)(react@18.2.0) 1076 1076 transitivePeerDependencies: 1077 1077 - '@types/react' 1078 1078 - tailwind-variants 1079 1079 dev: false 1080 1080 1081 - /@nextui-org/navbar@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1081 + /@nextui-org/navbar@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1082 1082 resolution: {integrity: sha512-iP4Pn4ItQkAW1nbu1Jmrh5l9pMVG43lDxq9rbx6DbLjLnnZOOrE6fURb8uN5NVy3ooV5dF02zKAoxlkE5fN/xw==} 1083 1083 peerDependencies: 1084 1084 '@nextui-org/system': '>=2.0.0' ··· 1087 1087 react: '>=18' 1088 1088 react-dom: '>=18' 1089 1089 dependencies: 1090 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1090 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1091 1091 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1092 1092 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1093 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1094 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1093 + '@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.0) 1094 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1095 1095 '@nextui-org/use-aria-toggle-button': 2.0.6(react@18.2.0) 1096 1096 '@nextui-org/use-scroll-position': 2.0.4(react@18.2.0) 1097 1097 '@react-aria/focus': 3.16.2(react@18.2.0) ··· 1100 1100 '@react-aria/utils': 3.23.2(react@18.2.0) 1101 1101 '@react-stately/toggle': 3.7.2(react@18.2.0) 1102 1102 '@react-stately/utils': 3.9.1(react@18.2.0) 1103 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 1103 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1104 1104 react: 18.2.0 1105 1105 react-dom: 18.2.0(react@18.2.0) 1106 - react-remove-scroll: 2.5.7(@types/react@18.2.58)(react@18.2.0) 1106 + react-remove-scroll: 2.5.7(@types/react@18.2.63)(react@18.2.0) 1107 1107 transitivePeerDependencies: 1108 1108 - '@types/react' 1109 1109 - tailwind-variants 1110 1110 dev: false 1111 1111 1112 - /@nextui-org/pagination@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 1113 - resolution: {integrity: sha512-OVpkpXqUKRuMRIcYESBAL95d3pqZ17SKAyNINMiJ/DwWnrzJu/LXGmFwTuYRoBdqHFlm7guGqZbHmAkcS/Fgow==} 1112 + /@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): 1113 + resolution: {integrity: sha512-v1tSsb0Q863/gKVUxuN7FcE1TZWuvcbWZOrWjKe0/llRgfZ23/4KD1AmFyYuKo5RDFt+i1JWSfzAu08j0Hzzqg==} 1114 1114 peerDependencies: 1115 1115 '@nextui-org/system': '>=2.0.0' 1116 1116 '@nextui-org/theme': '>=2.1.0' ··· 1120 1120 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1121 1121 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1122 1122 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1123 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1124 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1123 + '@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.0) 1124 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1125 1125 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1126 - '@nextui-org/use-pagination': 2.0.4(react@18.2.0) 1126 + '@nextui-org/use-pagination': 2.0.5(react@18.2.0) 1127 1127 '@react-aria/focus': 3.16.2(react@18.2.0) 1128 + '@react-aria/i18n': 3.10.2(react@18.2.0) 1128 1129 '@react-aria/interactions': 3.21.1(react@18.2.0) 1129 1130 '@react-aria/utils': 3.23.2(react@18.2.0) 1130 1131 react: 18.2.0 ··· 1132 1133 scroll-into-view-if-needed: 3.0.10 1133 1134 dev: false 1134 1135 1135 - /@nextui-org/popover@2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1136 - resolution: {integrity: sha512-fqqktFQ/chIBS9Y3MghL6KX6qAy3hodtXUDchnxLa1GL+oi6TCBLUjo+wgI5EMJrTTbqo/eFLui/Ks00JfCj+A==} 1136 + /@nextui-org/popover@2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1137 + resolution: {integrity: sha512-FQ66y49sQvXvyDrEsEFAC0qfpl2X+5ZPGaVXdNd3Cjox/jxAxp93cSUkk0iOfYvdsbO5zVFjuM0L3Dqn4hsHMw==} 1137 1138 peerDependencies: 1138 1139 '@nextui-org/system': '>=2.0.0' 1139 1140 '@nextui-org/theme': '>=2.1.0' ··· 1141 1142 react: '>=18' 1142 1143 react-dom: '>=18' 1143 1144 dependencies: 1144 - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1145 - '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1146 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1145 + '@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.0) 1146 + '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1147 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1147 1148 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1148 1149 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1149 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1150 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1150 + '@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.0) 1151 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1151 1152 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 1153 + '@nextui-org/use-safe-layout-effect': 2.0.4(react@18.2.0) 1152 1154 '@react-aria/dialog': 3.5.12(react-dom@18.2.0)(react@18.2.0) 1153 1155 '@react-aria/focus': 3.16.2(react@18.2.0) 1154 1156 '@react-aria/interactions': 3.21.1(react@18.2.0) ··· 1157 1159 '@react-stately/overlays': 3.6.5(react@18.2.0) 1158 1160 '@react-types/button': 3.9.2(react@18.2.0) 1159 1161 '@react-types/overlays': 3.8.5(react@18.2.0) 1160 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 1162 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1161 1163 react: 18.2.0 1162 1164 react-dom: 18.2.0(react@18.2.0) 1163 - react-remove-scroll: 2.5.7(@types/react@18.2.58)(react@18.2.0) 1165 + react-remove-scroll: 2.5.7(@types/react@18.2.63)(react@18.2.0) 1164 1166 transitivePeerDependencies: 1165 1167 - '@types/react' 1166 1168 - tailwind-variants 1167 1169 dev: false 1168 1170 1169 - /@nextui-org/progress@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 1170 - resolution: {integrity: sha512-RPVsFCF8COFClS/8PqEepzryhDFtIcJGQLu/P+qAr7jIDlXizXaBDrp0X34GVtQsapNeE9ExxX9Kt+QIspuHHQ==} 1171 + /@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): 1172 + resolution: {integrity: sha512-EFVxwT0CXq+2scPLhKKRHkWb6xNa6Vjx+HdgSg3l4lgAxAUryvdfksjW8vjxn6x4I2rGbdzAYPEu27p2KaK7jg==} 1171 1173 peerDependencies: 1172 1174 '@nextui-org/system': '>=2.0.0' 1173 1175 '@nextui-org/theme': '>=2.1.0' ··· 1176 1178 dependencies: 1177 1179 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1178 1180 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1179 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1180 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1181 + '@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.0) 1182 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1181 1183 '@nextui-org/use-is-mounted': 2.0.4(react@18.2.0) 1182 1184 '@react-aria/i18n': 3.10.2(react@18.2.0) 1183 1185 '@react-aria/progress': 3.4.11(react@18.2.0) ··· 1187 1189 react-dom: 18.2.0(react@18.2.0) 1188 1190 dev: false 1189 1191 1190 - /@nextui-org/radio@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 1192 + /@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): 1191 1193 resolution: {integrity: sha512-vRX0ppM5Tlzu0HoqTG6LdmQnMjk8RRl66BH1+QaosvZRXA1iIdA3BduqQYqn5ZZHBBlJ2u9QzaD3lTAlWIHvNg==} 1192 1194 peerDependencies: 1193 1195 '@nextui-org/system': '>=2.0.0' ··· 1197 1199 dependencies: 1198 1200 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1199 1201 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1200 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1201 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1202 + '@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.0) 1203 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1202 1204 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1203 1205 '@react-aria/focus': 3.16.2(react@18.2.0) 1204 1206 '@react-aria/interactions': 3.21.1(react@18.2.0) ··· 1226 1228 react: 18.2.0 1227 1229 dev: false 1228 1230 1229 - /@nextui-org/react@2.2.9(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0)(tailwindcss@3.4.1): 1230 - resolution: {integrity: sha512-QHkUQTxI9sYoVjrvTpYm5K68pMDRqD13+DVzdsrkJuETGhbvE2c2CCGc4on9EwXC3JsOxuP/OyqaAmOIuHhYkA==} 1231 + /@nextui-org/react@2.2.10(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0)(tailwindcss@3.4.1): 1232 + resolution: {integrity: sha512-YJhUIeLnO/FGDbZgfeWEz32RBrH2YFA1qsJQtMF7mza8rjspX/CkankvI7xs1o6sW/TYLSTq7sOF9RGMxLTIAA==} 1231 1233 peerDependencies: 1232 1234 framer-motion: '>=4.0.0' 1233 1235 react: '>=18' 1234 1236 react-dom: '>=18' 1235 1237 dependencies: 1236 - '@nextui-org/accordion': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1237 - '@nextui-org/autocomplete': 2.0.9(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1238 - '@nextui-org/avatar': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1239 - '@nextui-org/badge': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1240 - '@nextui-org/breadcrumbs': 2.0.4(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1241 - '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1242 - '@nextui-org/card': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0) 1243 - '@nextui-org/checkbox': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1244 - '@nextui-org/chip': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1245 - '@nextui-org/code': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1246 - '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1247 - '@nextui-org/dropdown': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1248 - '@nextui-org/image': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1249 - '@nextui-org/input': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(react-dom@18.2.0)(react@18.2.0) 1250 - '@nextui-org/kbd': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1251 - '@nextui-org/link': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1252 - '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1253 - '@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1254 - '@nextui-org/modal': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1255 - '@nextui-org/navbar': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1256 - '@nextui-org/pagination': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1257 - '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1258 - '@nextui-org/progress': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1259 - '@nextui-org/radio': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1260 - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0) 1261 - '@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1262 - '@nextui-org/select': 2.1.20(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1263 - '@nextui-org/skeleton': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1264 - '@nextui-org/slider': 2.2.5(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1265 - '@nextui-org/snippet': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1266 - '@nextui-org/spacer': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1267 - '@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1268 - '@nextui-org/switch': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1269 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1270 - '@nextui-org/table': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1271 - '@nextui-org/tabs': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1272 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1273 - '@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1274 - '@nextui-org/user': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1238 + '@nextui-org/accordion': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1239 + '@nextui-org/autocomplete': 2.0.10(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1240 + '@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) 1241 + '@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.0) 1242 + '@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) 1243 + '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1244 + '@nextui-org/card': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0) 1245 + '@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) 1246 + '@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) 1247 + '@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.0) 1248 + '@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.0) 1249 + '@nextui-org/dropdown': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1250 + '@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) 1251 + '@nextui-org/input': 2.1.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(react-dom@18.2.0)(react@18.2.0) 1252 + '@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.0) 1253 + '@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) 1254 + '@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.0) 1255 + '@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.0) 1256 + '@nextui-org/modal': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1257 + '@nextui-org/navbar': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1258 + '@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) 1259 + '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1260 + '@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) 1261 + '@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) 1262 + '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0) 1263 + '@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) 1264 + '@nextui-org/select': 2.1.21(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1265 + '@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.0) 1266 + '@nextui-org/slider': 2.2.6(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1267 + '@nextui-org/snippet': 2.0.31(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1268 + '@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.0) 1269 + '@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.0) 1270 + '@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) 1271 + '@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.0) 1272 + '@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.0) 1273 + '@nextui-org/tabs': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1274 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1275 + '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1276 + '@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) 1275 1277 '@react-aria/visually-hidden': 3.8.10(react@18.2.0) 1276 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 1278 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1277 1279 react: 18.2.0 1278 1280 react-dom: 18.2.0(react@18.2.0) 1279 1281 transitivePeerDependencies: ··· 1282 1284 - tailwindcss 1283 1285 dev: false 1284 1286 1285 - /@nextui-org/ripple@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0): 1287 + /@nextui-org/ripple@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0): 1286 1288 resolution: {integrity: sha512-PCvAk9ErhmPX46VRmhsg8yMxw3Qd9LY7BDkRRfIF8KftgRDyOpG2vV8DxvSOxQu1/aqBWkkHNUuEjM/EvSEung==} 1287 1289 peerDependencies: 1288 1290 '@nextui-org/system': '>=2.0.0' ··· 1293 1295 dependencies: 1294 1296 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1295 1297 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1296 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1297 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1298 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 1298 + '@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.0) 1299 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1300 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1299 1301 react: 18.2.0 1300 1302 react-dom: 18.2.0(react@18.2.0) 1301 1303 dev: false 1302 1304 1303 - /@nextui-org/scroll-shadow@2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 1304 - resolution: {integrity: sha512-uxT8D+WCWeBy4xaFDfqVpBgjjHZUwydXsX5HhbzZCBir/1eRG5GMnUES3w98DSwcUVadG64gAVsyGW4HmSZw1Q==} 1305 + /@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): 1306 + resolution: {integrity: sha512-hFoVGplGMWuE+KXRz9gtKRq3e0YYkxutrqjDD0BiDHk4WkiyOrTnNuE6wnJTnd6Hd+kavLPBDu2+yGauDb7/Qg==} 1305 1307 peerDependencies: 1306 1308 '@nextui-org/system': '>=2.0.0' 1307 1309 '@nextui-org/theme': '>=2.1.0' ··· 1310 1312 dependencies: 1311 1313 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1312 1314 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1313 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1314 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1315 - '@nextui-org/use-data-scroll-overflow': 2.1.2(react@18.2.0) 1315 + '@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.0) 1316 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1317 + '@nextui-org/use-data-scroll-overflow': 2.1.3(react@18.2.0) 1316 1318 react: 18.2.0 1317 1319 react-dom: 18.2.0(react@18.2.0) 1318 1320 dev: false 1319 1321 1320 - /@nextui-org/select@2.1.20(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1321 - resolution: {integrity: sha512-GCO9uzyYnFIdJTqIe6aDe2NnYlclcdYfZnECFAze/R2MW0jpoysk5ysGBDjVDmZis6tLu+BOFXJbIlYEi+LoUQ==} 1322 + /@nextui-org/select@2.1.21(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1323 + resolution: {integrity: sha512-BVfmxIsZTL6dBiZ1Q5RbAnqiNpVnaJgWi0M1QMV448FHMaDHLTWtNOJPMD0QyxHRNPfDgFrqEAq6a1+pA26ckQ==} 1322 1324 peerDependencies: 1323 1325 '@nextui-org/system': '>=2.0.0' 1324 1326 '@nextui-org/theme': '>=2.1.0' ··· 1326 1328 react: '>=18' 1327 1329 react-dom: '>=18' 1328 1330 dependencies: 1329 - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1330 - '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1331 - '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.58)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1331 + '@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.0) 1332 + '@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.0) 1333 + '@nextui-org/popover': 2.1.15(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(@types/react@18.2.63)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1332 1334 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1333 - '@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1335 + '@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) 1334 1336 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1335 1337 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1336 - '@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1337 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1338 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1338 + '@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.0) 1339 + '@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.0) 1340 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1339 1341 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 1340 - '@nextui-org/use-aria-multiselect': 2.1.3(react-dom@18.2.0)(react@18.2.0) 1342 + '@nextui-org/use-aria-multiselect': 2.1.4(react-dom@18.2.0)(react@18.2.0) 1341 1343 '@react-aria/focus': 3.16.2(react@18.2.0) 1342 1344 '@react-aria/interactions': 3.21.1(react@18.2.0) 1343 1345 '@react-aria/utils': 3.23.2(react@18.2.0) 1344 1346 '@react-aria/visually-hidden': 3.8.10(react@18.2.0) 1345 1347 '@react-types/shared': 3.22.1(react@18.2.0) 1346 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 1348 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1347 1349 react: 18.2.0 1348 1350 react-dom: 18.2.0(react@18.2.0) 1349 1351 transitivePeerDependencies: ··· 1367 1369 react: 18.2.0 1368 1370 dev: false 1369 1371 1370 - /@nextui-org/skeleton@2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1372 + /@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.0): 1371 1373 resolution: {integrity: sha512-bsb+lYugSfQV3RHrEHLbHhkkeslaxybnnT4z485Y/GBYTENOiHIOnWFWntfxCbjZ6vCewGlfgnphj6zeqlk20g==} 1372 1374 peerDependencies: 1373 1375 '@nextui-org/theme': '>=2.1.0' ··· 1376 1378 dependencies: 1377 1379 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1378 1380 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1379 - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.2.0) 1380 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1381 + '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.0) 1382 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1381 1383 react: 18.2.0 1382 1384 react-dom: 18.2.0(react@18.2.0) 1383 1385 transitivePeerDependencies: 1384 1386 - tailwind-variants 1385 1387 dev: false 1386 1388 1387 - /@nextui-org/slider@2.2.5(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1388 - resolution: {integrity: sha512-dC6HHMmtn2WvxDmbY/Dq51XJjQ7cAnjZsuYVIvhwIiCLDG8QnEIhmYN0DQp/6oeZsCHnyMHC4DmtgOiJL0eXrQ==} 1389 + /@nextui-org/slider@2.2.6(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1390 + resolution: {integrity: sha512-adCjQ8k4bUwWcvmOJUki3+UVsCz4ms+qLG4jnY2wClPdQAwISMbZzQsuv3km+1HIZE5Ja7jzeeT/dMd8l3n+bg==} 1389 1391 peerDependencies: 1390 1392 '@nextui-org/system': '>=2.0.0' 1391 1393 '@nextui-org/theme': '>=2.1.0' ··· 1394 1396 dependencies: 1395 1397 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1396 1398 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1397 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1398 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1399 - '@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1399 + '@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.0) 1400 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1401 + '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1400 1402 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1401 1403 '@react-aria/focus': 3.16.2(react@18.2.0) 1402 1404 '@react-aria/i18n': 3.10.2(react@18.2.0) ··· 1412 1414 - tailwind-variants 1413 1415 dev: false 1414 1416 1415 - /@nextui-org/snippet@2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1416 - resolution: {integrity: sha512-8hKxqKpbJIMqFVedzYj90T4td+TkWdOdyYD9+VjywMdezAjsWdr8tqQj7boaMFjVNVSG+Pnw55Pgg/vkpc21aw==} 1417 + /@nextui-org/snippet@2.0.31(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1418 + resolution: {integrity: sha512-WooH5cqlHoa6SqUhzseKY7g1ah8kzSv382u95Or9kIgSirEZCrjygup3nFeKTMAe01NZoAz3OOYO7XNFWJ57vA==} 1417 1419 peerDependencies: 1418 1420 '@nextui-org/system': '>=2.0.0' 1419 1421 '@nextui-org/theme': '>=2.1.0' ··· 1421 1423 react: '>=18' 1422 1424 react-dom: '>=18' 1423 1425 dependencies: 1424 - '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1426 + '@nextui-org/button': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1425 1427 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1426 1428 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1427 1429 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1428 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1429 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1430 - '@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1430 + '@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.0) 1431 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1432 + '@nextui-org/tooltip': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1431 1433 '@nextui-org/use-clipboard': 2.0.4(react@18.2.0) 1432 1434 '@react-aria/focus': 3.16.2(react@18.2.0) 1433 1435 '@react-aria/utils': 3.23.2(react@18.2.0) 1434 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 1436 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1435 1437 react: 18.2.0 1436 1438 react-dom: 18.2.0(react@18.2.0) 1437 1439 transitivePeerDependencies: 1438 1440 - tailwind-variants 1439 1441 dev: false 1440 1442 1441 - /@nextui-org/spacer@2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1443 + /@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.0): 1442 1444 resolution: {integrity: sha512-bLnhPRnoyHQXhLneHjbRqZNxJWMFOBYOZkuX83uy59/FFUY07BcoNsb2s80tN3GoVxsaZ2jB6NxxVbaCJwoPog==} 1443 1445 peerDependencies: 1444 1446 '@nextui-org/theme': '>=2.1.0' ··· 1447 1449 dependencies: 1448 1450 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1449 1451 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1450 - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.2.0) 1451 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1452 + '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.0) 1453 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1452 1454 react: 18.2.0 1453 1455 react-dom: 18.2.0(react@18.2.0) 1454 1456 transitivePeerDependencies: 1455 1457 - tailwind-variants 1456 1458 dev: false 1457 1459 1458 - /@nextui-org/spinner@2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1459 - resolution: {integrity: sha512-s/q2FmxGPNEqA0ifWfc7xgs5a5D9c3xKkxL3n7jDoRnWo0NPlRsa6QRJGiSL5dHNoUqspRf/lNw2V94Bxk86Pg==} 1460 + /@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.0): 1461 + resolution: {integrity: sha512-s2iqaB71sanRxglJtG4UZF+Rz/W6UxnYegbkhnkkljH20vhOcrhwm5jKGStq8jkata8UZ0ajS67H8KY8lHV8nw==} 1460 1462 peerDependencies: 1461 1463 '@nextui-org/theme': '>=2.1.0' 1462 1464 react: '>=18' ··· 1464 1466 dependencies: 1465 1467 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1466 1468 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1467 - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.2.0) 1468 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1469 + '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.0) 1470 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1469 1471 react: 18.2.0 1470 1472 react-dom: 18.2.0(react@18.2.0) 1471 1473 transitivePeerDependencies: 1472 1474 - tailwind-variants 1473 1475 dev: false 1474 1476 1475 - /@nextui-org/switch@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 1477 + /@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): 1476 1478 resolution: {integrity: sha512-U7g68eReMSkgG0bBOSdzRLK+npv422YK6WYHpYOSkEBDqGwQ7LCeMRQreT/KxN0QFxIKmafebdLHAbuKc/X+5Q==} 1477 1479 peerDependencies: 1478 1480 '@nextui-org/system': '>=2.0.0' ··· 1482 1484 dependencies: 1483 1485 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1484 1486 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1485 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1486 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1487 + '@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.0) 1488 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1487 1489 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1488 1490 '@react-aria/focus': 3.16.2(react@18.2.0) 1489 1491 '@react-aria/interactions': 3.21.1(react@18.2.0) ··· 1496 1498 react-dom: 18.2.0(react@18.2.0) 1497 1499 dev: false 1498 1500 1499 - /@nextui-org/system-rsc@2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.2.0): 1501 + /@nextui-org/system-rsc@2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.0): 1500 1502 resolution: {integrity: sha512-1QqZ+GM7Ii0rsfSHXS6BBjzKOoLIWwb72nm4h4WgjlMXbRKLZcCQasRHVe5HMSBMvN0JUo7qyGExchfDFl/Ubw==} 1501 1503 peerDependencies: 1502 1504 '@nextui-org/theme': '>=2.1.0' 1503 1505 react: '>=18' 1504 1506 tailwind-variants: '>=0.1.13' 1505 1507 dependencies: 1506 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1508 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1507 1509 clsx: 1.2.1 1508 1510 react: 18.2.0 1509 1511 tailwind-variants: 0.2.0(tailwindcss@3.4.1) 1510 1512 dev: false 1511 1513 1512 - /@nextui-org/system@2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1514 + /@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.0): 1513 1515 resolution: {integrity: sha512-WFDq+Rx6D+gmK1YGEG2RBARPK9EOYonQDt5Tq2tUchzOOqj3kXXcM5Z0F3fudM59eIncLa/tX/ApJSTLry+hsw==} 1514 1516 peerDependencies: 1515 1517 react: '>=18' 1516 1518 react-dom: '>=18' 1517 1519 dependencies: 1518 - '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.2.0) 1520 + '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.18)(react@18.2.0)(tailwind-variants@0.2.0) 1519 1521 '@react-aria/i18n': 3.10.2(react@18.2.0) 1520 1522 '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) 1521 1523 '@react-aria/utils': 3.23.2(react@18.2.0) ··· 1527 1529 - tailwind-variants 1528 1530 dev: false 1529 1531 1530 - /@nextui-org/table@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1532 + /@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.0): 1531 1533 resolution: {integrity: sha512-qH/7jdV5+tiMDDvBfMrUZN4jamds0FsL5Ak+ighoKIUYRFTSXOroi+63ZzzAh/mZAsUALCPPcfbXt4r4aBFDzg==} 1532 1534 peerDependencies: 1533 1535 '@nextui-org/system': '>=2.0.0' ··· 1535 1537 react: '>=18' 1536 1538 react-dom: '>=18' 1537 1539 dependencies: 1538 - '@nextui-org/checkbox': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1540 + '@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) 1539 1541 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1540 1542 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1541 1543 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1542 - '@nextui-org/spacer': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1543 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1544 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1544 + '@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.0) 1545 + '@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.0) 1546 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1545 1547 '@react-aria/focus': 3.16.2(react@18.2.0) 1546 1548 '@react-aria/interactions': 3.21.1(react@18.2.0) 1547 1549 '@react-aria/table': 3.13.5(react-dom@18.2.0)(react@18.2.0) ··· 1557 1559 - tailwind-variants 1558 1560 dev: false 1559 1561 1560 - /@nextui-org/tabs@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1562 + /@nextui-org/tabs@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1561 1563 resolution: {integrity: sha512-GjERgBYUAY1KD4GqNVy0cRi6GyQnf62q0ddcN4je3sEM6rsq3PygEXhkN5pxxFPacoYM/UE6rBswHSKlbjJjgw==} 1562 1564 peerDependencies: 1563 1565 '@nextui-org/system': '>=2.0.0' ··· 1566 1568 react: '>=18' 1567 1569 react-dom: '>=18' 1568 1570 dependencies: 1569 - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1570 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1571 + '@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.0) 1572 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1571 1573 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1572 1574 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1573 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1574 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1575 + '@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.0) 1576 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1575 1577 '@nextui-org/use-is-mounted': 2.0.4(react@18.2.0) 1576 1578 '@nextui-org/use-update-effect': 2.0.4(react@18.2.0) 1577 1579 '@react-aria/focus': 3.16.2(react@18.2.0) ··· 1581 1583 '@react-stately/tabs': 3.6.4(react@18.2.0) 1582 1584 '@react-types/shared': 3.22.1(react@18.2.0) 1583 1585 '@react-types/tabs': 3.3.5(react@18.2.0) 1584 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 1586 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1585 1587 react: 18.2.0 1586 1588 react-dom: 18.2.0(react@18.2.0) 1587 1589 scroll-into-view-if-needed: 3.0.10 ··· 1589 1591 - tailwind-variants 1590 1592 dev: false 1591 1593 1592 - /@nextui-org/theme@2.1.17(tailwindcss@3.4.1): 1593 - resolution: {integrity: sha512-/WeHcMrAcWPGsEVn9M9TnvxKkaYkCocBH9JrDYCEFQoJgleUzHd4nVk7MWtpSOYJXLUzUMY1M9AqAK3jBkw+5g==} 1594 + /@nextui-org/theme@2.1.18(tailwindcss@3.4.1): 1595 + resolution: {integrity: sha512-2ptDh350lVD0yejZTpGv4fkeoGKB8+B/Coblzpjijfofn/t6MQIRIRRLp04wCCa/IbeevjS2wyadWpMDtVh3CQ==} 1594 1596 peerDependencies: 1595 1597 tailwindcss: '*' 1596 1598 dependencies: ··· 1607 1609 tailwindcss: 3.4.1 1608 1610 dev: false 1609 1611 1610 - /@nextui-org/tooltip@2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1611 - resolution: {integrity: sha512-LaFyS5bXhcZFXP9rnh6pTKsYX6siWjzEe5z72FIOyAV2yvv2yhkRiO/mEHKI8moo+/tScW/6muFXsvbEalPefg==} 1612 + /@nextui-org/tooltip@2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0): 1613 + resolution: {integrity: sha512-V3N9o/oNU1Y11etiilrlqt5dF4/o9eJSttgN2CPo8eRAPc96+sRpdGPGX3XcLJZNFRcNx8BkD/bcEUcrDdjmRA==} 1612 1614 peerDependencies: 1613 1615 '@nextui-org/system': '>=2.0.0' 1614 1616 '@nextui-org/theme': '>=2.1.0' ··· 1616 1618 react: '>=18' 1617 1619 react-dom: '>=18' 1618 1620 dependencies: 1619 - '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1620 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.6)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1621 + '@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.0) 1622 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.18)(framer-motion@11.0.8)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1621 1623 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1622 1624 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1623 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1624 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1625 + '@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.0) 1626 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1627 + '@nextui-org/use-safe-layout-effect': 2.0.4(react@18.2.0) 1625 1628 '@react-aria/interactions': 3.21.1(react@18.2.0) 1626 1629 '@react-aria/overlays': 3.21.1(react-dom@18.2.0)(react@18.2.0) 1627 1630 '@react-aria/tooltip': 3.7.2(react@18.2.0) ··· 1629 1632 '@react-stately/tooltip': 3.4.7(react@18.2.0) 1630 1633 '@react-types/overlays': 3.8.5(react@18.2.0) 1631 1634 '@react-types/tooltip': 3.4.7(react@18.2.0) 1632 - framer-motion: 11.0.6(react-dom@18.2.0)(react@18.2.0) 1635 + framer-motion: 11.0.8(react-dom@18.2.0)(react@18.2.0) 1633 1636 react: 18.2.0 1634 1637 react-dom: 18.2.0(react@18.2.0) 1635 1638 transitivePeerDependencies: ··· 1695 1698 react-dom: 18.2.0(react@18.2.0) 1696 1699 dev: false 1697 1700 1698 - /@nextui-org/use-aria-multiselect@2.1.3(react-dom@18.2.0)(react@18.2.0): 1699 - resolution: {integrity: sha512-OM1lj2jdl0Q2Zme/ds6qyT4IIGsBJSGNjvkM6pEnpdyoej/HwTKsSEpEFTDGJ5t9J9DWWCEt3hz0uJxOPnZ66Q==} 1701 + /@nextui-org/use-aria-multiselect@2.1.4(react-dom@18.2.0)(react@18.2.0): 1702 + resolution: {integrity: sha512-F95sF4eY5TLkom5tIMb+eoT4i0Cc4qygnQRqIosg8OryDbH62/MV4x88GjQsgDCY8dNeWCNVodHXxaWmVSAgyQ==} 1700 1703 peerDependencies: 1701 1704 react: '>=18' 1702 1705 react-dom: '>=18' ··· 1760 1763 react: 18.2.0 1761 1764 dev: false 1762 1765 1763 - /@nextui-org/use-data-scroll-overflow@2.1.2(react@18.2.0): 1764 - resolution: {integrity: sha512-3h9QX+dWkfqnqciQc2KeeR67e77hobjefNHGBTDuB4LhJSJ180ToZH09SQNHaUmKRLTU/RABjGWXxdbORI0r6g==} 1766 + /@nextui-org/use-data-scroll-overflow@2.1.3(react@18.2.0): 1767 + resolution: {integrity: sha512-f4rDr4MHGQTyqTd6L4MpKAcKfPDiVeWfYXXXX6gdN8UVTk+PzW675Fe+l7ATBgmaVTn1AEPJwW9dDUJcDpn21g==} 1765 1768 peerDependencies: 1766 1769 react: '>=18' 1767 1770 dependencies: ··· 1806 1809 react: 18.2.0 1807 1810 dev: false 1808 1811 1809 - /@nextui-org/use-pagination@2.0.4(react@18.2.0): 1810 - resolution: {integrity: sha512-EETHzhh+LW8u2bm93LkUABbu0pIoWBCeY8hmvgjhhNMkILuwZNGYnp9tdF2rcS2P4KDlHQkIQcoiOGrGMqBUaQ==} 1812 + /@nextui-org/use-pagination@2.0.5(react@18.2.0): 1813 + resolution: {integrity: sha512-wH0sC85XeTPPE4zRq0ycAVB+SpmPEiSmTEGxpBG2sqiJlsrNfEeXvTKf73INXM4IWfP53ONAQ7Nd1T7EVuYSkw==} 1811 1814 peerDependencies: 1812 1815 react: '>=18' 1813 1816 dependencies: 1814 1817 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1818 + '@react-aria/i18n': 3.10.2(react@18.2.0) 1815 1819 react: 18.2.0 1816 1820 dev: false 1817 1821 ··· 1839 1843 react: 18.2.0 1840 1844 dev: false 1841 1845 1842 - /@nextui-org/user@2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0): 1846 + /@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): 1843 1847 resolution: {integrity: sha512-Ykh65O0ynJBlstlZowM8KrX6zv/VLfDgYX892Dk0goLwU8gcSILPZE7yGIBZi1XsNN7mE3dmTp/APLFDbkzzXw==} 1844 1848 peerDependencies: 1845 1849 '@nextui-org/system': '>=2.0.0' ··· 1847 1851 react: '>=18' 1848 1852 react-dom: '>=18' 1849 1853 dependencies: 1850 - '@nextui-org/avatar': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1854 + '@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) 1851 1855 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1852 1856 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1853 - '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.2.0) 1854 - '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1857 + '@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.0) 1858 + '@nextui-org/theme': 2.1.18(tailwindcss@3.4.1) 1855 1859 '@react-aria/focus': 3.16.2(react@18.2.0) 1856 1860 '@react-aria/utils': 3.23.2(react@18.2.0) 1857 1861 react: 18.2.0 ··· 2893 2897 resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 2894 2898 dev: false 2895 2899 2896 - /@types/node@20.11.20: 2897 - resolution: {integrity: sha512-7/rR21OS+fq8IyHTgtLkDK949uzsa6n8BkziAKtPVpugIkO6D+/ooXMvzXxDnZrmtXVfjb1bKQafYpb8s89LOg==} 2900 + /@types/node@20.11.24: 2901 + resolution: {integrity: sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long==} 2898 2902 dependencies: 2899 2903 undici-types: 5.26.5 2900 2904 dev: true ··· 2905 2909 /@types/react-dom@18.2.19: 2906 2910 resolution: {integrity: sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==} 2907 2911 dependencies: 2908 - '@types/react': 18.2.58 2912 + '@types/react': 18.2.63 2909 2913 dev: true 2910 2914 2911 - /@types/react@18.2.58: 2912 - resolution: {integrity: sha512-TaGvMNhxvG2Q0K0aYxiKfNDS5m5ZsoIBBbtfUorxdH4NGSXIlYvZxLJI+9Dd3KjeB3780bciLyAb7ylO8pLhPw==} 2915 + /@types/react@18.2.63: 2916 + resolution: {integrity: sha512-ppaqODhs15PYL2nGUOaOu2RSCCB4Difu4UFrP4I3NHLloXC/ESQzQMi9nvjfT1+rudd0d2L3fQPJxRSey+rGlQ==} 2913 2917 dependencies: 2914 2918 '@types/prop-types': 15.7.11 2915 2919 '@types/scheduler': 0.16.8 ··· 2918 2922 /@types/scheduler@0.16.8: 2919 2923 resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} 2920 2924 2921 - /@types/semver@7.5.7: 2922 - resolution: {integrity: sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==} 2925 + /@types/semver@7.5.8: 2926 + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} 2923 2927 dev: true 2924 2928 2925 2929 /@types/unist@2.0.10: ··· 3036 3040 dependencies: 3037 3041 '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) 3038 3042 '@types/json-schema': 7.0.15 3039 - '@types/semver': 7.5.7 3043 + '@types/semver': 7.5.8 3040 3044 '@typescript-eslint/scope-manager': 5.62.0 3041 3045 '@typescript-eslint/types': 5.62.0 3042 3046 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) ··· 3147 3151 dependencies: 3148 3152 call-bind: 1.0.7 3149 3153 define-properties: 1.2.1 3150 - es-abstract: 1.22.4 3154 + es-abstract: 1.22.5 3151 3155 get-intrinsic: 1.2.4 3152 3156 is-string: 1.0.7 3153 3157 dev: false ··· 3167 3171 dependencies: 3168 3172 call-bind: 1.0.7 3169 3173 define-properties: 1.2.1 3170 - es-abstract: 1.22.4 3174 + es-abstract: 1.22.5 3171 3175 es-array-method-boxes-properly: 1.0.0 3172 3176 is-string: 1.0.7 3173 3177 dev: false 3174 3178 3179 + /array.prototype.findlast@1.2.4: 3180 + resolution: {integrity: sha512-BMtLxpV+8BD+6ZPFIWmnUBpQoy+A+ujcg4rhp2iwCRJYA7PEh2MS4NL3lz8EiDlLrJPp2hg9qWihr5pd//jcGw==} 3181 + engines: {node: '>= 0.4'} 3182 + dependencies: 3183 + call-bind: 1.0.7 3184 + define-properties: 1.2.1 3185 + es-abstract: 1.22.5 3186 + es-errors: 1.3.0 3187 + es-shim-unscopables: 1.0.2 3188 + dev: false 3189 + 3175 3190 /array.prototype.findlastindex@1.2.4: 3176 3191 resolution: {integrity: sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==} 3177 3192 engines: {node: '>= 0.4'} 3178 3193 dependencies: 3179 3194 call-bind: 1.0.7 3180 3195 define-properties: 1.2.1 3181 - es-abstract: 1.22.4 3196 + es-abstract: 1.22.5 3182 3197 es-errors: 1.3.0 3183 3198 es-shim-unscopables: 1.0.2 3184 3199 dev: false ··· 3189 3204 dependencies: 3190 3205 call-bind: 1.0.7 3191 3206 define-properties: 1.2.1 3192 - es-abstract: 1.22.4 3207 + es-abstract: 1.22.5 3193 3208 es-shim-unscopables: 1.0.2 3194 3209 dev: false 3195 3210 ··· 3199 3214 dependencies: 3200 3215 call-bind: 1.0.7 3201 3216 define-properties: 1.2.1 3202 - es-abstract: 1.22.4 3217 + es-abstract: 1.22.5 3218 + es-shim-unscopables: 1.0.2 3219 + dev: false 3220 + 3221 + /array.prototype.toreversed@1.1.2: 3222 + resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} 3223 + dependencies: 3224 + call-bind: 1.0.7 3225 + define-properties: 1.2.1 3226 + es-abstract: 1.22.5 3203 3227 es-shim-unscopables: 1.0.2 3204 3228 dev: false 3205 3229 ··· 3208 3232 dependencies: 3209 3233 call-bind: 1.0.7 3210 3234 define-properties: 1.2.1 3211 - es-abstract: 1.22.4 3235 + es-abstract: 1.22.5 3212 3236 es-errors: 1.3.0 3213 3237 es-shim-unscopables: 1.0.2 3214 3238 dev: false ··· 3220 3244 array-buffer-byte-length: 1.0.1 3221 3245 call-bind: 1.0.7 3222 3246 define-properties: 1.2.1 3223 - es-abstract: 1.22.4 3247 + es-abstract: 1.22.5 3224 3248 es-errors: 1.3.0 3225 3249 get-intrinsic: 1.2.4 3226 3250 is-array-buffer: 3.0.4 ··· 3256 3280 postcss: ^8.1.0 3257 3281 dependencies: 3258 3282 browserslist: 4.23.0 3259 - caniuse-lite: 1.0.30001589 3283 + caniuse-lite: 1.0.30001594 3260 3284 fraction.js: 4.3.7 3261 3285 normalize-range: 0.1.2 3262 3286 picocolors: 1.0.0 ··· 3333 3357 /broadcast-channel@3.7.0: 3334 3358 resolution: {integrity: sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==} 3335 3359 dependencies: 3336 - '@babel/runtime': 7.23.9 3360 + '@babel/runtime': 7.24.0 3337 3361 detect-node: 2.1.0 3338 3362 js-sha3: 0.8.0 3339 3363 microseconds: 0.2.0 ··· 3348 3372 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 3349 3373 hasBin: true 3350 3374 dependencies: 3351 - caniuse-lite: 1.0.30001589 3352 - electron-to-chromium: 1.4.681 3375 + caniuse-lite: 1.0.30001594 3376 + electron-to-chromium: 1.4.692 3353 3377 node-releases: 2.0.14 3354 3378 update-browserslist-db: 1.0.13(browserslist@4.23.0) 3355 3379 dev: false ··· 3396 3420 engines: {node: '>= 6'} 3397 3421 dev: false 3398 3422 3399 - /caniuse-lite@1.0.30001589: 3400 - resolution: {integrity: sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg==} 3423 + /caniuse-lite@1.0.30001594: 3424 + resolution: {integrity: sha512-VblSX6nYqyJVs8DKFMldE2IVCJjZ225LW00ydtUWwh5hk9IfkTOffO6r8gJNsH0qqqeAF8KrbMYA2VEwTlGW5g==} 3401 3425 dev: false 3402 3426 3403 3427 /chalk@4.1.2: ··· 3762 3786 /dom-helpers@5.2.1: 3763 3787 resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} 3764 3788 dependencies: 3765 - '@babel/runtime': 7.23.9 3789 + '@babel/runtime': 7.24.0 3766 3790 csstype: 3.1.3 3767 3791 dev: false 3768 3792 ··· 3770 3794 resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 3771 3795 dev: false 3772 3796 3773 - /electron-to-chromium@1.4.681: 3774 - resolution: {integrity: sha512-1PpuqJUFWoXZ1E54m8bsLPVYwIVCRzvaL+n5cjigGga4z854abDnFRc+cTa2th4S79kyGqya/1xoR7h+Y5G5lg==} 3797 + /electron-to-chromium@1.4.692: 3798 + resolution: {integrity: sha512-d5rZRka9n2Y3MkWRN74IoAsxR0HK3yaAt7T50e3iT9VZmCCQDT3geXUO5ZRMhDToa1pkCeQXuNo+0g+NfDOVPA==} 3775 3799 dev: false 3776 3800 3777 3801 /emoji-regex@8.0.0: ··· 3782 3806 resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 3783 3807 dev: false 3784 3808 3785 - /enhanced-resolve@5.15.0: 3786 - resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} 3809 + /enhanced-resolve@5.15.1: 3810 + resolution: {integrity: sha512-3d3JRbwsCLJsYgvb6NuWEG44jjPSOMuS73L/6+7BZuoKm3W+qXnSoIYVHi8dG7Qcg4inAY4jbzkZ7MnskePeDg==} 3787 3811 engines: {node: '>=10.13.0'} 3788 3812 dependencies: 3789 3813 graceful-fs: 4.2.11 ··· 3795 3819 engines: {node: '>=0.12'} 3796 3820 dev: false 3797 3821 3798 - /es-abstract@1.22.4: 3799 - resolution: {integrity: sha512-vZYJlk2u6qHYxBOTjAeg7qUxHdNfih64Uu2J8QqWgXZ2cri0ZpJAkzDUK/q593+mvKwlxyaxr6F1Q+3LKoQRgg==} 3822 + /es-abstract@1.22.5: 3823 + resolution: {integrity: sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w==} 3800 3824 engines: {node: '>= 0.4'} 3801 3825 dependencies: 3802 3826 array-buffer-byte-length: 1.0.1 ··· 3865 3889 asynciterator.prototype: 1.0.0 3866 3890 call-bind: 1.0.7 3867 3891 define-properties: 1.2.1 3868 - es-abstract: 1.22.4 3892 + es-abstract: 1.22.5 3869 3893 es-errors: 1.3.0 3870 3894 es-set-tostringtag: 2.0.3 3871 3895 function-bind: 1.1.2 ··· 3929 3953 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 3930 3954 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3931 3955 eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) 3932 - eslint-plugin-react: 7.33.2(eslint@8.56.0) 3956 + eslint-plugin-react: 7.34.0(eslint@8.56.0) 3933 3957 eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0) 3934 3958 typescript: 5.3.3 3935 3959 transitivePeerDependencies: ··· 3955 3979 eslint-plugin-import: '*' 3956 3980 dependencies: 3957 3981 debug: 4.3.4 3958 - enhanced-resolve: 5.15.0 3982 + enhanced-resolve: 5.15.1 3959 3983 eslint: 8.56.0 3960 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3984 + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3961 3985 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3962 3986 fast-glob: 3.3.2 3963 3987 get-tsconfig: 4.7.2 ··· 3970 3994 - supports-color 3971 3995 dev: false 3972 3996 3973 - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 3974 - resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 3997 + /eslint-module-utils@2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 3998 + resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} 3975 3999 engines: {node: '>=4'} 3976 4000 peerDependencies: 3977 4001 '@typescript-eslint/parser': '*' ··· 4019 4043 doctrine: 2.1.0 4020 4044 eslint: 8.56.0 4021 4045 eslint-import-resolver-node: 0.3.9 4022 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 4046 + eslint-module-utils: 2.8.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 4023 4047 hasown: 2.0.1 4024 4048 is-core-module: 2.13.1 4025 4049 is-glob: 4.0.3 ··· 4041 4065 peerDependencies: 4042 4066 eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 4043 4067 dependencies: 4044 - '@babel/runtime': 7.23.9 4068 + '@babel/runtime': 7.24.0 4045 4069 aria-query: 5.3.0 4046 4070 array-includes: 3.1.7 4047 4071 array.prototype.flatmap: 1.3.2 ··· 4080 4104 eslint: 8.56.0 4081 4105 dev: false 4082 4106 4083 - /eslint-plugin-react@7.33.2(eslint@8.56.0): 4084 - resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} 4107 + /eslint-plugin-react@7.34.0(eslint@8.56.0): 4108 + resolution: {integrity: sha512-MeVXdReleBTdkz/bvcQMSnCXGi+c9kvy51IpinjnJgutl3YTHWsDdke7Z1ufZpGfDG8xduBDKyjtB9JH1eBKIQ==} 4085 4109 engines: {node: '>=4'} 4086 4110 peerDependencies: 4087 4111 eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 4088 4112 dependencies: 4089 4113 array-includes: 3.1.7 4114 + array.prototype.findlast: 1.2.4 4090 4115 array.prototype.flatmap: 1.3.2 4116 + array.prototype.toreversed: 1.1.2 4091 4117 array.prototype.tosorted: 1.1.3 4092 4118 doctrine: 2.1.0 4093 4119 es-iterator-helpers: 1.0.17 ··· 4348 4374 map-cache: 0.2.2 4349 4375 dev: true 4350 4376 4351 - /framer-motion@11.0.6(react-dom@18.2.0)(react@18.2.0): 4352 - resolution: {integrity: sha512-BpO3mWF8UwxzO3Ca5AmSkrg14QYTeJa9vKgoLOoBdBdTPj0e81i1dMwnX6EQJXRieUx20uiDBXq8bA6y7N6b8Q==} 4377 + /framer-motion@11.0.8(react-dom@18.2.0)(react@18.2.0): 4378 + resolution: {integrity: sha512-1KSGNuqe1qZkS/SWQlDnqK2VCVzRVEoval379j0FiUBJAZoqgwyvqFkfvJbgW2IPFo4wX16K+M0k5jO23lCIjA==} 4353 4379 peerDependencies: 4354 4380 react: ^18.0.0 4355 4381 react-dom: ^18.0.0 ··· 4386 4412 dependencies: 4387 4413 call-bind: 1.0.7 4388 4414 define-properties: 1.2.1 4389 - es-abstract: 1.22.4 4415 + es-abstract: 1.22.5 4390 4416 functions-have-names: 1.2.3 4391 4417 dev: false 4392 4418 ··· 4670 4696 dependencies: 4671 4697 es-errors: 1.3.0 4672 4698 hasown: 2.0.1 4673 - side-channel: 1.0.5 4699 + side-channel: 1.0.6 4674 4700 dev: false 4675 4701 4676 4702 /internmap@2.0.3: ··· 5149 5175 /match-sorter@6.3.4: 5150 5176 resolution: {integrity: sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==} 5151 5177 dependencies: 5152 - '@babel/runtime': 7.23.9 5178 + '@babel/runtime': 7.24.0 5153 5179 remove-accents: 0.5.0 5154 5180 dev: false 5155 5181 ··· 5539 5565 '@next/env': 14.1.0 5540 5566 '@swc/helpers': 0.5.2 5541 5567 busboy: 1.6.0 5542 - caniuse-lite: 1.0.30001589 5568 + caniuse-lite: 1.0.30001594 5543 5569 graceful-fs: 4.2.11 5544 5570 postcss: 8.4.31 5545 5571 react: 18.2.0 ··· 5625 5651 dependencies: 5626 5652 call-bind: 1.0.7 5627 5653 define-properties: 1.2.1 5628 - es-abstract: 1.22.4 5654 + es-abstract: 1.22.5 5629 5655 dev: false 5630 5656 5631 5657 /object.fromentries@2.0.7: ··· 5634 5660 dependencies: 5635 5661 call-bind: 1.0.7 5636 5662 define-properties: 1.2.1 5637 - es-abstract: 1.22.4 5663 + es-abstract: 1.22.5 5638 5664 dev: false 5639 5665 5640 5666 /object.groupby@1.0.2: ··· 5643 5669 array.prototype.filter: 1.0.3 5644 5670 call-bind: 1.0.7 5645 5671 define-properties: 1.2.1 5646 - es-abstract: 1.22.4 5672 + es-abstract: 1.22.5 5647 5673 es-errors: 1.3.0 5648 5674 dev: false 5649 5675 ··· 5651 5677 resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} 5652 5678 dependencies: 5653 5679 define-properties: 1.2.1 5654 - es-abstract: 1.22.4 5680 + es-abstract: 1.22.5 5655 5681 dev: false 5656 5682 5657 5683 /object.pick@1.3.0: ··· 5667 5693 dependencies: 5668 5694 call-bind: 1.0.7 5669 5695 define-properties: 1.2.1 5670 - es-abstract: 1.22.4 5696 + es-abstract: 1.22.5 5671 5697 dev: false 5672 5698 5673 5699 /oblivious-set@1.0.0: ··· 5806 5832 dependencies: 5807 5833 lilconfig: 3.1.1 5808 5834 postcss: 8.4.33 5809 - yaml: 2.3.4 5835 + yaml: 2.4.0 5810 5836 dev: false 5811 5837 5812 5838 /postcss-nested@6.0.1(postcss@8.4.33): ··· 5912 5938 engines: {node: '>= 12.0.0'} 5913 5939 dev: false 5914 5940 5915 - /react-markdown@8.0.7(@types/react@18.2.58)(react@18.2.0): 5941 + /react-markdown@8.0.7(@types/react@18.2.63)(react@18.2.0): 5916 5942 resolution: {integrity: sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==} 5917 5943 peerDependencies: 5918 5944 '@types/react': '>=16' ··· 5920 5946 dependencies: 5921 5947 '@types/hast': 2.3.10 5922 5948 '@types/prop-types': 15.7.11 5923 - '@types/react': 18.2.58 5949 + '@types/react': 18.2.63 5924 5950 '@types/unist': 2.0.10 5925 5951 comma-separated-tokens: 2.0.3 5926 5952 hast-util-whitespace: 2.0.1 ··· 5951 5977 react-native: 5952 5978 optional: true 5953 5979 dependencies: 5954 - '@babel/runtime': 7.23.9 5980 + '@babel/runtime': 7.24.0 5955 5981 broadcast-channel: 3.7.0 5956 5982 match-sorter: 6.3.4 5957 5983 react: 18.2.0 5958 5984 react-dom: 18.2.0(react@18.2.0) 5959 5985 dev: false 5960 5986 5961 - /react-remove-scroll-bar@2.3.5(@types/react@18.2.58)(react@18.2.0): 5987 + /react-remove-scroll-bar@2.3.5(@types/react@18.2.63)(react@18.2.0): 5962 5988 resolution: {integrity: sha512-3cqjOqg6s0XbOjWvmasmqHch+RLxIEk2r/70rzGXuz3iIGQsQheEQyqYCBb5EECoD01Vo2SIbDqW4paLeLTASw==} 5963 5989 engines: {node: '>=10'} 5964 5990 peerDependencies: ··· 5968 5994 '@types/react': 5969 5995 optional: true 5970 5996 dependencies: 5971 - '@types/react': 18.2.58 5997 + '@types/react': 18.2.63 5972 5998 react: 18.2.0 5973 - react-style-singleton: 2.2.1(@types/react@18.2.58)(react@18.2.0) 5999 + react-style-singleton: 2.2.1(@types/react@18.2.63)(react@18.2.0) 5974 6000 tslib: 2.6.2 5975 6001 dev: false 5976 6002 5977 - /react-remove-scroll@2.5.7(@types/react@18.2.58)(react@18.2.0): 6003 + /react-remove-scroll@2.5.7(@types/react@18.2.63)(react@18.2.0): 5978 6004 resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==} 5979 6005 engines: {node: '>=10'} 5980 6006 peerDependencies: ··· 5984 6010 '@types/react': 5985 6011 optional: true 5986 6012 dependencies: 5987 - '@types/react': 18.2.58 6013 + '@types/react': 18.2.63 5988 6014 react: 18.2.0 5989 - react-remove-scroll-bar: 2.3.5(@types/react@18.2.58)(react@18.2.0) 5990 - react-style-singleton: 2.2.1(@types/react@18.2.58)(react@18.2.0) 6015 + react-remove-scroll-bar: 2.3.5(@types/react@18.2.63)(react@18.2.0) 6016 + react-style-singleton: 2.2.1(@types/react@18.2.63)(react@18.2.0) 5991 6017 tslib: 2.6.2 5992 - use-callback-ref: 1.3.1(@types/react@18.2.58)(react@18.2.0) 5993 - use-sidecar: 1.1.2(@types/react@18.2.58)(react@18.2.0) 6018 + use-callback-ref: 1.3.1(@types/react@18.2.63)(react@18.2.0) 6019 + use-sidecar: 1.1.2(@types/react@18.2.63)(react@18.2.0) 5994 6020 dev: false 5995 6021 5996 6022 /react-smooth@4.0.0(react-dom@18.2.0)(react@18.2.0): ··· 6006 6032 react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) 6007 6033 dev: false 6008 6034 6009 - /react-style-singleton@2.2.1(@types/react@18.2.58)(react@18.2.0): 6035 + /react-style-singleton@2.2.1(@types/react@18.2.63)(react@18.2.0): 6010 6036 resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} 6011 6037 engines: {node: '>=10'} 6012 6038 peerDependencies: ··· 6016 6042 '@types/react': 6017 6043 optional: true 6018 6044 dependencies: 6019 - '@types/react': 18.2.58 6045 + '@types/react': 18.2.63 6020 6046 get-nonce: 1.0.1 6021 6047 invariant: 2.2.4 6022 6048 react: 18.2.0 6023 6049 tslib: 2.6.2 6024 6050 dev: false 6025 6051 6026 - /react-textarea-autosize@8.5.3(@types/react@18.2.58)(react@18.2.0): 6052 + /react-textarea-autosize@8.5.3(@types/react@18.2.63)(react@18.2.0): 6027 6053 resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} 6028 6054 engines: {node: '>=10'} 6029 6055 peerDependencies: 6030 6056 react: ^16.8.0 || ^17.0.0 || ^18.0.0 6031 6057 dependencies: 6032 - '@babel/runtime': 7.23.9 6058 + '@babel/runtime': 7.24.0 6033 6059 react: 18.2.0 6034 6060 use-composed-ref: 1.3.0(react@18.2.0) 6035 - use-latest: 1.2.1(@types/react@18.2.58)(react@18.2.0) 6061 + use-latest: 1.2.1(@types/react@18.2.63)(react@18.2.0) 6036 6062 transitivePeerDependencies: 6037 6063 - '@types/react' 6038 6064 dev: false ··· 6043 6069 react: '>=16.6.0' 6044 6070 react-dom: '>=16.6.0' 6045 6071 dependencies: 6046 - '@babel/runtime': 7.23.9 6072 + '@babel/runtime': 7.24.0 6047 6073 dom-helpers: 5.2.1 6048 6074 loose-envify: 1.4.0 6049 6075 prop-types: 15.8.1 ··· 6077 6103 decimal.js-light: 2.5.1 6078 6104 dev: false 6079 6105 6080 - /recharts@2.12.1(react-dom@18.2.0)(react@18.2.0): 6081 - resolution: {integrity: sha512-35vUCEBPf+pM+iVgSgVTn86faKya5pc4JO6cYJL63qOK2zDEyzDn20Tdj+CDI/3z+VcpKyQ8ZBQ9OiQ+vuAbjg==} 6106 + /recharts@2.12.2(react-dom@18.2.0)(react@18.2.0): 6107 + resolution: {integrity: sha512-9bpxjXSF5g81YsKkTSlaX7mM4b6oYI1mIYck6YkUcWuL3tomADccI51/6thY4LmvhYuRTwpfrOvE80Zc3oBRfQ==} 6082 6108 engines: {node: '>=14'} 6083 6109 peerDependencies: 6084 6110 react: ^16.0.0 || ^17.0.0 || ^18.0.0 ··· 6102 6128 dependencies: 6103 6129 call-bind: 1.0.7 6104 6130 define-properties: 1.2.1 6105 - es-abstract: 1.22.4 6131 + es-abstract: 1.22.5 6106 6132 es-errors: 1.3.0 6107 6133 get-intrinsic: 1.2.4 6108 6134 globalthis: 1.0.3 ··· 6341 6367 resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 6342 6368 engines: {node: '>=8'} 6343 6369 6344 - /side-channel@1.0.5: 6345 - resolution: {integrity: sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==} 6370 + /side-channel@1.0.6: 6371 + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 6346 6372 engines: {node: '>= 0.4'} 6347 6373 dependencies: 6348 6374 call-bind: 1.0.7 ··· 6455 6481 dependencies: 6456 6482 call-bind: 1.0.7 6457 6483 define-properties: 1.2.1 6458 - es-abstract: 1.22.4 6484 + es-abstract: 1.22.5 6459 6485 get-intrinsic: 1.2.4 6460 6486 has-symbols: 1.0.3 6461 6487 internal-slot: 1.0.7 6462 6488 regexp.prototype.flags: 1.5.2 6463 6489 set-function-name: 2.0.2 6464 - side-channel: 1.0.5 6490 + side-channel: 1.0.6 6465 6491 dev: false 6466 6492 6467 6493 /string.prototype.trim@1.2.8: ··· 6470 6496 dependencies: 6471 6497 call-bind: 1.0.7 6472 6498 define-properties: 1.2.1 6473 - es-abstract: 1.22.4 6499 + es-abstract: 1.22.5 6474 6500 dev: false 6475 6501 6476 6502 /string.prototype.trimend@1.0.7: ··· 6478 6504 dependencies: 6479 6505 call-bind: 1.0.7 6480 6506 define-properties: 1.2.1 6481 - es-abstract: 1.22.4 6507 + es-abstract: 1.22.5 6482 6508 dev: false 6483 6509 6484 6510 /string.prototype.trimstart@1.0.7: ··· 6486 6512 dependencies: 6487 6513 call-bind: 1.0.7 6488 6514 define-properties: 1.2.1 6489 - es-abstract: 1.22.4 6515 + es-abstract: 1.22.5 6490 6516 dev: false 6491 6517 6492 6518 /strip-ansi@6.0.1: ··· 6539 6565 engines: {node: '>=16 || 14 >=14.17'} 6540 6566 hasBin: true 6541 6567 dependencies: 6542 - '@jridgewell/gen-mapping': 0.3.3 6568 + '@jridgewell/gen-mapping': 0.3.5 6543 6569 commander: 4.1.1 6544 6570 glob: 10.3.10 6545 6571 lines-and-columns: 1.2.4 ··· 6566 6592 /tailwind-merge@2.2.1: 6567 6593 resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==} 6568 6594 dependencies: 6569 - '@babel/runtime': 7.23.9 6595 + '@babel/runtime': 7.24.0 6570 6596 dev: false 6571 6597 6572 6598 /tailwind-variants@0.1.20(tailwindcss@3.4.1): ··· 6872 6898 /unload@2.2.0: 6873 6899 resolution: {integrity: sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==} 6874 6900 dependencies: 6875 - '@babel/runtime': 7.23.9 6901 + '@babel/runtime': 7.24.0 6876 6902 detect-node: 2.1.0 6877 6903 dev: false 6878 6904 ··· 6905 6931 deprecated: Please see https://github.com/lydell/urix#deprecated 6906 6932 dev: true 6907 6933 6908 - /use-callback-ref@1.3.1(@types/react@18.2.58)(react@18.2.0): 6934 + /use-callback-ref@1.3.1(@types/react@18.2.63)(react@18.2.0): 6909 6935 resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==} 6910 6936 engines: {node: '>=10'} 6911 6937 peerDependencies: ··· 6915 6941 '@types/react': 6916 6942 optional: true 6917 6943 dependencies: 6918 - '@types/react': 18.2.58 6944 + '@types/react': 18.2.63 6919 6945 react: 18.2.0 6920 6946 tslib: 2.6.2 6921 6947 dev: false ··· 6928 6954 react: 18.2.0 6929 6955 dev: false 6930 6956 6931 - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.58)(react@18.2.0): 6957 + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.63)(react@18.2.0): 6932 6958 resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} 6933 6959 peerDependencies: 6934 6960 '@types/react': '*' ··· 6937 6963 '@types/react': 6938 6964 optional: true 6939 6965 dependencies: 6940 - '@types/react': 18.2.58 6966 + '@types/react': 18.2.63 6941 6967 react: 18.2.0 6942 6968 dev: false 6943 6969 6944 - /use-latest@1.2.1(@types/react@18.2.58)(react@18.2.0): 6970 + /use-latest@1.2.1(@types/react@18.2.63)(react@18.2.0): 6945 6971 resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} 6946 6972 peerDependencies: 6947 6973 '@types/react': '*' ··· 6950 6976 '@types/react': 6951 6977 optional: true 6952 6978 dependencies: 6953 - '@types/react': 18.2.58 6979 + '@types/react': 18.2.63 6954 6980 react: 18.2.0 6955 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.58)(react@18.2.0) 6981 + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.63)(react@18.2.0) 6956 6982 dev: false 6957 6983 6958 - /use-sidecar@1.1.2(@types/react@18.2.58)(react@18.2.0): 6984 + /use-sidecar@1.1.2(@types/react@18.2.63)(react@18.2.0): 6959 6985 resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} 6960 6986 engines: {node: '>=10'} 6961 6987 peerDependencies: ··· 6965 6991 '@types/react': 6966 6992 optional: true 6967 6993 dependencies: 6968 - '@types/react': 18.2.58 6994 + '@types/react': 18.2.63 6969 6995 detect-node-es: 1.1.0 6970 6996 react: 18.2.0 6971 6997 tslib: 2.6.2 ··· 7139 7165 /yallist@4.0.0: 7140 7166 resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 7141 7167 7142 - /yaml@2.3.4: 7143 - resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} 7168 + /yaml@2.4.0: 7169 + resolution: {integrity: sha512-j9iR8g+/t0lArF4V6NE/QCfT+CO7iLqrXAHZbJdo+LfjqP1vR8Fg5bSiaq6Q2lOD1AUEVrEVIgABvBFYojJVYQ==} 7144 7170 engines: {node: '>= 14'} 7171 + hasBin: true 7145 7172 dev: false 7146 7173 7147 7174 /yocto-queue@0.1.0: 7148 7175 resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 7149 7176 engines: {node: '>=10'} 7150 7177 7151 - /zustand@4.5.1(@types/react@18.2.58)(react@18.2.0): 7152 - resolution: {integrity: sha512-XlauQmH64xXSC1qGYNv00ODaQ3B+tNPoy22jv2diYiP4eoDKr9LA+Bh5Bc3gplTrFdb6JVI+N4kc1DZ/tbtfPg==} 7178 + /zustand@4.5.2(@types/react@18.2.63)(react@18.2.0): 7179 + resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==} 7153 7180 engines: {node: '>=12.7.0'} 7154 7181 peerDependencies: 7155 7182 '@types/react': '>=16.8' ··· 7163 7190 react: 7164 7191 optional: true 7165 7192 dependencies: 7166 - '@types/react': 18.2.58 7193 + '@types/react': 18.2.63 7167 7194 react: 18.2.0 7168 7195 use-sync-external-store: 1.2.0(react@18.2.0) 7169 7196 dev: false