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

bump packages

shi.gg 060db57b 0e3f9f1d

verified
Changed files
+3134 -2694
app
dashboard
leaderboard
[guildId]
components
+2 -2
app/dashboard/[guildId]/updates.component.tsx
··· 63 63 if (!g) return g; 64 64 65 65 g.follownewsChannel = { 66 - name: g?.channels?.find((c) => c.id === channelId)?.name, 67 - id: channelId 66 + name: g!.channels!.find((c) => c.id === channelId)!.name, 67 + id: channelId! 68 68 }; 69 69 70 70 return g;
+3 -3
app/leaderboard/[guildId]/side.component.tsx
··· 108 108 </Button> 109 109 </AccordionItem> 110 110 : 111 - undefined as unknown as JSX.Element 111 + undefined as unknown as React.JSX.Element 112 112 } 113 113 114 114 {pagination && "messages" in pagination ? ··· 137 137 <span className="font-semibold"> {intl.format(pagination.invites.total)}</span> invites 138 138 </div> 139 139 </AccordionItem> 140 - : undefined as unknown as JSX.Element 140 + : undefined as unknown as React.JSX.Element 141 141 } 142 142 143 143 <AccordionItem ··· 169 169 <strong>NOTE: </strong> It might take up to an hour for this page to update. 170 170 </AccordionItem> 171 171 : 172 - undefined as unknown as JSX.Element 172 + undefined as unknown as React.JSX.Element 173 173 } 174 174 </Accordion> 175 175
+1 -1
components/box.tsx
··· 17 17 none = false, 18 18 border = true, 19 19 ...props 20 - }: Props): JSX.Element { 20 + }: Props) { 21 21 return ( 22 22 <div 23 23 className={cn(
+2 -3
components/counter.tsx
··· 48 48 49 49 export function StatsBar(options: Options) { 50 50 const [width, setWidth] = useState(0); 51 - const ref = useRef<NodeJS.Timeout>(); 51 + const ref = useRef<NodeJS.Timeout | null>(null); 52 52 53 53 useEffect(() => { 54 54 ref.current = setInterval(() => setWidth(window.innerWidth), 1000); 55 55 return () => { 56 - clearInterval(ref.current); 56 + if (ref.current) clearInterval(ref.current); 57 57 }; 58 58 }, []); 59 59 ··· 88 88 89 89 </div> 90 90 ))} 91 - 92 91 </Box> 93 92 ); 94 93 }
+1 -1
components/metric-card.tsx
··· 3 3 export function Metrics({ 4 4 children 5 5 }: { 6 - children: JSX.Element[]; 6 + children: React.ReactNode; 7 7 }) { 8 8 return ( 9 9 <div className="md:ml-auto flex items-center gap-5 mt-6 md:mt-0">
+23 -23
package.json
··· 11 11 "dependencies": { 12 12 "@discordjs/collection": "^2.1.1", 13 13 "@discordjs/rest": "^2.4.0", 14 - "@nextui-org/react": "^2.4.8", 14 + "@nextui-org/react": "^2.6.3", 15 15 "@odiffey/discord-markdown": "^3.3.0", 16 16 "@radix-ui/react-dialog": "^1.1.2", 17 17 "@radix-ui/react-popover": "^1.1.2", 18 18 "@radix-ui/react-separator": "^1.1.0", 19 19 "@radix-ui/react-slot": "^1.1.0", 20 20 "autoprefixer": "^10.4.20", 21 - "class-variance-authority": "^0.7.0", 21 + "class-variance-authority": "^0.7.1", 22 22 "clsx": "^2.1.1", 23 - "discord-api-types": "^0.37.107", 24 - "framer-motion": "^11.11.17", 25 - "lucide-react": "^0.460.0", 26 - "next": "15.0.3", 23 + "discord-api-types": "^0.37.110", 24 + "framer-motion": "12.0.0-alpha.2", 25 + "lucide-react": "^0.468.0", 26 + "next": "15.0.4", 27 27 "next-client-cookies": "^2.0.0", 28 28 "postcss": "^8.4.49", 29 - "react": "18.3.1", 29 + "react": "19.0.0", 30 30 "react-countup": "^6.5.3", 31 - "react-dom": "18.3.1", 32 - "react-icons": "^5.3.0", 31 + "react-dom": "19.0.0", 32 + "react-icons": "^5.4.0", 33 33 "react-loading-icons": "^1.1.0", 34 34 "react-markdown": "9.0.1", 35 35 "react-query": "^3.39.3", 36 - "recharts": "^2.13.3", 36 + "recharts": "^2.14.1", 37 37 "rehype-raw": "^7.0.0", 38 38 "sharp": "^0.33.5", 39 - "tailwind-merge": "^2.5.4", 40 - "tailwindcss": "^3.4.15", 39 + "tailwind-merge": "^2.5.5", 40 + "tailwindcss": "^3.4.16", 41 41 "tailwindcss-animate": "^1.0.7", 42 42 "typescript": "^5.7.2", 43 43 "vaul": "^1.1.1", 44 - "zustand": "^5.0.1" 44 + "zustand": "^5.0.2" 45 45 }, 46 46 "devDependencies": { 47 - "@next/eslint-plugin-next": "^15.0.3", 48 - "@octokit/types": "^13.6.1", 47 + "@next/eslint-plugin-next": "^15.0.4", 48 + "@octokit/types": "^13.6.2", 49 49 "@stylistic/eslint-plugin": "^2.11.0", 50 - "@types/node": "^22.9.3", 51 - "@types/react": "^18.3.12", 52 - "@types/react-dom": "^18.3.1", 53 - "eslint": "^9.15.0", 54 - "eslint-config-next": "^15.0.3", 50 + "@types/node": "^22.10.1", 51 + "@types/react": "^19.0.1", 52 + "@types/react-dom": "^19.0.1", 53 + "eslint": "^9.16.0", 54 + "eslint-config-next": "^15.0.4", 55 55 "eslint-plugin-path-alias": "^2.1.0", 56 56 "eslint-plugin-react": "^7.37.2", 57 - "eslint-plugin-react-compiler": "19.0.0-beta-0dec889-20241115", 58 - "eslint-plugin-react-hooks": "^5.0.0", 57 + "eslint-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124", 58 + "eslint-plugin-react-hooks": "^5.1.0", 59 59 "eslint-plugin-simple-import-sort": "^12.1.1", 60 60 "eslint-plugin-unused-imports": "^4.1.4", 61 - "typescript-eslint": "^8.15.0" 61 + "typescript-eslint": "^8.17.0" 62 62 } 63 63 }
+3102 -2661
pnpm-lock.yaml
··· 15 15 specifier: ^2.4.0 16 16 version: 2.4.0 17 17 '@nextui-org/react': 18 - specifier: ^2.4.8 19 - version: 2.4.8(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.15) 18 + specifier: ^2.6.3 19 + version: 2.6.3(@types/react@19.0.1)(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.16) 20 20 '@odiffey/discord-markdown': 21 21 specifier: ^3.3.0 22 - version: 3.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 22 + version: 3.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 23 23 '@radix-ui/react-dialog': 24 24 specifier: ^1.1.2 25 - version: 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 25 + version: 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 26 26 '@radix-ui/react-popover': 27 27 specifier: ^1.1.2 28 - version: 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 28 + version: 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 29 29 '@radix-ui/react-separator': 30 30 specifier: ^1.1.0 31 - version: 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 31 + version: 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 32 32 '@radix-ui/react-slot': 33 33 specifier: ^1.1.0 34 - version: 1.1.0(@types/react@18.3.12)(react@18.3.1) 34 + version: 1.1.0(@types/react@19.0.1)(react@19.0.0) 35 35 autoprefixer: 36 36 specifier: ^10.4.20 37 37 version: 10.4.20(postcss@8.4.49) 38 38 class-variance-authority: 39 - specifier: ^0.7.0 40 - version: 0.7.0 39 + specifier: ^0.7.1 40 + version: 0.7.1 41 41 clsx: 42 42 specifier: ^2.1.1 43 43 version: 2.1.1 44 44 discord-api-types: 45 - specifier: ^0.37.107 46 - version: 0.37.107 45 + specifier: ^0.37.110 46 + version: 0.37.110 47 47 framer-motion: 48 - specifier: ^11.11.17 49 - version: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 48 + specifier: 12.0.0-alpha.2 49 + version: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 50 50 lucide-react: 51 - specifier: ^0.460.0 52 - version: 0.460.0(react@18.3.1) 51 + specifier: ^0.468.0 52 + version: 0.468.0(react@19.0.0) 53 53 next: 54 - specifier: 15.0.3 55 - version: 15.0.3(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 54 + specifier: 15.0.4 55 + version: 15.0.4(@babel/core@7.25.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 56 56 next-client-cookies: 57 57 specifier: ^2.0.0 58 - version: 2.0.0(next@15.0.3(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) 58 + version: 2.0.0(next@15.0.4(@babel/core@7.25.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) 59 59 postcss: 60 60 specifier: ^8.4.49 61 61 version: 8.4.49 62 62 react: 63 - specifier: 18.3.1 64 - version: 18.3.1 63 + specifier: 19.0.0 64 + version: 19.0.0 65 65 react-countup: 66 66 specifier: ^6.5.3 67 - version: 6.5.3(react@18.3.1) 67 + version: 6.5.3(react@19.0.0) 68 68 react-dom: 69 - specifier: 18.3.1 70 - version: 18.3.1(react@18.3.1) 69 + specifier: 19.0.0 70 + version: 19.0.0(react@19.0.0) 71 71 react-icons: 72 - specifier: ^5.3.0 73 - version: 5.3.0(react@18.3.1) 72 + specifier: ^5.4.0 73 + version: 5.4.0(react@19.0.0) 74 74 react-loading-icons: 75 75 specifier: ^1.1.0 76 76 version: 1.1.0 77 77 react-markdown: 78 78 specifier: 9.0.1 79 - version: 9.0.1(@types/react@18.3.12)(react@18.3.1) 79 + version: 9.0.1(@types/react@19.0.1)(react@19.0.0) 80 80 react-query: 81 81 specifier: ^3.39.3 82 - version: 3.39.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 82 + version: 3.39.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 83 83 recharts: 84 - specifier: ^2.13.3 85 - version: 2.13.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 84 + specifier: ^2.14.1 85 + version: 2.14.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 86 86 rehype-raw: 87 87 specifier: ^7.0.0 88 88 version: 7.0.0 ··· 90 90 specifier: ^0.33.5 91 91 version: 0.33.5 92 92 tailwind-merge: 93 - specifier: ^2.5.4 94 - version: 2.5.4 93 + specifier: ^2.5.5 94 + version: 2.5.5 95 95 tailwindcss: 96 - specifier: ^3.4.15 97 - version: 3.4.15 96 + specifier: ^3.4.16 97 + version: 3.4.16 98 98 tailwindcss-animate: 99 99 specifier: ^1.0.7 100 - version: 1.0.7(tailwindcss@3.4.15) 100 + version: 1.0.7(tailwindcss@3.4.16) 101 101 typescript: 102 102 specifier: ^5.7.2 103 103 version: 5.7.2 104 104 vaul: 105 105 specifier: ^1.1.1 106 - version: 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 106 + version: 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 107 107 zustand: 108 - specifier: ^5.0.1 109 - version: 5.0.1(@types/react@18.3.12)(react@18.3.1)(use-sync-external-store@1.2.0(react@18.3.1)) 108 + specifier: ^5.0.2 109 + version: 5.0.2(@types/react@19.0.1)(react@19.0.0)(use-sync-external-store@1.2.0(react@19.0.0)) 110 110 devDependencies: 111 111 '@next/eslint-plugin-next': 112 - specifier: ^15.0.3 113 - version: 15.0.3 112 + specifier: ^15.0.4 113 + version: 15.0.4 114 114 '@octokit/types': 115 - specifier: ^13.6.1 116 - version: 13.6.1 115 + specifier: ^13.6.2 116 + version: 13.6.2 117 117 '@stylistic/eslint-plugin': 118 118 specifier: ^2.11.0 119 - version: 2.11.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 119 + version: 2.11.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 120 120 '@types/node': 121 - specifier: ^22.9.3 122 - version: 22.9.3 121 + specifier: ^22.10.1 122 + version: 22.10.1 123 123 '@types/react': 124 - specifier: ^18.3.12 125 - version: 18.3.12 124 + specifier: ^19.0.1 125 + version: 19.0.1 126 126 '@types/react-dom': 127 - specifier: ^18.3.1 128 - version: 18.3.1 127 + specifier: ^19.0.1 128 + version: 19.0.1 129 129 eslint: 130 - specifier: ^9.15.0 131 - version: 9.15.0(jiti@1.21.6) 130 + specifier: ^9.16.0 131 + version: 9.16.0(jiti@1.21.6) 132 132 eslint-config-next: 133 - specifier: ^15.0.3 134 - version: 15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 133 + specifier: ^15.0.4 134 + version: 15.0.4(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 135 135 eslint-plugin-path-alias: 136 136 specifier: ^2.1.0 137 - version: 2.1.0(eslint@9.15.0(jiti@1.21.6)) 137 + version: 2.1.0(eslint@9.16.0(jiti@1.21.6)) 138 138 eslint-plugin-react: 139 139 specifier: ^7.37.2 140 - version: 7.37.2(eslint@9.15.0(jiti@1.21.6)) 140 + version: 7.37.2(eslint@9.16.0(jiti@1.21.6)) 141 141 eslint-plugin-react-compiler: 142 - specifier: 19.0.0-beta-0dec889-20241115 143 - version: 19.0.0-beta-0dec889-20241115(eslint@9.15.0(jiti@1.21.6)) 142 + specifier: 19.0.0-beta-df7b47d-20241124 143 + version: 19.0.0-beta-df7b47d-20241124(eslint@9.16.0(jiti@1.21.6)) 144 144 eslint-plugin-react-hooks: 145 - specifier: ^5.0.0 146 - version: 5.0.0(eslint@9.15.0(jiti@1.21.6)) 145 + specifier: ^5.1.0 146 + version: 5.1.0(eslint@9.16.0(jiti@1.21.6)) 147 147 eslint-plugin-simple-import-sort: 148 148 specifier: ^12.1.1 149 - version: 12.1.1(eslint@9.15.0(jiti@1.21.6)) 149 + version: 12.1.1(eslint@9.16.0(jiti@1.21.6)) 150 150 eslint-plugin-unused-imports: 151 151 specifier: ^4.1.4 152 - version: 4.1.4(@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.6)) 152 + version: 4.1.4(@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6)) 153 153 typescript-eslint: 154 - specifier: ^8.15.0 155 - version: 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 154 + specifier: ^8.17.0 155 + version: 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 156 156 157 157 packages: 158 158 ··· 168 168 resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} 169 169 engines: {node: '>=6.9.0'} 170 170 171 + '@babel/code-frame@7.26.2': 172 + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 173 + engines: {node: '>=6.9.0'} 174 + 171 175 '@babel/compat-data@7.25.2': 172 176 resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==} 173 177 engines: {node: '>=6.9.0'} ··· 180 184 resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==} 181 185 engines: {node: '>=6.9.0'} 182 186 183 - '@babel/helper-annotate-as-pure@7.24.7': 184 - resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} 187 + '@babel/generator@7.26.3': 188 + resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} 189 + engines: {node: '>=6.9.0'} 190 + 191 + '@babel/helper-annotate-as-pure@7.25.9': 192 + resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} 185 193 engines: {node: '>=6.9.0'} 186 194 187 195 '@babel/helper-compilation-targets@7.25.2': 188 196 resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==} 189 197 engines: {node: '>=6.9.0'} 190 198 191 - '@babel/helper-create-class-features-plugin@7.25.0': 192 - resolution: {integrity: sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==} 199 + '@babel/helper-create-class-features-plugin@7.25.9': 200 + resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} 193 201 engines: {node: '>=6.9.0'} 194 202 peerDependencies: 195 203 '@babel/core': ^7.0.0 196 204 197 - '@babel/helper-member-expression-to-functions@7.24.8': 198 - resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==} 205 + '@babel/helper-member-expression-to-functions@7.25.9': 206 + resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} 199 207 engines: {node: '>=6.9.0'} 200 208 201 209 '@babel/helper-module-imports@7.24.7': ··· 208 216 peerDependencies: 209 217 '@babel/core': ^7.0.0 210 218 211 - '@babel/helper-optimise-call-expression@7.24.7': 212 - resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} 219 + '@babel/helper-optimise-call-expression@7.25.9': 220 + resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} 213 221 engines: {node: '>=6.9.0'} 214 222 215 - '@babel/helper-plugin-utils@7.24.8': 216 - resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==} 223 + '@babel/helper-plugin-utils@7.25.9': 224 + resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} 217 225 engines: {node: '>=6.9.0'} 218 226 219 - '@babel/helper-replace-supers@7.25.0': 220 - resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==} 227 + '@babel/helper-replace-supers@7.25.9': 228 + resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==} 221 229 engines: {node: '>=6.9.0'} 222 230 peerDependencies: 223 231 '@babel/core': ^7.0.0 ··· 226 234 resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} 227 235 engines: {node: '>=6.9.0'} 228 236 229 - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': 230 - resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} 237 + '@babel/helper-skip-transparent-expression-wrappers@7.25.9': 238 + resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} 231 239 engines: {node: '>=6.9.0'} 232 240 233 241 '@babel/helper-string-parser@7.24.8': 234 242 resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} 243 + engines: {node: '>=6.9.0'} 244 + 245 + '@babel/helper-string-parser@7.25.9': 246 + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 235 247 engines: {node: '>=6.9.0'} 236 248 237 249 '@babel/helper-validator-identifier@7.24.7': 238 250 resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} 251 + engines: {node: '>=6.9.0'} 252 + 253 + '@babel/helper-validator-identifier@7.25.9': 254 + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 239 255 engines: {node: '>=6.9.0'} 240 256 241 257 '@babel/helper-validator-option@7.24.8': ··· 255 271 engines: {node: '>=6.0.0'} 256 272 hasBin: true 257 273 258 - '@babel/plugin-proposal-private-methods@7.18.6': 259 - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} 274 + '@babel/parser@7.26.3': 275 + resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} 276 + engines: {node: '>=6.0.0'} 277 + hasBin: true 278 + 279 + '@babel/plugin-transform-private-methods@7.25.9': 280 + resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==} 260 281 engines: {node: '>=6.9.0'} 261 - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. 262 282 peerDependencies: 263 283 '@babel/core': ^7.0.0-0 264 284 ··· 270 290 resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==} 271 291 engines: {node: '>=6.9.0'} 272 292 293 + '@babel/template@7.25.9': 294 + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} 295 + engines: {node: '>=6.9.0'} 296 + 273 297 '@babel/traverse@7.25.3': 274 298 resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==} 299 + engines: {node: '>=6.9.0'} 300 + 301 + '@babel/traverse@7.26.4': 302 + resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==} 275 303 engines: {node: '>=6.9.0'} 276 304 277 305 '@babel/types@7.25.2': 278 306 resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==} 307 + engines: {node: '>=6.9.0'} 308 + 309 + '@babel/types@7.26.3': 310 + resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} 279 311 engines: {node: '>=6.9.0'} 280 312 281 313 '@discordjs/collection@2.1.1': ··· 293 325 '@emnapi/runtime@1.2.0': 294 326 resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==} 295 327 328 + '@emotion/is-prop-valid@0.8.8': 329 + resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} 330 + 331 + '@emotion/memoize@0.7.4': 332 + resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} 333 + 296 334 '@eslint-community/eslint-utils@4.4.0': 297 335 resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 298 336 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} ··· 315 353 resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} 316 354 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 317 355 318 - '@eslint/js@9.15.0': 319 - resolution: {integrity: sha512-tMTqrY+EzbXmKJR5ToI8lxu7jaN5EdmrBFJpQk5JmSlyLsx6o4t27r883K5xsLuCYCpfKBCGswMSWXsM+jB7lg==} 356 + '@eslint/js@9.16.0': 357 + resolution: {integrity: sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==} 320 358 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 321 359 322 360 '@eslint/object-schema@2.1.4': ··· 482 520 cpu: [x64] 483 521 os: [win32] 484 522 485 - '@internationalized/date@3.5.5': 486 - resolution: {integrity: sha512-H+CfYvOZ0LTJeeLOqm19E3uj/4YjrmOFtBufDHPfvtI80hFAMqtrp7oCACpe4Cil5l8S0Qu/9dYfZc/5lY8WQQ==} 523 + '@internationalized/date@3.5.6': 524 + resolution: {integrity: sha512-jLxQjefH9VI5P9UQuqB6qNKnvFt1Ky1TPIzHGsIlCi7sZZoMR8SdYbBGRvM0y+Jtb+ez4ieBzmiAUcpmPYpyOw==} 487 525 488 - '@internationalized/message@3.1.4': 489 - resolution: {integrity: sha512-Dygi9hH1s7V9nha07pggCkvmRfDd3q2lWnMGvrJyrOwYMe1yj4D2T9BoH9I6MGR7xz0biQrtLPsqUkqXzIrBOw==} 526 + '@internationalized/date@3.6.0': 527 + resolution: {integrity: sha512-+z6ti+CcJnRlLHok/emGEsWQhe7kfSmEW+/6qCzvKY67YPh7YOBfvc7+/+NXq+zJlbArg30tYpqLjNgcAYv2YQ==} 528 + 529 + '@internationalized/message@3.1.6': 530 + resolution: {integrity: sha512-JxbK3iAcTIeNr1p0WIFg/wQJjIzJt9l/2KNY/48vXV7GRGZSv3zMxJsce008fZclk2cDC8y0Ig3odceHO7EfNQ==} 490 531 491 - '@internationalized/number@3.5.3': 492 - resolution: {integrity: sha512-rd1wA3ebzlp0Mehj5YTuTI50AQEx80gWFyHcQu+u91/5NgdwBecO8BH6ipPfE+lmQ9d63vpB3H9SHoIUiupllw==} 532 + '@internationalized/number@3.6.0': 533 + resolution: {integrity: sha512-PtrRcJVy7nw++wn4W2OuePQQfTqDzfusSuY1QTtui4wa7r+rGVtR75pO8CyKvHvzyQYi3Q1uO5sY0AsB4e65Bw==} 493 534 494 - '@internationalized/string@3.2.3': 495 - resolution: {integrity: sha512-9kpfLoA8HegiWTeCbR2livhdVeKobCnVv8tlJ6M2jF+4tcMqDo94ezwlnrUANBWPgd8U7OXIHCk2Ov2qhk4KXw==} 535 + '@internationalized/string@3.2.5': 536 + resolution: {integrity: sha512-rKs71Zvl2OKOHM+mzAFMIyqR5hI1d1O6BBkMK2/lkfg3fkmVh9Eeg0awcA8W2WqYqDOv6a86DIOlFpggwLtbuw==} 496 537 497 538 '@isaacs/cliui@8.0.2': 498 539 resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} ··· 525 566 react: 16.14.0 526 567 react-dom: 16.14.0 527 568 528 - '@next/env@15.0.3': 529 - resolution: {integrity: sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==} 569 + '@next/env@15.0.4': 570 + resolution: {integrity: sha512-WNRvtgnRVDD4oM8gbUcRc27IAhaL4eXQ/2ovGbgLnPGUvdyDr8UdXP4Q/IBDdAdojnD2eScryIDirv0YUCjUVw==} 530 571 531 - '@next/eslint-plugin-next@15.0.3': 532 - resolution: {integrity: sha512-3Ln/nHq2V+v8uIaxCR6YfYo7ceRgZNXfTd3yW1ukTaFbO+/I8jNakrjYWODvG9BuR2v5kgVtH/C8r0i11quOgw==} 572 + '@next/eslint-plugin-next@15.0.4': 573 + resolution: {integrity: sha512-rbsF17XGzHtR7SDWzWpavSfum3/UdnF8bAaisnKwP//si3KWPTedVUsflAdjyK1zW3rweBjbALfKcavFneLGvg==} 533 574 534 - '@next/swc-darwin-arm64@15.0.3': 535 - resolution: {integrity: sha512-s3Q/NOorCsLYdCKvQlWU+a+GeAd3C8Rb3L1YnetsgwXzhc3UTWrtQpB/3eCjFOdGUj5QmXfRak12uocd1ZiiQw==} 575 + '@next/swc-darwin-arm64@15.0.4': 576 + resolution: {integrity: sha512-QecQXPD0yRHxSXWL5Ff80nD+A56sUXZG9koUsjWJwA2Z0ZgVQfuy7gd0/otjxoOovPVHR2eVEvPMHbtZP+pf9w==} 536 577 engines: {node: '>= 10'} 537 578 cpu: [arm64] 538 579 os: [darwin] 539 580 540 - '@next/swc-darwin-x64@15.0.3': 541 - resolution: {integrity: sha512-Zxl/TwyXVZPCFSf0u2BNj5sE0F2uR6iSKxWpq4Wlk/Sv9Ob6YCKByQTkV2y6BCic+fkabp9190hyrDdPA/dNrw==} 581 + '@next/swc-darwin-x64@15.0.4': 582 + resolution: {integrity: sha512-pb7Bye3y1Og3PlCtnz2oO4z+/b3pH2/HSYkLbL0hbVuTGil7fPen8/3pyyLjdiTLcFJ+ymeU3bck5hd4IPFFCA==} 542 583 engines: {node: '>= 10'} 543 584 cpu: [x64] 544 585 os: [darwin] 545 586 546 - '@next/swc-linux-arm64-gnu@15.0.3': 547 - resolution: {integrity: sha512-T5+gg2EwpsY3OoaLxUIofmMb7ohAUlcNZW0fPQ6YAutaWJaxt1Z1h+8zdl4FRIOr5ABAAhXtBcpkZNwUcKI2fw==} 587 + '@next/swc-linux-arm64-gnu@15.0.4': 588 + resolution: {integrity: sha512-12oSaBFjGpB227VHzoXF3gJoK2SlVGmFJMaBJSu5rbpaoT5OjP5OuCLuR9/jnyBF1BAWMs/boa6mLMoJPRriMA==} 548 589 engines: {node: '>= 10'} 549 590 cpu: [arm64] 550 591 os: [linux] 551 592 552 - '@next/swc-linux-arm64-musl@15.0.3': 553 - resolution: {integrity: sha512-WkAk6R60mwDjH4lG/JBpb2xHl2/0Vj0ZRu1TIzWuOYfQ9tt9NFsIinI1Epma77JVgy81F32X/AeD+B2cBu/YQA==} 593 + '@next/swc-linux-arm64-musl@15.0.4': 594 + resolution: {integrity: sha512-QARO88fR/a+wg+OFC3dGytJVVviiYFEyjc/Zzkjn/HevUuJ7qGUUAUYy5PGVWY1YgTzeRYz78akQrVQ8r+sMjw==} 554 595 engines: {node: '>= 10'} 555 596 cpu: [arm64] 556 597 os: [linux] 557 598 558 - '@next/swc-linux-x64-gnu@15.0.3': 559 - resolution: {integrity: sha512-gWL/Cta1aPVqIGgDb6nxkqy06DkwJ9gAnKORdHWX1QBbSZZB+biFYPFti8aKIQL7otCE1pjyPaXpFzGeG2OS2w==} 599 + '@next/swc-linux-x64-gnu@15.0.4': 600 + resolution: {integrity: sha512-Z50b0gvYiUU1vLzfAMiChV8Y+6u/T2mdfpXPHraqpypP7yIT2UV9YBBhcwYkxujmCvGEcRTVWOj3EP7XW/wUnw==} 560 601 engines: {node: '>= 10'} 561 602 cpu: [x64] 562 603 os: [linux] 563 604 564 - '@next/swc-linux-x64-musl@15.0.3': 565 - resolution: {integrity: sha512-QQEMwFd8r7C0GxQS62Zcdy6GKx999I/rTO2ubdXEe+MlZk9ZiinsrjwoiBL5/57tfyjikgh6GOU2WRQVUej3UA==} 605 + '@next/swc-linux-x64-musl@15.0.4': 606 + resolution: {integrity: sha512-7H9C4FAsrTAbA/ENzvFWsVytqRYhaJYKa2B3fyQcv96TkOGVMcvyS6s+sj4jZlacxxTcn7ygaMXUPkEk7b78zw==} 566 607 engines: {node: '>= 10'} 567 608 cpu: [x64] 568 609 os: [linux] 569 610 570 - '@next/swc-win32-arm64-msvc@15.0.3': 571 - resolution: {integrity: sha512-9TEp47AAd/ms9fPNgtgnT7F3M1Hf7koIYYWCMQ9neOwjbVWJsHZxrFbI3iEDJ8rf1TDGpmHbKxXf2IFpAvheIQ==} 611 + '@next/swc-win32-arm64-msvc@15.0.4': 612 + resolution: {integrity: sha512-Z/v3WV5xRaeWlgJzN9r4PydWD8sXV35ywc28W63i37G2jnUgScA4OOgS8hQdiXLxE3gqfSuHTicUhr7931OXPQ==} 572 613 engines: {node: '>= 10'} 573 614 cpu: [arm64] 574 615 os: [win32] 575 616 576 - '@next/swc-win32-x64-msvc@15.0.3': 577 - resolution: {integrity: sha512-VNAz+HN4OGgvZs6MOoVfnn41kBzT+M+tB+OK4cww6DNyWS6wKaDpaAm/qLeOUbnMh0oVx1+mg0uoYARF69dJyA==} 617 + '@next/swc-win32-x64-msvc@15.0.4': 618 + resolution: {integrity: sha512-NGLchGruagh8lQpDr98bHLyWJXOBSmkEAfK980OiNBa7vNm6PsNoPvzTfstT78WyOeMRQphEQ455rggd7Eo+Dw==} 578 619 engines: {node: '>= 10'} 579 620 cpu: [x64] 580 621 os: [win32] 581 622 582 - '@nextui-org/accordion@2.0.40': 583 - resolution: {integrity: sha512-aJmhflLOXOFTjbBWlWto30hYzimw+sw1EZwSRG9CdxbjRact2dRfCLsZQmHkJW2ifVx51g/qLNE2NSFAi2L8dA==} 623 + '@nextui-org/accordion@2.2.2': 624 + resolution: {integrity: sha512-QhDOnQfEhRlI+QgSdHIj2a6Wwpcl1xFNlixXmBq8MciLuYae2dUjTlFedTeGB0/s6KlxK6gsEFmJilw6MfDDRg==} 584 625 peerDependencies: 585 - '@nextui-org/system': '>=2.0.0' 586 - '@nextui-org/theme': '>=2.1.0' 587 - framer-motion: '>=10.17.0' 588 - react: '>=18' 589 - react-dom: '>=18' 626 + '@nextui-org/system': '>=2.3.0' 627 + '@nextui-org/theme': '>=2.3.0' 628 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 629 + react: '>=18 || >=19.0.0-rc.0' 630 + react-dom: '>=18 || >=19.0.0-rc.0' 590 631 591 - '@nextui-org/aria-utils@2.0.26': 592 - resolution: {integrity: sha512-e81HxkNI3/HCPPJT9OVK0g0ivTkuqeeQ043WlAxvgf+upFTEvNN5vmsSKBfWGgfZpsVHgNyHIzwbHjy9zKePLQ==} 632 + '@nextui-org/alert@2.2.2': 633 + resolution: {integrity: sha512-k8A1uDoIXsq/7GvueA6KxKhYmkP3FJEAtxVdM6xQ6bfpYUcgyYdtXtnHIr8sWqv/8RJb1pOphIrgr0h8z9KjSA==} 593 634 peerDependencies: 594 - react: '>=18' 595 - react-dom: '>=18' 635 + '@nextui-org/system': '>=2.3.0' 636 + '@nextui-org/theme': '>=2.3.0' 637 + react: '>=18 || >=19.0.0-rc.0' 638 + react-dom: '>=18 || >=19.0.0-rc.0' 596 639 597 - '@nextui-org/autocomplete@2.1.7': 598 - resolution: {integrity: sha512-T3dF5akCXvJ21OxwPxAQmTjHoiB/GMUa2ppcJ9PStfCCPiI2vjwb4CO4q/duj/nXJIpQf/UfPhpSonnJ444o6g==} 640 + '@nextui-org/aria-utils@2.2.2': 641 + resolution: {integrity: sha512-JwViYFYAUEgh83FQktIz41Vyya1zDRlex4YadSF21+SZ94B4XUkQDrZXloN5iYze+nSyM1QFrcx03l7dj7P4zg==} 599 642 peerDependencies: 600 - '@nextui-org/system': '>=2.0.0' 601 - '@nextui-org/theme': '>=2.1.0' 602 - framer-motion: '>=10.17.0' 603 - react: '>=18' 604 - react-dom: '>=18' 643 + react: '>=18 || >=19.0.0-rc.0' 644 + react-dom: '>=18 || >=19.0.0-rc.0' 605 645 606 - '@nextui-org/avatar@2.0.33': 607 - resolution: {integrity: sha512-SPnIKM+34T/a+KCRCBiG8VwMBzu2/bap7IPHhmICtQ6KmG8Dzmazj3tGZsVt7HjhMRVY7e1vzev4IMaHqkIdRg==} 646 + '@nextui-org/autocomplete@2.3.2': 647 + resolution: {integrity: sha512-g3pAlk0sUn1Pk9tFE7DSFBEgEvlVIqhYBLqj1Pz6zn2P8mMxhZSymKde3qdZedvnYxWQauWbBi8fePV1VwRB4w==} 608 648 peerDependencies: 609 - '@nextui-org/system': '>=2.0.0' 610 - '@nextui-org/theme': '>=2.1.0' 611 - react: '>=18' 612 - react-dom: '>=18' 649 + '@nextui-org/system': '>=2.3.0' 650 + '@nextui-org/theme': '>=2.3.0' 651 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 652 + react: '>=18 || >=19.0.0-rc.0' 653 + react-dom: '>=18 || >=19.0.0-rc.0' 613 654 614 - '@nextui-org/badge@2.0.32': 615 - resolution: {integrity: sha512-vlV/SY0e7/AmpVP7hB57XoSOo95Fr3kRWcLfMx8yL8VDR2UWMFaMlrT7JTghdgTGFSO7L1Ov1BFwDRRKVe3eyg==} 655 + '@nextui-org/avatar@2.2.2': 656 + resolution: {integrity: sha512-1+7xo5p0Qn8tLBmC+j2knKvR53C10w87hDx0CggEt7++GHKrof7zRoQjXTDHtP0DlADNGZ42td8QHPGdWSPqTw==} 616 657 peerDependencies: 617 - '@nextui-org/system': '>=2.0.0' 618 - '@nextui-org/theme': '>=2.1.0' 619 - react: '>=18' 620 - react-dom: '>=18' 658 + '@nextui-org/system': '>=2.3.0' 659 + '@nextui-org/theme': '>=2.3.0' 660 + react: '>=18 || >=19.0.0-rc.0' 661 + react-dom: '>=18 || >=19.0.0-rc.0' 662 + 663 + '@nextui-org/badge@2.2.2': 664 + resolution: {integrity: sha512-yyIlBLHu6LSw/UdpqlQcrqLQugVUV9cTYmqQr/HgdqwG2OjN8lzbtHKwBLAONKA8paVk/CSAoxOe10YrXYEGdQ==} 665 + peerDependencies: 666 + '@nextui-org/system': '>=2.3.0' 667 + '@nextui-org/theme': '>=2.3.0' 668 + react: '>=18 || >=19.0.0-rc.0' 669 + react-dom: '>=18 || >=19.0.0-rc.0' 670 + 671 + '@nextui-org/breadcrumbs@2.2.2': 672 + resolution: {integrity: sha512-xkKMM6CyECaRyaNMh3e2msl+/wH9+e+lJDvb2D0tUaQFp8ZCHefGgfHzHaTQGeaKGqgjBVaCv459FL6RlqSQLA==} 673 + peerDependencies: 674 + '@nextui-org/system': '>=2.3.0' 675 + '@nextui-org/theme': '>=2.3.0' 676 + react: '>=18 || >=19.0.0-rc.0' 677 + react-dom: '>=18 || >=19.0.0-rc.0' 678 + 679 + '@nextui-org/button@2.2.2': 680 + resolution: {integrity: sha512-c/Qrwddgrga73dob6QeBwudGVTSsTnbEffTTmVPUL3zYgTehdTwFKBYIvSosj9056yIWSMrN1iTxEI/MMdE9MA==} 681 + peerDependencies: 682 + '@nextui-org/system': '>=2.3.0' 683 + '@nextui-org/theme': '>=2.3.0' 684 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 685 + react: '>=18 || >=19.0.0-rc.0' 686 + react-dom: '>=18 || >=19.0.0-rc.0' 687 + 688 + '@nextui-org/calendar@2.2.2': 689 + resolution: {integrity: sha512-1lOvKRRkdCQttbe9xqINL9IsfRNDLpeaFwUjvz0EXAaddevhjW21hUcRzTlH0u8a25oABZAWmUrUsYGaCmhA6g==} 690 + peerDependencies: 691 + '@nextui-org/system': '>=2.3.0' 692 + '@nextui-org/theme': '>=2.3.0' 693 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 694 + react: '>=18 || >=19.0.0-rc.0' 695 + react-dom: '>=18 || >=19.0.0-rc.0' 696 + 697 + '@nextui-org/card@2.2.2': 698 + resolution: {integrity: sha512-P1nzfznmoZM+j98gUzI/p/ih/IybqQZWyjuVok1vBLZzH4MKLDm+oCbIJTSdB0Ihm+EtBtdcnYUtdQjhx1fuEg==} 699 + peerDependencies: 700 + '@nextui-org/system': '>=2.3.0' 701 + '@nextui-org/theme': '>=2.3.0' 702 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 703 + react: '>=18 || >=19.0.0-rc.0' 704 + react-dom: '>=18 || >=19.0.0-rc.0' 621 705 622 - '@nextui-org/breadcrumbs@2.0.13': 623 - resolution: {integrity: sha512-tdet47IBOwUaJL0PmxTuGH+ZI2nucyNwG3mX1OokfIXmq5HuMCGKaVFXaNP8mWb4Pii2bvtRqaqTfxmUb3kjGw==} 706 + '@nextui-org/checkbox@2.3.2': 707 + resolution: {integrity: sha512-d4WkjYJjoC+ly2ny2VioUHChUfHRcjJArx00RUgqgh4r736ouARtC0Sbz81jb6nEUAkBFWE3Al70rADurU0Tfg==} 624 708 peerDependencies: 625 - '@nextui-org/system': '>=2.0.0' 626 - '@nextui-org/theme': '>=2.1.0' 627 - react: '>=18' 628 - react-dom: '>=18' 709 + '@nextui-org/system': '>=2.3.0' 710 + '@nextui-org/theme': '>=2.3.0' 711 + react: '>=18 || >=19.0.0-rc.0' 712 + react-dom: '>=18 || >=19.0.0-rc.0' 629 713 630 - '@nextui-org/button@2.0.38': 631 - resolution: {integrity: sha512-XbgyqBv+X7QirXeriGwkqkMOENpAxXRo+jzfMyBMvfsM3kwrFj92OSF1F7/dWDvcW7imVZB9o2Ci7LIppq9ZZQ==} 714 + '@nextui-org/chip@2.2.2': 715 + resolution: {integrity: sha512-idfRdJvXU9DrJ5S8nMyrE0tfIQ/zSkTAlW4rjuoERhtTqAGYPKNqzGSnDH6QYVrLQuPA53KAYsAYm1Tku2HyBQ==} 632 716 peerDependencies: 633 - '@nextui-org/system': '>=2.0.0' 634 - '@nextui-org/theme': '>=2.1.0' 635 - framer-motion: '>=10.17.0' 636 - react: '>=18' 637 - react-dom: '>=18' 717 + '@nextui-org/system': '>=2.3.0' 718 + '@nextui-org/theme': '>=2.3.0' 719 + react: '>=18 || >=19.0.0-rc.0' 720 + react-dom: '>=18 || >=19.0.0-rc.0' 638 721 639 - '@nextui-org/calendar@2.0.12': 640 - resolution: {integrity: sha512-FnEnOQnsuyN+F+hy4LEJBvZZcfXMpDGgLkTdnDdoZObXQWwd0PWPjU8GzY+ukhhR5eiU7QIj2AADVRCvuAkiLA==} 722 + '@nextui-org/code@2.2.2': 723 + resolution: {integrity: sha512-7hEWfHu2RXj7kK9gPls0r7jTPJ2iu9WU8DFr6mZnKaRMuVcML1F2UQvAatZVvL5AOLECOhig+B+nMsCuIWsyLg==} 641 724 peerDependencies: 642 - '@nextui-org/system': '>=2.1.0' 643 - '@nextui-org/theme': '>=2.2.0' 644 - react: '>=18' 645 - react-dom: '>=18' 725 + '@nextui-org/theme': '>=2.3.0' 726 + react: '>=18 || >=19.0.0-rc.0' 727 + react-dom: '>=18 || >=19.0.0-rc.0' 646 728 647 - '@nextui-org/card@2.0.34': 648 - resolution: {integrity: sha512-2RYNPsQkM0FOifGCKmRBR3AuYgYCNmPV7dyA5M3D9Lf0APsHHtsXRA/GeIJ/AuPnglZrYBX8wpM5kLt3dnlQjQ==} 729 + '@nextui-org/date-input@2.3.2': 730 + resolution: {integrity: sha512-3/tiP+79bob/KOS3qXtyxj+o+U2Lxm5icHYb/cIE/WoOj3hvJAOnR7K4D3pNNTr9vhvKoMv0HFZyh9K/zkwxXg==} 649 731 peerDependencies: 650 - '@nextui-org/system': '>=2.0.0' 651 - '@nextui-org/theme': '>=2.1.0' 652 - framer-motion: '>=10.17.0' 653 - react: '>=18' 654 - react-dom: '>=18' 732 + '@nextui-org/system': '>=2.3.0' 733 + '@nextui-org/theme': '>=2.3.0' 734 + react: '>=18 || >=19.0.0-rc.0' 735 + react-dom: '>=18 || >=19.0.0-rc.0' 655 736 656 - '@nextui-org/checkbox@2.1.5': 657 - resolution: {integrity: sha512-PSCWmxEzFPfeIJfoGAtbQS5T7JvBRblUMz5NdCMArA8MLvWW8EKL41cMPsqWjaUanjD0fAI8Q9HuDfBZnkcPbw==} 737 + '@nextui-org/date-picker@2.3.2': 738 + resolution: {integrity: sha512-//X+5r7psvl3l+uUdCzv1vTFY3Y3T6Odq61pip8aIpohUc5NE/qpdKTnWVYZRAKNOOkYLJaWXVcsib87n4FF/A==} 658 739 peerDependencies: 659 - '@nextui-org/system': '>=2.0.0' 660 - '@nextui-org/theme': '>=2.1.0' 661 - react: '>=18' 662 - react-dom: '>=18' 740 + '@nextui-org/system': '>=2.3.0' 741 + '@nextui-org/theme': '>=2.3.0' 742 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 743 + react: '>=18 || >=19.0.0-rc.0' 744 + react-dom: '>=18 || >=19.0.0-rc.0' 663 745 664 - '@nextui-org/chip@2.0.33': 665 - resolution: {integrity: sha512-6cQkMTV/34iPprjnfK6xlwkv5lnZjMsbYBN3ZqHHrQfV2zQg19ewFcuIw9XlRYA3pGYPpoycdOmSdQ6qXc66lQ==} 746 + '@nextui-org/divider@2.2.2': 747 + resolution: {integrity: sha512-Wx97kxQbPQG3ST39T9VidBfXvWy+cVvc8h9U3Hk8+D65z2qSph62qgKlHOXfjNfOGyQ2qVU2G56+b0AVVtZ9NA==} 666 748 peerDependencies: 667 - '@nextui-org/system': '>=2.0.0' 668 - '@nextui-org/theme': '>=2.1.0' 669 - react: '>=18' 670 - react-dom: '>=18' 749 + '@nextui-org/theme': '>=2.3.0' 750 + react: '>=18 || >=19.0.0-rc.0' 751 + react-dom: '>=18 || >=19.0.0-rc.0' 671 752 672 - '@nextui-org/code@2.0.33': 673 - resolution: {integrity: sha512-G2254ov2rsPxFEoJ0UHVHe+rSmNYwoHZc7STAtiTsJ2HfebZPQbNnfuCifMIpa+kgvHrMBGb85eGk0gy1R+ArA==} 753 + '@nextui-org/dom-animation@2.1.1': 754 + resolution: {integrity: sha512-xLrVNf1EV9zyyZjk6j3RptOvnga1WUCbMpDgJLQHp+oYwxTfBy0SkXHuN5pRdcR0XpR/IqRBDIobMdZI0iyQyg==} 674 755 peerDependencies: 675 - '@nextui-org/theme': '>=2.1.0' 676 - react: '>=18' 677 - react-dom: '>=18' 756 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 678 757 679 - '@nextui-org/date-input@2.1.4': 680 - resolution: {integrity: sha512-U8Pbe7EhMp9VTfFxB/32+A9N9cJJWswebIz1qpaPy0Hmr92AHS3c1qVTcspkop6wbIM8AnHWEST0QkR95IXPDA==} 758 + '@nextui-org/drawer@2.2.2': 759 + resolution: {integrity: sha512-epG6fC1+DGn5pSnloZsHP0/JrPjXkJ/zRZqLbL+KnEqixjwqtqqUDRLIDU1T2KG7bgdr3uJ9eFbtzAjK5P0Y4g==} 681 760 peerDependencies: 682 - '@nextui-org/system': '>=2.1.0' 683 - '@nextui-org/theme': '>=2.2.0' 684 - react: '>=18' 685 - react-dom: '>=18' 761 + '@nextui-org/system': '>=2.3.0' 762 + '@nextui-org/theme': '>=2.3.0' 763 + react: '>=18 || >=19.0.0-rc.0' 764 + react-dom: '>=18 || >=19.0.0-rc.0' 686 765 687 - '@nextui-org/date-picker@2.1.8': 688 - resolution: {integrity: sha512-pokAFcrf6AdM53QHf1EzvqVhj8imQRZHWitK9eZPtIdGzJzx28dW0ir7ID0lQFMiNNIQTesSpBLzedTawbcJrg==} 766 + '@nextui-org/dropdown@2.3.2': 767 + resolution: {integrity: sha512-PxclJ9i53KpOL0Fcrn/HqvBj/v72FthG/wur1cvDnCl/6qy9Lja6U5rnJ4VkVHjCLJoHwYIQm0zTLQIygWxHhA==} 689 768 peerDependencies: 690 - '@nextui-org/system': '>=2.1.0' 691 - '@nextui-org/theme': '>=2.2.0' 692 - react: '>=18' 693 - react-dom: '>=18' 769 + '@nextui-org/system': '>=2.3.0' 770 + '@nextui-org/theme': '>=2.3.0' 771 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 772 + react: '>=18 || >=19.0.0-rc.0' 773 + react-dom: '>=18 || >=19.0.0-rc.0' 694 774 695 - '@nextui-org/divider@2.0.32': 696 - resolution: {integrity: sha512-2B2j3VmvVDFnMc9Uw7UWMkByA+osgnRmVwMZNZjl9g3oCycz3UDXotNJXjgsLocT8tGO8UwMcrdgo7QBZl52uw==} 775 + '@nextui-org/form@2.1.2': 776 + resolution: {integrity: sha512-mx8rT4I91y8egll/tza92LGR0LOUdAKT1sEzs9SekpG3uDTDnOkc6lVR3W4DkWJpEuZpZxUM9iRk9xRxIGZiGw==} 697 777 peerDependencies: 698 - '@nextui-org/theme': '>=2.1.0' 778 + '@nextui-org/system': '>=2.3.0' 779 + '@nextui-org/theme': '>=2.3.0' 699 780 react: '>=18' 700 781 react-dom: '>=18' 701 782 702 - '@nextui-org/dropdown@2.1.31': 703 - resolution: {integrity: sha512-tP6c5MAhWK4hJ6U02oX6APUpjjrn97Zn7t+56Xx4YyQOSj0CJx18VF0JsU+MrjFZxPX3UBKU3B2zGBHOEGE4Kw==} 783 + '@nextui-org/framer-utils@2.1.2': 784 + resolution: {integrity: sha512-Zohwmy6jB7V6VSoo+tr7T/YAgSads/J822lVp4AHBqr/Cu5mWOQejYneQsCZd8c0YSte9Xh0lGaOFIgjO3vL0w==} 704 785 peerDependencies: 705 - '@nextui-org/system': '>=2.0.0' 706 - '@nextui-org/theme': '>=2.1.0' 707 - framer-motion: '>=10.17.0' 708 - react: '>=18' 709 - react-dom: '>=18' 786 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 787 + react: '>=18 || >=19.0.0-rc.0' 788 + react-dom: '>=18 || >=19.0.0-rc.0' 710 789 711 - '@nextui-org/framer-utils@2.0.25': 712 - resolution: {integrity: sha512-bhQKDg4c5Da4II4UYLKyvYagusTd62eVwPqpfUP+GHZKKZcmRaS6MQZTh4xJYbpyh298S4jRSH/AUAiN/OK3TQ==} 790 + '@nextui-org/image@2.2.2': 791 + resolution: {integrity: sha512-3kIauOnmCyOpfOhVyUwoyHa3bUjpfAFHGDpJguU4JzEkrCgxqdUCYSLu6nsd1kObMbXG2Rn/5f7aX5f2cLFk7Q==} 713 792 peerDependencies: 714 - framer-motion: '>=10.17.0' 715 - react: '>=18' 716 - react-dom: '>=18' 793 + '@nextui-org/system': '>=2.3.0' 794 + '@nextui-org/theme': '>=2.3.0' 795 + react: '>=18 || >=19.0.0-rc.0' 796 + react-dom: '>=18 || >=19.0.0-rc.0' 717 797 718 - '@nextui-org/image@2.0.32': 719 - resolution: {integrity: sha512-JpE0O8qAeJpQA61ZnXNLH76to+dbx93PR5tTOxSvmTxtnuqVg4wl5ar/SBY3czibJPr0sj33k8Mv2EfULjoH7Q==} 798 + '@nextui-org/input-otp@2.1.2': 799 + resolution: {integrity: sha512-pNa2A78DwmvYIaa0KieBhOGgfG5Lqgje40lRlBpKqsol3qVnf8RDjukJLW3uZGqrEJjkxyIKtbgF+d1Mur+XSA==} 720 800 peerDependencies: 721 - '@nextui-org/system': '>=2.0.0' 722 - '@nextui-org/theme': '>=2.1.0' 801 + '@nextui-org/system': '>=2.3.0' 802 + '@nextui-org/theme': '>=2.3.0' 723 803 react: '>=18' 724 804 react-dom: '>=18' 725 805 726 - '@nextui-org/input@2.2.5': 727 - resolution: {integrity: sha512-xLgyKcnb+RatRZ62AbCFfTpS3exd2bPSSR75UFKylHHhgX+nvVOkX0dQgmr9e0V8IEECeRvbltw2s/laNFPTtg==} 806 + '@nextui-org/input@2.4.2': 807 + resolution: {integrity: sha512-LR98Z8HvmficuXz024g0f7zdsylMQsahcl90bJLkXwDgVqkbFp4qERwhupUsSedC2VTNgkpVSKT4RzaUjZEGeQ==} 728 808 peerDependencies: 729 - '@nextui-org/system': '>=2.0.0' 730 - '@nextui-org/theme': '>=2.1.0' 731 - react: '>=18' 732 - react-dom: '>=18' 809 + '@nextui-org/system': '>=2.3.0' 810 + '@nextui-org/theme': '>=2.3.0' 811 + react: '>=18 || >=19.0.0-rc.0' 812 + react-dom: '>=18 || >=19.0.0-rc.0' 733 813 734 - '@nextui-org/kbd@2.0.34': 735 - resolution: {integrity: sha512-sO6RJPgEFccFV8gmfYMTVeQ4f9PBYh09OieRpsZhN4HqdfWwEaeT6LrmdBko3XnJ0T6Me3tBrYULgKWcDcNogw==} 814 + '@nextui-org/kbd@2.2.2': 815 + resolution: {integrity: sha512-pdrHR+jDjAJKA/iyErbNmLCevkJb72NG/lceeJhHeS4njBUTNJnc9MFM5C7EDfi6piv5FpxK17LoPNgDXp5D0Q==} 736 816 peerDependencies: 737 - '@nextui-org/theme': '>=2.1.0' 738 - react: '>=18' 739 - react-dom: '>=18' 817 + '@nextui-org/theme': '>=2.3.0' 818 + react: '>=18 || >=19.0.0-rc.0' 819 + react-dom: '>=18 || >=19.0.0-rc.0' 740 820 741 - '@nextui-org/link@2.0.35': 742 - resolution: {integrity: sha512-0XVUsSsysu+WMssokTlLHiMnjr1N6D2Uh3bIBcdFwSqmTLyq+Llgexlm6Fuv1wADRwsR8/DGFp3Pr826cv2Svg==} 821 + '@nextui-org/link@2.2.2': 822 + resolution: {integrity: sha512-/IrAObcXksCx0uVvRq8rCmgYrmMN4lv9xaZr82e8JEQXu0FSneh22jbxwIAJvl682/bGLPkQezAL0zQjE9vXAw==} 743 823 peerDependencies: 744 - '@nextui-org/system': '>=2.0.0' 745 - '@nextui-org/theme': '>=2.1.0' 746 - react: '>=18' 747 - react-dom: '>=18' 824 + '@nextui-org/system': '>=2.3.0' 825 + '@nextui-org/theme': '>=2.3.0' 826 + react: '>=18 || >=19.0.0-rc.0' 827 + react-dom: '>=18 || >=19.0.0-rc.0' 748 828 749 - '@nextui-org/listbox@2.1.27': 750 - resolution: {integrity: sha512-B9HW/k0awfXsYaNyjaqv/GvEioVzrsCsOdSxVQZgQ3wQ6jNXmGRe1/X6IKg0fIa+P0v379kSgAqrZcwfRpKnWw==} 829 + '@nextui-org/listbox@2.3.2': 830 + resolution: {integrity: sha512-XoQckx84EaC4moy1I+a5RFamFF3kBeFxO21jlV+2HY7fTpoQheN9iOHEWkad3dgcMN6ZUsDmutrVyl97nLl6nA==} 751 831 peerDependencies: 752 - '@nextui-org/system': '>=2.0.0' 753 - '@nextui-org/theme': '>=2.1.0' 754 - react: '>=18' 755 - react-dom: '>=18' 832 + '@nextui-org/system': '>=2.3.0' 833 + '@nextui-org/theme': '>=2.3.0' 834 + react: '>=18 || >=19.0.0-rc.0' 835 + react-dom: '>=18 || >=19.0.0-rc.0' 756 836 757 - '@nextui-org/menu@2.0.30': 758 - resolution: {integrity: sha512-hZRr/EQ5JxB6yQFmUhDSv9pyLTJmaB4SFC/t5A17UljRhMexlvTU6QpalYIkbY0R/bUXvOkTJNzsRgI5OOQ/aA==} 837 + '@nextui-org/menu@2.2.2': 838 + resolution: {integrity: sha512-hRxmRZQaNrb9HdzCwf0tQVPdjfDFe56w9mwQLJls4JYf2BAlONolhNcvB4IsYnVMW6xly787GKo5qrD2AfQFFg==} 759 839 peerDependencies: 760 - '@nextui-org/system': '>=2.0.0' 761 - '@nextui-org/theme': '>=2.1.0' 762 - react: '>=18' 763 - react-dom: '>=18' 840 + '@nextui-org/system': '>=2.3.0' 841 + '@nextui-org/theme': '>=2.3.0' 842 + react: '>=18 || >=19.0.0-rc.0' 843 + react-dom: '>=18 || >=19.0.0-rc.0' 764 844 765 - '@nextui-org/modal@2.0.41': 766 - resolution: {integrity: sha512-Sirn319xAf7E4cZqvQ0o0Vd3Xqy0FRSuhOTwp8dALMGTMY61c2nIyurgVCNP6hh8dMvMT7zQEPP9/LE0boFCEQ==} 845 + '@nextui-org/modal@2.2.2': 846 + resolution: {integrity: sha512-bTS19/D6WYXTry54i1W6dK/Q0RnXHQKoHA+VLWOLRNjhnEkFS8dmF6nR96BFQIKlbrG7g4INM47Oz1RqDNuNbQ==} 767 847 peerDependencies: 768 - '@nextui-org/system': '>=2.0.0' 769 - '@nextui-org/theme': '>=2.1.0' 770 - framer-motion: '>=10.17.0' 771 - react: '>=18' 772 - react-dom: '>=18' 848 + '@nextui-org/system': '>=2.3.0' 849 + '@nextui-org/theme': '>=2.3.0' 850 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 851 + react: '>=18 || >=19.0.0-rc.0' 852 + react-dom: '>=18 || >=19.0.0-rc.0' 773 853 774 - '@nextui-org/navbar@2.0.37': 775 - resolution: {integrity: sha512-HuHXMU+V367LlvSGjqRPBNKmOERLvc4XWceva+KmiT99BLqHmMECkQVTR6ogO36eJUU96aR8JSfAiHLjvw5msw==} 854 + '@nextui-org/navbar@2.2.2': 855 + resolution: {integrity: sha512-urgkf4YqBYRJa7nvB1zL7fRgBzk/sG76136UyAy8ptfvF3gNVxH0QDCicWH5wlJUypI3eJjzvlV/9aGKnfowbw==} 776 856 peerDependencies: 777 - '@nextui-org/system': '>=2.0.0' 778 - '@nextui-org/theme': '>=2.1.0' 779 - framer-motion: '>=10.17.0' 780 - react: '>=18' 781 - react-dom: '>=18' 857 + '@nextui-org/system': '>=2.3.0' 858 + '@nextui-org/theme': '>=2.3.0' 859 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 860 + react: '>=18 || >=19.0.0-rc.0' 861 + react-dom: '>=18 || >=19.0.0-rc.0' 782 862 783 - '@nextui-org/pagination@2.0.36': 784 - resolution: {integrity: sha512-VKs2vMj8dybNzb/WkAMmvFBsxdgBvpVihIA4eXSo2ve7fpcLjIF1iPLHuDgpSyv3h3dy009sQTVo3lVTVT1a6w==} 863 + '@nextui-org/pagination@2.2.2': 864 + resolution: {integrity: sha512-fyyU/HO6x0RTl91excWvEilRmodzt3hKbYiI7NkT0CJefdl6NBgWJ7u3HAHThILs1tWeA4sGY5G7FLuVlGPlDQ==} 785 865 peerDependencies: 786 - '@nextui-org/system': '>=2.0.0' 787 - '@nextui-org/theme': '>=2.1.0' 788 - react: '>=18' 789 - react-dom: '>=18' 866 + '@nextui-org/system': '>=2.3.0' 867 + '@nextui-org/theme': '>=2.3.0' 868 + react: '>=18 || >=19.0.0-rc.0' 869 + react-dom: '>=18 || >=19.0.0-rc.0' 790 870 791 - '@nextui-org/popover@2.1.29': 792 - resolution: {integrity: sha512-qGjMnAQVHQNfG571h9Tah2MXPs5mhxcTIj4TuBgwPzQTWXjjeffaHV3FlHdg5PxjTpNZOdDfrg0eRhDqIjKocQ==} 871 + '@nextui-org/popover@2.3.2': 872 + resolution: {integrity: sha512-l+lvsh+qlNpqxpZi2TLaVkWFyHFdtCWezyc3G0WZq7cgvpwW3I24Elfn26ttmbTe/lm6W7oeqnAVOLhskXoB1w==} 793 873 peerDependencies: 794 - '@nextui-org/system': '>=2.0.0' 795 - '@nextui-org/theme': '>=2.1.0' 796 - framer-motion: '>=10.17.0' 797 - react: '>=18' 798 - react-dom: '>=18' 874 + '@nextui-org/system': '>=2.3.0' 875 + '@nextui-org/theme': '>=2.3.0' 876 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 877 + react: '>=18 || >=19.0.0-rc.0' 878 + react-dom: '>=18 || >=19.0.0-rc.0' 799 879 800 - '@nextui-org/progress@2.0.34': 801 - resolution: {integrity: sha512-rJmZCrLdufJKLsonJ37oPOEHEpZykD4c+0G749zcKOkRXHOD9DiQian2YoZEE/Yyf3pLdFQG3W9vSLbsgED3PQ==} 880 + '@nextui-org/progress@2.2.2': 881 + resolution: {integrity: sha512-umyCqCOO85nNtr9bFUMDs9GluyUoCtSwWJwiI2nBCBoTeBoBTftvHwr2Jc+BB4Zefb415SHXyA/SPbysUB4avQ==} 802 882 peerDependencies: 803 - '@nextui-org/system': '>=2.0.0' 804 - '@nextui-org/theme': '>=2.1.0' 805 - react: '>=18' 806 - react-dom: '>=18' 883 + '@nextui-org/system': '>=2.3.0' 884 + '@nextui-org/theme': '>=2.3.0' 885 + react: '>=18 || >=19.0.0-rc.0' 886 + react-dom: '>=18 || >=19.0.0-rc.0' 807 887 808 - '@nextui-org/radio@2.1.5': 809 - resolution: {integrity: sha512-0tF/VkMQv+KeYmFQpkrpz9S7j7U8gqCet+F97Cz7fFjdb+Q3w9waBzg84QayD7EZdjsYW4FNSkjPeiBhLdVUsw==} 888 + '@nextui-org/radio@2.3.2': 889 + resolution: {integrity: sha512-oSY6+vEm1QZPx4s2W0QZ0aRnmBh78oxYT8hbeA7YhmyK28S2R6ZDOwVg8n+MCklYzP8TdH1IvyVmbudsNWZlvQ==} 810 890 peerDependencies: 811 - '@nextui-org/system': '>=2.0.0' 812 - '@nextui-org/theme': '>=2.1.0' 813 - react: '>=18' 814 - react-dom: '>=18' 891 + '@nextui-org/system': '>=2.3.0' 892 + '@nextui-org/theme': '>=2.3.0' 893 + react: '>=18 || >=19.0.0-rc.0' 894 + react-dom: '>=18 || >=19.0.0-rc.0' 815 895 816 - '@nextui-org/react-rsc-utils@2.0.14': 817 - resolution: {integrity: sha512-s0GVgDhScyx+d9FtXd8BXf049REyaPvWsO4RRr7JDHrk91NlQ11Mqxka9o+8g5NX0rphI0rbe3/b1Dz+iQRx3w==} 896 + '@nextui-org/react-rsc-utils@2.1.1': 897 + resolution: {integrity: sha512-9uKH1XkeomTGaswqlGKt0V0ooUev8mPXtKJolR+6MnpvBUrkqngw1gUGF0bq/EcCCkks2+VOHXZqFT6x9hGkQQ==} 818 898 peerDependencies: 819 - react: '>=18' 899 + react: '>=18 || >=19.0.0-rc.0' 820 900 821 - '@nextui-org/react-utils@2.0.17': 822 - resolution: {integrity: sha512-U/b49hToVfhOM4dg4n57ZyUjLpts4JogQ139lfQBYPTb8z/ATNsJ3vLIqW5ZvDK6L0Er+JT11UVQ+03m7QMvaQ==} 901 + '@nextui-org/react-utils@2.1.1': 902 + resolution: {integrity: sha512-cN3Z0b2bV6Nf0CYD4imsGdXbHMQqad8KivltpBv1ItbI1/FSTAv9AHTKSzDE15hd/UwOGYt3Qm7I6tWzqov55w==} 823 903 peerDependencies: 824 - react: '>=18' 904 + react: '>=18 || >=19.0.0-rc.0' 825 905 826 - '@nextui-org/react@2.4.8': 827 - resolution: {integrity: sha512-ZwXg6As3A+Gs+Jyc42t4MHNupHEsh9YmEaypE20ikqIPTCLQnrGQ/RWOGwzZ2a9kZWbZ89a/3rJwZMRKdcemxg==} 906 + '@nextui-org/react@2.6.3': 907 + resolution: {integrity: sha512-Jp84GMA6lveBk3zNNI1do712+gZojnZ/7ksqubGD+JPdyQ3XnskEWpBsKx19vcpXx/nRR4rKSr1X3ta93ZwGlg==} 828 908 peerDependencies: 829 - framer-motion: '>=10.17.0' 830 - react: '>=18' 831 - react-dom: '>=18' 909 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 910 + react: '>=18 || >=19.0.0-rc.0' 911 + react-dom: '>=18 || >=19.0.0-rc.0' 832 912 833 - '@nextui-org/ripple@2.0.33': 834 - resolution: {integrity: sha512-Zsa60CXtGCF7weTCFbSfT0OlxlGHdd5b/sSJTYrmMZRHOIUpHW8kT0bxVYF/6X8nCCJYxzBKXUqdE3Y31fhNeQ==} 913 + '@nextui-org/ripple@2.2.2': 914 + resolution: {integrity: sha512-Su0dYzupYmb8Y31/M39O6OUFV/YNDCnH6t9+AnQcGYKHhFK31r3JRD/Aa7idCgBmxW4QxMXAzucfjS8htuNosw==} 835 915 peerDependencies: 836 - '@nextui-org/system': '>=2.0.0' 837 - '@nextui-org/theme': '>=2.1.0' 838 - framer-motion: '>=10.17.0' 839 - react: '>=18' 840 - react-dom: '>=18' 916 + '@nextui-org/system': '>=2.3.0' 917 + '@nextui-org/theme': '>=2.3.0' 918 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 919 + react: '>=18 || >=19.0.0-rc.0' 920 + react-dom: '>=18 || >=19.0.0-rc.0' 841 921 842 - '@nextui-org/scroll-shadow@2.1.20': 843 - resolution: {integrity: sha512-8ULiUmbZ/Jzr1okI8Yzjzl5M4Ow3pJEm34hT5id0EaMIgklNa3Nnp/Dyp54JwwUbI8Kt3jOAMqkPitGIZyo5Ag==} 922 + '@nextui-org/scroll-shadow@2.3.2': 923 + resolution: {integrity: sha512-/sU4KYFBmvwYEjdEyK4r1BpKSbqZf5bBwytr0FocTPALU7WPsrRkTwbUD6r092sx5LYNpo4rrR+JoYKqQ3sHRA==} 844 924 peerDependencies: 845 - '@nextui-org/system': '>=2.0.0' 846 - '@nextui-org/theme': '>=2.1.0' 847 - react: '>=18' 848 - react-dom: '>=18' 925 + '@nextui-org/system': '>=2.3.0' 926 + '@nextui-org/theme': '>=2.3.0' 927 + react: '>=18 || >=19.0.0-rc.0' 928 + react-dom: '>=18 || >=19.0.0-rc.0' 849 929 850 - '@nextui-org/select@2.2.7': 851 - resolution: {integrity: sha512-lA2EOjquhiHmLSInHFEarq64ZOQV37+ry1d8kvsqJ7R9dsqw1QEuMzH2Kk8/NqwrYMccHh5iAZ7PaLp90NSSxg==} 930 + '@nextui-org/select@2.4.2': 931 + resolution: {integrity: sha512-kq8byIDv/H0ZMbAARENHA0p6/qkjAsA8XQNkSJZJ/U8VkgeTwF5yW/bSTfg8p0WdKpOUCbhLU7Na63a5QGzfpw==} 852 932 peerDependencies: 853 - '@nextui-org/system': '>=2.0.0' 854 - '@nextui-org/theme': '>=2.1.0' 855 - framer-motion: '>=10.17.0' 856 - react: '>=18' 857 - react-dom: '>=18' 933 + '@nextui-org/system': '>=2.3.0' 934 + '@nextui-org/theme': '>=2.3.0' 935 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 936 + react: '>=18 || >=19.0.0-rc.0' 937 + react-dom: '>=18 || >=19.0.0-rc.0' 858 938 859 - '@nextui-org/shared-icons@2.0.9': 860 - resolution: {integrity: sha512-WG3yinVY7Tk9VqJgcdF4V8Ok9+fcm5ey7S1els7kujrfqLYxtqoKywgiY/7QHwZlfQkzpykAfy+NAlHkTP5hMg==} 939 + '@nextui-org/shared-icons@2.1.1': 940 + resolution: {integrity: sha512-mkiTpFJnCzB2M8Dl7IwXVzDKKq9ZW2WC0DaQRs1eWgqboRCP8DDde+MJZq331hC7pfH8BC/4rxXsKECrOUUwCg==} 861 941 peerDependencies: 862 - react: '>=18' 942 + react: '>=18 || >=19.0.0-rc.0' 863 943 864 - '@nextui-org/shared-utils@2.0.8': 865 - resolution: {integrity: sha512-ZEtoMPXS+IjT8GvpJTS9IWDnT1JNCKV+NDqqgysAf1niJmOFLyJgl6dh/9n4ufcGf1GbSEQN+VhJasEw7ajYGQ==} 944 + '@nextui-org/shared-utils@2.1.1': 945 + resolution: {integrity: sha512-qE8gZO63GqUX1ljOi/4PlwGzE84dhUS3zFIq+10/N6ePAaNjM4DwtL4ocucG3abCz4iRUueYKLIxTO2+eYyAfw==} 866 946 867 - '@nextui-org/skeleton@2.0.32': 868 - resolution: {integrity: sha512-dS0vuRrc4oWktW3wa/KFhcBNnV0oiDqKXP4BqRj7wgS01fOAqj3cJiqwUDLKO8GbEnxLkbqLBFcUoLgktpRszQ==} 947 + '@nextui-org/skeleton@2.2.2': 948 + resolution: {integrity: sha512-EBGI+ZCtyFlbsszMX5FWTQA5k/gBdryjKYdw8GGEOZhxEWYDMSTmCkHYJYKNwUKto1bsN8wJruNoipEky8Cgcw==} 869 949 peerDependencies: 870 - '@nextui-org/system': '>=2.0.0' 871 - '@nextui-org/theme': '>=2.1.0' 872 - react: '>=18' 873 - react-dom: '>=18' 950 + '@nextui-org/system': '>=2.3.0' 951 + '@nextui-org/theme': '>=2.3.0' 952 + react: '>=18 || >=19.0.0-rc.0' 953 + react-dom: '>=18 || >=19.0.0-rc.0' 874 954 875 - '@nextui-org/slider@2.2.17': 876 - resolution: {integrity: sha512-MgeJv3X+bT7Bw+LK1zba4vToOUzv8lCvDuGe0U5suJy1AKGN6uGDgSAxpIZhCYNWsuNRsopwdvsGtyeIjOEStA==} 955 + '@nextui-org/slider@2.4.2': 956 + resolution: {integrity: sha512-YwiOvrcvF7al7l6lNbfiEqheAijtI5s3fKkfk3khmt3kK260j/2v1wo3q8s8khfU8cZsYRhvpzc2tOo/pnj1pw==} 877 957 peerDependencies: 878 - '@nextui-org/system': '>=2.0.0' 879 - '@nextui-org/theme': '>=2.1.0' 880 - react: '>=18' 881 - react-dom: '>=18' 958 + '@nextui-org/system': '>=2.3.0' 959 + '@nextui-org/theme': '>=2.3.0' 960 + react: '>=18 || >=19.0.0-rc.0' 961 + react-dom: '>=18 || >=19.0.0-rc.0' 882 962 883 - '@nextui-org/snippet@2.0.43': 884 - resolution: {integrity: sha512-PLxc9ph9CLj52L26XSv4vBmQcSytCNc3ZBxkOTBEqmLSHCWwGQExrqKPnVZTE1etr6dcULiy5vNIpD8R7taO8A==} 963 + '@nextui-org/snippet@2.2.3': 964 + resolution: {integrity: sha512-DLBH98nXBWWT6BdE//SEHSXMdmt5i1pq19ARuspiTrIb9pwHQo8xkXvhn1grRJC33ptlWNo2yS4XK8wIAxO6PQ==} 885 965 peerDependencies: 886 - '@nextui-org/system': '>=2.0.0' 887 - '@nextui-org/theme': '>=2.1.0' 888 - framer-motion: '>=10.17.0' 889 - react: '>=18' 890 - react-dom: '>=18' 966 + '@nextui-org/system': '>=2.3.0' 967 + '@nextui-org/theme': '>=2.3.0' 968 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 969 + react: '>=18 || >=19.0.0-rc.0' 970 + react-dom: '>=18 || >=19.0.0-rc.0' 891 971 892 - '@nextui-org/spacer@2.0.33': 893 - resolution: {integrity: sha512-0YDtovMWuAVgBvVXUmplzohObGxMPFhisHXn6v+0nflAE9LiVeiXf121WVOEMrd08S7xvmrAANcMwo4TsYi49g==} 972 + '@nextui-org/spacer@2.2.2': 973 + resolution: {integrity: sha512-882SIXNFFAUSa4MDy7JR4eDT/6kiYJ8kj2ITPgQENYF8EcEwCr+gMtmQdEd9Wm1POYRRv8VN8w337ktqh0DSOA==} 894 974 peerDependencies: 895 - '@nextui-org/theme': '>=2.1.0' 896 - react: '>=18' 897 - react-dom: '>=18' 975 + '@nextui-org/theme': '>=2.3.0' 976 + react: '>=18 || >=19.0.0-rc.0' 977 + react-dom: '>=18 || >=19.0.0-rc.0' 898 978 899 - '@nextui-org/spinner@2.0.34': 900 - resolution: {integrity: sha512-YKw/6xSLhsXU1k22OvYKyWhtJCHzW2bRAiieVSVG5xak3gYwknTds5H9s5uur+oAZVK9AkyAObD19QuZND32Jg==} 979 + '@nextui-org/spinner@2.2.2': 980 + resolution: {integrity: sha512-AY+4ggvNgT8VgvJpOCokxUYZXDxMwfBvNVUKIvKIc3VfHaj1NnSh+ebtDkhlS6z6dV/rO8SS6y8mNuymZhQHNw==} 901 981 peerDependencies: 902 - '@nextui-org/theme': '>=2.1.0' 903 - react: '>=18' 904 - react-dom: '>=18' 982 + '@nextui-org/theme': '>=2.3.0' 983 + react: '>=18 || >=19.0.0-rc.0' 984 + react-dom: '>=18 || >=19.0.0-rc.0' 905 985 906 - '@nextui-org/switch@2.0.34': 907 - resolution: {integrity: sha512-SczQiHswo8eR94ecDgcULIsSIPfYVncqfKllcHEGqAs9BDpZun44KK0/R0xhWuPpx5oqB60VeSABN7JtEAxF+Q==} 986 + '@nextui-org/switch@2.2.2': 987 + resolution: {integrity: sha512-0wrhTxtKIG2Vf+z3eBzai6HAjZmtmxJ8S/50PffLFt6hf7q7cjCKfaYbh+oZcJVMFW/iXulauoAGsZ+BwN19ig==} 908 988 peerDependencies: 909 - '@nextui-org/system': '>=2.0.0' 910 - '@nextui-org/theme': '>=2.1.0' 911 - react: '>=18' 912 - react-dom: '>=18' 989 + '@nextui-org/system': '>=2.3.0' 990 + '@nextui-org/theme': '>=2.3.0' 991 + react: '>=18 || >=19.0.0-rc.0' 992 + react-dom: '>=18 || >=19.0.0-rc.0' 913 993 914 - '@nextui-org/system-rsc@2.1.6': 915 - resolution: {integrity: sha512-Wl2QwEFjYwuvw26R1RH3ZY81PD8YmfgtIjFvJZRP2VEIT6rPvlQ4ojgqdrkVkQZQ0L/K+5ZLbTKgLEFkj5ysdQ==} 994 + '@nextui-org/system-rsc@2.3.2': 995 + resolution: {integrity: sha512-1ZSbp+55B7j+8DCrYRTteEzEiQCXCbHAEZLnv27uQ9+RGWbS2K+uScCs0IKR1xi9653K4ZzbBO9t9JazgJsz8w==} 916 996 peerDependencies: 917 - '@nextui-org/theme': '>=2.1.0' 918 - react: '>=18' 997 + '@nextui-org/theme': '>=2.3.0' 998 + react: '>=18 || >=19.0.0-rc.0' 919 999 920 - '@nextui-org/system@2.2.6': 921 - resolution: {integrity: sha512-tjIkOI0w32g68CGWleuSyIbEz8XBbeoNogR2lu7MWk3QovHCqgr4VVrP1cwMRYnwDPFQP3OpmH+NR9yzt+pIfg==} 1000 + '@nextui-org/system@2.4.2': 1001 + resolution: {integrity: sha512-3TJ3GdLnO5vCYv4gB2kyFqw1LuysgtgLhEB27sz7RFZzks96S55wPzAEV9Eqboa0cVLdmY2DeZMiZx0Kg+D2cA==} 922 1002 peerDependencies: 923 - framer-motion: '>=10.17.0' 924 - react: '>=18' 925 - react-dom: '>=18' 1003 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 1004 + react: '>=18 || >=19.0.0-rc.0' 1005 + react-dom: '>=18 || >=19.0.0-rc.0' 926 1006 927 - '@nextui-org/table@2.0.40': 928 - resolution: {integrity: sha512-qDbSsu6mpWnr1Mt3DYTBzTFtN8Z5Gv7GDqECGcDVradkDVuJFZvkB9Ke392LcVZoXSk99Rpamq4WSWkEewBhWg==} 1007 + '@nextui-org/table@2.2.2': 1008 + resolution: {integrity: sha512-NeyGLxWCnL2YB/z8AeerXNwzryU1K7aYU8BTV4tLFI9LeZzDaHXptj35BLnMX2B7OZtnlCUy4TPUkLLuHB6abw==} 929 1009 peerDependencies: 930 - '@nextui-org/system': '>=2.0.0' 931 - '@nextui-org/theme': '>=2.1.0' 932 - react: '>=18' 933 - react-dom: '>=18' 1010 + '@nextui-org/system': '>=2.3.0' 1011 + '@nextui-org/theme': '>=2.3.0' 1012 + react: '>=18 || >=19.0.0-rc.0' 1013 + react-dom: '>=18 || >=19.0.0-rc.0' 934 1014 935 - '@nextui-org/tabs@2.0.37': 936 - resolution: {integrity: sha512-IQicuDggxTL+JeW3fRoZR4Rr24EwinxAdfU1jqcvT6gZywumndV27+I00kARz8P03kobYoY9t73NY92qo8T5gg==} 1015 + '@nextui-org/tabs@2.2.2': 1016 + resolution: {integrity: sha512-NGuNsjQaBw8x7DllhY5EVzSRSk0288UMm1mVc5kYmTL1eDMKB89c12DNoGW68Us8XMTdioEIU5Y9CYM5s+aB8Q==} 937 1017 peerDependencies: 938 - '@nextui-org/system': '>=2.0.0' 939 - '@nextui-org/theme': '>=2.1.0' 940 - framer-motion: '>=10.17.0' 941 - react: '>=18' 942 - react-dom: '>=18' 1018 + '@nextui-org/system': '>=2.3.0' 1019 + '@nextui-org/theme': '>=2.3.0' 1020 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 1021 + react: '>=18 || >=19.0.0-rc.0' 1022 + react-dom: '>=18 || >=19.0.0-rc.0' 943 1023 944 - '@nextui-org/theme@2.2.11': 945 - resolution: {integrity: sha512-bg9+KNnFxcP3w/ugivEJtvQibODbTxfl6UdVvx7TCY8Rd269U7F2+nhnw1Qd1xJT5yZQnX6m//9wOoGtJV+6Kg==} 1024 + '@nextui-org/theme@2.4.1': 1025 + resolution: {integrity: sha512-tJn4KsSU4QR8HAzAJk/TwbjtYWBuVcrRsiJeqTAN5L4galKXt5jJe23wGzHg+EAIs3t6IsjIjgo/PGwZenUPGQ==} 946 1026 peerDependencies: 947 1027 tailwindcss: '>=3.4.0' 948 1028 949 - '@nextui-org/tooltip@2.0.41': 950 - resolution: {integrity: sha512-1c+vkCCszKcKl15HywlZ7UOL7c1UFgLudqBB/dEdWZiclT01BRiracMbcQ7McKHQCRl77Aa7LFv5x4wHOicWHQ==} 1029 + '@nextui-org/tooltip@2.2.2': 1030 + resolution: {integrity: sha512-okF3O5qcJJqsAN3fTfJcAYJSas2b/o30tcZIve3qtvbK7ulMd3szTLNQ3oUePNgbc7lSL19IZLxH8JSMBRmkvw==} 951 1031 peerDependencies: 952 - '@nextui-org/system': '>=2.0.0' 953 - '@nextui-org/theme': '>=2.1.0' 954 - framer-motion: '>=10.17.0' 955 - react: '>=18' 956 - react-dom: '>=18' 1032 + '@nextui-org/system': '>=2.3.0' 1033 + '@nextui-org/theme': '>=2.3.0' 1034 + framer-motion: '>=11.5.6 || >=12.0.0-alpha.1' 1035 + react: '>=18 || >=19.0.0-rc.0' 1036 + react-dom: '>=18 || >=19.0.0-rc.0' 957 1037 958 - '@nextui-org/use-aria-accordion@2.0.7': 959 - resolution: {integrity: sha512-VzGlxmsu2tWG2Pht1e0PBz40jz95v0OEKYVXq91WpDMwj8Bl1CYvxrw2Qz41/5Xi0X843Mmo4sPwrc/hk0+RHA==} 1038 + '@nextui-org/use-aria-accordion@2.2.1': 1039 + resolution: {integrity: sha512-1BFtNJrlG48Rc+cpMBt822BXuYMgDVfO/Rb64OVw9LXyhhRMd8O2et1gEkAGBDpKJX79f87aBPbx6B8AtjuHkg==} 960 1040 peerDependencies: 961 - react: '>=18' 1041 + react: '>=18 || >=19.0.0-rc.0' 962 1042 963 - '@nextui-org/use-aria-button@2.0.10': 964 - resolution: {integrity: sha512-tUpp4QMr1zugKPevyToeRHIufTuc/g+67/r/oQLRTG0mMo3yGVmggykQuYn22fqqZPpW6nHcB9VYc+XtZZ27TQ==} 1043 + '@nextui-org/use-aria-button@2.2.1': 1044 + resolution: {integrity: sha512-p/5rKd+t74ncY3BDp253sVUkFc0ClE59Z7QSoKRtRfDsSKlBcT4EMj+mNdnlBfyPQtygkMhDRJ7F/7xi8kMg+Q==} 965 1045 peerDependencies: 966 - react: '>=18' 1046 + react: '>=18 || >=19.0.0-rc.0' 967 1047 968 - '@nextui-org/use-aria-link@2.0.19': 969 - resolution: {integrity: sha512-ef61cJLlwcR4zBWiaeHZy4K18juFjUup2SslfLIAiZz3kVosBCGKmkJkw1SASYY8+D/oUc2B6BFIk25YEsRKRw==} 1048 + '@nextui-org/use-aria-link@2.2.1': 1049 + resolution: {integrity: sha512-Qv3JS/46oPOTdcl7NNGokUiQTdQ2pBo62HB4749HYoEqIpWZFYqY/uXFxyrsP58YXZFmGjJMduPL35lJ5Gwoiw==} 970 1050 peerDependencies: 971 - react: '>=18' 1051 + react: '>=18 || >=19.0.0-rc.0' 972 1052 973 - '@nextui-org/use-aria-menu@2.0.7': 974 - resolution: {integrity: sha512-5U91zFiWTLXsOhE0W3CThsD5TmL3ANeTEtoimtPgSLWV9keZBD9Ja62WsnPZPPAWhmv7jtL0/qk4d/YOra7PVA==} 1053 + '@nextui-org/use-aria-menu@2.2.1': 1054 + resolution: {integrity: sha512-SroqVinH9Ypcb/WMqJtPKmHneJeYhJw2EsfhrZVPmKReD/Qk34oYIPYn1FrWvOvZXINa87EKgcWNMQ5IkvJioQ==} 975 1055 peerDependencies: 976 - react: '>=18' 977 - react-dom: '>=18' 1056 + react: '>=18 || >=19.0.0-rc.0' 1057 + react-dom: '>=18 || >=19.0.0-rc.0' 978 1058 979 - '@nextui-org/use-aria-modal-overlay@2.0.13': 980 - resolution: {integrity: sha512-ifQxJwTX72lhVUofEVQqMbpe9vEUiCIqiimzlUjeVuE0cYOXaoJLEgPozHpYQrdjTNiwD5On0LLMRgz19XyAqw==} 1059 + '@nextui-org/use-aria-modal-overlay@2.2.1': 1060 + resolution: {integrity: sha512-hm56S1RGoa08Ji2MePelA2GsXbyuBRcC4cCN88kc/FegEw+12BFMnfOtMvrS5rMVgP95Gm9oRFkWfdY+P9f6wg==} 981 1061 peerDependencies: 982 - react: '>=18' 983 - react-dom: '>=18' 1062 + react: '>=18 || >=19.0.0-rc.0' 1063 + react-dom: '>=18 || >=19.0.0-rc.0' 984 1064 985 - '@nextui-org/use-aria-multiselect@2.2.5': 986 - resolution: {integrity: sha512-Gxo2M0LdnFL4/WCi192ziFB8JmSZm6yZYT8RB021Z3iAPBu/Pp9GnWEPZu5g15mKnn3jW5Ecnfw03jTEAQBR+Q==} 1065 + '@nextui-org/use-aria-multiselect@2.4.1': 1066 + resolution: {integrity: sha512-z+SBGjTg73bydFZyULlfaLdAJAV8obcHDvz+C4bW5oZ+PTxsyXqIiB4wWNOXyngei90DBdo71uRfO142wj9CKQ==} 987 1067 peerDependencies: 988 - react: '>=18' 989 - react-dom: '>=18' 1068 + react: '>=18 || >=19.0.0-rc.0' 1069 + react-dom: '>=18 || >=19.0.0-rc.0' 990 1070 991 - '@nextui-org/use-aria-toggle-button@2.0.10': 992 - resolution: {integrity: sha512-U5jOmEO+nMIgYvBF0+gJtdq8C6dynGMjzAboPG4FhuHOzDoNiC12G5FIbGnRe8K1hMsKVuaI72p9986NhfqNgw==} 1071 + '@nextui-org/use-aria-toggle-button@2.2.1': 1072 + resolution: {integrity: sha512-oZQaXLMjy7rZ1V0tHzz+aVJN3bznqRo/JhxJjK3vt83CAy9Emmq72IEVt6qby+Zzddx4KyN/bzgDC6ExoMjUGg==} 993 1073 peerDependencies: 994 - react: '>=18' 1074 + react: '>=18 || >=19.0.0-rc.0' 995 1075 996 - '@nextui-org/use-callback-ref@2.0.6': 997 - resolution: {integrity: sha512-2WcwWuK1L/wIpTbibnLrysmmkzWomvkVIcgWayB6n/w+bpPrPCG7Zyg2WHzmMmDhe6imV//KKBgNKRi8Xhu/VA==} 1076 + '@nextui-org/use-callback-ref@2.1.1': 1077 + resolution: {integrity: sha512-DzlKJ9p7Tm0x3HGjynZ/CgS1jfoBILXKFXnYPLr/SSETXqVaCguixolT/07BRB1yo9AGwELaCEt91BeI0Rb6hQ==} 998 1078 peerDependencies: 999 - react: '>=18' 1079 + react: '>=18 || >=19.0.0-rc.0' 1000 1080 1001 - '@nextui-org/use-clipboard@2.0.7': 1002 - resolution: {integrity: sha512-Bn1fF/goMwOA5DQyw3A4ebfgozwR8U5k5TAZMPiy1RBWgTFw7+lB0GNbH+DOnUGY5Vyztyaw6gtUyc3tVzJxeg==} 1081 + '@nextui-org/use-clipboard@2.1.1': 1082 + resolution: {integrity: sha512-oOkRLyd8R6zRP4s3psV5XPdYuoExnCcv46DLqVe4TajSPaWv7noRBKtkb8x/am6gZaPqxCdQ56A9gX2P8LMgGg==} 1003 1083 peerDependencies: 1004 - react: '>=18' 1084 + react: '>=18 || >=19.0.0-rc.0' 1005 1085 1006 - '@nextui-org/use-data-scroll-overflow@2.1.7': 1007 - resolution: {integrity: sha512-MP4YLjBWyIt0KyWPndXyhnkKgOLqTZ2aPY82Czjqn+eZk/l8BNo0nfA+dZFfbfEuPJgqdt/JDkMOrS+uq0+vkQ==} 1086 + '@nextui-org/use-data-scroll-overflow@2.2.1': 1087 + resolution: {integrity: sha512-VDXp3MgBx+D4j6TmKxnbsHrQSuqKvuMxobxBSVMHPjU2TF2ra/DD8OM//wR0z4U/u1xEQkfHEwuxvREf2xuexg==} 1008 1088 peerDependencies: 1009 - react: '>=18' 1089 + react: '>=18 || >=19.0.0-rc.0' 1010 1090 1011 - '@nextui-org/use-disclosure@2.0.10': 1012 - resolution: {integrity: sha512-s2I58d7x2f1JRriZnNm9ZoxrGmxF+DnC9BXM1sD99Wq1VNMd0dhitmx0mUWfUB7l5HLyZgKOeiSLG+ugy1F1Yw==} 1091 + '@nextui-org/use-disclosure@2.2.1': 1092 + resolution: {integrity: sha512-ZGKCJAziy2XItARyaHJVG1KyEWdED3ClRDF+t2tKRoKEPjBrYXN753a9KctPoJVuL52W3nF9zt5vsPqjU73d2Q==} 1013 1093 peerDependencies: 1014 - react: '>=18' 1094 + react: '>=18 || >=19.0.0-rc.0' 1015 1095 1016 - '@nextui-org/use-image@2.0.6': 1017 - resolution: {integrity: sha512-VelN9y3vzwIpPfubFMh00YRQ0f4+I5FElcAvAqoo0Kfb0K7sGrTo1lZNApHm6yBN2gJMMeccG9u7bZB+wcDGZQ==} 1096 + '@nextui-org/use-draggable@2.1.1': 1097 + resolution: {integrity: sha512-IZVMKDe50jSZmPkhBVHma2t0G4JOhfmERKIDyFc7OlYkkq5XeL/XXI9Wk+zRST1IahUKmkjY1Ef5fKpXccozSg==} 1018 1098 peerDependencies: 1019 - react: '>=18' 1099 + react: '>=18 || >=19.0.0-rc.0' 1020 1100 1021 - '@nextui-org/use-is-mobile@2.0.9': 1022 - resolution: {integrity: sha512-u5pRmPV0wacdpOcAkQnWwE30yNBl2uk1WvbWkrSELxIVRN22+fTIYn8ynnHK0JbJFTA6/5zh7uIfETQu3L6KjA==} 1101 + '@nextui-org/use-image@2.1.1': 1102 + resolution: {integrity: sha512-Tsfy9pA4AQBAj7rFIEonB9L/hXGg7M5agaAZNBUVpdp47NjcEwLpcU2XncKh8AhkQku0p4JOyMC9usRGV3z06Q==} 1103 + peerDependencies: 1104 + react: '>=18 || >=19.0.0-rc.0' 1105 + 1106 + '@nextui-org/use-intersection-observer@2.2.1': 1107 + resolution: {integrity: sha512-wzHIdun7Eb839HYVZQoFVVFL7tHE3QsnDkM1seYCltN9KWoF+Ul3k5HpXXpzFLir9LEJwPFulz7G9Aieq78VOA==} 1108 + peerDependencies: 1109 + react: '>=18 || >=19.0.0-rc.0' 1110 + 1111 + '@nextui-org/use-is-mobile@2.2.1': 1112 + resolution: {integrity: sha512-TVe1sj8hno3q4iX8Cqq4IlNRyF/Drgrvapcl3zFH+Vspq9LP0vI5GknZs7lk6Ts+/O0i515ti0mIKa0tw2F9Ow==} 1023 1113 peerDependencies: 1024 - react: '>=18' 1114 + react: '>=18 || >=19.0.0-rc.0' 1025 1115 1026 - '@nextui-org/use-is-mounted@2.0.6': 1027 - resolution: {integrity: sha512-/lcMdYnwBZ1EuKMLRIhHeAZG8stXWNTz7wBweAlLId23VC4VHgCp/s9K9Vbj1A5/r8FiFQeoTmXQuMAMUoPRtg==} 1116 + '@nextui-org/use-is-mounted@2.1.1': 1117 + resolution: {integrity: sha512-osJB3E/DCu4Le0f+pb21ia9/TaSHwme4r0fHjO5/nUBYk/RCvGlRUUCJClf/wi9WfH8QyjuJ27+zBcUSm6AMMg==} 1028 1118 peerDependencies: 1029 - react: '>=18' 1119 + react: '>=18 || >=19.0.0-rc.0' 1030 1120 1031 - '@nextui-org/use-measure@2.0.2': 1032 - resolution: {integrity: sha512-H/RSPPA9B5sZ10wiXR3jLlYFEuiVnc0O/sgLLQfrb5M0hvHoaqMThnsZpm//5iyS7tD7kxPeYNLa1EhzlQKxDA==} 1121 + '@nextui-org/use-measure@2.1.1': 1122 + resolution: {integrity: sha512-2RVn90gXHTgt6fvzBH4fzgv3hMDz+SEJkqaCTbd6WUNWag4AaLb2WU/65CtLcexyu10HrgYf2xG07ZqtJv0zSg==} 1033 1123 peerDependencies: 1034 - react: '>=18' 1124 + react: '>=18 || >=19.0.0-rc.0' 1035 1125 1036 - '@nextui-org/use-pagination@2.0.10': 1037 - resolution: {integrity: sha512-PD6M8QKngUnTJfyoGiZrnrfUtA1A9ZVUjmbONO/1kxPuUegv0ZOQeFECPP2h7SFPxsyOceL1T97rg/2YPS247g==} 1126 + '@nextui-org/use-pagination@2.2.1': 1127 + resolution: {integrity: sha512-IfRfwNO8FLn1U7dXW4jXIX9F3cD8ea+rS9clED7xXSirohTzX86T2KAv+f0wycfxpslprPIWkYylsJrbzWlOfg==} 1038 1128 peerDependencies: 1039 - react: '>=18' 1129 + react: '>=18 || >=19.0.0-rc.0' 1040 1130 1041 - '@nextui-org/use-safe-layout-effect@2.0.6': 1042 - resolution: {integrity: sha512-xzEJXf/g9GaSqjLpQ4+Z2/pw1GPq2Fc5cWRGqEXbGauEMXuH8UboRls1BmIV1RuOpqI6FgxkEmxL1EuVIRVmvQ==} 1131 + '@nextui-org/use-safe-layout-effect@2.1.1': 1132 + resolution: {integrity: sha512-p0vezi2eujC3rxlMQmCLQlc8CNbp+GQgk6YcSm7Rk10isWVlUII5T1L3y+rcFYdgTPObCkCngPPciNQhD7Lf7g==} 1043 1133 peerDependencies: 1044 - react: '>=18' 1134 + react: '>=18 || >=19.0.0-rc.0' 1045 1135 1046 - '@nextui-org/use-scroll-position@2.0.9': 1047 - resolution: {integrity: sha512-tXbpb2bkKIjOp2I1uZ1T4T9Lxp0+Ta/TKu+5qvqsXkHRPbcoukdsquagYUDWK/fcumg72UPR8QP+na8KMn2gCg==} 1136 + '@nextui-org/use-scroll-position@2.1.1': 1137 + resolution: {integrity: sha512-RgY1l2POZbSjnEirW51gdb8yNPuQXHqJx3TS8Ut5dk+bhaX9JD3sUdEiJNb3qoHAJInzyjN+27hxnACSlW0gzg==} 1048 1138 peerDependencies: 1049 - react: '>=18' 1139 + react: '>=18 || >=19.0.0-rc.0' 1050 1140 1051 - '@nextui-org/use-update-effect@2.0.6': 1052 - resolution: {integrity: sha512-n5Qiv3ferKn+cSxU3Vv+96LdG8I/00mzc7Veoan+P9GL0aCTrsPB6RslTsiblaiAXQcqTiFXd8xwsK309DXOXA==} 1141 + '@nextui-org/use-update-effect@2.1.1': 1142 + resolution: {integrity: sha512-fKODihHLWcvDk1Sm8xDua9zjdbstxTOw9shB7k/mPkeR3E7SouSpN0+LW67Bczh1EmbRg1pIrFpEOLnbpgMFzA==} 1053 1143 peerDependencies: 1054 - react: '>=18' 1144 + react: '>=18 || >=19.0.0-rc.0' 1055 1145 1056 - '@nextui-org/user@2.0.34': 1057 - resolution: {integrity: sha512-7MN/xBaMhDJ0b+hB2YpGIm2DsC9CTpN1ab+EKwhUuWn26SgXw2FNu8CSHViyDEkvOP7sYKdHLp9UtSo/f3JnsQ==} 1146 + '@nextui-org/user@2.2.2': 1147 + resolution: {integrity: sha512-7ntUVuXnZ3iEv+C5K7eyjs7L0xAEdPeY/4VTqrpOtrkr4Ugz2uRG1LCtM80PMxHe9j1tVBsQkIsLxMrWaz5iSw==} 1058 1148 peerDependencies: 1059 - '@nextui-org/system': '>=2.0.0' 1060 - '@nextui-org/theme': '>=2.1.0' 1061 - react: '>=18' 1062 - react-dom: '>=18' 1149 + '@nextui-org/system': '>=2.3.0' 1150 + '@nextui-org/theme': '>=2.3.0' 1151 + react: '>=18 || >=19.0.0-rc.0' 1152 + react-dom: '>=18 || >=19.0.0-rc.0' 1063 1153 1064 1154 '@nodelib/fs.scandir@2.1.5': 1065 1155 resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} ··· 1076 1166 '@octokit/openapi-types@22.2.0': 1077 1167 resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==} 1078 1168 1079 - '@octokit/types@13.6.1': 1080 - resolution: {integrity: sha512-PHZE9Z+kWXb23Ndik8MKPirBPziOc0D2/3KH1P+6jK5nGWe96kadZuE4jev2/Jq7FvIfTlT2Ltg8Fv2x1v0a5g==} 1169 + '@octokit/types@13.6.2': 1170 + resolution: {integrity: sha512-WpbZfZUcZU77DrSW4wbsSgTPfKcp286q3ItaIgvSbBpZJlu6mnYXAkjZz6LVZPXkEvLIM8McanyZejKTYUHipA==} 1081 1171 1082 1172 '@odiffey/discord-markdown@3.3.0': 1083 1173 resolution: {integrity: sha512-NdJAN9LC6K35TYI5/5Y8zJE5BJS4T5UZWChyVQ5ZTq5igreCu136eZJMo/c4Z/VVhvsuoyC7R7S88I0CBvbIug==} ··· 1330 1420 '@radix-ui/rect@1.1.0': 1331 1421 resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==} 1332 1422 1333 - '@react-aria/breadcrumbs@3.5.13': 1334 - resolution: {integrity: sha512-G1Gqf/P6kVdfs94ovwP18fTWuIxadIQgHsXS08JEVcFVYMjb9YjqnEBaohUxD1tq2WldMbYw53ahQblT4NTG+g==} 1423 + '@react-aria/breadcrumbs@3.5.18': 1424 + resolution: {integrity: sha512-JRc6nAwQsjqsPw/3MlGwJcVo9ACZDbCOwWNNEnj8mR0fQopJO5xliq3qVzxDRZjdYrVUfTTyKXuepv/jMB1Y6Q==} 1335 1425 peerDependencies: 1336 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1426 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1337 1427 1338 - '@react-aria/button@3.9.5': 1339 - resolution: {integrity: sha512-dgcYR6j8WDOMLKuVrtxzx4jIC05cVKDzc+HnPO8lNkBAOfjcuN5tkGRtIjLtqjMvpZHhQT5aDbgFpIaZzxgFIg==} 1428 + '@react-aria/button@3.10.1': 1429 + resolution: {integrity: sha512-1vkRsjdvJrJleK73u7ClrW4Fw3mtr2hIs8M2yLZUpLoqHXnIYJwmeEMtzwyPFYKBc5jaHcGXw45any7Puy1aFA==} 1340 1430 peerDependencies: 1341 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1431 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1342 1432 1343 - '@react-aria/calendar@3.5.8': 1344 - resolution: {integrity: sha512-Whlp4CeAA5/ZkzrAHUv73kgIRYjw088eYGSc+cvSOCxfrc/2XkBm9rNrnSBv0DvhJ8AG0Fjz3vYakTmF3BgZBw==} 1433 + '@react-aria/calendar@3.5.13': 1434 + resolution: {integrity: sha512-BJV5IwIH4UPDa6/HRTOBcM1wC+/6p823VrbocV9mr+rt5cCnuh+cqcCQKqUSEbfaTMPrmabjBuEaQIvqjLRYUA==} 1345 1435 peerDependencies: 1346 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1347 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1436 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1437 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1348 1438 1349 - '@react-aria/checkbox@3.14.3': 1350 - resolution: {integrity: sha512-EtBJL6iu0gvrw3A4R7UeVLR6diaVk/mh4kFBc7c8hQjpEJweRr4hmJT3hrNg3MBcTWLxFiMEXPGgWEwXDBygtA==} 1439 + '@react-aria/checkbox@3.14.8': 1440 + resolution: {integrity: sha512-0qPJ3fiQQm7tiMHmIhR9iokr/MhhI2h6OWX/pDeIy/Gj63WSVk+Cka3NUhgMRGkguHKDZPKaFjK1oZQsXhCThQ==} 1351 1441 peerDependencies: 1352 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1442 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1353 1443 1354 - '@react-aria/combobox@3.9.1': 1355 - resolution: {integrity: sha512-SpK92dCmT8qn8aEcUAihRQrBb5LZUhwIbDExFII8PvUvEFy/PoQHXIo3j1V29WkutDBDpMvBv/6XRCHGXPqrhQ==} 1444 + '@react-aria/combobox@3.10.5': 1445 + resolution: {integrity: sha512-1cjBJXWYuR0de+9IEU1MOer3H5FSlbrdaqlWo+M6vvMymBL2OjjwXiG3LY1mR65ZwHoTswXzt6/mujUKaxk5vw==} 1356 1446 peerDependencies: 1357 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1358 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1447 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1448 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1359 1449 1360 - '@react-aria/datepicker@3.10.1': 1361 - resolution: {integrity: sha512-4HZL593nrNMa1GjBmWEN/OTvNS6d3/16G1YJWlqiUlv11ADulSbqBIjMmkgwrJVFcjrgqtXFy+yyrTA/oq94Zw==} 1450 + '@react-aria/datepicker@3.11.4': 1451 + resolution: {integrity: sha512-TXe1TB/pSwrIQ5BIDr6NCAYjBaKgLN6cP5DlAihywHzqxbM6vO8GU6qbrZNSBrtfzZnrR/4z66Vlw6rhznLnqQ==} 1362 1452 peerDependencies: 1363 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1364 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1453 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1454 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1365 1455 1366 - '@react-aria/dialog@3.5.14': 1367 - resolution: {integrity: sha512-oqDCjQ8hxe3GStf48XWBf2CliEnxlR9GgSYPHJPUc69WBj68D9rVcCW3kogJnLAnwIyf3FnzbX4wSjvUa88sAQ==} 1456 + '@react-aria/dialog@3.5.19': 1457 + resolution: {integrity: sha512-I3AJWpAWCajj8Ama8qLQ18Tc37ODyk+Ym3haYEl5L4QnuFc0dU1sMJr15fppDGIxYjwvTTfctyhaSCz+S+wpkw==} 1368 1458 peerDependencies: 1369 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1370 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1459 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1460 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1371 1461 1372 - '@react-aria/focus@3.17.1': 1373 - resolution: {integrity: sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==} 1374 - peerDependencies: 1375 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1376 - 1377 - '@react-aria/focus@3.18.1': 1378 - resolution: {integrity: sha512-N0Cy61WCIv+57mbqC7hiZAsB+3rF5n4JKabxUmg/2RTJL6lq7hJ5N4gx75ymKxkN8GnVDwt4pKZah48Wopa5jw==} 1462 + '@react-aria/focus@3.18.4': 1463 + resolution: {integrity: sha512-91J35077w9UNaMK1cpMUEFRkNNz0uZjnSwiyBCFuRdaVuivO53wNC9XtWSDNDdcO5cGy87vfJRVAiyoCn/mjqA==} 1379 1464 peerDependencies: 1380 1465 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1381 1466 1382 - '@react-aria/form@3.0.5': 1383 - resolution: {integrity: sha512-n290jRwrrRXO3fS82MyWR+OKN7yznVesy5Q10IclSTVYHHI3VI53xtAPr/WzNjJR1um8aLhOcDNFKwnNIUUCsQ==} 1467 + '@react-aria/focus@3.19.0': 1468 + resolution: {integrity: sha512-hPF9EXoUQeQl1Y21/rbV2H4FdUR2v+4/I0/vB+8U3bT1CJ+1AFj1hc/rqx2DqEwDlEwOHN+E4+mRahQmlybq0A==} 1384 1469 peerDependencies: 1385 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1470 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1386 1471 1387 - '@react-aria/form@3.0.7': 1388 - resolution: {integrity: sha512-VIsKP/KytJPOLRQl0NxWWS1bQELPBuW3vRjmmhBrtgPFmp0uCLhjPBkP6A4uIVj1E/JtAocyHN3DNq4+IJGQCg==} 1472 + '@react-aria/form@3.0.10': 1473 + resolution: {integrity: sha512-hWBrqEXxBxcpYTJv0telQKaiu2728EUFHta8/RGBqJ4+MhKKxI7+PnLoms78IuiK0MCYvukHfun1fuQvK+8jsg==} 1389 1474 peerDependencies: 1390 1475 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1391 1476 1392 - '@react-aria/grid@3.10.1': 1393 - resolution: {integrity: sha512-7dSgiYVQapBtPV4SIit+9fJ1qoEjtp+PXffJkWAPtGbg/jJ4b0jcVzykH7ARD4w/6jAJN/oVSfrKZqFPoLAd9w==} 1477 + '@react-aria/form@3.0.11': 1478 + resolution: {integrity: sha512-oXzjTiwVuuWjZ8muU0hp3BrDH5qjVctLOF50mjPvqUbvXQTHhoDxWweyIXPQjGshaqBd2w4pWaE4A2rG2O/apw==} 1479 + peerDependencies: 1480 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1481 + 1482 + '@react-aria/form@3.0.8': 1483 + resolution: {integrity: sha512-8S2QiyUdAgK43M3flohI0R+2rTyzH088EmgeRArA8euvJTL16cj/oSOKMEgWVihjotJ9n6awPb43ZhKboyNsMg==} 1394 1484 peerDependencies: 1395 1485 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1396 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1397 1486 1398 - '@react-aria/i18n@3.11.1': 1399 - resolution: {integrity: sha512-vuiBHw1kZruNMYeKkTGGnmPyMnM5T+gT8bz97H1FqIq1hQ6OPzmtBZ6W6l6OIMjeHI5oJo4utTwfZl495GALFQ==} 1487 + '@react-aria/grid@3.11.0': 1488 + resolution: {integrity: sha512-lN5FpQgu2Rq0CzTPWmzRpq6QHcMmzsXYeClsgO3108uVp1/genBNAObYVTxGOKe/jb9q99trz8EtIn05O6KN1g==} 1400 1489 peerDependencies: 1401 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1490 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1491 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1402 1492 1403 - '@react-aria/i18n@3.12.1': 1404 - resolution: {integrity: sha512-0q3gyogF9Ekah+9LOo6tcfshxsk2Ope+KdbtFHJVhznedMxn6RpHGcVur5ImbQ1dYafA5CmjBUGJW70b56+BGA==} 1493 + '@react-aria/i18n@3.12.3': 1494 + resolution: {integrity: sha512-0Tp/4JwnCVNKDfuknPF+/xf3/woOc8gUjTU2nCjO3mCVb4FU7KFtjxQ2rrx+6hpIVG6g+N9qfMjRa/ggVH0CJg==} 1405 1495 peerDependencies: 1406 1496 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1407 1497 1408 - '@react-aria/interactions@3.21.3': 1409 - resolution: {integrity: sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==} 1498 + '@react-aria/i18n@3.12.4': 1499 + resolution: {integrity: sha512-j9+UL3q0Ls8MhXV9gtnKlyozq4aM95YywXqnmJtzT1rYeBx7w28hooqrWkCYLfqr4OIryv1KUnPiCSLwC2OC7w==} 1410 1500 peerDependencies: 1411 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1501 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1412 1502 1413 - '@react-aria/interactions@3.22.1': 1414 - resolution: {integrity: sha512-5TLzQaDAQQ5C70yG8GInbO4wIylKY67RfTIIwQPGR/4n5OIjbUD8BOj3NuSsuZ/frUPaBXo1VEBBmSO23fxkjw==} 1503 + '@react-aria/interactions@3.22.4': 1504 + resolution: {integrity: sha512-E0vsgtpItmknq/MJELqYJwib+YN18Qag8nroqwjk1qOnBa9ROIkUhWJerLi1qs5diXq9LHKehZDXRlwPvdEFww==} 1415 1505 peerDependencies: 1416 1506 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1417 1507 1418 - '@react-aria/label@3.7.10': 1419 - resolution: {integrity: sha512-e5XVHA+OUK0aIwr4nHcnIj0z1kUryGaJWYYD2OGkkIltyUCKmwpRqdx8LQYbO4HGsJhvC3hJgidFdGcQwHHPYw==} 1508 + '@react-aria/interactions@3.22.5': 1509 + resolution: {integrity: sha512-kMwiAD9E0TQp+XNnOs13yVJghiy8ET8L0cbkeuTgNI96sOAp/63EJ1FSrDf17iD8sdjt41LafwX/dKXW9nCcLQ==} 1420 1510 peerDependencies: 1421 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1511 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1422 1512 1423 - '@react-aria/label@3.7.8': 1424 - resolution: {integrity: sha512-MzgTm5+suPA3KX7Ug6ZBK2NX9cin/RFLsv1BdafJ6CZpmUSpWnGE/yQfYUB7csN7j31OsZrD3/P56eShYWAQfg==} 1513 + '@react-aria/label@3.7.12': 1514 + resolution: {integrity: sha512-u9xT90lAlgb7xiv+p0md9QwCHz65XL7tjS5e29e88Rs3ptkv3aQubTqxVOUTEwzbNUT4A1QqTjUm1yfHewIRUw==} 1425 1515 peerDependencies: 1426 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1516 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1427 1517 1428 - '@react-aria/link@3.7.1': 1429 - resolution: {integrity: sha512-a4IaV50P3fXc7DQvEIPYkJJv26JknFbRzFT5MJOMgtzuhyJoQdILEUK6XHYjcSSNCA7uLgzpojArVk5Hz3lCpw==} 1518 + '@react-aria/label@3.7.13': 1519 + resolution: {integrity: sha512-brSAXZVTey5RG/Ex6mTrV/9IhGSQFU4Al34qmjEDho+Z2qT4oPwf8k7TRXWWqzOU0ugYxekYbsLd2zlN3XvWcg==} 1430 1520 peerDependencies: 1431 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1521 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1432 1522 1433 - '@react-aria/link@3.7.3': 1434 - resolution: {integrity: sha512-dOwzxzo7LF4djBfRC8GcIhuTpDkNUIMT6ykQRV1a3749kgrr10YLascsO/l66k60i2k0T2oClkzfefYEK6WZeA==} 1523 + '@react-aria/link@3.7.6': 1524 + resolution: {integrity: sha512-8buJznRWoOud8ApygUAz7TsshXNs6HDGB6YOYEJxy0WTKILn0U5NUymw2PWC14+bWRPelHMKmi6vbFBrJWzSzQ==} 1435 1525 peerDependencies: 1436 1526 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1437 1527 1438 - '@react-aria/listbox@3.12.1': 1439 - resolution: {integrity: sha512-7JiUp0NGykbv/HgSpmTY1wqhuf/RmjFxs1HZcNaTv8A+DlzgJYc7yQqFjP3ZA/z5RvJFuuIxggIYmgIFjaRYdA==} 1528 + '@react-aria/link@3.7.7': 1529 + resolution: {integrity: sha512-eVBRcHKhNSsATYWv5wRnZXRqPVcKAWWakyvfrYePIKpC3s4BaHZyTGYdefk8ZwZdEOuQZBqLMnjW80q1uhtkuA==} 1440 1530 peerDependencies: 1441 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1442 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1531 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1443 1532 1444 - '@react-aria/listbox@3.13.1': 1445 - resolution: {integrity: sha512-b5Nu+5d5shJbxpy4s6OXvMlMzm+PVbs3L6CtoHlsKe8cAlSWD340vPHCOGYLwZApIBewepOBvRWgeAF8IDI04w==} 1533 + '@react-aria/listbox@3.13.5': 1534 + resolution: {integrity: sha512-tn32L/PIELIPYfDWCJ3OBRvvb/jCEvIzs6IYs8xCISV5W4853Je/WnA8wumWnz07U9sODYFmHUx2ThO7Z7dH7Q==} 1446 1535 peerDependencies: 1447 1536 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1448 1537 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1449 1538 1450 - '@react-aria/live-announcer@3.3.4': 1451 - resolution: {integrity: sha512-w8lxs35QrRrn6pBNzVfyGOeqWdxeVKf9U6bXIVwhq7rrTqRULL8jqy8RJIMfIs1s8G5FpwWYjyBOjl2g5Cu1iA==} 1452 - 1453 - '@react-aria/menu@3.14.1': 1454 - resolution: {integrity: sha512-BYliRb38uAzq05UOFcD5XkjA5foQoXRbcH3ZufBsc4kvh79BcP1PMW6KsXKGJ7dC/PJWUwCui6QL1kUg8PqMHA==} 1539 + '@react-aria/listbox@3.13.6': 1540 + resolution: {integrity: sha512-6hEXEXIZVau9lgBZ4VVjFR3JnGU+fJaPmV3HP0UZ2ucUptfG0MZo24cn+ZQJsWiuaCfNFv5b8qribiv+BcO+Kg==} 1455 1541 peerDependencies: 1456 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1457 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1542 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1543 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1544 + 1545 + '@react-aria/live-announcer@3.4.1': 1546 + resolution: {integrity: sha512-4X2mcxgqLvvkqxv2l1n00jTzUxxe0kkLiapBGH1LHX/CxA1oQcHDqv8etJ2ZOwmS/MSBBiWnv3DwYHDOF6ubig==} 1458 1547 1459 - '@react-aria/menu@3.15.1': 1460 - resolution: {integrity: sha512-ZBTMZiJ17j6t7epcsjd0joAzsMKO31KLJHPtWAEfk1JkBxrMoirISPN8O1CeK/uBX++VaWSrDZfFe1EjrOwKuA==} 1548 + '@react-aria/menu@3.15.5': 1549 + resolution: {integrity: sha512-ygfS032hJSZCYYbMHnUSmUTVMaz99L9AUZ9kMa6g+k2X1t92K1gXfhYYkoClQD6+G0ch7zm0SwYFlUmRf9yOEA==} 1461 1550 peerDependencies: 1462 1551 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1463 1552 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1464 1553 1465 - '@react-aria/overlays@3.22.1': 1466 - resolution: {integrity: sha512-GHiFMWO4EQ6+j6b5QCnNoOYiyx1Gk8ZiwLzzglCI4q1NY5AG2EAmfU4Z1+Gtrf2S5Y0zHbumC7rs9GnPoGLUYg==} 1554 + '@react-aria/menu@3.16.0': 1555 + resolution: {integrity: sha512-TNk+Vd3TbpBPUxEloAdHRTaRxf9JBK7YmkHYiq0Yj5Lc22KS0E2eTyhpPM9xJvEWN2TlC5TEvNfdyui2kYWFFQ==} 1467 1556 peerDependencies: 1468 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1469 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1557 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1558 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1470 1559 1471 - '@react-aria/overlays@3.23.1': 1472 - resolution: {integrity: sha512-qNV3pGThvRXjhdHCfqN9Eg4uD+nFm2DoK6d5e9LFd1+xCkKbT88afDBIcLmeG7fgfmukb1sNmzCJQJt8Svk54g==} 1560 + '@react-aria/overlays@3.23.4': 1561 + resolution: {integrity: sha512-MZUW6SUlTWOwKuFTqUTxW5BnvdW3Y9cEwanWuz98NX3ST7JYe/3ZcZhb37/fGW4uoGHnQ9icEwVf0rbMrK2STg==} 1473 1562 peerDependencies: 1474 1563 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1475 1564 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1476 1565 1477 - '@react-aria/progress@3.4.13': 1478 - resolution: {integrity: sha512-YBV9bOO5JzKvG8QCI0IAA00o6FczMgIDiK8Q9p5gKorFMatFUdRayxlbIPoYHMi+PguLil0jHgC7eOyaUcrZ0g==} 1566 + '@react-aria/overlays@3.24.0': 1567 + resolution: {integrity: sha512-0kAXBsMNTc/a3M07tK9Cdt/ea8CxTAEJ223g8YgqImlmoBBYAL7dl5G01IOj67TM64uWPTmZrOklBchHWgEm3A==} 1479 1568 peerDependencies: 1480 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1569 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1570 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1481 1571 1482 - '@react-aria/radio@3.10.4': 1483 - resolution: {integrity: sha512-3fmoMcQtCpgjTwJReFjnvIE/C7zOZeCeWUn4JKDqz9s1ILYsC3Rk5zZ4q66tFn6v+IQnecrKT52wH6+hlVLwTA==} 1572 + '@react-aria/progress@3.4.17': 1573 + resolution: {integrity: sha512-5+01WNibLoNS5KcfU5p6vg7Lhz17plqqzv/uITx28zzj3saaj0VLR7n57Ig2fXe8ZEQoUS89BS3sIEsIf96S1A==} 1484 1574 peerDependencies: 1485 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1575 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1486 1576 1487 - '@react-aria/selection@3.18.1': 1488 - resolution: {integrity: sha512-GSqN2jX6lh7v+ldqhVjAXDcrWS3N4IsKXxO6L6Ygsye86Q9q9Mq9twWDWWu5IjHD6LoVZLUBCMO+ENGbOkyqeQ==} 1577 + '@react-aria/radio@3.10.9': 1578 + resolution: {integrity: sha512-XnU7zGTEku1mPvJweX4I3ifwEBtglEWYoO4CZGvA3eXj39X8iGwNZXUst1pdk2ykWUKbtwrmsWA6zG2OAGODYw==} 1489 1579 peerDependencies: 1490 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1491 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1580 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1492 1581 1493 - '@react-aria/selection@3.19.1': 1494 - resolution: {integrity: sha512-mbExvq2Omi60sTWFGjwcNz1ja2P8VDsxWAqSypHRTyqXhtgqbv8V/v8Gp+7BmVPH1YHcbhztl6rvUZTDOSszzw==} 1582 + '@react-aria/selection@3.20.1': 1583 + resolution: {integrity: sha512-My0w8UC/7PAkz/1yZUjr2VRuzDZz1RrbgTqP36j5hsJx8RczDTjI4TmKtQNKG0ggaP4w83G2Og5JPTq3w3LMAw==} 1495 1584 peerDependencies: 1496 1585 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1497 1586 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1498 1587 1499 - '@react-aria/slider@3.7.8': 1500 - resolution: {integrity: sha512-MYvPcM0K8jxEJJicUK2+WxUkBIM/mquBxOTOSSIL3CszA80nXIGVnLlCUnQV3LOUzpWtabbWaZokSPtGgOgQOw==} 1588 + '@react-aria/selection@3.21.0': 1589 + resolution: {integrity: sha512-52JJ6hlPcM+gt0VV3DBmz6Kj1YAJr13TfutrKfGWcK36LvNCBm1j0N+TDqbdnlp8Nue6w0+5FIwZq44XPYiBGg==} 1501 1590 peerDependencies: 1502 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1591 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1592 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1503 1593 1504 - '@react-aria/spinbutton@3.6.7': 1505 - resolution: {integrity: sha512-OCimp4yXoFIgh6WAMOls5DDDRDRO75ZFic3YA6wLWTRNHxo1Lj8S90i1A6pakY6bi4hdBCKmj4DnFSNKAw1iWg==} 1594 + '@react-aria/slider@3.7.13': 1595 + resolution: {integrity: sha512-yGlIpoOUKUoP0M3iI8ZHU001NASBOeZJSIQNfoS7HiqSR3bz+6BX7DRAM6B+CPHJleUtrdQ6JjO/8V8ZUV2kNQ==} 1506 1596 peerDependencies: 1507 1597 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1508 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1509 1598 1510 - '@react-aria/ssr@3.9.4': 1511 - resolution: {integrity: sha512-4jmAigVq409qcJvQyuorsmBR4+9r3+JEC60wC+Y0MZV0HCtTmm8D9guYXlJMdx0SSkgj0hHAyFm/HvPNFofCoQ==} 1512 - engines: {node: '>= 12'} 1599 + '@react-aria/spinbutton@3.6.10': 1600 + resolution: {integrity: sha512-nhYEYk7xUNOZDaqiQ5w/nHH9ouqjJbabTWXH+KK7UR1oVGfo4z1wG94l8KWF3Z6SGGnBxzLJyTBguZ4g9aYTSg==} 1513 1601 peerDependencies: 1514 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1602 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1603 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1515 1604 1516 1605 '@react-aria/ssr@3.9.5': 1517 1606 resolution: {integrity: sha512-xEwGKoysu+oXulibNUSkXf8itW0npHHTa6c4AyYeZIJyRoegeteYuFpZUBPtIDE8RfHdNsSmE1ssOkxRnwbkuQ==} ··· 1519 1608 peerDependencies: 1520 1609 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1521 1610 1522 - '@react-aria/switch@3.6.4': 1523 - resolution: {integrity: sha512-2nVqz4ZuJyof47IpGSt3oZRmp+EdS8wzeDYgf42WHQXrx4uEOk1mdLJ20+NnsYhj/2NHZsvXVrjBeKMjlMs+0w==} 1611 + '@react-aria/ssr@3.9.6': 1612 + resolution: {integrity: sha512-iLo82l82ilMiVGy342SELjshuWottlb5+VefO3jOQqQRNYnJBFpUSadswDPbRimSgJUZuFwIEYs6AabkP038fA==} 1613 + engines: {node: '>= 12'} 1524 1614 peerDependencies: 1525 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1615 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1526 1616 1527 - '@react-aria/table@3.14.1': 1528 - resolution: {integrity: sha512-WaPgQe4zQF5OaluO5rm+Y2nEoFR63vsLd4BT4yjK1uaFhKhDY2Zk+1SCVQvBLLKS4WK9dhP05nrNzT0vp/ZPOw==} 1617 + '@react-aria/ssr@3.9.7': 1618 + resolution: {integrity: sha512-GQygZaGlmYjmYM+tiNBA5C6acmiDWF52Nqd40bBp0Znk4M4hP+LTmI0lpI1BuKMw45T8RIhrAsICIfKwZvi2Gg==} 1619 + engines: {node: '>= 12'} 1529 1620 peerDependencies: 1530 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1531 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1621 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1532 1622 1533 - '@react-aria/tabs@3.9.1': 1534 - resolution: {integrity: sha512-S5v/0sRcOaSXaJYZuuy1ZVzYc7JD4sDyseG1133GjyuNjJOFHgoWMb+b4uxNIJbZxnLgynn/ZDBZSO+qU+fIxw==} 1623 + '@react-aria/switch@3.6.9': 1624 + resolution: {integrity: sha512-w7xIywpR6llm22DXYOObZ2Uqvsw+gNmxdJ86h8+YRtpSkFnPMhXtTMv3RXpEGYhPTt/YDIqfxiluF1E2IHGwIA==} 1535 1625 peerDependencies: 1536 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1537 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1626 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1538 1627 1539 - '@react-aria/textfield@3.14.5': 1540 - resolution: {integrity: sha512-hj7H+66BjB1iTKKaFXwSZBZg88YT+wZboEXZ0DNdQB2ytzoz/g045wBItUuNi4ZjXI3P+0AOZznVMYadWBAmiA==} 1628 + '@react-aria/table@3.15.5': 1629 + resolution: {integrity: sha512-bdNZF0ZoNOfyOEIK/ctv0llacaCNk8mv+GGy8mwh5bZeJjd8KuDIpYQtZJYvf2YVvPYRWyXRhF0/B229m65f/g==} 1541 1630 peerDependencies: 1542 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1631 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1632 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1543 1633 1544 - '@react-aria/textfield@3.14.7': 1545 - resolution: {integrity: sha512-1cWCG6vkjlwJuRTXKbKl9P0Q/0Li5pnMafZqDDWfDOlkS5dFGxYG6QFfoaYp7N6XMoNkXiculnCssfrQ+8hWgA==} 1634 + '@react-aria/tabs@3.9.7': 1635 + resolution: {integrity: sha512-f78P2Y9ZCYtwOnteku9mPVIk21xSSREYWaQPtA9ebSgVbeR5ya6RpaX9ISc9cd0HEF3Av+hZYyS1pNXXWymv9g==} 1546 1636 peerDependencies: 1547 1637 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1638 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1548 1639 1549 - '@react-aria/toggle@3.10.6': 1550 - resolution: {integrity: sha512-AGlbtB1b8grrtjbiW5Au0LKYzxR83RHbHhaUkFwajyYRGyuEzr3Y03OiveoPB+DayA8Gz3H1ZVmW++8JZQOWHw==} 1640 + '@react-aria/textfield@3.14.10': 1641 + resolution: {integrity: sha512-vG44FgxwfJUF2S6tRG+Sg646DDEgs0CO9RYniafEOHz8rwcNIH3lML7n8LAfzQa+BjBY28+UF0wmqEvd6VCzCQ==} 1551 1642 peerDependencies: 1552 1643 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1553 1644 1554 - '@react-aria/tooltip@3.7.4': 1555 - resolution: {integrity: sha512-+XRx4HlLYqWY3fB8Z60bQi/rbWDIGlFUtXYbtoa1J+EyRWfhpvsYImP8qeeNO/vgjUtDy1j9oKa8p6App9mBMQ==} 1645 + '@react-aria/textfield@3.15.0': 1646 + resolution: {integrity: sha512-V5mg7y1OR6WXYHdhhm4FC7QyGc9TideVRDFij1SdOJrIo5IFB7lvwpOS0GmgwkVbtr71PTRMjZnNbrJUFU6VNA==} 1556 1647 peerDependencies: 1557 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1648 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1558 1649 1559 - '@react-aria/utils@3.24.1': 1560 - resolution: {integrity: sha512-O3s9qhPMd6n42x9sKeJ3lhu5V1Tlnzhu6Yk8QOvDuXf7UGuUjXf9mzfHJt1dYzID4l9Fwm8toczBzPM9t0jc8Q==} 1650 + '@react-aria/toggle@3.10.10': 1651 + resolution: {integrity: sha512-QwMT/vTNrbrILxWVHfd9zVQ3mV2NdBwyRu+DphVQiFAXcmc808LEaIX2n0lI6FCsUDC9ZejCyvzd91/YemdZ1Q==} 1561 1652 peerDependencies: 1562 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1653 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1563 1654 1564 - '@react-aria/utils@3.25.1': 1565 - resolution: {integrity: sha512-5Uj864e7T5+yj78ZfLnfHqmypLiqW2mN+nsdslog2z5ssunTqjolVeM15ootXskjISlZ7MojLpq97kIC4nlnAw==} 1655 + '@react-aria/tooltip@3.7.9': 1656 + resolution: {integrity: sha512-TqVJ7YqaP/enxNyA1QGr43w4nBZmOs6Hb/pROMS5afbX7gHgMVFn0lTRc6DC2cvcfgYc4WICs2QiQMniZt/E7A==} 1566 1657 peerDependencies: 1567 1658 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1568 1659 1569 - '@react-aria/visually-hidden@3.8.12': 1570 - resolution: {integrity: sha512-Bawm+2Cmw3Xrlr7ARzl2RLtKh0lNUdJ0eNqzWcyx4c0VHUAWtThmH5l+HRqFUGzzutFZVo89SAy40BAbd0gjVw==} 1660 + '@react-aria/utils@3.24.1': 1661 + resolution: {integrity: sha512-O3s9qhPMd6n42x9sKeJ3lhu5V1Tlnzhu6Yk8QOvDuXf7UGuUjXf9mzfHJt1dYzID4l9Fwm8toczBzPM9t0jc8Q==} 1571 1662 peerDependencies: 1572 1663 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1573 1664 1574 - '@react-aria/visually-hidden@3.8.14': 1575 - resolution: {integrity: sha512-DV3yagbAgO4ywQTq6D/AxcIaTC8c77r/SxlIMhQBMQ6vScJWTCh6zFG55wmLe3NKqvRrowv1OstlmYfZQ4v/XA==} 1665 + '@react-aria/utils@3.26.0': 1666 + resolution: {integrity: sha512-LkZouGSjjQ0rEqo4XJosS4L3YC/zzQkfRM3KoqK6fUOmUJ9t0jQ09WjiF+uOoG9u+p30AVg3TrZRUWmoTS+koQ==} 1667 + peerDependencies: 1668 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1669 + 1670 + '@react-aria/visually-hidden@3.8.17': 1671 + resolution: {integrity: sha512-WFgny1q2CbxxU6gu46TGQXf1DjsnuSk+RBDP4M7bm1mUVZzoCp7U7AtjNmsBrWg0NejxUdgD7+7jkHHCQ91qRA==} 1576 1672 peerDependencies: 1577 1673 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1578 1674 1579 - '@react-stately/calendar@3.5.1': 1580 - resolution: {integrity: sha512-7l7QhqGUJ5AzWHfvZzbTe3J4t72Ht5BmhW4hlVI7flQXtfrmYkVtl3ZdytEZkkHmWGYZRW9b4IQTQGZxhtlElA==} 1675 + '@react-aria/visually-hidden@3.8.18': 1676 + resolution: {integrity: sha512-l/0igp+uub/salP35SsNWq5mGmg3G5F5QMS1gDZ8p28n7CgjvzyiGhJbbca7Oxvaw1HRFzVl9ev+89I7moNnFQ==} 1581 1677 peerDependencies: 1582 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1678 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1583 1679 1584 - '@react-stately/checkbox@3.6.5': 1585 - resolution: {integrity: sha512-IXV3f9k+LtmfQLE+DKIN41Q5QB/YBLDCB1YVx5PEdRp52S9+EACD5683rjVm8NVRDwjMi2SP6RnFRk7fVb5Azg==} 1680 + '@react-stately/calendar@3.5.5': 1681 + resolution: {integrity: sha512-HzaiDRhrmaYIly8hRsjjIrydLkldiw1Ws6T/130NLQOt+VPwRW/x0R+nil42mA9LZ6oV0XN0NpmG5tn7TaKRGw==} 1586 1682 peerDependencies: 1587 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1683 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1588 1684 1589 - '@react-stately/collections@3.10.7': 1590 - resolution: {integrity: sha512-KRo5O2MWVL8n3aiqb+XR3vP6akmHLhLWYZEmPKjIv0ghQaEebBTrN3wiEjtd6dzllv0QqcWvDLM1LntNfJ2TsA==} 1685 + '@react-stately/checkbox@3.6.9': 1686 + resolution: {integrity: sha512-JrY3ecnK/SSJPxw+qhGhg3YV4e0CpUcPDrVwY3mSiAE932DPd19xr+qVCknJ34H7JYYt/q0l2z0lmgPnl96RTg==} 1591 1687 peerDependencies: 1592 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1688 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1593 1689 1594 - '@react-stately/collections@3.10.9': 1595 - resolution: {integrity: sha512-plyrng6hOQMG8LrjArMA6ts/DgWyXln3g90/hFNbqe/hdVYF53sDVsj8Jb+5LtoYTpiAlV6eOvy1XR0vPZUf8w==} 1690 + '@react-stately/collections@3.11.0': 1691 + resolution: {integrity: sha512-TiJeJjHMPSbbeAhmCXLJNSCk0fa5XnCvEuYw6HtQzDnYiq1AD7KAwkpjC5NfKkjqF3FLXs/v9RDm/P69q6rYzw==} 1596 1692 peerDependencies: 1597 1693 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1598 1694 1599 - '@react-stately/combobox@3.8.4': 1600 - resolution: {integrity: sha512-iLVGvKRRz0TeJXZhZyK783hveHpYA6xovOSdzSD+WGYpiPXo1QrcrNoH3AE0Z2sHtorU+8nc0j58vh5PB+m2AA==} 1695 + '@react-stately/collections@3.12.0': 1696 + resolution: {integrity: sha512-MfR9hwCxe5oXv4qrLUnjidwM50U35EFmInUeFf8i9mskYwWlRYS0O1/9PZ0oF1M0cKambaRHKEy98jczgb9ycA==} 1601 1697 peerDependencies: 1602 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1698 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1603 1699 1604 - '@react-stately/datepicker@3.9.4': 1605 - resolution: {integrity: sha512-yBdX01jn6gq4NIVvHIqdjBUPo+WN8Bujc4OnPw+ZnfA4jI0eIgq04pfZ84cp1LVXW0IB0VaCu1AlQ/kvtZjfGA==} 1700 + '@react-stately/combobox@3.10.0': 1701 + resolution: {integrity: sha512-4W4HCCjjoddW/LZM3pSSeLoV7ncYXlaICKmqlBcbtLR5jY4U5Kx+pPpy3oJ1vCdjDHatIxZ0tVKEBP7vBQVeGQ==} 1606 1702 peerDependencies: 1607 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1703 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1608 1704 1609 - '@react-stately/flags@3.0.3': 1610 - resolution: {integrity: sha512-/ha7XFA0RZTQsbzSPwu3KkbNMgbvuM0GuMTYLTBWpgBrovBNTM+QqI/PfZTdHg8PwCYF4H5Y8gjdSpdulCvJFw==} 1611 - 1612 - '@react-stately/form@3.0.3': 1613 - resolution: {integrity: sha512-92YYBvlHEWUGUpXgIaQ48J50jU9XrxfjYIN8BTvvhBHdD63oWgm8DzQnyT/NIAMzdLnhkg7vP+fjG8LjHeyIAg==} 1705 + '@react-stately/datepicker@3.10.3': 1706 + resolution: {integrity: sha512-6PJW1QMwk6BQMktV9L6DA4f2rfAdLfbq3iTNLy4qxd5IfNPLMUZiJGGTj+cuqx0WcEl+q5irp+YhKBpbmhPZHg==} 1614 1707 peerDependencies: 1615 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1708 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1709 + 1710 + '@react-stately/flags@3.0.5': 1711 + resolution: {integrity: sha512-6wks4csxUwPCp23LgJSnkBRhrWpd9jGd64DjcCTNB2AHIFu7Ab1W59pJpUL6TW7uAxVxdNKjgn6D1hlBy8qWsA==} 1616 1712 1617 1713 '@react-stately/form@3.0.5': 1618 1714 resolution: {integrity: sha512-J3plwJ63HQz109OdmaTqTA8Qhvl3gcYYK7DtgKyNP6mc/Me2Q4tl2avkWoA+22NRuv5m+J8TpBk4AVHUEOwqeQ==} 1619 1715 peerDependencies: 1620 1716 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1621 1717 1622 - '@react-stately/grid@3.9.1': 1623 - resolution: {integrity: sha512-LSVIcXO/cqwG0IgDSk2juDbpARBS1IzGnsTp/8vSOejMxq5MXrwxL5hUcqNczL8Ss6aLpELm42tCS0kPm3cMKw==} 1718 + '@react-stately/form@3.0.6': 1719 + resolution: {integrity: sha512-KMsxm3/V0iCv/6ikt4JEjVM3LW2AgCzo7aNotMzRobtwIo0RwaUo7DQNY00rGgFQ3/IjzI6DcVo13D+AVE/zXg==} 1624 1720 peerDependencies: 1625 1721 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1626 1722 1627 - '@react-stately/list@3.10.5': 1628 - resolution: {integrity: sha512-fV9plO+6QDHiewsYIhboxcDhF17GO95xepC5ki0bKXo44gr14g/LSo/BMmsaMnV+1BuGdBunB05bO4QOIaigXA==} 1723 + '@react-stately/form@3.1.0': 1724 + resolution: {integrity: sha512-E2wxNQ0QaTyDHD0nJFtTSnEH9A3bpJurwxhS4vgcUmESHgjFEMLlC9irUSZKgvOgb42GAq+fHoWBsgKeTp9Big==} 1725 + peerDependencies: 1726 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1727 + 1728 + '@react-stately/grid@3.10.0': 1729 + resolution: {integrity: sha512-ii+DdsOBvCnHMgL0JvUfFwO1kiAPP19Bpdpl6zn/oOltk6F5TmnoyNrzyz+2///1hCiySI3FE1O7ujsAQs7a6Q==} 1629 1730 peerDependencies: 1630 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1731 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1631 1732 1632 - '@react-stately/list@3.10.7': 1633 - resolution: {integrity: sha512-W5PG7uG5GQV2Q59vXJE7QLKHZIoUNEx+JmHrBUCMKUgyngSpKIIEDR/R/C1b6ZJ9jMqqZA68Zlnd5iK1/mBi1A==} 1733 + '@react-stately/list@3.11.0': 1734 + resolution: {integrity: sha512-O+BxXcbtoLZWn4QIT54RoFUaM+QaJQm6s0ZBJ3Jv4ILIhukVOc55ra+aWMVlXFQSpbf6I3hyVP6cz1yyvd5Rtw==} 1634 1735 peerDependencies: 1635 1736 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1636 1737 1637 - '@react-stately/menu@3.7.1': 1638 - resolution: {integrity: sha512-mX1w9HHzt+xal1WIT2xGrTQsoLvDwuB2R1Er1MBABs//MsJzccycatcgV/J/28m6tO5M9iuFQQvLV+i1dCtodg==} 1738 + '@react-stately/list@3.11.1': 1739 + resolution: {integrity: sha512-UCOpIvqBOjwLtk7zVTYWuKU1m1Oe61Q5lNar/GwHaV1nAiSQ8/yYlhr40NkBEs9X3plEfsV28UIpzOrYnu1tPg==} 1639 1740 peerDependencies: 1640 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1741 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1641 1742 1642 - '@react-stately/menu@3.8.1': 1643 - resolution: {integrity: sha512-HzAANHg+QUpyRok0CBIL/5qb+4TARteP0q9av2tKnQWPG91iJw84phJDJrmmY55uFFax4fxBgDM9dy1t12iKgQ==} 1743 + '@react-stately/menu@3.8.3': 1744 + resolution: {integrity: sha512-sV63V+cMgzipx/N7dq5GaXoItfXIfFEpCtlk3PM2vKstlCJalszXrdo+x996bkeU96h0plB7znAlhlXOeTKzUg==} 1644 1745 peerDependencies: 1645 1746 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1646 1747 1647 - '@react-stately/overlays@3.6.7': 1648 - resolution: {integrity: sha512-6zp8v/iNUm6YQap0loaFx6PlvN8C0DgWHNlrlzMtMmNuvjhjR0wYXVaTfNoUZBWj25tlDM81ukXOjpRXg9rLrw==} 1748 + '@react-stately/menu@3.9.0': 1749 + resolution: {integrity: sha512-++sm0fzZeUs9GvtRbj5RwrP+KL9KPANp9f4SvtI3s+MP+Y/X3X7LNNePeeccGeyikB5fzMsuyvd82bRRW9IhDQ==} 1649 1750 peerDependencies: 1650 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1751 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1651 1752 1652 - '@react-stately/overlays@3.6.9': 1653 - resolution: {integrity: sha512-4chfyzKw7P2UEainm0yzjUgYwG1ovBejN88eTrn+O62x5huuMCwe0cbMxmYh4y7IhRFSee3jIJd0SP0u/+i39w==} 1753 + '@react-stately/overlays@3.6.11': 1754 + resolution: {integrity: sha512-usuxitwOx4FbmOW7Og4VM8R8ZjerbHZLLbFaxZW7pWLs7Ypway1YhJ3SWcyNTYK7NEk4o602kSoU6MSev1Vgag==} 1654 1755 peerDependencies: 1655 1756 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1656 1757 1657 - '@react-stately/radio@3.10.4': 1658 - resolution: {integrity: sha512-kCIc7tAl4L7Hu4Wt9l2jaa+MzYmAJm0qmC8G8yPMbExpWbLRu6J8Un80GZu+JxvzgDlqDyrVvyv9zFifwH/NkQ==} 1758 + '@react-stately/overlays@3.6.12': 1759 + resolution: {integrity: sha512-QinvZhwZgj8obUyPIcyURSCjTZlqZYRRCS60TF8jH8ZpT0tEAuDb3wvhhSXuYA3Xo9EHLwvLjEf3tQKKdAQArw==} 1659 1760 peerDependencies: 1660 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1761 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1661 1762 1662 - '@react-stately/select@3.6.6': 1663 - resolution: {integrity: sha512-JEpBosWNSXRexE/iReATei1EiVdTIwOWlLcCGw6K7oC/5/f+OHMsh2Kkt/c/RzM/to3vgR+Wbbqwrb712AWgYQ==} 1763 + '@react-stately/radio@3.10.8': 1764 + resolution: {integrity: sha512-VRq6Gzsbk3jzX6hdrSoDoSra9vLRsOi2pLkvW/CMrJ0GSgMwr8jjvJKnNFvYJ3eYQb20EwkarsOAfk7vPSIt/Q==} 1664 1765 peerDependencies: 1665 1766 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1666 1767 1667 - '@react-stately/selection@3.16.1': 1668 - resolution: {integrity: sha512-qmnmYaXY7IhhzmIiInec1a/yPxlPSBHka6vrWddvt0S6zN7FU5cv6sm69ONUwYwLKSoaNHgOGvZhmsTzyV0O2A==} 1768 + '@react-stately/select@3.6.9': 1769 + resolution: {integrity: sha512-vASUDv7FhEYQURzM+JIwcusPv7/x/l3zHc/oKJPvoCl3aa9pwS8hZwS82SC00o2iFnrDscfDJju4IE/cd4hucg==} 1669 1770 peerDependencies: 1670 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1771 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1671 1772 1672 - '@react-stately/slider@3.5.4': 1673 - resolution: {integrity: sha512-Jsf7K17dr93lkNKL9ij8HUcoM1sPbq8TvmibD6DhrK9If2lje+OOL8y4n4qreUnfMT56HCAeS9wCO3fg3eMyrw==} 1773 + '@react-stately/selection@3.18.0': 1774 + resolution: {integrity: sha512-6EaNNP3exxBhW2LkcRR4a3pg+3oDguZlBSqIVVR7lyahv/D8xXHRC4dX+m0mgGHJpsgjs7664Xx6c8v193TFxg==} 1674 1775 peerDependencies: 1675 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1776 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1676 1777 1677 - '@react-stately/table@3.11.8': 1678 - resolution: {integrity: sha512-EdyRW3lT1/kAVDp5FkEIi1BQ7tvmD2YgniGdLuW/l9LADo0T+oxZqruv60qpUS6sQap+59Riaxl91ClDxrJnpg==} 1778 + '@react-stately/slider@3.5.8': 1779 + resolution: {integrity: sha512-EDgbrxMq1w3+XTN72MGl3YtAG/j65EYX1Uc3Fh56K00+inJbTdRWyYTrb3NA310fXCd0WFBbzExuH2ohlKQycg==} 1679 1780 peerDependencies: 1680 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1781 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1681 1782 1682 - '@react-stately/tabs@3.6.6': 1683 - resolution: {integrity: sha512-sOLxorH2uqjAA+v1ppkMCc2YyjgqvSGeBDgtR/lyPSDd4CVMoTExszROX2dqG0c8il9RQvzFuufUtQWMY6PgSA==} 1783 + '@react-stately/table@3.12.3': 1784 + resolution: {integrity: sha512-8uGrLcNJYeMbFtzRQZFWCBj5kV+7v3jzwoKIL1j9TmYUKow1PTDMQbPJpAZLQhnC2wVMlaFVgDbedSlbBij7Zg==} 1684 1785 peerDependencies: 1685 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1786 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1686 1787 1687 - '@react-stately/toggle@3.7.4': 1688 - resolution: {integrity: sha512-CoYFe9WrhLkDP4HGDpJYQKwfiYCRBAeoBQHv+JWl5eyK61S8xSwoHsveYuEZ3bowx71zyCnNAqWRrmNOxJ4CKA==} 1788 + '@react-stately/tabs@3.6.10': 1789 + resolution: {integrity: sha512-F7wfoiNsrBy7c02AYHyE1USGgj05HQ0hp7uXmQjp2LEa+AA0NKKi3HdswTHHySxb0ZRuoEE7E7vp/gXQYx2/Ow==} 1689 1790 peerDependencies: 1690 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1791 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1691 1792 1692 - '@react-stately/toggle@3.7.6': 1693 - resolution: {integrity: sha512-xRZyrjNVu1VCd1xpg5RwmNYs9fXb+JHChoUaRcBmGCCjsPD0R5uR3iNuE17RXJtWS3/8o9IJVn90+/7NW7boOg==} 1793 + '@react-stately/toggle@3.7.8': 1794 + resolution: {integrity: sha512-ySOtkByvIY54yIu8IZ4lnvomQA0H+/mkZnd6T5fKN3tjvIzHmkUk3TAPmNInUxHX148tSW6mWwec0xvjYqEd6w==} 1694 1795 peerDependencies: 1695 1796 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1696 1797 1697 - '@react-stately/tooltip@3.4.9': 1698 - resolution: {integrity: sha512-P7CDJsdoKarz32qFwf3VNS01lyC+63gXpDZG31pUu+EO5BeQd4WKN/AH1Beuswpr4GWzxzFc1aXQgERFGVzraA==} 1798 + '@react-stately/toggle@3.8.0': 1799 + resolution: {integrity: sha512-pyt/k/J8BwE/2g6LL6Z6sMSWRx9HEJB83Sm/MtovXnI66sxJ2EfQ1OaXB7Su5PEL9OMdoQF6Mb+N1RcW3zAoPw==} 1699 1800 peerDependencies: 1700 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1801 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1701 1802 1702 - '@react-stately/tree@3.8.1': 1703 - resolution: {integrity: sha512-LOdkkruJWch3W89h4B/bXhfr0t0t1aRfEp+IMrrwdRAl23NaPqwl5ILHs4Xu5XDHqqhg8co73pHrJwUyiTWEjw==} 1803 + '@react-stately/tooltip@3.4.13': 1804 + resolution: {integrity: sha512-zQ+8FQ7Pi0Cz852dltXb6yaryjE18K3byK4tIO3e5vnrZHEGvfdxowc+v9ak5UV93kVrYoOVmfZHRcEaTXTBNA==} 1704 1805 peerDependencies: 1705 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1806 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1706 1807 1707 - '@react-stately/tree@3.8.3': 1708 - resolution: {integrity: sha512-9sRQOxkK7ZMdtSTGHx0sMabHC39PEM4tMl+IdJKkmcp60bfsm3p6LHXhha3E58jwnZaemBfUrlQmTP/E26BbGw==} 1808 + '@react-stately/tree@3.8.5': 1809 + resolution: {integrity: sha512-0/tYhsKWQQJTOZFDwh8hY3Qk6ejNFRldGrLeK5kS22UZdvsMFyh7WAi40FTCJy561/VoB0WqQI4oyNPOa9lYWg==} 1709 1810 peerDependencies: 1710 1811 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1812 + 1813 + '@react-stately/tree@3.8.6': 1814 + resolution: {integrity: sha512-lblUaxf1uAuIz5jm6PYtcJ+rXNNVkqyFWTIMx6g6gW/mYvm8GNx1G/0MLZE7E6CuDGaO9dkLSY2bB1uqyKHidA==} 1815 + peerDependencies: 1816 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1711 1817 1712 1818 '@react-stately/utils@3.10.1': 1713 1819 resolution: {integrity: sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==} ··· 1719 1825 peerDependencies: 1720 1826 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1721 1827 1722 - '@react-stately/virtualizer@3.7.1': 1723 - resolution: {integrity: sha512-voHgE6EQ+oZaLv6u2umKxakvIKNkCQuUihqKACTjdslp7SJh4Mvs3oLBI0hf0JOh+rCcFIKDvQtFwy1fXFRYBA==} 1828 + '@react-stately/utils@3.10.4': 1829 + resolution: {integrity: sha512-gBEQEIMRh5f60KCm7QKQ2WfvhB2gLUr9b72sqUdIZ2EG+xuPgaIlCBeSicvjmjBvYZwOjoOEnmIkcx2GHp/HWw==} 1724 1830 peerDependencies: 1725 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1831 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1726 1832 1727 - '@react-types/accordion@3.0.0-alpha.21': 1728 - resolution: {integrity: sha512-cbE06jH/ZoI+1898xd7ocQ/A/Rtkz8wTJAVOYgc8VRY1SYNQ/XZTGH5T6dD6aERAmiDwL/kjD7xhsE80DyaEKA==} 1833 + '@react-stately/utils@3.10.5': 1834 + resolution: {integrity: sha512-iMQSGcpaecghDIh3mZEpZfoFH3ExBwTtuBEcvZ2XnGzCgQjeYXcMdIUwAfVQLXFTdHUHGF6Gu6/dFrYsCzySBQ==} 1729 1835 peerDependencies: 1730 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1836 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1731 1837 1732 - '@react-types/breadcrumbs@3.7.5': 1733 - resolution: {integrity: sha512-lV9IDYsMiu2TgdMIjEmsOE0YWwjb3jhUNK1DCZZfq6uWuiHLgyx2EncazJBUWSjHJ4ta32j7xTuXch+8Ai6u/A==} 1838 + '@react-stately/virtualizer@4.1.0': 1839 + resolution: {integrity: sha512-MOaqpY3NloXrpCBvVUb3HL1p3Bh4YRtUq8D2ufC909u5vM6n6G5Swk1XPJ9KHfaftGhb5serwLkm2/Aha5CTbA==} 1734 1840 peerDependencies: 1735 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1841 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1736 1842 1737 - '@react-types/button@3.9.4': 1738 - resolution: {integrity: sha512-raeQBJUxBp0axNF74TXB8/H50GY8Q3eV6cEKMbZFP1+Dzr09Ngv0tJBeW0ewAxAguNH5DRoMUAUGIXtSXskVdA==} 1843 + '@react-types/accordion@3.0.0-alpha.24': 1844 + resolution: {integrity: sha512-hwDT4TJH7aHCG8m9QsTP+7xgW7x7k2TY+WHlMRr6qDS6WhTCwd41dCdagxC0SZtulzZuWqISBxZifVrh4Tynew==} 1739 1845 peerDependencies: 1740 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1846 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1741 1847 1742 - '@react-types/button@3.9.6': 1743 - resolution: {integrity: sha512-8lA+D5JLbNyQikf8M/cPP2cji91aVTcqjrGpDqI7sQnaLFikM8eFR6l1ZWGtZS5MCcbfooko77ha35SYplSQvw==} 1848 + '@react-types/breadcrumbs@3.7.8': 1849 + resolution: {integrity: sha512-+BW2a+PrY8ArZ+pKecz13oJFrUAhthvXx17o3x0BhWUhRpAdtmTYt2hjw8zNanm2j0Kvgo1HYKgvtskCRxYcOA==} 1744 1850 peerDependencies: 1745 1851 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1746 1852 1747 - '@react-types/calendar@3.4.6': 1748 - resolution: {integrity: sha512-WSntZPwtvsIYWvBQRAPvuCn55UTJBZroTvX0vQvWykJRQnPAI20G1hMQ3dNsnAL+gLZUYxBXn66vphmjUuSYew==} 1853 + '@react-types/button@3.10.0': 1854 + resolution: {integrity: sha512-rAyU+N9VaHLBdZop4zasn8IDwf9I5Q1EzHUKMtzIFf5aUlMUW+K460zI/l8UESWRSWAXK9/WPSXGxfcoCEjvAA==} 1855 + peerDependencies: 1856 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1857 + 1858 + '@react-types/button@3.10.1': 1859 + resolution: {integrity: sha512-XTtap8o04+4QjPNAshFWOOAusUTxQlBjU2ai0BTVLShQEjHhRVDBIWsI2B2FKJ4KXT6AZ25llaxhNrreWGonmA==} 1749 1860 peerDependencies: 1750 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1861 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1751 1862 1752 - '@react-types/calendar@3.4.8': 1753 - resolution: {integrity: sha512-KVampt/X4uJvWU0TsxIdgPdXIAUClGtxcDWHzuFRJ7YUYkA4rH8Lad0kQ1mVehnwOLpuba8j9GCYKorkbln0gw==} 1863 + '@react-types/calendar@3.4.10': 1864 + resolution: {integrity: sha512-PyjqxwJxSW2IpQx6y0D9O34fRCWn1gv9q0qFhgaIigIQrPg8zTE/CC7owHLxAtgCnnCt8exJ5rqi414csaHKlA==} 1754 1865 peerDependencies: 1755 1866 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1756 1867 1757 - '@react-types/checkbox@3.8.1': 1758 - resolution: {integrity: sha512-5/oVByPw4MbR/8QSdHCaalmyWC71H/QGgd4aduTJSaNi825o+v/hsN2/CH7Fq9atkLKsC8fvKD00Bj2VGaKriQ==} 1868 + '@react-types/calendar@3.5.0': 1869 + resolution: {integrity: sha512-O3IRE7AGwAWYnvJIJ80cOy7WwoJ0m8GtX/qSmvXQAjC4qx00n+b5aFNBYAQtcyc3RM5QpW6obs9BfwGetFiI8w==} 1759 1870 peerDependencies: 1760 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1871 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1761 1872 1762 - '@react-types/checkbox@3.8.3': 1763 - resolution: {integrity: sha512-f4c1mnLEt0iS1NMkyZXgT3q3AgcxzDk7w6MSONOKydcnh0xG5L2oefY14DhVDLkAuQS7jThlUFwiAs+MxiO3MA==} 1873 + '@react-types/checkbox@3.8.4': 1874 + resolution: {integrity: sha512-fvZrlQmlFNsYHZpl7GVmyYQlKdUtO5MczMSf8z3TlSiCb5Kl3ha9PsZgLhJqGuVnzB2ArIBz0eZrYa3k0PhcpA==} 1764 1875 peerDependencies: 1765 1876 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1766 1877 1767 - '@react-types/combobox@3.11.1': 1768 - resolution: {integrity: sha512-UNc3OHt5cUt5gCTHqhQIqhaWwKCpaNciD8R7eQazmHiA9fq8ROlV+7l3gdNgdhJbTf5Bu/V5ISnN7Y1xwL3zqQ==} 1878 + '@react-types/checkbox@3.9.0': 1879 + resolution: {integrity: sha512-9hbHx0Oo2Hp5a8nV8Q75LQR0DHtvOIJbFaeqESSopqmV9EZoYjtY/h0NS7cZetgahQgnqYWQi44XGooMDCsmxA==} 1769 1880 peerDependencies: 1770 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1881 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1771 1882 1772 - '@react-types/datepicker@3.7.4': 1773 - resolution: {integrity: sha512-ZfvgscvNzBJpYyVWg3nstJtA/VlWLwErwSkd1ivZYam859N30w8yH+4qoYLa6FzWLCFlrsRHyvtxlEM7lUAt5A==} 1883 + '@react-types/combobox@3.13.0': 1884 + resolution: {integrity: sha512-kH/a+Fjpr54M2JbHg9RXwMjZ9O+XVsdOuE5JCpWRibJP1Mfl1md8gY6y6zstmVY8COrSqFvMZWB+PzwaTWjTGw==} 1774 1885 peerDependencies: 1775 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1886 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1776 1887 1777 - '@react-types/dialog@3.5.12': 1778 - resolution: {integrity: sha512-JmpQbSpXltqEyYfEwoqDolABIiojeExkqolHNdQlayIsfFuSxZxNwXZPOpz58Ri/iwv21JP7K3QF0Gb2Ohxl9w==} 1888 + '@react-types/datepicker@3.8.3': 1889 + resolution: {integrity: sha512-Y4qfPRBB6uzocosCOWSYMuwiZ3YXwLWQYiFB4KCglkvHyltbNz76LgoBEnclYA5HjwosIk4XywiXvHSYry8JnQ==} 1779 1890 peerDependencies: 1780 1891 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1781 1892 1782 - '@react-types/grid@3.2.6': 1783 - resolution: {integrity: sha512-XfHenL2jEBUYrhKiPdeM24mbLRXUn79wVzzMhrNYh24nBwhsPPpxF+gjFddT3Cy8dt6tRInfT6pMEu9nsXwaHw==} 1893 + '@react-types/dialog@3.5.14': 1894 + resolution: {integrity: sha512-OXWMjrALwrlgw8aHD8SeRm/s3tbAssdaEh2h73KUSeFau3fU3n5mfKv+WnFqsEaOtN261o48l7hTlS6615H9AA==} 1784 1895 peerDependencies: 1785 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1896 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1786 1897 1787 - '@react-types/grid@3.2.8': 1788 - resolution: {integrity: sha512-6PJrpukwMqlv3IhJSDkJuVbhHM8Oe6hd2supWqd9adMXrlSP7QHt9a8SgFcFblCCTx8JzUaA0PvY5sTudcEtOQ==} 1898 + '@react-types/form@3.7.8': 1899 + resolution: {integrity: sha512-0wOS97/X0ijTVuIqik1lHYTZnk13QkvMTKvIEhM7c6YMU3vPiirBwLbT2kJiAdwLiymwcCkrBdDF1NTRG6kPFA==} 1789 1900 peerDependencies: 1790 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1901 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1791 1902 1792 - '@react-types/link@3.5.5': 1793 - resolution: {integrity: sha512-G6P5WagHDR87npN7sEuC5IIgL1GsoY4WFWKO4734i2CXRYx24G9P0Su3AX4GA3qpspz8sK1AWkaCzBMmvnunfw==} 1903 + '@react-types/grid@3.2.10': 1904 + resolution: {integrity: sha512-Z5cG0ITwqjUE4kWyU5/7VqiPl4wqMJ7kG/ZP7poAnLmwRsR8Ai0ceVn+qzp5nTA19cgURi8t3LsXn3Ar1FBoog==} 1794 1905 peerDependencies: 1795 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1906 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1796 1907 1797 - '@react-types/link@3.5.7': 1798 - resolution: {integrity: sha512-2WyaVmm1qr9UrSG3Dq6iz+2ziuVp+DH8CsYZ9CA6aNNb6U18Hxju3LTPb4a5gM0eC7W0mQGNBmrgGlAdDZEJOw==} 1908 + '@react-types/grid@3.2.9': 1909 + resolution: {integrity: sha512-eMw0d2UIZ4QTzGgD1wGGPw0cv67KjAOCp4TcwWjgDV7Wa5SVV/UvOmpnIVDyfhkG/4KRI5OR9h+isy76B726qA==} 1799 1910 peerDependencies: 1800 1911 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1801 1912 1802 - '@react-types/listbox@3.5.1': 1803 - resolution: {integrity: sha512-n5bOgD9lgfK1qaLtag9WPnu151SwXBCNn/OgGY/Br9mWRl+nPUEYtFcPX+2VCld7uThf54kwrTmzlFnaraIlcw==} 1913 + '@react-types/link@3.5.8': 1914 + resolution: {integrity: sha512-l/YGXddgAbLnIT7ekftXrK1D4n8NlLQwx0d4usyZpaxP1KwPzuwng20DxynamLc1atoKBqbUtZAnz32pe7vYgw==} 1804 1915 peerDependencies: 1805 1916 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1806 1917 1807 - '@react-types/menu@3.9.11': 1808 - resolution: {integrity: sha512-IguQVF70d7aHXgWB1Rd2a/PiIuLZ2Nt7lyayJshLcy/NLOYmgpTmTyn2WCtlA5lTfQwmQrNFf4EvnWkeljJXdA==} 1918 + '@react-types/link@3.5.9': 1919 + resolution: {integrity: sha512-JcKDiDMqrq/5Vpn+BdWQEuXit4KN4HR/EgIi3yKnNbYkLzxBoeQZpQgvTaC7NEQeZnSqkyXQo3/vMUeX/ZNIKw==} 1809 1920 peerDependencies: 1810 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1921 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1811 1922 1812 - '@react-types/menu@3.9.9': 1813 - resolution: {integrity: sha512-FamUaPVs1Fxr4KOMI0YcR2rYZHoN7ypGtgiEiJ11v/tEPjPPGgeKDxii0McCrdOkjheatLN1yd2jmMwYj6hTDg==} 1923 + '@react-types/listbox@3.5.3': 1924 + resolution: {integrity: sha512-v1QXd9/XU3CCKr2Vgs7WLcTr6VMBur7CrxHhWZQQFExsf9bgJ/3wbUdjy4aThY/GsYHiaS38EKucCZFr1QAfqA==} 1814 1925 peerDependencies: 1815 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1926 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1927 + 1928 + '@react-types/menu@3.9.12': 1929 + resolution: {integrity: sha512-1SPnkHKJdvOfwv9fEgK1DI6DYRs4D3hW2XcWlLhVXSjaC68CzOHGwFhKIKvZiDTW/11L770PRSEloIxHR09uFQ==} 1930 + peerDependencies: 1931 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1816 1932 1817 - '@react-types/overlays@3.8.7': 1818 - resolution: {integrity: sha512-zCOYvI4at2DkhVpviIClJ7bRrLXYhSg3Z3v9xymuPH3mkiuuP/dm8mUCtkyY4UhVeUTHmrQh1bzaOP00A+SSQA==} 1933 + '@react-types/menu@3.9.13': 1934 + resolution: {integrity: sha512-7SuX6E2tDsqQ+HQdSvIda1ji/+ujmR86dtS9CUu5yWX91P25ufRjZ72EvLRqClWNQsj1Xl4+2zBDLWlceznAjw==} 1819 1935 peerDependencies: 1820 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1936 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1821 1937 1822 - '@react-types/overlays@3.8.9': 1823 - resolution: {integrity: sha512-9ni9upQgXPnR+K9cWmbYWvm3ll9gH8P/XsEZprqIV5zNLMF334jADK48h4jafb1X9RFnj0WbHo6BqcSObzjTig==} 1938 + '@react-types/overlays@3.8.10': 1939 + resolution: {integrity: sha512-IcnB+VYfAJazRjWhBKZTmVMh3KTp/B1rRbcKkPx6t8djP9UQhKcohP7lAALxjJ56Jjz/GFC6rWyUcnYH0NFVRA==} 1824 1940 peerDependencies: 1825 1941 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1826 1942 1827 - '@react-types/progress@3.5.4': 1828 - resolution: {integrity: sha512-JNc246sTjasPyx5Dp7/s0rp3Bz4qlu4LrZTulZlxWyb53WgBNL7axc26CCi+I20rWL9+c7JjhrRxnLl/1cLN5g==} 1943 + '@react-types/overlays@3.8.11': 1944 + resolution: {integrity: sha512-aw7T0rwVI3EuyG5AOaEIk8j7dZJQ9m34XAztXJVZ/W2+4pDDkLDbJ/EAPnuo2xGYRGhowuNDn4tDju01eHYi+w==} 1829 1945 peerDependencies: 1830 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1946 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1831 1947 1832 - '@react-types/radio@3.8.1': 1833 - resolution: {integrity: sha512-bK0gio/qj1+0Ldu/3k/s9BaOZvnnRgvFtL3u5ky479+aLG5qf1CmYed3SKz8ErZ70JkpuCSrSwSCFf0t1IHovw==} 1948 + '@react-types/progress@3.5.7': 1949 + resolution: {integrity: sha512-EqMDHmlpoZUZzTjdejGIkSM0pS2LBI9NdadHf3bDNTycHv+5L1xpMHUg8RGOW8a3sRVLRvfN1aO9l75QZkyj+w==} 1834 1950 peerDependencies: 1835 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1951 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1836 1952 1837 - '@react-types/select@3.9.4': 1838 - resolution: {integrity: sha512-xI7dnOW2st91fPPcv6hdtrTdcfetYiqZuuVPZ5TRobY7Q10/Zqqe/KqtOw1zFKUj9xqNJe4Ov3xP5GSdcO60Eg==} 1953 + '@react-types/radio@3.8.4': 1954 + resolution: {integrity: sha512-GCuOwQL19iwKa74NAIk9hv4ivyI8oW1+ZCuc2fzyDdeQjzTIlv3qrIyShwpVy1IoI7/4DYTMZm/YXPoKhu5TTA==} 1839 1955 peerDependencies: 1840 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1956 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1841 1957 1842 - '@react-types/select@3.9.6': 1843 - resolution: {integrity: sha512-cVSFR0eJLup/ht1Uto+y8uyLmHO89J6wNh65SIHb3jeVz9oLBAedP3YNI2qB+F9qFMUcA8PBSLXIIuT6gXzLgQ==} 1958 + '@react-types/select@3.9.7': 1959 + resolution: {integrity: sha512-Jva4ixfB4EEdy+WmZkUoLiQI7vVfHPxM73VuL7XDxvAO+YKiIztDTcU720QVNhxTMmQvCxfRBXWar8aodCjLiw==} 1844 1960 peerDependencies: 1845 1961 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1846 1962 1847 - '@react-types/shared@3.23.1': 1848 - resolution: {integrity: sha512-5d+3HbFDxGZjhbMBeFHRQhexMFt4pUce3okyRtUVKbbedQFUrtXSBg9VszgF2RTeQDKDkMCIQDtz5ccP/Lk1gw==} 1963 + '@react-types/select@3.9.8': 1964 + resolution: {integrity: sha512-RGsYj2oFjXpLnfcvWMBQnkcDuKkwT43xwYWZGI214/gp/B64tJiIUgTM5wFTRAeGDX23EePkhCQF+9ctnqFd6g==} 1849 1965 peerDependencies: 1850 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1966 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1851 1967 1852 1968 '@react-types/shared@3.24.1': 1853 1969 resolution: {integrity: sha512-AUQeGYEm/zDTN6zLzdXolDxz3Jk5dDL7f506F07U8tBwxNNI3WRdhU84G0/AaFikOZzDXhOZDr3MhQMzyE7Ydw==} 1854 1970 peerDependencies: 1855 1971 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1856 1972 1857 - '@react-types/slider@3.7.5': 1858 - resolution: {integrity: sha512-bRitwQRQjQoOcKEdPMljnvm474dwrmsc6pdsVQDh/qynzr+KO9IHuYc3qPW53WVE2hMQJDohlqtCAWQXWQ5Vcg==} 1973 + '@react-types/shared@3.25.0': 1974 + resolution: {integrity: sha512-OZSyhzU6vTdW3eV/mz5i6hQwQUhkRs7xwY2d1aqPvTdMe0+2cY7Fwp45PAiwYLEj73i9ro2FxF9qC4DvHGSCgQ==} 1859 1975 peerDependencies: 1860 1976 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1861 1977 1862 - '@react-types/switch@3.5.5': 1863 - resolution: {integrity: sha512-SZx1Bd+COhAOs/RTifbZG+uq/llwba7VAKx7XBeX4LeIz1dtguy5bigOBgFTMQi4qsIVCpybSWEEl+daj4XFPw==} 1978 + '@react-types/shared@3.26.0': 1979 + resolution: {integrity: sha512-6FuPqvhmjjlpEDLTiYx29IJCbCNWPlsyO+ZUmCUXzhUv2ttShOXfw8CmeHWHftT/b2KweAWuzqSlfeXPR76jpw==} 1980 + peerDependencies: 1981 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1982 + 1983 + '@react-types/slider@3.7.7': 1984 + resolution: {integrity: sha512-lYTR9zXQV2fSEm/G3gwDENWiki1IXd/oorsgf0zu1DBi2SQDbOsLsGUXiwvD24Xy6OkUuhAqjLPPexezo7+u9g==} 1985 + peerDependencies: 1986 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1987 + 1988 + '@react-types/switch@3.5.7': 1989 + resolution: {integrity: sha512-1IKiq510rPTHumEZuhxuazuXBa2Cuxz6wBIlwf3NCVmgWEvU+uk1ETG0sH2yymjwCqhtJDKXi+qi9HSgPEDwAg==} 1990 + peerDependencies: 1991 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1992 + 1993 + '@react-types/table@3.10.2': 1994 + resolution: {integrity: sha512-YzA4hcsYfnFFpA2UyGb1KKhLpWgaj5daApqjp126tCIosl8k1KxZmhKD50cwH0Jm19lALJseqo5VdlcJtcr4qg==} 1864 1995 peerDependencies: 1865 1996 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1866 1997 1867 - '@react-types/table@3.9.5': 1868 - resolution: {integrity: sha512-fgM2j9F/UR4Anmd28CueghCgBwOZoCVyN8fjaIFPd2MN4gCwUUfANwxLav65gZk4BpwUXGoQdsW+X50L3555mg==} 1998 + '@react-types/tabs@3.3.10': 1999 + resolution: {integrity: sha512-s/Bw/HCIdWJPBw4O703ghKqhjGsIerRMIDxA88hbQYzfTDD6bkFDjCnsP2Tyy1G8Dg2rSPFUEE+k+PpLzqeEfQ==} 1869 2000 peerDependencies: 1870 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 2001 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1871 2002 1872 - '@react-types/tabs@3.3.7': 1873 - resolution: {integrity: sha512-ZdLe5xOcFX6+/ni45Dl2jO0jFATpTnoSqj6kLIS/BYv8oh0n817OjJkLf+DS3CLfNjApJWrHqAk34xNh6nRnEg==} 2003 + '@react-types/textfield@3.10.0': 2004 + resolution: {integrity: sha512-ShU3d6kLJGQjPXccVFjM3KOXdj3uyhYROqH9YgSIEVxgA9W6LRflvk/IVBamD9pJYTPbwmVzuP0wQkTDupfZ1w==} 1874 2005 peerDependencies: 1875 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 2006 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 1876 2007 1877 2008 '@react-types/textfield@3.9.3': 1878 2009 resolution: {integrity: sha512-DoAY6cYOL0pJhgNGI1Rosni7g72GAt4OVr2ltEx2S9ARmFZ0DBvdhA9lL2nywcnKMf27PEJcKMXzXc10qaHsJw==} 1879 2010 peerDependencies: 1880 2011 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 1881 2012 1882 - '@react-types/textfield@3.9.5': 1883 - resolution: {integrity: sha512-0hwZI4WXSEStPzdltKwbNUZWlgHtwbxMWE0LfqIzEW8RB7DyBflYSKzLyTBFqwUZ8j3C1gWy9c9OPSeCOq792Q==} 2013 + '@react-types/textfield@3.9.7': 2014 + resolution: {integrity: sha512-vU5+QCOF9HgWGjAmmy+cpJibVW5voFomC5POmYHokm7kivYcMMjlonsgWwg/0xXrqE2qosH3tpz4jFoEuig1NQ==} 1884 2015 peerDependencies: 1885 2016 react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1886 2017 1887 - '@react-types/tooltip@3.4.9': 1888 - resolution: {integrity: sha512-wZ+uF1+Zc43qG+cOJzioBmLUNjRa7ApdcT0LI1VvaYvH5GdfjzUJOorLX9V/vAci0XMJ50UZ+qsh79aUlw2yqg==} 2018 + '@react-types/tooltip@3.4.12': 2019 + resolution: {integrity: sha512-FwsdSQ3UDIDORanQMGMLyzSUabw4AkKhwcRdPv4d5OT8GmJr7mBdZynfcsrKLJ0fzskIypMqspoutZidsI0MQg==} 1889 2020 peerDependencies: 1890 - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 2021 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 1891 2022 1892 2023 '@rtsao/scc@1.1.0': 1893 2024 resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} ··· 1914 2045 1915 2046 '@swc/helpers@0.5.13': 1916 2047 resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} 2048 + 2049 + '@tanstack/react-virtual@3.10.9': 2050 + resolution: {integrity: sha512-OXO2uBjFqA4Ibr2O3y0YMnkrRWGVNqcvHQXmGvMu6IK8chZl3PrDxFXdGZ2iZkSrKh3/qUYoFqYe+Rx23RoU0g==} 2051 + peerDependencies: 2052 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 2053 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 2054 + 2055 + '@tanstack/virtual-core@3.10.9': 2056 + resolution: {integrity: sha512-kBknKOKzmeR7lN+vSadaKWXaLS0SZZG+oqpQ/k80Q6g9REn6zRHS/ZYdrIzHnpHgy/eWs00SujveUN/GJT2qTw==} 1917 2057 1918 2058 '@types/d3-array@3.2.1': 1919 2059 resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} ··· 1972 2112 '@types/ms@0.7.34': 1973 2113 resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 1974 2114 1975 - '@types/node@22.9.3': 1976 - resolution: {integrity: sha512-F3u1fs/fce3FFk+DAxbxc78DF8x0cY09RRL8GnXLmkJ1jvx3TtPdWoTT5/NiYfI5ASqXBmfqJi9dZ3gxMx4lzw==} 2115 + '@types/node@22.10.1': 2116 + resolution: {integrity: sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==} 1977 2117 1978 - '@types/prop-types@15.7.12': 1979 - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} 2118 + '@types/react-dom@19.0.1': 2119 + resolution: {integrity: sha512-hljHij7MpWPKF6u5vojuyfV0YA4YURsQG7KT6SzV0Zs2BXAtgdTxG6A229Ub/xiWV4w/7JL8fi6aAyjshH4meA==} 1980 2120 1981 - '@types/react-dom@18.3.1': 1982 - resolution: {integrity: sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==} 1983 - 1984 - '@types/react@18.3.12': 1985 - resolution: {integrity: sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==} 2121 + '@types/react@19.0.1': 2122 + resolution: {integrity: sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==} 1986 2123 1987 2124 '@types/unist@2.0.10': 1988 2125 resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} ··· 2001 2138 typescript: 2002 2139 optional: true 2003 2140 2141 + '@typescript-eslint/eslint-plugin@8.17.0': 2142 + resolution: {integrity: sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==} 2143 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2144 + peerDependencies: 2145 + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 2146 + eslint: ^8.57.0 || ^9.0.0 2147 + typescript: '*' 2148 + peerDependenciesMeta: 2149 + typescript: 2150 + optional: true 2151 + 2004 2152 '@typescript-eslint/parser@8.15.0': 2005 2153 resolution: {integrity: sha512-7n59qFpghG4uazrF9qtGKBZXn7Oz4sOMm8dwNWDQY96Xlm2oX67eipqcblDj+oY1lLCbf1oltMZFpUso66Kl1A==} 2154 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2155 + peerDependencies: 2156 + eslint: ^8.57.0 || ^9.0.0 2157 + typescript: '*' 2158 + peerDependenciesMeta: 2159 + typescript: 2160 + optional: true 2161 + 2162 + '@typescript-eslint/parser@8.17.0': 2163 + resolution: {integrity: sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==} 2006 2164 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2007 2165 peerDependencies: 2008 2166 eslint: ^8.57.0 || ^9.0.0 ··· 2015 2173 resolution: {integrity: sha512-QRGy8ADi4J7ii95xz4UoiymmmMd/zuy9azCaamnZ3FM8T5fZcex8UfJcjkiEZjJSztKfEBe3dZ5T/5RHAmw2mA==} 2016 2174 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2017 2175 2176 + '@typescript-eslint/scope-manager@8.17.0': 2177 + resolution: {integrity: sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==} 2178 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2179 + 2018 2180 '@typescript-eslint/type-utils@8.15.0': 2019 2181 resolution: {integrity: sha512-UU6uwXDoI3JGSXmcdnP5d8Fffa2KayOhUUqr/AiBnG1Gl7+7ut/oyagVeSkh7bxQ0zSXV9ptRh/4N15nkCqnpw==} 2020 2182 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} ··· 2025 2187 typescript: 2026 2188 optional: true 2027 2189 2190 + '@typescript-eslint/type-utils@8.17.0': 2191 + resolution: {integrity: sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==} 2192 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2193 + peerDependencies: 2194 + eslint: ^8.57.0 || ^9.0.0 2195 + typescript: '*' 2196 + peerDependenciesMeta: 2197 + typescript: 2198 + optional: true 2199 + 2028 2200 '@typescript-eslint/types@8.15.0': 2029 2201 resolution: {integrity: sha512-n3Gt8Y/KyJNe0S3yDCD2RVKrHBC4gTUcLTebVBXacPy091E6tNspFLKRXlk3hwT4G55nfr1n2AdFqi/XMxzmPQ==} 2030 2202 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2031 2203 2204 + '@typescript-eslint/types@8.17.0': 2205 + resolution: {integrity: sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==} 2206 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2207 + 2032 2208 '@typescript-eslint/typescript-estree@8.15.0': 2033 2209 resolution: {integrity: sha512-1eMp2JgNec/niZsR7ioFBlsh/Fk0oJbhaqO0jRyQBMgkz7RrFfkqF9lYYmBoGBaSiLnu8TAPQTwoTUiSTUW9dg==} 2034 2210 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} ··· 2038 2214 typescript: 2039 2215 optional: true 2040 2216 2217 + '@typescript-eslint/typescript-estree@8.17.0': 2218 + resolution: {integrity: sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==} 2219 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2220 + peerDependencies: 2221 + typescript: '*' 2222 + peerDependenciesMeta: 2223 + typescript: 2224 + optional: true 2225 + 2041 2226 '@typescript-eslint/utils@8.15.0': 2042 2227 resolution: {integrity: sha512-k82RI9yGhr0QM3Dnq+egEpz9qB6Un+WLYhmoNcvl8ltMEededhh7otBVVIDDsEEttauwdY/hQoSsOv13lxrFzQ==} 2043 2228 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} ··· 2048 2233 typescript: 2049 2234 optional: true 2050 2235 2236 + '@typescript-eslint/utils@8.17.0': 2237 + resolution: {integrity: sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==} 2238 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2239 + peerDependencies: 2240 + eslint: ^8.57.0 || ^9.0.0 2241 + typescript: '*' 2242 + peerDependenciesMeta: 2243 + typescript: 2244 + optional: true 2245 + 2051 2246 '@typescript-eslint/visitor-keys@8.15.0': 2052 2247 resolution: {integrity: sha512-h8vYOulWec9LhpwfAdZf2bjr8xIp0KNKnpgqSz0qqYYKAW/QZKw3ktRndbiAtUz4acH4QLQavwZBYCc0wulA/Q==} 2248 + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2249 + 2250 + '@typescript-eslint/visitor-keys@8.17.0': 2251 + resolution: {integrity: sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==} 2053 2252 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2054 2253 2055 2254 '@ungap/structured-clone@1.2.0': ··· 2278 2477 resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} 2279 2478 engines: {node: '>=0.10.0'} 2280 2479 2281 - class-variance-authority@0.7.0: 2282 - resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==} 2480 + class-variance-authority@0.7.1: 2481 + resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==} 2283 2482 2284 2483 client-only@0.0.1: 2285 2484 resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} ··· 2288 2487 resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} 2289 2488 engines: {node: '>=6'} 2290 2489 2291 - clsx@2.0.0: 2292 - resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==} 2293 - engines: {node: '>=6'} 2294 - 2295 2490 clsx@2.1.1: 2296 2491 resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 2297 2492 engines: {node: '>=6'} ··· 2502 2697 didyoumean@1.2.2: 2503 2698 resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 2504 2699 2505 - discord-api-types@0.37.107: 2506 - resolution: {integrity: sha512-XOxmxnhtYIRH55kLTrc/JS3nJV1l3wfBtTptFiRGdGDOe2qdCT4DltpxSgskasfDrKfw71Z5quG4tYqTxyPJ7g==} 2700 + discord-api-types@0.37.110: 2701 + resolution: {integrity: sha512-wVaAJkrSgNRo8nd523qKYPqkClTNHhjKOk/g6265rzHuc7TNS6Ivz06DPW4iZvnhFobbH95hKlgsRf6jcAbtlA==} 2507 2702 2508 2703 discord-api-types@0.37.97: 2509 2704 resolution: {integrity: sha512-No1BXPcVkyVD4ZVmbNgDKaBoqgeQ+FJpzZ8wqHkfmBnTZig1FcH3iPPersiK1TUIAzgClh2IvOuVUYfcWLQAOA==} ··· 2581 2776 resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 2582 2777 engines: {node: '>=10'} 2583 2778 2584 - eslint-config-next@15.0.3: 2585 - resolution: {integrity: sha512-IGP2DdQQrgjcr4mwFPve4DrCqo7CVVez1WoYY47XwKSrYO4hC0Dlb+iJA60i0YfICOzgNADIb8r28BpQ5Zs0wg==} 2779 + eslint-config-next@15.0.4: 2780 + resolution: {integrity: sha512-97mLaAhbJKVQYXUBBrenRtEUAA6bNDPxWfaFEd6mEhKfpajP4wJrW4l7BUlHuYWxR8oQa9W014qBJpumpJQwWA==} 2586 2781 peerDependencies: 2587 2782 eslint: ^7.23.0 || ^8.0.0 || ^9.0.0 2588 2783 typescript: '>=3.3.1' ··· 2642 2837 peerDependencies: 2643 2838 eslint: ^8.0.0 2644 2839 2645 - eslint-plugin-react-compiler@19.0.0-beta-0dec889-20241115: 2646 - resolution: {integrity: sha512-jTjEHuE8/R6qD/CD2d+5YvWMy1q9/tX3kft4WDyg42/HktjHtHXrEToyZ6THEQf8t/YWMY1RGeCkykePbACtFA==} 2840 + eslint-plugin-react-compiler@19.0.0-beta-df7b47d-20241124: 2841 + resolution: {integrity: sha512-82PfnllC8jP/68KdLAbpWuYTcfmtGLzkqy2IW85WopKMTr+4rdQpp+lfliQ/QE79wWrv/dRoADrk3Pdhq25nTw==} 2647 2842 engines: {node: ^14.17.0 || ^16.0.0 || >= 18.0.0} 2648 2843 peerDependencies: 2649 2844 eslint: '>=7' 2650 2845 2651 - eslint-plugin-react-hooks@5.0.0: 2652 - resolution: {integrity: sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==} 2846 + eslint-plugin-react-hooks@5.1.0: 2847 + resolution: {integrity: sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==} 2653 2848 engines: {node: '>=10'} 2654 2849 peerDependencies: 2655 2850 eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 ··· 2686 2881 resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 2687 2882 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2688 2883 2689 - eslint@9.15.0: 2690 - resolution: {integrity: sha512-7CrWySmIibCgT1Os28lUU6upBshZ+GxybLOrmRzi08kS8MBuO8QA7pXEgYgY5W8vK3e74xv0lpjo9DbaGU9Rkw==} 2884 + eslint@9.16.0: 2885 + resolution: {integrity: sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==} 2691 2886 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 2692 2887 hasBin: true 2693 2888 peerDependencies: ··· 2810 3005 resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} 2811 3006 engines: {node: '>=0.10.0'} 2812 3007 2813 - framer-motion@11.11.17: 2814 - resolution: {integrity: sha512-O8QzvoKiuzI5HSAHbcYuL6xU+ZLXbrH7C8Akaato4JzQbX2ULNeniqC2Vo5eiCtFktX9XsJ+7nUhxcl2E2IjpA==} 3008 + framer-motion@12.0.0-alpha.2: 3009 + resolution: {integrity: sha512-s603YLhCoX3GKaPDZnywwoFdd1T6gDFCfevVRek+TCpbvazUkITh+YZ3a6kqTvn4Aj7qQWT3vAmzWIjl/LsCFA==} 2815 3010 peerDependencies: 2816 3011 '@emotion/is-prop-valid': '*' 2817 - react: ^18.0.0 2818 - react-dom: ^18.0.0 3012 + react: ^19.0.0-rc.1 3013 + react-dom: ^19.0.0-rc.1 2819 3014 peerDependenciesMeta: 2820 3015 '@emotion/is-prop-valid': 2821 3016 optional: true ··· 2977 3172 hastscript@8.0.0: 2978 3173 resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} 2979 3174 2980 - hermes-estree@0.20.1: 2981 - resolution: {integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==} 3175 + hermes-estree@0.25.1: 3176 + resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==} 2982 3177 2983 - hermes-parser@0.20.1: 2984 - resolution: {integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==} 3178 + hermes-parser@0.25.1: 3179 + resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} 2985 3180 2986 3181 highlight.js@11.10.0: 2987 3182 resolution: {integrity: sha512-SYVnVFswQER+zu1laSya563s+F8VDGt7o35d4utbamowvUNLLMovFqwCLSocpZTz3MgaSRA1IbqRWZv97dtErQ==} ··· 3021 3216 3022 3217 inline-style-parser@0.2.4: 3023 3218 resolution: {integrity: sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==} 3219 + 3220 + input-otp@1.4.1: 3221 + resolution: {integrity: sha512-+yvpmKYKHi9jIGngxagY9oWiiblPB7+nEO75F2l2o4vs+6vpPZZmUl4tBNYuTCvQjhvEIbdNeJu70bhfYP2nbw==} 3222 + peerDependencies: 3223 + react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc 3224 + react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc 3024 3225 3025 3226 internal-slot@1.0.7: 3026 3227 resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} ··· 3250 3451 engines: {node: '>=4'} 3251 3452 hasBin: true 3252 3453 3454 + jsesc@3.0.2: 3455 + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} 3456 + engines: {node: '>=6'} 3457 + hasBin: true 3458 + 3253 3459 json-buffer@3.0.1: 3254 3460 resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 3255 3461 ··· 3298 3504 resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 3299 3505 engines: {node: '>= 0.8.0'} 3300 3506 3301 - lilconfig@2.1.0: 3302 - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 3303 - engines: {node: '>=10'} 3304 - 3305 - lilconfig@3.1.2: 3306 - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} 3507 + lilconfig@3.1.3: 3508 + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} 3307 3509 engines: {node: '>=14'} 3308 3510 3309 3511 lines-and-columns@1.2.4: ··· 3313 3515 resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 3314 3516 engines: {node: '>=10'} 3315 3517 3316 - lodash.debounce@4.0.8: 3317 - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} 3318 - 3319 - lodash.foreach@4.5.0: 3320 - resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==} 3321 - 3322 - lodash.get@4.4.2: 3323 - resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} 3324 - 3325 - lodash.kebabcase@4.1.1: 3326 - resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} 3327 - 3328 - lodash.mapkeys@4.6.0: 3329 - resolution: {integrity: sha512-0Al+hxpYvONWtg+ZqHpa/GaVzxuN3V7Xeo2p+bY06EaK/n+Y9R7nBePPN2o1LxmL0TWQSwP8LYZ008/hc9JzhA==} 3330 - 3331 3518 lodash.merge@4.6.2: 3332 3519 resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 3333 - 3334 - lodash.omit@4.5.0: 3335 - resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==} 3336 3520 3337 3521 lodash@4.17.21: 3338 3522 resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} ··· 3350 3534 lru-cache@5.1.1: 3351 3535 resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 3352 3536 3353 - lucide-react@0.460.0: 3354 - resolution: {integrity: sha512-BVtq/DykVeIvRTJvRAgCsOwaGL8Un3Bxh8MbDxMhEWlZay3T4IpEKDEpwt5KZ0KJMHzgm6jrltxlT5eXOWXDHg==} 3537 + lucide-react@0.468.0: 3538 + resolution: {integrity: sha512-6koYRhnM2N0GGZIdXzSeiNwguv1gt/FAjZOiPl76roBi3xKEXa4WmfpxgQwTTL4KipXjefrnf3oV4IsYhi4JFA==} 3355 3539 peerDependencies: 3356 3540 react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc 3357 3541 ··· 3519 3703 next: '>= 15.0.0' 3520 3704 react: '>= 16.8.0' 3521 3705 3522 - next@15.0.3: 3523 - resolution: {integrity: sha512-ontCbCRKJUIoivAdGB34yCaOcPgYXr9AAkV/IwqFfWWTXEPUgLYkSkqBhIk9KK7gGmgjc64B+RdoeIDM13Irnw==} 3706 + next@15.0.4: 3707 + resolution: {integrity: sha512-nuy8FH6M1FG0lktGotamQDCXhh5hZ19Vo0ht1AOIQWrYJLP598TIUagKtvJrfJ5AGwB/WmDqkKaKhMpVifvGPA==} 3524 3708 engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} 3525 3709 hasBin: true 3526 3710 peerDependencies: 3527 3711 '@opentelemetry/api': ^1.1.0 3528 3712 '@playwright/test': ^1.41.2 3529 3713 babel-plugin-react-compiler: '*' 3530 - react: ^18.2.0 || 19.0.0-rc-66855b96-20241106 3531 - react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106 3714 + react: ^18.2.0 || 19.0.0-rc-66855b96-20241106 || ^19.0.0 3715 + react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106 || ^19.0.0 3532 3716 sass: ^1.3.0 3533 3717 peerDependenciesMeta: 3534 3718 '@opentelemetry/api': ··· 3747 3931 peerDependencies: 3748 3932 react: '>= 16.3.0' 3749 3933 3750 - react-dom@18.3.1: 3751 - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 3934 + react-dom@19.0.0: 3935 + resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} 3752 3936 peerDependencies: 3753 - react: ^18.3.1 3937 + react: ^19.0.0 3754 3938 3755 - react-icons@5.3.0: 3756 - resolution: {integrity: sha512-DnUk8aFbTyQPSkCfF8dbX6kQjXA9DktMeJqfjrg6cK9vwQVMxmcA3BfP4QoiztVmEHtwlTgLFsPuH2NskKT6eg==} 3939 + react-icons@5.4.0: 3940 + resolution: {integrity: sha512-7eltJxgVt7X64oHh6wSWNwwbKTCtMfK35hcjvJS0yxEAhPM8oUKdS3+kqaW1vicIltw+kR2unHaa12S9pPALoQ==} 3757 3941 peerDependencies: 3758 3942 react: '*' 3759 3943 ··· 3833 4017 react: '>=16.6.0' 3834 4018 react-dom: '>=16.6.0' 3835 4019 3836 - react@18.3.1: 3837 - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 4020 + react@19.0.0: 4021 + resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} 3838 4022 engines: {node: '>=0.10.0'} 3839 4023 3840 4024 read-cache@1.0.0: ··· 3847 4031 recharts-scale@0.4.5: 3848 4032 resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==} 3849 4033 3850 - recharts@2.13.3: 3851 - resolution: {integrity: sha512-YDZ9dOfK9t3ycwxgKbrnDlRC4BHdjlY73fet3a0C1+qGMjXVZe6+VXmpOIIhzkje5MMEL8AN4hLIe4AMskBzlA==} 4034 + recharts@2.14.1: 4035 + resolution: {integrity: sha512-xtWulflkA+/xu4/QClBdtZYN30dbvTHjxjkh5XTMrH/CQ3WGDDPHHa/LLKCbgoqz0z3UaSH2/blV1i6VNMeh1g==} 3852 4036 engines: {node: '>=14'} 3853 4037 peerDependencies: 3854 4038 react: ^16.0.0 || ^17.0.0 || ^18.0.0 ··· 3931 4115 safe-regex@1.1.0: 3932 4116 resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} 3933 4117 3934 - scheduler@0.23.2: 3935 - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 4118 + scheduler@0.25.0: 4119 + resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} 3936 4120 3937 4121 scroll-into-view-if-needed@3.0.10: 3938 4122 resolution: {integrity: sha512-t44QCeDKAPf1mtQH3fYpWz8IM/DyvHLjs8wUvvwMYxk5moOqCzrMSxK6HQVD0QVmVjXFavoFIPRVrMuJPKAvtg==} ··· 4101 4285 tailwind-merge@1.14.0: 4102 4286 resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==} 4103 4287 4104 - tailwind-merge@2.5.4: 4105 - resolution: {integrity: sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==} 4288 + tailwind-merge@2.5.5: 4289 + resolution: {integrity: sha512-0LXunzzAZzo0tEPxV3I297ffKZPlKDrjj7NXphC8V5ak9yHC5zRmxnOe2m/Rd/7ivsOMJe3JZ2JVocoDdQTRBA==} 4106 4290 4107 4291 tailwind-variants@0.1.20: 4108 4292 resolution: {integrity: sha512-AMh7x313t/V+eTySKB0Dal08RHY7ggYK0MSn/ad8wKWOrDUIzyiWNayRUm2PIJ4VRkvRnfNuyRuKbLV3EN+ewQ==} ··· 4115 4299 peerDependencies: 4116 4300 tailwindcss: '>=3.0.0 || insiders' 4117 4301 4118 - tailwindcss@3.4.15: 4119 - resolution: {integrity: sha512-r4MeXnfBmSOuKUWmXe6h2CcyfzJCEk4F0pptO5jlnYSIViUkVmsawj80N5h2lO3gwcmSb4n3PuN+e+GC1Guylw==} 4302 + tailwindcss@3.4.16: 4303 + resolution: {integrity: sha512-TI4Cyx7gDiZ6r44ewaJmt0o6BrMCT5aK5e0rmJ/G9Xq3w7CX/5VXl/zIPEJZFUK5VEqwByyhqNPycPlvcK4ZNw==} 4120 4304 engines: {node: '>=14.0.0'} 4121 4305 hasBin: true 4122 4306 ··· 4191 4375 resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} 4192 4376 engines: {node: '>= 0.4'} 4193 4377 4194 - typescript-eslint@8.15.0: 4195 - resolution: {integrity: sha512-wY4FRGl0ZI+ZU4Jo/yjdBu0lVTSML58pu6PgGtJmCufvzfV565pUF6iACQt092uFOd49iLOTX/sEVmHtbSrS+w==} 4378 + typescript-eslint@8.17.0: 4379 + resolution: {integrity: sha512-409VXvFd/f1br1DCbuKNFqQpXICoTB+V51afcwG1pn1a3Cp92MqAUges3YjwEdQ0cMUoCIodjVDAYzyD8h3SYA==} 4196 4380 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 4197 4381 peerDependencies: 4198 4382 eslint: ^8.57.0 || ^9.0.0 ··· 4209 4393 unbox-primitive@1.0.2: 4210 4394 resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 4211 4395 4212 - undici-types@6.19.8: 4213 - resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} 4396 + undici-types@6.20.0: 4397 + resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} 4214 4398 4215 4399 undici@6.19.8: 4216 4400 resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==} ··· 4394 4578 zod@3.23.8: 4395 4579 resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} 4396 4580 4397 - zustand@5.0.1: 4398 - resolution: {integrity: sha512-pRET7Lao2z+n5R/HduXMio35TncTlSW68WsYBq2Lg1ASspsNGjpwLAsij3RpouyV6+kHMwwwzP0bZPD70/Jx/w==} 4581 + zustand@5.0.2: 4582 + resolution: {integrity: sha512-8qNdnJVJlHlrKXi50LDqqUNmUbuBjoKLrYQBnoChIbVph7vni+sY+YpvdjXG9YLd/Bxr6scMcR+rm5H3aSqPaw==} 4399 4583 engines: {node: '>=12.20.0'} 4400 4584 peerDependencies: 4401 4585 '@types/react': '>=18.0.0' ··· 4427 4611 '@babel/code-frame@7.24.7': 4428 4612 dependencies: 4429 4613 '@babel/highlight': 7.24.7 4614 + picocolors: 1.1.1 4615 + 4616 + '@babel/code-frame@7.26.2': 4617 + dependencies: 4618 + '@babel/helper-validator-identifier': 7.25.9 4619 + js-tokens: 4.0.0 4430 4620 picocolors: 1.1.1 4431 4621 4432 4622 '@babel/compat-data@7.25.2': {} ··· 4458 4648 '@jridgewell/trace-mapping': 0.3.25 4459 4649 jsesc: 2.5.2 4460 4650 4461 - '@babel/helper-annotate-as-pure@7.24.7': 4651 + '@babel/generator@7.26.3': 4462 4652 dependencies: 4463 - '@babel/types': 7.25.2 4653 + '@babel/parser': 7.26.3 4654 + '@babel/types': 7.26.3 4655 + '@jridgewell/gen-mapping': 0.3.5 4656 + '@jridgewell/trace-mapping': 0.3.25 4657 + jsesc: 3.0.2 4658 + 4659 + '@babel/helper-annotate-as-pure@7.25.9': 4660 + dependencies: 4661 + '@babel/types': 7.26.3 4464 4662 4465 4663 '@babel/helper-compilation-targets@7.25.2': 4466 4664 dependencies: ··· 4470 4668 lru-cache: 5.1.1 4471 4669 semver: 6.3.1 4472 4670 4473 - '@babel/helper-create-class-features-plugin@7.25.0(@babel/core@7.25.2)': 4671 + '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.25.2)': 4474 4672 dependencies: 4475 4673 '@babel/core': 7.25.2 4476 - '@babel/helper-annotate-as-pure': 7.24.7 4477 - '@babel/helper-member-expression-to-functions': 7.24.8 4478 - '@babel/helper-optimise-call-expression': 7.24.7 4479 - '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2) 4480 - '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 4481 - '@babel/traverse': 7.25.3 4674 + '@babel/helper-annotate-as-pure': 7.25.9 4675 + '@babel/helper-member-expression-to-functions': 7.25.9 4676 + '@babel/helper-optimise-call-expression': 7.25.9 4677 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.25.2) 4678 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 4679 + '@babel/traverse': 7.26.4 4482 4680 semver: 6.3.1 4483 4681 transitivePeerDependencies: 4484 4682 - supports-color 4485 4683 4486 - '@babel/helper-member-expression-to-functions@7.24.8': 4684 + '@babel/helper-member-expression-to-functions@7.25.9': 4487 4685 dependencies: 4488 - '@babel/traverse': 7.25.3 4489 - '@babel/types': 7.25.2 4686 + '@babel/traverse': 7.26.4 4687 + '@babel/types': 7.26.3 4490 4688 transitivePeerDependencies: 4491 4689 - supports-color 4492 4690 ··· 4507 4705 transitivePeerDependencies: 4508 4706 - supports-color 4509 4707 4510 - '@babel/helper-optimise-call-expression@7.24.7': 4708 + '@babel/helper-optimise-call-expression@7.25.9': 4511 4709 dependencies: 4512 - '@babel/types': 7.25.2 4710 + '@babel/types': 7.26.3 4513 4711 4514 - '@babel/helper-plugin-utils@7.24.8': {} 4712 + '@babel/helper-plugin-utils@7.25.9': {} 4515 4713 4516 - '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)': 4714 + '@babel/helper-replace-supers@7.25.9(@babel/core@7.25.2)': 4517 4715 dependencies: 4518 4716 '@babel/core': 7.25.2 4519 - '@babel/helper-member-expression-to-functions': 7.24.8 4520 - '@babel/helper-optimise-call-expression': 7.24.7 4521 - '@babel/traverse': 7.25.3 4717 + '@babel/helper-member-expression-to-functions': 7.25.9 4718 + '@babel/helper-optimise-call-expression': 7.25.9 4719 + '@babel/traverse': 7.26.4 4522 4720 transitivePeerDependencies: 4523 4721 - supports-color 4524 4722 ··· 4529 4727 transitivePeerDependencies: 4530 4728 - supports-color 4531 4729 4532 - '@babel/helper-skip-transparent-expression-wrappers@7.24.7': 4730 + '@babel/helper-skip-transparent-expression-wrappers@7.25.9': 4533 4731 dependencies: 4534 - '@babel/traverse': 7.25.3 4535 - '@babel/types': 7.25.2 4732 + '@babel/traverse': 7.26.4 4733 + '@babel/types': 7.26.3 4536 4734 transitivePeerDependencies: 4537 4735 - supports-color 4538 4736 4539 4737 '@babel/helper-string-parser@7.24.8': {} 4738 + 4739 + '@babel/helper-string-parser@7.25.9': {} 4540 4740 4541 4741 '@babel/helper-validator-identifier@7.24.7': {} 4542 4742 4743 + '@babel/helper-validator-identifier@7.25.9': {} 4744 + 4543 4745 '@babel/helper-validator-option@7.24.8': {} 4544 4746 4545 4747 '@babel/helpers@7.25.0': ··· 4558 4760 dependencies: 4559 4761 '@babel/types': 7.25.2 4560 4762 4561 - '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.25.2)': 4763 + '@babel/parser@7.26.3': 4764 + dependencies: 4765 + '@babel/types': 7.26.3 4766 + 4767 + '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.25.2)': 4562 4768 dependencies: 4563 4769 '@babel/core': 7.25.2 4564 - '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2) 4565 - '@babel/helper-plugin-utils': 7.24.8 4770 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.25.2) 4771 + '@babel/helper-plugin-utils': 7.25.9 4566 4772 transitivePeerDependencies: 4567 4773 - supports-color 4568 4774 ··· 4576 4782 '@babel/parser': 7.25.3 4577 4783 '@babel/types': 7.25.2 4578 4784 4785 + '@babel/template@7.25.9': 4786 + dependencies: 4787 + '@babel/code-frame': 7.26.2 4788 + '@babel/parser': 7.26.3 4789 + '@babel/types': 7.26.3 4790 + 4579 4791 '@babel/traverse@7.25.3': 4580 4792 dependencies: 4581 4793 '@babel/code-frame': 7.24.7 ··· 4588 4800 transitivePeerDependencies: 4589 4801 - supports-color 4590 4802 4803 + '@babel/traverse@7.26.4': 4804 + dependencies: 4805 + '@babel/code-frame': 7.26.2 4806 + '@babel/generator': 7.26.3 4807 + '@babel/parser': 7.26.3 4808 + '@babel/template': 7.25.9 4809 + '@babel/types': 7.26.3 4810 + debug: 4.3.6 4811 + globals: 11.12.0 4812 + transitivePeerDependencies: 4813 + - supports-color 4814 + 4591 4815 '@babel/types@7.25.2': 4592 4816 dependencies: 4593 4817 '@babel/helper-string-parser': 7.24.8 4594 4818 '@babel/helper-validator-identifier': 7.24.7 4595 4819 to-fast-properties: 2.0.0 4596 4820 4821 + '@babel/types@7.26.3': 4822 + dependencies: 4823 + '@babel/helper-string-parser': 7.25.9 4824 + '@babel/helper-validator-identifier': 7.25.9 4825 + 4597 4826 '@discordjs/collection@2.1.1': {} 4598 4827 4599 4828 '@discordjs/rest@2.4.0': ··· 4615 4844 tslib: 2.6.3 4616 4845 optional: true 4617 4846 4618 - '@eslint-community/eslint-utils@4.4.0(eslint@9.15.0(jiti@1.21.6))': 4847 + '@emotion/is-prop-valid@0.8.8': 4619 4848 dependencies: 4620 - eslint: 9.15.0(jiti@1.21.6) 4849 + '@emotion/memoize': 0.7.4 4850 + optional: true 4851 + 4852 + '@emotion/memoize@0.7.4': 4853 + optional: true 4854 + 4855 + '@eslint-community/eslint-utils@4.4.0(eslint@9.16.0(jiti@1.21.6))': 4856 + dependencies: 4857 + eslint: 9.16.0(jiti@1.21.6) 4621 4858 eslint-visitor-keys: 3.4.3 4622 4859 4623 4860 '@eslint-community/regexpp@4.12.1': {} ··· 4646 4883 transitivePeerDependencies: 4647 4884 - supports-color 4648 4885 4649 - '@eslint/js@9.15.0': {} 4886 + '@eslint/js@9.16.0': {} 4650 4887 4651 4888 '@eslint/object-schema@2.1.4': {} 4652 4889 ··· 4663 4900 '@floating-ui/core': 1.6.8 4664 4901 '@floating-ui/utils': 0.2.8 4665 4902 4666 - '@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 4903 + '@floating-ui/react-dom@2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 4667 4904 dependencies: 4668 4905 '@floating-ui/dom': 1.6.12 4669 - react: 18.3.1 4670 - react-dom: 18.3.1(react@18.3.1) 4906 + react: 19.0.0 4907 + react-dom: 19.0.0(react@19.0.0) 4671 4908 4672 4909 '@floating-ui/utils@0.2.8': {} 4673 4910 ··· 4783 5020 '@img/sharp-win32-x64@0.33.5': 4784 5021 optional: true 4785 5022 4786 - '@internationalized/date@3.5.5': 5023 + '@internationalized/date@3.5.6': 4787 5024 dependencies: 4788 5025 '@swc/helpers': 0.5.13 4789 5026 4790 - '@internationalized/message@3.1.4': 5027 + '@internationalized/date@3.6.0': 5028 + dependencies: 5029 + '@swc/helpers': 0.5.13 5030 + 5031 + '@internationalized/message@3.1.6': 4791 5032 dependencies: 4792 5033 '@swc/helpers': 0.5.13 4793 5034 intl-messageformat: 10.5.14 4794 5035 4795 - '@internationalized/number@3.5.3': 5036 + '@internationalized/number@3.6.0': 4796 5037 dependencies: 4797 5038 '@swc/helpers': 0.5.13 4798 5039 4799 - '@internationalized/string@3.2.3': 5040 + '@internationalized/string@3.2.5': 4800 5041 dependencies: 4801 5042 '@swc/helpers': 0.5.13 4802 5043 ··· 4828 5069 4829 5070 '@khanacademy/perseus-core@1.5.0': {} 4830 5071 4831 - '@khanacademy/simple-markdown@0.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5072 + '@khanacademy/simple-markdown@0.12.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 4832 5073 dependencies: 4833 5074 '@khanacademy/perseus-core': 1.5.0 4834 - react: 18.3.1 4835 - react-dom: 18.3.1(react@18.3.1) 5075 + react: 19.0.0 5076 + react-dom: 19.0.0(react@19.0.0) 4836 5077 4837 - '@next/env@15.0.3': {} 5078 + '@next/env@15.0.4': {} 4838 5079 4839 - '@next/eslint-plugin-next@15.0.3': 5080 + '@next/eslint-plugin-next@15.0.4': 4840 5081 dependencies: 4841 5082 fast-glob: 3.3.1 4842 5083 4843 - '@next/swc-darwin-arm64@15.0.3': 5084 + '@next/swc-darwin-arm64@15.0.4': 4844 5085 optional: true 4845 5086 4846 - '@next/swc-darwin-x64@15.0.3': 5087 + '@next/swc-darwin-x64@15.0.4': 4847 5088 optional: true 4848 5089 4849 - '@next/swc-linux-arm64-gnu@15.0.3': 5090 + '@next/swc-linux-arm64-gnu@15.0.4': 4850 5091 optional: true 4851 5092 4852 - '@next/swc-linux-arm64-musl@15.0.3': 5093 + '@next/swc-linux-arm64-musl@15.0.4': 4853 5094 optional: true 4854 5095 4855 - '@next/swc-linux-x64-gnu@15.0.3': 5096 + '@next/swc-linux-x64-gnu@15.0.4': 4856 5097 optional: true 4857 5098 4858 - '@next/swc-linux-x64-musl@15.0.3': 5099 + '@next/swc-linux-x64-musl@15.0.4': 4859 5100 optional: true 4860 5101 4861 - '@next/swc-win32-arm64-msvc@15.0.3': 5102 + '@next/swc-win32-arm64-msvc@15.0.4': 4862 5103 optional: true 4863 5104 4864 - '@next/swc-win32-x64-msvc@15.0.3': 5105 + '@next/swc-win32-x64-msvc@15.0.4': 4865 5106 optional: true 4866 5107 4867 - '@nextui-org/accordion@2.0.40(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5108 + '@nextui-org/accordion@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 4868 5109 dependencies: 4869 - '@nextui-org/aria-utils': 2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4870 - '@nextui-org/divider': 2.0.32(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4871 - '@nextui-org/framer-utils': 2.0.25(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4872 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 4873 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 4874 - '@nextui-org/shared-utils': 2.0.8 4875 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4876 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 4877 - '@nextui-org/use-aria-accordion': 2.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4878 - '@react-aria/button': 3.9.5(react@18.3.1) 4879 - '@react-aria/focus': 3.17.1(react@18.3.1) 4880 - '@react-aria/interactions': 3.21.3(react@18.3.1) 4881 - '@react-aria/utils': 3.24.1(react@18.3.1) 4882 - '@react-stately/tree': 3.8.1(react@18.3.1) 4883 - '@react-types/accordion': 3.0.0-alpha.21(react@18.3.1) 4884 - '@react-types/shared': 3.23.1(react@18.3.1) 4885 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4886 - react: 18.3.1 4887 - react-dom: 18.3.1(react@18.3.1) 5110 + '@nextui-org/aria-utils': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5111 + '@nextui-org/divider': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5112 + '@nextui-org/dom-animation': 2.1.1(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) 5113 + '@nextui-org/framer-utils': 2.1.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5114 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5115 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5116 + '@nextui-org/shared-utils': 2.1.1 5117 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5118 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5119 + '@nextui-org/use-aria-accordion': 2.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5120 + '@react-aria/button': 3.10.1(react@19.0.0) 5121 + '@react-aria/focus': 3.18.4(react@19.0.0) 5122 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5123 + '@react-aria/utils': 3.26.0(react@19.0.0) 5124 + '@react-stately/tree': 3.8.5(react@19.0.0) 5125 + '@react-types/accordion': 3.0.0-alpha.24(react@19.0.0) 5126 + '@react-types/shared': 3.25.0(react@19.0.0) 5127 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5128 + react: 19.0.0 5129 + react-dom: 19.0.0(react@19.0.0) 4888 5130 4889 - '@nextui-org/aria-utils@2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5131 + '@nextui-org/alert@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 4890 5132 dependencies: 4891 - '@nextui-org/react-rsc-utils': 2.0.14(react@18.3.1) 4892 - '@nextui-org/shared-utils': 2.0.8 4893 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4894 - '@react-aria/utils': 3.24.1(react@18.3.1) 4895 - '@react-stately/collections': 3.10.7(react@18.3.1) 4896 - '@react-stately/overlays': 3.6.7(react@18.3.1) 4897 - '@react-types/overlays': 3.8.7(react@18.3.1) 4898 - '@react-types/shared': 3.23.1(react@18.3.1) 4899 - react: 18.3.1 4900 - react-dom: 18.3.1(react@18.3.1) 5133 + '@nextui-org/button': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5134 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5135 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5136 + '@nextui-org/shared-utils': 2.1.1 5137 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5138 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5139 + '@react-aria/utils': 3.26.0(react@19.0.0) 5140 + '@react-stately/utils': 3.10.4(react@19.0.0) 5141 + react: 19.0.0 5142 + react-dom: 19.0.0(react@19.0.0) 5143 + transitivePeerDependencies: 5144 + - framer-motion 5145 + 5146 + '@nextui-org/aria-utils@2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5147 + dependencies: 5148 + '@nextui-org/react-rsc-utils': 2.1.1(react@19.0.0) 5149 + '@nextui-org/shared-utils': 2.1.1 5150 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5151 + '@react-aria/utils': 3.26.0(react@19.0.0) 5152 + '@react-stately/collections': 3.11.0(react@19.0.0) 5153 + '@react-stately/overlays': 3.6.11(react@19.0.0) 5154 + '@react-types/overlays': 3.8.10(react@19.0.0) 5155 + '@react-types/shared': 3.25.0(react@19.0.0) 5156 + react: 19.0.0 5157 + react-dom: 19.0.0(react@19.0.0) 4901 5158 transitivePeerDependencies: 4902 5159 - '@nextui-org/theme' 4903 5160 - framer-motion 4904 5161 4905 - '@nextui-org/autocomplete@2.1.7(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5162 + '@nextui-org/autocomplete@2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(@types/react@19.0.1)(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 4906 5163 dependencies: 4907 - '@nextui-org/aria-utils': 2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4908 - '@nextui-org/button': 2.0.38(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4909 - '@nextui-org/input': 2.2.5(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4910 - '@nextui-org/listbox': 2.1.27(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4911 - '@nextui-org/popover': 2.1.29(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4912 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 4913 - '@nextui-org/scroll-shadow': 2.1.20(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4914 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 4915 - '@nextui-org/shared-utils': 2.0.8 4916 - '@nextui-org/spinner': 2.0.34(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4917 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4918 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 4919 - '@nextui-org/use-aria-button': 2.0.10(react@18.3.1) 4920 - '@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1) 4921 - '@react-aria/combobox': 3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4922 - '@react-aria/focus': 3.17.1(react@18.3.1) 4923 - '@react-aria/i18n': 3.11.1(react@18.3.1) 4924 - '@react-aria/interactions': 3.21.3(react@18.3.1) 4925 - '@react-aria/utils': 3.24.1(react@18.3.1) 4926 - '@react-aria/visually-hidden': 3.8.12(react@18.3.1) 4927 - '@react-stately/combobox': 3.8.4(react@18.3.1) 4928 - '@react-types/combobox': 3.11.1(react@18.3.1) 4929 - '@react-types/shared': 3.23.1(react@18.3.1) 4930 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4931 - react: 18.3.1 4932 - react-dom: 18.3.1(react@18.3.1) 5164 + '@nextui-org/aria-utils': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5165 + '@nextui-org/button': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5166 + '@nextui-org/form': 2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5167 + '@nextui-org/input': 2.4.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5168 + '@nextui-org/listbox': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5169 + '@nextui-org/popover': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5170 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5171 + '@nextui-org/scroll-shadow': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5172 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5173 + '@nextui-org/shared-utils': 2.1.1 5174 + '@nextui-org/spinner': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5175 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5176 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5177 + '@nextui-org/use-aria-button': 2.2.1(react@19.0.0) 5178 + '@nextui-org/use-safe-layout-effect': 2.1.1(react@19.0.0) 5179 + '@react-aria/combobox': 3.10.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5180 + '@react-aria/focus': 3.18.4(react@19.0.0) 5181 + '@react-aria/i18n': 3.12.3(react@19.0.0) 5182 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5183 + '@react-aria/utils': 3.26.0(react@19.0.0) 5184 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 5185 + '@react-stately/combobox': 3.10.0(react@19.0.0) 5186 + '@react-types/combobox': 3.13.0(react@19.0.0) 5187 + '@react-types/shared': 3.25.0(react@19.0.0) 5188 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5189 + react: 19.0.0 5190 + react-dom: 19.0.0(react@19.0.0) 4933 5191 transitivePeerDependencies: 4934 5192 - '@types/react' 4935 5193 4936 - '@nextui-org/avatar@2.0.33(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5194 + '@nextui-org/avatar@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 4937 5195 dependencies: 4938 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 4939 - '@nextui-org/shared-utils': 2.0.8 4940 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4941 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 4942 - '@nextui-org/use-image': 2.0.6(react@18.3.1) 4943 - '@react-aria/focus': 3.17.1(react@18.3.1) 4944 - '@react-aria/interactions': 3.21.3(react@18.3.1) 4945 - '@react-aria/utils': 3.24.1(react@18.3.1) 4946 - react: 18.3.1 4947 - react-dom: 18.3.1(react@18.3.1) 5196 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5197 + '@nextui-org/shared-utils': 2.1.1 5198 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5199 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5200 + '@nextui-org/use-image': 2.1.1(react@19.0.0) 5201 + '@react-aria/focus': 3.18.4(react@19.0.0) 5202 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5203 + '@react-aria/utils': 3.26.0(react@19.0.0) 5204 + react: 19.0.0 5205 + react-dom: 19.0.0(react@19.0.0) 4948 5206 4949 - '@nextui-org/badge@2.0.32(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5207 + '@nextui-org/badge@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 4950 5208 dependencies: 4951 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 4952 - '@nextui-org/shared-utils': 2.0.8 4953 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4954 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 4955 - react: 18.3.1 4956 - react-dom: 18.3.1(react@18.3.1) 5209 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5210 + '@nextui-org/shared-utils': 2.1.1 5211 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5212 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5213 + react: 19.0.0 5214 + react-dom: 19.0.0(react@19.0.0) 4957 5215 4958 - '@nextui-org/breadcrumbs@2.0.13(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5216 + '@nextui-org/breadcrumbs@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 4959 5217 dependencies: 4960 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 4961 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 4962 - '@nextui-org/shared-utils': 2.0.8 4963 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4964 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 4965 - '@react-aria/breadcrumbs': 3.5.13(react@18.3.1) 4966 - '@react-aria/focus': 3.17.1(react@18.3.1) 4967 - '@react-aria/utils': 3.24.1(react@18.3.1) 4968 - '@react-types/breadcrumbs': 3.7.5(react@18.3.1) 4969 - '@react-types/shared': 3.23.1(react@18.3.1) 4970 - react: 18.3.1 4971 - react-dom: 18.3.1(react@18.3.1) 5218 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5219 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5220 + '@nextui-org/shared-utils': 2.1.1 5221 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5222 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5223 + '@react-aria/breadcrumbs': 3.5.18(react@19.0.0) 5224 + '@react-aria/focus': 3.18.4(react@19.0.0) 5225 + '@react-aria/utils': 3.26.0(react@19.0.0) 5226 + '@react-types/breadcrumbs': 3.7.8(react@19.0.0) 5227 + '@react-types/shared': 3.25.0(react@19.0.0) 5228 + react: 19.0.0 5229 + react-dom: 19.0.0(react@19.0.0) 4972 5230 4973 - '@nextui-org/button@2.0.38(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5231 + '@nextui-org/button@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 4974 5232 dependencies: 4975 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 4976 - '@nextui-org/ripple': 2.0.33(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4977 - '@nextui-org/shared-utils': 2.0.8 4978 - '@nextui-org/spinner': 2.0.34(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4979 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4980 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 4981 - '@nextui-org/use-aria-button': 2.0.10(react@18.3.1) 4982 - '@react-aria/button': 3.9.5(react@18.3.1) 4983 - '@react-aria/focus': 3.17.1(react@18.3.1) 4984 - '@react-aria/interactions': 3.21.3(react@18.3.1) 4985 - '@react-aria/utils': 3.24.1(react@18.3.1) 4986 - '@react-types/button': 3.9.4(react@18.3.1) 4987 - '@react-types/shared': 3.23.1(react@18.3.1) 4988 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4989 - react: 18.3.1 4990 - react-dom: 18.3.1(react@18.3.1) 5233 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5234 + '@nextui-org/ripple': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5235 + '@nextui-org/shared-utils': 2.1.1 5236 + '@nextui-org/spinner': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5237 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5238 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5239 + '@nextui-org/use-aria-button': 2.2.1(react@19.0.0) 5240 + '@react-aria/button': 3.10.1(react@19.0.0) 5241 + '@react-aria/focus': 3.18.4(react@19.0.0) 5242 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5243 + '@react-aria/utils': 3.26.0(react@19.0.0) 5244 + '@react-types/button': 3.10.0(react@19.0.0) 5245 + '@react-types/shared': 3.25.0(react@19.0.0) 5246 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5247 + react: 19.0.0 5248 + react-dom: 19.0.0(react@19.0.0) 4991 5249 4992 - '@nextui-org/calendar@2.0.12(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5250 + '@nextui-org/calendar@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 4993 5251 dependencies: 4994 - '@internationalized/date': 3.5.5 4995 - '@nextui-org/button': 2.0.38(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4996 - '@nextui-org/framer-utils': 2.0.25(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4997 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 4998 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 4999 - '@nextui-org/shared-utils': 2.0.8 5000 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5001 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5002 - '@nextui-org/use-aria-button': 2.0.10(react@18.3.1) 5003 - '@react-aria/calendar': 3.5.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5004 - '@react-aria/focus': 3.17.1(react@18.3.1) 5005 - '@react-aria/i18n': 3.11.1(react@18.3.1) 5006 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5007 - '@react-aria/utils': 3.24.1(react@18.3.1) 5008 - '@react-aria/visually-hidden': 3.8.12(react@18.3.1) 5009 - '@react-stately/calendar': 3.5.1(react@18.3.1) 5010 - '@react-stately/utils': 3.10.1(react@18.3.1) 5011 - '@react-types/button': 3.9.4(react@18.3.1) 5012 - '@react-types/calendar': 3.4.6(react@18.3.1) 5013 - '@react-types/shared': 3.23.1(react@18.3.1) 5252 + '@internationalized/date': 3.5.6 5253 + '@nextui-org/button': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5254 + '@nextui-org/dom-animation': 2.1.1(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) 5255 + '@nextui-org/framer-utils': 2.1.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5256 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5257 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5258 + '@nextui-org/shared-utils': 2.1.1 5259 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5260 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5261 + '@nextui-org/use-aria-button': 2.2.1(react@19.0.0) 5262 + '@react-aria/calendar': 3.5.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5263 + '@react-aria/focus': 3.18.4(react@19.0.0) 5264 + '@react-aria/i18n': 3.12.3(react@19.0.0) 5265 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5266 + '@react-aria/utils': 3.26.0(react@19.0.0) 5267 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 5268 + '@react-stately/calendar': 3.5.5(react@19.0.0) 5269 + '@react-stately/utils': 3.10.4(react@19.0.0) 5270 + '@react-types/button': 3.10.0(react@19.0.0) 5271 + '@react-types/calendar': 3.4.10(react@19.0.0) 5272 + '@react-types/shared': 3.25.0(react@19.0.0) 5014 5273 '@types/lodash.debounce': 4.0.9 5015 - lodash.debounce: 4.0.8 5016 - react: 18.3.1 5017 - react-dom: 18.3.1(react@18.3.1) 5274 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5275 + react: 19.0.0 5276 + react-dom: 19.0.0(react@19.0.0) 5018 5277 scroll-into-view-if-needed: 3.0.10 5019 - transitivePeerDependencies: 5020 - - framer-motion 5021 5278 5022 - '@nextui-org/card@2.0.34(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5279 + '@nextui-org/card@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5023 5280 dependencies: 5024 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5025 - '@nextui-org/ripple': 2.0.33(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5026 - '@nextui-org/shared-utils': 2.0.8 5027 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5028 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5029 - '@nextui-org/use-aria-button': 2.0.10(react@18.3.1) 5030 - '@react-aria/button': 3.9.5(react@18.3.1) 5031 - '@react-aria/focus': 3.17.1(react@18.3.1) 5032 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5033 - '@react-aria/utils': 3.24.1(react@18.3.1) 5034 - '@react-types/shared': 3.23.1(react@18.3.1) 5035 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5036 - react: 18.3.1 5037 - react-dom: 18.3.1(react@18.3.1) 5281 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5282 + '@nextui-org/ripple': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5283 + '@nextui-org/shared-utils': 2.1.1 5284 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5285 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5286 + '@nextui-org/use-aria-button': 2.2.1(react@19.0.0) 5287 + '@react-aria/button': 3.10.1(react@19.0.0) 5288 + '@react-aria/focus': 3.18.4(react@19.0.0) 5289 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5290 + '@react-aria/utils': 3.26.0(react@19.0.0) 5291 + '@react-types/shared': 3.25.0(react@19.0.0) 5292 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5293 + react: 19.0.0 5294 + react-dom: 19.0.0(react@19.0.0) 5038 5295 5039 - '@nextui-org/checkbox@2.1.5(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5296 + '@nextui-org/checkbox@2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5040 5297 dependencies: 5041 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5042 - '@nextui-org/shared-utils': 2.0.8 5043 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5044 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5045 - '@nextui-org/use-callback-ref': 2.0.6(react@18.3.1) 5046 - '@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1) 5047 - '@react-aria/checkbox': 3.14.3(react@18.3.1) 5048 - '@react-aria/focus': 3.17.1(react@18.3.1) 5049 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5050 - '@react-aria/utils': 3.24.1(react@18.3.1) 5051 - '@react-aria/visually-hidden': 3.8.12(react@18.3.1) 5052 - '@react-stately/checkbox': 3.6.5(react@18.3.1) 5053 - '@react-stately/toggle': 3.7.4(react@18.3.1) 5054 - '@react-types/checkbox': 3.8.1(react@18.3.1) 5055 - '@react-types/shared': 3.23.1(react@18.3.1) 5056 - react: 18.3.1 5057 - react-dom: 18.3.1(react@18.3.1) 5298 + '@nextui-org/form': 2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5299 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5300 + '@nextui-org/shared-utils': 2.1.1 5301 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5302 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5303 + '@nextui-org/use-callback-ref': 2.1.1(react@19.0.0) 5304 + '@nextui-org/use-safe-layout-effect': 2.1.1(react@19.0.0) 5305 + '@react-aria/checkbox': 3.14.8(react@19.0.0) 5306 + '@react-aria/focus': 3.18.4(react@19.0.0) 5307 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5308 + '@react-aria/utils': 3.26.0(react@19.0.0) 5309 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 5310 + '@react-stately/checkbox': 3.6.9(react@19.0.0) 5311 + '@react-stately/toggle': 3.7.8(react@19.0.0) 5312 + '@react-types/checkbox': 3.8.4(react@19.0.0) 5313 + '@react-types/shared': 3.25.0(react@19.0.0) 5314 + react: 19.0.0 5315 + react-dom: 19.0.0(react@19.0.0) 5058 5316 5059 - '@nextui-org/chip@2.0.33(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5317 + '@nextui-org/chip@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5060 5318 dependencies: 5061 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5062 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 5063 - '@nextui-org/shared-utils': 2.0.8 5064 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5065 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5066 - '@react-aria/focus': 3.17.1(react@18.3.1) 5067 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5068 - '@react-aria/utils': 3.24.1(react@18.3.1) 5069 - '@react-types/checkbox': 3.8.1(react@18.3.1) 5070 - react: 18.3.1 5071 - react-dom: 18.3.1(react@18.3.1) 5319 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5320 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5321 + '@nextui-org/shared-utils': 2.1.1 5322 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5323 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5324 + '@react-aria/focus': 3.18.4(react@19.0.0) 5325 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5326 + '@react-aria/utils': 3.26.0(react@19.0.0) 5327 + '@react-types/checkbox': 3.8.4(react@19.0.0) 5328 + react: 19.0.0 5329 + react-dom: 19.0.0(react@19.0.0) 5072 5330 5073 - '@nextui-org/code@2.0.33(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5331 + '@nextui-org/code@2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5074 5332 dependencies: 5075 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5076 - '@nextui-org/shared-utils': 2.0.8 5077 - '@nextui-org/system-rsc': 2.1.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react@18.3.1) 5078 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5079 - react: 18.3.1 5080 - react-dom: 18.3.1(react@18.3.1) 5333 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5334 + '@nextui-org/shared-utils': 2.1.1 5335 + '@nextui-org/system-rsc': 2.3.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react@19.0.0) 5336 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5337 + react: 19.0.0 5338 + react-dom: 19.0.0(react@19.0.0) 5081 5339 5082 - '@nextui-org/date-input@2.1.4(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5340 + '@nextui-org/date-input@2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5083 5341 dependencies: 5084 - '@internationalized/date': 3.5.5 5085 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5086 - '@nextui-org/shared-utils': 2.0.8 5087 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5088 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5089 - '@react-aria/datepicker': 3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5090 - '@react-aria/i18n': 3.11.1(react@18.3.1) 5091 - '@react-aria/utils': 3.24.1(react@18.3.1) 5092 - '@react-stately/datepicker': 3.9.4(react@18.3.1) 5093 - '@react-types/datepicker': 3.7.4(react@18.3.1) 5094 - '@react-types/shared': 3.23.1(react@18.3.1) 5095 - react: 18.3.1 5096 - react-dom: 18.3.1(react@18.3.1) 5342 + '@internationalized/date': 3.5.6 5343 + '@nextui-org/form': 2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5344 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5345 + '@nextui-org/shared-utils': 2.1.1 5346 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5347 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5348 + '@react-aria/datepicker': 3.11.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5349 + '@react-aria/i18n': 3.12.3(react@19.0.0) 5350 + '@react-aria/utils': 3.26.0(react@19.0.0) 5351 + '@react-stately/datepicker': 3.10.3(react@19.0.0) 5352 + '@react-types/datepicker': 3.8.3(react@19.0.0) 5353 + '@react-types/shared': 3.25.0(react@19.0.0) 5354 + react: 19.0.0 5355 + react-dom: 19.0.0(react@19.0.0) 5097 5356 5098 - '@nextui-org/date-picker@2.1.8(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5357 + '@nextui-org/date-picker@2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5099 5358 dependencies: 5100 - '@internationalized/date': 3.5.5 5101 - '@nextui-org/aria-utils': 2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5102 - '@nextui-org/button': 2.0.38(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5103 - '@nextui-org/calendar': 2.0.12(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5104 - '@nextui-org/date-input': 2.1.4(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5105 - '@nextui-org/popover': 2.1.29(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5106 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5107 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 5108 - '@nextui-org/shared-utils': 2.0.8 5109 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5110 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5111 - '@react-aria/datepicker': 3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5112 - '@react-aria/i18n': 3.11.1(react@18.3.1) 5113 - '@react-aria/utils': 3.24.1(react@18.3.1) 5114 - '@react-stately/datepicker': 3.9.4(react@18.3.1) 5115 - '@react-stately/overlays': 3.6.7(react@18.3.1) 5116 - '@react-stately/utils': 3.10.1(react@18.3.1) 5117 - '@react-types/datepicker': 3.7.4(react@18.3.1) 5118 - '@react-types/shared': 3.23.1(react@18.3.1) 5119 - react: 18.3.1 5120 - react-dom: 18.3.1(react@18.3.1) 5359 + '@internationalized/date': 3.5.6 5360 + '@nextui-org/aria-utils': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5361 + '@nextui-org/button': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5362 + '@nextui-org/calendar': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5363 + '@nextui-org/date-input': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5364 + '@nextui-org/form': 2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5365 + '@nextui-org/popover': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5366 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5367 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5368 + '@nextui-org/shared-utils': 2.1.1 5369 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5370 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5371 + '@react-aria/datepicker': 3.11.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5372 + '@react-aria/i18n': 3.12.3(react@19.0.0) 5373 + '@react-aria/utils': 3.26.0(react@19.0.0) 5374 + '@react-stately/datepicker': 3.10.3(react@19.0.0) 5375 + '@react-stately/overlays': 3.6.11(react@19.0.0) 5376 + '@react-stately/utils': 3.10.4(react@19.0.0) 5377 + '@react-types/datepicker': 3.8.3(react@19.0.0) 5378 + '@react-types/shared': 3.25.0(react@19.0.0) 5379 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5380 + react: 19.0.0 5381 + react-dom: 19.0.0(react@19.0.0) 5382 + 5383 + '@nextui-org/divider@2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5384 + dependencies: 5385 + '@nextui-org/react-rsc-utils': 2.1.1(react@19.0.0) 5386 + '@nextui-org/shared-utils': 2.1.1 5387 + '@nextui-org/system-rsc': 2.3.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react@19.0.0) 5388 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5389 + '@react-types/shared': 3.25.0(react@19.0.0) 5390 + react: 19.0.0 5391 + react-dom: 19.0.0(react@19.0.0) 5392 + 5393 + '@nextui-org/dom-animation@2.1.1(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))': 5394 + dependencies: 5395 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5396 + 5397 + '@nextui-org/drawer@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5398 + dependencies: 5399 + '@nextui-org/framer-utils': 2.1.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5400 + '@nextui-org/modal': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5401 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5402 + '@nextui-org/shared-utils': 2.1.1 5403 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5404 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5405 + react: 19.0.0 5406 + react-dom: 19.0.0(react@19.0.0) 5121 5407 transitivePeerDependencies: 5122 - - '@types/react' 5123 5408 - framer-motion 5124 5409 5125 - '@nextui-org/divider@2.0.32(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5410 + '@nextui-org/dropdown@2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5126 5411 dependencies: 5127 - '@nextui-org/react-rsc-utils': 2.0.14(react@18.3.1) 5128 - '@nextui-org/shared-utils': 2.0.8 5129 - '@nextui-org/system-rsc': 2.1.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react@18.3.1) 5130 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5131 - '@react-types/shared': 3.23.1(react@18.3.1) 5132 - react: 18.3.1 5133 - react-dom: 18.3.1(react@18.3.1) 5412 + '@nextui-org/aria-utils': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5413 + '@nextui-org/menu': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5414 + '@nextui-org/popover': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5415 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5416 + '@nextui-org/shared-utils': 2.1.1 5417 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5418 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5419 + '@react-aria/focus': 3.18.4(react@19.0.0) 5420 + '@react-aria/menu': 3.15.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5421 + '@react-aria/utils': 3.26.0(react@19.0.0) 5422 + '@react-stately/menu': 3.8.3(react@19.0.0) 5423 + '@react-types/menu': 3.9.12(react@19.0.0) 5424 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5425 + react: 19.0.0 5426 + react-dom: 19.0.0(react@19.0.0) 5134 5427 5135 - '@nextui-org/dropdown@2.1.31(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5428 + '@nextui-org/form@2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5136 5429 dependencies: 5137 - '@nextui-org/aria-utils': 2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5138 - '@nextui-org/menu': 2.0.30(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5139 - '@nextui-org/popover': 2.1.29(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5140 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5141 - '@nextui-org/shared-utils': 2.0.8 5142 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5143 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5144 - '@react-aria/focus': 3.17.1(react@18.3.1) 5145 - '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5146 - '@react-aria/utils': 3.24.1(react@18.3.1) 5147 - '@react-stately/menu': 3.7.1(react@18.3.1) 5148 - '@react-types/menu': 3.9.9(react@18.3.1) 5149 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5150 - react: 18.3.1 5151 - react-dom: 18.3.1(react@18.3.1) 5152 - transitivePeerDependencies: 5153 - - '@types/react' 5430 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5431 + '@nextui-org/shared-utils': 2.1.1 5432 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5433 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5434 + '@react-aria/utils': 3.26.0(react@19.0.0) 5435 + '@react-stately/form': 3.0.6(react@19.0.0) 5436 + '@react-types/form': 3.7.8(react@19.0.0) 5437 + '@react-types/shared': 3.25.0(react@19.0.0) 5438 + react: 19.0.0 5439 + react-dom: 19.0.0(react@19.0.0) 5154 5440 5155 - '@nextui-org/framer-utils@2.0.25(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5441 + '@nextui-org/framer-utils@2.1.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5156 5442 dependencies: 5157 - '@nextui-org/shared-utils': 2.0.8 5158 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5159 - '@nextui-org/use-measure': 2.0.2(react@18.3.1) 5160 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5161 - react: 18.3.1 5162 - react-dom: 18.3.1(react@18.3.1) 5443 + '@nextui-org/shared-utils': 2.1.1 5444 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5445 + '@nextui-org/use-measure': 2.1.1(react@19.0.0) 5446 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5447 + react: 19.0.0 5448 + react-dom: 19.0.0(react@19.0.0) 5163 5449 transitivePeerDependencies: 5164 5450 - '@nextui-org/theme' 5165 5451 5166 - '@nextui-org/image@2.0.32(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5452 + '@nextui-org/image@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5167 5453 dependencies: 5168 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5169 - '@nextui-org/shared-utils': 2.0.8 5170 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5171 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5172 - '@nextui-org/use-image': 2.0.6(react@18.3.1) 5173 - react: 18.3.1 5174 - react-dom: 18.3.1(react@18.3.1) 5454 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5455 + '@nextui-org/shared-utils': 2.1.1 5456 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5457 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5458 + '@nextui-org/use-image': 2.1.1(react@19.0.0) 5459 + react: 19.0.0 5460 + react-dom: 19.0.0(react@19.0.0) 5175 5461 5176 - '@nextui-org/input@2.2.5(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5462 + '@nextui-org/input-otp@2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5177 5463 dependencies: 5178 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5179 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 5180 - '@nextui-org/shared-utils': 2.0.8 5181 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5182 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5183 - '@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1) 5184 - '@react-aria/focus': 3.17.1(react@18.3.1) 5185 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5186 - '@react-aria/textfield': 3.14.5(react@18.3.1) 5187 - '@react-aria/utils': 3.24.1(react@18.3.1) 5188 - '@react-stately/utils': 3.10.1(react@18.3.1) 5189 - '@react-types/shared': 3.23.1(react@18.3.1) 5190 - '@react-types/textfield': 3.9.3(react@18.3.1) 5191 - react: 18.3.1 5192 - react-dom: 18.3.1(react@18.3.1) 5193 - react-textarea-autosize: 8.5.3(@types/react@18.3.12)(react@18.3.1) 5464 + '@nextui-org/form': 2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5465 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5466 + '@nextui-org/shared-utils': 2.1.1 5467 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5468 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5469 + '@react-aria/focus': 3.18.4(react@19.0.0) 5470 + '@react-aria/form': 3.0.8(react@19.0.0) 5471 + '@react-aria/utils': 3.24.1(react@19.0.0) 5472 + '@react-stately/form': 3.0.5(react@19.0.0) 5473 + '@react-stately/utils': 3.10.1(react@19.0.0) 5474 + '@react-types/textfield': 3.9.3(react@19.0.0) 5475 + input-otp: 1.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5476 + react: 19.0.0 5477 + react-dom: 19.0.0(react@19.0.0) 5478 + 5479 + '@nextui-org/input@2.4.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5480 + dependencies: 5481 + '@nextui-org/form': 2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5482 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5483 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5484 + '@nextui-org/shared-utils': 2.1.1 5485 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5486 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5487 + '@nextui-org/use-safe-layout-effect': 2.1.1(react@19.0.0) 5488 + '@react-aria/focus': 3.18.4(react@19.0.0) 5489 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5490 + '@react-aria/textfield': 3.14.10(react@19.0.0) 5491 + '@react-aria/utils': 3.26.0(react@19.0.0) 5492 + '@react-stately/utils': 3.10.4(react@19.0.0) 5493 + '@react-types/shared': 3.25.0(react@19.0.0) 5494 + '@react-types/textfield': 3.9.7(react@19.0.0) 5495 + react: 19.0.0 5496 + react-dom: 19.0.0(react@19.0.0) 5497 + react-textarea-autosize: 8.5.3(@types/react@19.0.1)(react@19.0.0) 5194 5498 transitivePeerDependencies: 5195 5499 - '@types/react' 5196 5500 5197 - '@nextui-org/kbd@2.0.34(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5501 + '@nextui-org/kbd@2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5198 5502 dependencies: 5199 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5200 - '@nextui-org/shared-utils': 2.0.8 5201 - '@nextui-org/system-rsc': 2.1.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react@18.3.1) 5202 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5203 - '@react-aria/utils': 3.24.1(react@18.3.1) 5204 - react: 18.3.1 5205 - react-dom: 18.3.1(react@18.3.1) 5503 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5504 + '@nextui-org/shared-utils': 2.1.1 5505 + '@nextui-org/system-rsc': 2.3.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react@19.0.0) 5506 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5507 + '@react-aria/utils': 3.26.0(react@19.0.0) 5508 + react: 19.0.0 5509 + react-dom: 19.0.0(react@19.0.0) 5206 5510 5207 - '@nextui-org/link@2.0.35(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5511 + '@nextui-org/link@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5208 5512 dependencies: 5209 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5210 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 5211 - '@nextui-org/shared-utils': 2.0.8 5212 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5213 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5214 - '@nextui-org/use-aria-link': 2.0.19(react@18.3.1) 5215 - '@react-aria/focus': 3.17.1(react@18.3.1) 5216 - '@react-aria/link': 3.7.1(react@18.3.1) 5217 - '@react-aria/utils': 3.24.1(react@18.3.1) 5218 - '@react-types/link': 3.5.5(react@18.3.1) 5219 - react: 18.3.1 5220 - react-dom: 18.3.1(react@18.3.1) 5513 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5514 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5515 + '@nextui-org/shared-utils': 2.1.1 5516 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5517 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5518 + '@nextui-org/use-aria-link': 2.2.1(react@19.0.0) 5519 + '@react-aria/focus': 3.18.4(react@19.0.0) 5520 + '@react-aria/link': 3.7.6(react@19.0.0) 5521 + '@react-aria/utils': 3.26.0(react@19.0.0) 5522 + '@react-types/link': 3.5.8(react@19.0.0) 5523 + react: 19.0.0 5524 + react-dom: 19.0.0(react@19.0.0) 5221 5525 5222 - '@nextui-org/listbox@2.1.27(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5526 + '@nextui-org/listbox@2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5223 5527 dependencies: 5224 - '@nextui-org/aria-utils': 2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5225 - '@nextui-org/divider': 2.0.32(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5226 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5227 - '@nextui-org/shared-utils': 2.0.8 5228 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5229 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5230 - '@nextui-org/use-is-mobile': 2.0.9(react@18.3.1) 5231 - '@react-aria/focus': 3.17.1(react@18.3.1) 5232 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5233 - '@react-aria/listbox': 3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5234 - '@react-aria/utils': 3.24.1(react@18.3.1) 5235 - '@react-stately/list': 3.10.5(react@18.3.1) 5236 - '@react-types/menu': 3.9.9(react@18.3.1) 5237 - '@react-types/shared': 3.23.1(react@18.3.1) 5238 - react: 18.3.1 5239 - react-dom: 18.3.1(react@18.3.1) 5528 + '@nextui-org/aria-utils': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5529 + '@nextui-org/divider': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5530 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5531 + '@nextui-org/shared-utils': 2.1.1 5532 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5533 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5534 + '@nextui-org/use-is-mobile': 2.2.1(react@19.0.0) 5535 + '@react-aria/focus': 3.18.4(react@19.0.0) 5536 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5537 + '@react-aria/listbox': 3.13.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5538 + '@react-aria/utils': 3.26.0(react@19.0.0) 5539 + '@react-stately/list': 3.11.0(react@19.0.0) 5540 + '@react-types/menu': 3.9.12(react@19.0.0) 5541 + '@react-types/shared': 3.25.0(react@19.0.0) 5542 + '@tanstack/react-virtual': 3.10.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5543 + react: 19.0.0 5544 + react-dom: 19.0.0(react@19.0.0) 5240 5545 transitivePeerDependencies: 5241 5546 - framer-motion 5242 5547 5243 - '@nextui-org/menu@2.0.30(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5548 + '@nextui-org/menu@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5244 5549 dependencies: 5245 - '@nextui-org/aria-utils': 2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5246 - '@nextui-org/divider': 2.0.32(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5247 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5248 - '@nextui-org/shared-utils': 2.0.8 5249 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5250 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5251 - '@nextui-org/use-aria-menu': 2.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5252 - '@nextui-org/use-is-mobile': 2.0.9(react@18.3.1) 5253 - '@react-aria/focus': 3.17.1(react@18.3.1) 5254 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5255 - '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5256 - '@react-aria/utils': 3.24.1(react@18.3.1) 5257 - '@react-stately/menu': 3.7.1(react@18.3.1) 5258 - '@react-stately/tree': 3.8.1(react@18.3.1) 5259 - '@react-types/menu': 3.9.9(react@18.3.1) 5260 - '@react-types/shared': 3.23.1(react@18.3.1) 5261 - react: 18.3.1 5262 - react-dom: 18.3.1(react@18.3.1) 5550 + '@nextui-org/aria-utils': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5551 + '@nextui-org/divider': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5552 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5553 + '@nextui-org/shared-utils': 2.1.1 5554 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5555 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5556 + '@nextui-org/use-aria-menu': 2.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5557 + '@nextui-org/use-is-mobile': 2.2.1(react@19.0.0) 5558 + '@react-aria/focus': 3.18.4(react@19.0.0) 5559 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5560 + '@react-aria/menu': 3.15.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5561 + '@react-aria/utils': 3.26.0(react@19.0.0) 5562 + '@react-stately/menu': 3.8.3(react@19.0.0) 5563 + '@react-stately/tree': 3.8.5(react@19.0.0) 5564 + '@react-types/menu': 3.9.12(react@19.0.0) 5565 + '@react-types/shared': 3.25.0(react@19.0.0) 5566 + react: 19.0.0 5567 + react-dom: 19.0.0(react@19.0.0) 5263 5568 transitivePeerDependencies: 5264 5569 - framer-motion 5265 5570 5266 - '@nextui-org/modal@2.0.41(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5571 + '@nextui-org/modal@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5267 5572 dependencies: 5268 - '@nextui-org/framer-utils': 2.0.25(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5269 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5270 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 5271 - '@nextui-org/shared-utils': 2.0.8 5272 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5273 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5274 - '@nextui-org/use-aria-button': 2.0.10(react@18.3.1) 5275 - '@nextui-org/use-aria-modal-overlay': 2.0.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5276 - '@nextui-org/use-disclosure': 2.0.10(react@18.3.1) 5277 - '@react-aria/dialog': 3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5278 - '@react-aria/focus': 3.17.1(react@18.3.1) 5279 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5280 - '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5281 - '@react-aria/utils': 3.24.1(react@18.3.1) 5282 - '@react-stately/overlays': 3.6.7(react@18.3.1) 5283 - '@react-types/overlays': 3.8.7(react@18.3.1) 5284 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5285 - react: 18.3.1 5286 - react-dom: 18.3.1(react@18.3.1) 5573 + '@nextui-org/dom-animation': 2.1.1(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) 5574 + '@nextui-org/framer-utils': 2.1.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5575 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5576 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5577 + '@nextui-org/shared-utils': 2.1.1 5578 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5579 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5580 + '@nextui-org/use-aria-button': 2.2.1(react@19.0.0) 5581 + '@nextui-org/use-aria-modal-overlay': 2.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5582 + '@nextui-org/use-disclosure': 2.2.1(react@19.0.0) 5583 + '@nextui-org/use-draggable': 2.1.1(react@19.0.0) 5584 + '@react-aria/dialog': 3.5.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5585 + '@react-aria/focus': 3.18.4(react@19.0.0) 5586 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5587 + '@react-aria/overlays': 3.23.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5588 + '@react-aria/utils': 3.26.0(react@19.0.0) 5589 + '@react-stately/overlays': 3.6.11(react@19.0.0) 5590 + '@react-types/overlays': 3.8.10(react@19.0.0) 5591 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5592 + react: 19.0.0 5593 + react-dom: 19.0.0(react@19.0.0) 5287 5594 5288 - '@nextui-org/navbar@2.0.37(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5595 + '@nextui-org/navbar@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5289 5596 dependencies: 5290 - '@nextui-org/framer-utils': 2.0.25(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5291 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5292 - '@nextui-org/shared-utils': 2.0.8 5293 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5294 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5295 - '@nextui-org/use-aria-toggle-button': 2.0.10(react@18.3.1) 5296 - '@nextui-org/use-scroll-position': 2.0.9(react@18.3.1) 5297 - '@react-aria/focus': 3.17.1(react@18.3.1) 5298 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5299 - '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5300 - '@react-aria/utils': 3.24.1(react@18.3.1) 5301 - '@react-stately/toggle': 3.7.4(react@18.3.1) 5302 - '@react-stately/utils': 3.10.1(react@18.3.1) 5303 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5304 - react: 18.3.1 5305 - react-dom: 18.3.1(react@18.3.1) 5306 - react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1) 5307 - transitivePeerDependencies: 5308 - - '@types/react' 5597 + '@nextui-org/dom-animation': 2.1.1(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) 5598 + '@nextui-org/framer-utils': 2.1.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5599 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5600 + '@nextui-org/shared-utils': 2.1.1 5601 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5602 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5603 + '@nextui-org/use-aria-toggle-button': 2.2.1(react@19.0.0) 5604 + '@nextui-org/use-scroll-position': 2.1.1(react@19.0.0) 5605 + '@react-aria/focus': 3.18.4(react@19.0.0) 5606 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5607 + '@react-aria/overlays': 3.23.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5608 + '@react-aria/utils': 3.26.0(react@19.0.0) 5609 + '@react-stately/toggle': 3.7.8(react@19.0.0) 5610 + '@react-stately/utils': 3.10.4(react@19.0.0) 5611 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5612 + react: 19.0.0 5613 + react-dom: 19.0.0(react@19.0.0) 5309 5614 5310 - '@nextui-org/pagination@2.0.36(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5615 + '@nextui-org/pagination@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5311 5616 dependencies: 5312 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5313 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 5314 - '@nextui-org/shared-utils': 2.0.8 5315 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5316 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5317 - '@nextui-org/use-pagination': 2.0.10(react@18.3.1) 5318 - '@react-aria/focus': 3.17.1(react@18.3.1) 5319 - '@react-aria/i18n': 3.11.1(react@18.3.1) 5320 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5321 - '@react-aria/utils': 3.24.1(react@18.3.1) 5322 - react: 18.3.1 5323 - react-dom: 18.3.1(react@18.3.1) 5617 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5618 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5619 + '@nextui-org/shared-utils': 2.1.1 5620 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5621 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5622 + '@nextui-org/use-intersection-observer': 2.2.1(react@19.0.0) 5623 + '@nextui-org/use-pagination': 2.2.1(react@19.0.0) 5624 + '@react-aria/focus': 3.18.4(react@19.0.0) 5625 + '@react-aria/i18n': 3.12.3(react@19.0.0) 5626 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5627 + '@react-aria/utils': 3.26.0(react@19.0.0) 5628 + react: 19.0.0 5629 + react-dom: 19.0.0(react@19.0.0) 5324 5630 scroll-into-view-if-needed: 3.0.10 5325 5631 5326 - '@nextui-org/popover@2.1.29(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5632 + '@nextui-org/popover@2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5327 5633 dependencies: 5328 - '@nextui-org/aria-utils': 2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5329 - '@nextui-org/button': 2.0.38(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5330 - '@nextui-org/framer-utils': 2.0.25(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5331 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5332 - '@nextui-org/shared-utils': 2.0.8 5333 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5334 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5335 - '@nextui-org/use-aria-button': 2.0.10(react@18.3.1) 5336 - '@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1) 5337 - '@react-aria/dialog': 3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5338 - '@react-aria/focus': 3.17.1(react@18.3.1) 5339 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5340 - '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5341 - '@react-aria/utils': 3.24.1(react@18.3.1) 5342 - '@react-stately/overlays': 3.6.7(react@18.3.1) 5343 - '@react-types/button': 3.9.4(react@18.3.1) 5344 - '@react-types/overlays': 3.8.7(react@18.3.1) 5345 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5346 - react: 18.3.1 5347 - react-dom: 18.3.1(react@18.3.1) 5348 - react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1) 5349 - transitivePeerDependencies: 5350 - - '@types/react' 5634 + '@nextui-org/aria-utils': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5635 + '@nextui-org/button': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5636 + '@nextui-org/dom-animation': 2.1.1(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) 5637 + '@nextui-org/framer-utils': 2.1.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5638 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5639 + '@nextui-org/shared-utils': 2.1.1 5640 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5641 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5642 + '@nextui-org/use-aria-button': 2.2.1(react@19.0.0) 5643 + '@nextui-org/use-safe-layout-effect': 2.1.1(react@19.0.0) 5644 + '@react-aria/dialog': 3.5.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5645 + '@react-aria/focus': 3.18.4(react@19.0.0) 5646 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5647 + '@react-aria/overlays': 3.23.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5648 + '@react-aria/utils': 3.26.0(react@19.0.0) 5649 + '@react-stately/overlays': 3.6.11(react@19.0.0) 5650 + '@react-types/button': 3.10.0(react@19.0.0) 5651 + '@react-types/overlays': 3.8.10(react@19.0.0) 5652 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5653 + react: 19.0.0 5654 + react-dom: 19.0.0(react@19.0.0) 5351 5655 5352 - '@nextui-org/progress@2.0.34(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5656 + '@nextui-org/progress@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5353 5657 dependencies: 5354 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5355 - '@nextui-org/shared-utils': 2.0.8 5356 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5357 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5358 - '@nextui-org/use-is-mounted': 2.0.6(react@18.3.1) 5359 - '@react-aria/i18n': 3.11.1(react@18.3.1) 5360 - '@react-aria/progress': 3.4.13(react@18.3.1) 5361 - '@react-aria/utils': 3.24.1(react@18.3.1) 5362 - '@react-types/progress': 3.5.4(react@18.3.1) 5363 - react: 18.3.1 5364 - react-dom: 18.3.1(react@18.3.1) 5658 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5659 + '@nextui-org/shared-utils': 2.1.1 5660 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5661 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5662 + '@nextui-org/use-is-mounted': 2.1.1(react@19.0.0) 5663 + '@react-aria/i18n': 3.12.3(react@19.0.0) 5664 + '@react-aria/progress': 3.4.17(react@19.0.0) 5665 + '@react-aria/utils': 3.26.0(react@19.0.0) 5666 + '@react-types/progress': 3.5.7(react@19.0.0) 5667 + react: 19.0.0 5668 + react-dom: 19.0.0(react@19.0.0) 5365 5669 5366 - '@nextui-org/radio@2.1.5(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5670 + '@nextui-org/radio@2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5367 5671 dependencies: 5368 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5369 - '@nextui-org/shared-utils': 2.0.8 5370 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5371 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5372 - '@react-aria/focus': 3.17.1(react@18.3.1) 5373 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5374 - '@react-aria/radio': 3.10.4(react@18.3.1) 5375 - '@react-aria/utils': 3.24.1(react@18.3.1) 5376 - '@react-aria/visually-hidden': 3.8.12(react@18.3.1) 5377 - '@react-stately/radio': 3.10.4(react@18.3.1) 5378 - '@react-types/radio': 3.8.1(react@18.3.1) 5379 - '@react-types/shared': 3.23.1(react@18.3.1) 5380 - react: 18.3.1 5381 - react-dom: 18.3.1(react@18.3.1) 5672 + '@nextui-org/form': 2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5673 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5674 + '@nextui-org/shared-utils': 2.1.1 5675 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5676 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5677 + '@react-aria/focus': 3.18.4(react@19.0.0) 5678 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5679 + '@react-aria/radio': 3.10.9(react@19.0.0) 5680 + '@react-aria/utils': 3.26.0(react@19.0.0) 5681 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 5682 + '@react-stately/radio': 3.10.8(react@19.0.0) 5683 + '@react-types/radio': 3.8.4(react@19.0.0) 5684 + '@react-types/shared': 3.25.0(react@19.0.0) 5685 + react: 19.0.0 5686 + react-dom: 19.0.0(react@19.0.0) 5382 5687 5383 - '@nextui-org/react-rsc-utils@2.0.14(react@18.3.1)': 5688 + '@nextui-org/react-rsc-utils@2.1.1(react@19.0.0)': 5384 5689 dependencies: 5385 - react: 18.3.1 5690 + react: 19.0.0 5386 5691 5387 - '@nextui-org/react-utils@2.0.17(react@18.3.1)': 5692 + '@nextui-org/react-utils@2.1.1(react@19.0.0)': 5388 5693 dependencies: 5389 - '@nextui-org/react-rsc-utils': 2.0.14(react@18.3.1) 5390 - '@nextui-org/shared-utils': 2.0.8 5391 - react: 18.3.1 5694 + '@nextui-org/react-rsc-utils': 2.1.1(react@19.0.0) 5695 + '@nextui-org/shared-utils': 2.1.1 5696 + react: 19.0.0 5392 5697 5393 - '@nextui-org/react@2.4.8(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(tailwindcss@3.4.15)': 5698 + '@nextui-org/react@2.6.3(@types/react@19.0.1)(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(tailwindcss@3.4.16)': 5394 5699 dependencies: 5395 - '@nextui-org/accordion': 2.0.40(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5396 - '@nextui-org/autocomplete': 2.1.7(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5397 - '@nextui-org/avatar': 2.0.33(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5398 - '@nextui-org/badge': 2.0.32(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5399 - '@nextui-org/breadcrumbs': 2.0.13(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5400 - '@nextui-org/button': 2.0.38(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5401 - '@nextui-org/calendar': 2.0.12(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5402 - '@nextui-org/card': 2.0.34(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5403 - '@nextui-org/checkbox': 2.1.5(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5404 - '@nextui-org/chip': 2.0.33(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5405 - '@nextui-org/code': 2.0.33(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5406 - '@nextui-org/date-input': 2.1.4(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5407 - '@nextui-org/date-picker': 2.1.8(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5408 - '@nextui-org/divider': 2.0.32(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5409 - '@nextui-org/dropdown': 2.1.31(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5410 - '@nextui-org/framer-utils': 2.0.25(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5411 - '@nextui-org/image': 2.0.32(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5412 - '@nextui-org/input': 2.2.5(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5413 - '@nextui-org/kbd': 2.0.34(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5414 - '@nextui-org/link': 2.0.35(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5415 - '@nextui-org/listbox': 2.1.27(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5416 - '@nextui-org/menu': 2.0.30(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5417 - '@nextui-org/modal': 2.0.41(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5418 - '@nextui-org/navbar': 2.0.37(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5419 - '@nextui-org/pagination': 2.0.36(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5420 - '@nextui-org/popover': 2.1.29(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5421 - '@nextui-org/progress': 2.0.34(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5422 - '@nextui-org/radio': 2.1.5(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5423 - '@nextui-org/ripple': 2.0.33(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5424 - '@nextui-org/scroll-shadow': 2.1.20(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5425 - '@nextui-org/select': 2.2.7(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5426 - '@nextui-org/skeleton': 2.0.32(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5427 - '@nextui-org/slider': 2.2.17(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5428 - '@nextui-org/snippet': 2.0.43(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5429 - '@nextui-org/spacer': 2.0.33(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5430 - '@nextui-org/spinner': 2.0.34(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5431 - '@nextui-org/switch': 2.0.34(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5432 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5433 - '@nextui-org/table': 2.0.40(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5434 - '@nextui-org/tabs': 2.0.37(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5435 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5436 - '@nextui-org/tooltip': 2.0.41(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5437 - '@nextui-org/user': 2.0.34(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5438 - '@react-aria/visually-hidden': 3.8.12(react@18.3.1) 5439 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5440 - react: 18.3.1 5441 - react-dom: 18.3.1(react@18.3.1) 5700 + '@nextui-org/accordion': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5701 + '@nextui-org/alert': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5702 + '@nextui-org/autocomplete': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(@types/react@19.0.1)(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5703 + '@nextui-org/avatar': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5704 + '@nextui-org/badge': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5705 + '@nextui-org/breadcrumbs': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5706 + '@nextui-org/button': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5707 + '@nextui-org/calendar': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5708 + '@nextui-org/card': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5709 + '@nextui-org/checkbox': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5710 + '@nextui-org/chip': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5711 + '@nextui-org/code': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5712 + '@nextui-org/date-input': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5713 + '@nextui-org/date-picker': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5714 + '@nextui-org/divider': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5715 + '@nextui-org/drawer': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5716 + '@nextui-org/dropdown': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5717 + '@nextui-org/form': 2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5718 + '@nextui-org/framer-utils': 2.1.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5719 + '@nextui-org/image': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5720 + '@nextui-org/input': 2.4.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5721 + '@nextui-org/input-otp': 2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5722 + '@nextui-org/kbd': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5723 + '@nextui-org/link': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5724 + '@nextui-org/listbox': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5725 + '@nextui-org/menu': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5726 + '@nextui-org/modal': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5727 + '@nextui-org/navbar': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5728 + '@nextui-org/pagination': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5729 + '@nextui-org/popover': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5730 + '@nextui-org/progress': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5731 + '@nextui-org/radio': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5732 + '@nextui-org/ripple': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5733 + '@nextui-org/scroll-shadow': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5734 + '@nextui-org/select': 2.4.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5735 + '@nextui-org/skeleton': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5736 + '@nextui-org/slider': 2.4.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5737 + '@nextui-org/snippet': 2.2.3(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5738 + '@nextui-org/spacer': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5739 + '@nextui-org/spinner': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5740 + '@nextui-org/switch': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5741 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5742 + '@nextui-org/table': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5743 + '@nextui-org/tabs': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5744 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5745 + '@nextui-org/tooltip': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5746 + '@nextui-org/user': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5747 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 5748 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5749 + react: 19.0.0 5750 + react-dom: 19.0.0(react@19.0.0) 5442 5751 transitivePeerDependencies: 5443 5752 - '@types/react' 5444 5753 - tailwindcss 5445 5754 5446 - '@nextui-org/ripple@2.0.33(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5755 + '@nextui-org/ripple@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5447 5756 dependencies: 5448 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5449 - '@nextui-org/shared-utils': 2.0.8 5450 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5451 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5452 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5453 - react: 18.3.1 5454 - react-dom: 18.3.1(react@18.3.1) 5757 + '@nextui-org/dom-animation': 2.1.1(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) 5758 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5759 + '@nextui-org/shared-utils': 2.1.1 5760 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5761 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5762 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5763 + react: 19.0.0 5764 + react-dom: 19.0.0(react@19.0.0) 5455 5765 5456 - '@nextui-org/scroll-shadow@2.1.20(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5766 + '@nextui-org/scroll-shadow@2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5457 5767 dependencies: 5458 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5459 - '@nextui-org/shared-utils': 2.0.8 5460 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5461 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5462 - '@nextui-org/use-data-scroll-overflow': 2.1.7(react@18.3.1) 5463 - react: 18.3.1 5464 - react-dom: 18.3.1(react@18.3.1) 5768 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5769 + '@nextui-org/shared-utils': 2.1.1 5770 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5771 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5772 + '@nextui-org/use-data-scroll-overflow': 2.2.1(react@19.0.0) 5773 + react: 19.0.0 5774 + react-dom: 19.0.0(react@19.0.0) 5465 5775 5466 - '@nextui-org/select@2.2.7(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5776 + '@nextui-org/select@2.4.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5467 5777 dependencies: 5468 - '@nextui-org/aria-utils': 2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5469 - '@nextui-org/listbox': 2.1.27(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5470 - '@nextui-org/popover': 2.1.29(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(@types/react@18.3.12)(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5471 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5472 - '@nextui-org/scroll-shadow': 2.1.20(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5473 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 5474 - '@nextui-org/shared-utils': 2.0.8 5475 - '@nextui-org/spinner': 2.0.34(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5476 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5477 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5478 - '@nextui-org/use-aria-button': 2.0.10(react@18.3.1) 5479 - '@nextui-org/use-aria-multiselect': 2.2.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5480 - '@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1) 5481 - '@react-aria/focus': 3.17.1(react@18.3.1) 5482 - '@react-aria/form': 3.0.5(react@18.3.1) 5483 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5484 - '@react-aria/utils': 3.24.1(react@18.3.1) 5485 - '@react-aria/visually-hidden': 3.8.12(react@18.3.1) 5486 - '@react-types/shared': 3.23.1(react@18.3.1) 5487 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5488 - react: 18.3.1 5489 - react-dom: 18.3.1(react@18.3.1) 5490 - transitivePeerDependencies: 5491 - - '@types/react' 5778 + '@nextui-org/aria-utils': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5779 + '@nextui-org/form': 2.1.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5780 + '@nextui-org/listbox': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5781 + '@nextui-org/popover': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5782 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5783 + '@nextui-org/scroll-shadow': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5784 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5785 + '@nextui-org/shared-utils': 2.1.1 5786 + '@nextui-org/spinner': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5787 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5788 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5789 + '@nextui-org/use-aria-button': 2.2.1(react@19.0.0) 5790 + '@nextui-org/use-aria-multiselect': 2.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5791 + '@nextui-org/use-safe-layout-effect': 2.1.1(react@19.0.0) 5792 + '@react-aria/focus': 3.18.4(react@19.0.0) 5793 + '@react-aria/form': 3.0.10(react@19.0.0) 5794 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5795 + '@react-aria/utils': 3.26.0(react@19.0.0) 5796 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 5797 + '@react-types/shared': 3.25.0(react@19.0.0) 5798 + '@tanstack/react-virtual': 3.10.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5799 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5800 + react: 19.0.0 5801 + react-dom: 19.0.0(react@19.0.0) 5492 5802 5493 - '@nextui-org/shared-icons@2.0.9(react@18.3.1)': 5803 + '@nextui-org/shared-icons@2.1.1(react@19.0.0)': 5494 5804 dependencies: 5495 - react: 18.3.1 5805 + react: 19.0.0 5496 5806 5497 - '@nextui-org/shared-utils@2.0.8': {} 5807 + '@nextui-org/shared-utils@2.1.1': {} 5498 5808 5499 - '@nextui-org/skeleton@2.0.32(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5809 + '@nextui-org/skeleton@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5500 5810 dependencies: 5501 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5502 - '@nextui-org/shared-utils': 2.0.8 5503 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5504 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5505 - react: 18.3.1 5506 - react-dom: 18.3.1(react@18.3.1) 5811 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5812 + '@nextui-org/shared-utils': 2.1.1 5813 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5814 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5815 + react: 19.0.0 5816 + react-dom: 19.0.0(react@19.0.0) 5507 5817 5508 - '@nextui-org/slider@2.2.17(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5818 + '@nextui-org/slider@2.4.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5509 5819 dependencies: 5510 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5511 - '@nextui-org/shared-utils': 2.0.8 5512 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5513 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5514 - '@nextui-org/tooltip': 2.0.41(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5515 - '@react-aria/focus': 3.17.1(react@18.3.1) 5516 - '@react-aria/i18n': 3.11.1(react@18.3.1) 5517 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5518 - '@react-aria/slider': 3.7.8(react@18.3.1) 5519 - '@react-aria/utils': 3.24.1(react@18.3.1) 5520 - '@react-aria/visually-hidden': 3.8.12(react@18.3.1) 5521 - '@react-stately/slider': 3.5.4(react@18.3.1) 5522 - react: 18.3.1 5523 - react-dom: 18.3.1(react@18.3.1) 5820 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5821 + '@nextui-org/shared-utils': 2.1.1 5822 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5823 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5824 + '@nextui-org/tooltip': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5825 + '@react-aria/focus': 3.18.4(react@19.0.0) 5826 + '@react-aria/i18n': 3.12.3(react@19.0.0) 5827 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5828 + '@react-aria/slider': 3.7.13(react@19.0.0) 5829 + '@react-aria/utils': 3.26.0(react@19.0.0) 5830 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 5831 + '@react-stately/slider': 3.5.8(react@19.0.0) 5832 + react: 19.0.0 5833 + react-dom: 19.0.0(react@19.0.0) 5524 5834 transitivePeerDependencies: 5525 5835 - framer-motion 5526 5836 5527 - '@nextui-org/snippet@2.0.43(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5837 + '@nextui-org/snippet@2.2.3(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5528 5838 dependencies: 5529 - '@nextui-org/button': 2.0.38(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5530 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5531 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 5532 - '@nextui-org/shared-utils': 2.0.8 5533 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5534 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5535 - '@nextui-org/tooltip': 2.0.41(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5536 - '@nextui-org/use-clipboard': 2.0.7(react@18.3.1) 5537 - '@react-aria/focus': 3.17.1(react@18.3.1) 5538 - '@react-aria/utils': 3.24.1(react@18.3.1) 5539 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5540 - react: 18.3.1 5541 - react-dom: 18.3.1(react@18.3.1) 5839 + '@nextui-org/button': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5840 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5841 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5842 + '@nextui-org/shared-utils': 2.1.1 5843 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5844 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5845 + '@nextui-org/tooltip': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5846 + '@nextui-org/use-clipboard': 2.1.1(react@19.0.0) 5847 + '@react-aria/focus': 3.18.4(react@19.0.0) 5848 + '@react-aria/utils': 3.26.0(react@19.0.0) 5849 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5850 + react: 19.0.0 5851 + react-dom: 19.0.0(react@19.0.0) 5542 5852 5543 - '@nextui-org/spacer@2.0.33(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5853 + '@nextui-org/spacer@2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5544 5854 dependencies: 5545 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5546 - '@nextui-org/shared-utils': 2.0.8 5547 - '@nextui-org/system-rsc': 2.1.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react@18.3.1) 5548 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5549 - react: 18.3.1 5550 - react-dom: 18.3.1(react@18.3.1) 5855 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5856 + '@nextui-org/shared-utils': 2.1.1 5857 + '@nextui-org/system-rsc': 2.3.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react@19.0.0) 5858 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5859 + react: 19.0.0 5860 + react-dom: 19.0.0(react@19.0.0) 5551 5861 5552 - '@nextui-org/spinner@2.0.34(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5862 + '@nextui-org/spinner@2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5553 5863 dependencies: 5554 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5555 - '@nextui-org/shared-utils': 2.0.8 5556 - '@nextui-org/system-rsc': 2.1.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react@18.3.1) 5557 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5558 - react: 18.3.1 5559 - react-dom: 18.3.1(react@18.3.1) 5864 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5865 + '@nextui-org/shared-utils': 2.1.1 5866 + '@nextui-org/system-rsc': 2.3.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react@19.0.0) 5867 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5868 + react: 19.0.0 5869 + react-dom: 19.0.0(react@19.0.0) 5560 5870 5561 - '@nextui-org/switch@2.0.34(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5871 + '@nextui-org/switch@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5562 5872 dependencies: 5563 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5564 - '@nextui-org/shared-utils': 2.0.8 5565 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5566 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5567 - '@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1) 5568 - '@react-aria/focus': 3.17.1(react@18.3.1) 5569 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5570 - '@react-aria/switch': 3.6.4(react@18.3.1) 5571 - '@react-aria/utils': 3.24.1(react@18.3.1) 5572 - '@react-aria/visually-hidden': 3.8.12(react@18.3.1) 5573 - '@react-stately/toggle': 3.7.4(react@18.3.1) 5574 - '@react-types/shared': 3.23.1(react@18.3.1) 5575 - react: 18.3.1 5576 - react-dom: 18.3.1(react@18.3.1) 5873 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5874 + '@nextui-org/shared-utils': 2.1.1 5875 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5876 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5877 + '@nextui-org/use-safe-layout-effect': 2.1.1(react@19.0.0) 5878 + '@react-aria/focus': 3.18.4(react@19.0.0) 5879 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5880 + '@react-aria/switch': 3.6.9(react@19.0.0) 5881 + '@react-aria/utils': 3.26.0(react@19.0.0) 5882 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 5883 + '@react-stately/toggle': 3.7.8(react@19.0.0) 5884 + '@react-types/shared': 3.25.0(react@19.0.0) 5885 + react: 19.0.0 5886 + react-dom: 19.0.0(react@19.0.0) 5577 5887 5578 - '@nextui-org/system-rsc@2.1.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react@18.3.1)': 5888 + '@nextui-org/system-rsc@2.3.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react@19.0.0)': 5579 5889 dependencies: 5580 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5581 - '@react-types/shared': 3.23.1(react@18.3.1) 5890 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5891 + '@react-types/shared': 3.25.0(react@19.0.0) 5582 5892 clsx: 1.2.1 5583 - react: 18.3.1 5893 + react: 19.0.0 5584 5894 5585 - '@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5895 + '@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5586 5896 dependencies: 5587 - '@internationalized/date': 3.5.5 5588 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5589 - '@nextui-org/system-rsc': 2.1.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react@18.3.1) 5590 - '@react-aria/i18n': 3.11.1(react@18.3.1) 5591 - '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5592 - '@react-aria/utils': 3.24.1(react@18.3.1) 5593 - '@react-stately/utils': 3.10.1(react@18.3.1) 5594 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5595 - react: 18.3.1 5596 - react-dom: 18.3.1(react@18.3.1) 5897 + '@internationalized/date': 3.5.6 5898 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5899 + '@nextui-org/system-rsc': 2.3.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react@19.0.0) 5900 + '@react-aria/i18n': 3.12.3(react@19.0.0) 5901 + '@react-aria/overlays': 3.23.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5902 + '@react-aria/utils': 3.26.0(react@19.0.0) 5903 + '@react-stately/utils': 3.10.4(react@19.0.0) 5904 + '@react-types/datepicker': 3.8.3(react@19.0.0) 5905 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5906 + react: 19.0.0 5907 + react-dom: 19.0.0(react@19.0.0) 5597 5908 transitivePeerDependencies: 5598 5909 - '@nextui-org/theme' 5599 5910 5600 - '@nextui-org/table@2.0.40(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5911 + '@nextui-org/table@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5601 5912 dependencies: 5602 - '@nextui-org/checkbox': 2.1.5(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5603 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5604 - '@nextui-org/shared-icons': 2.0.9(react@18.3.1) 5605 - '@nextui-org/shared-utils': 2.0.8 5606 - '@nextui-org/spacer': 2.0.33(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5607 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5608 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5609 - '@react-aria/focus': 3.17.1(react@18.3.1) 5610 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5611 - '@react-aria/table': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5612 - '@react-aria/utils': 3.24.1(react@18.3.1) 5613 - '@react-aria/visually-hidden': 3.8.12(react@18.3.1) 5614 - '@react-stately/table': 3.11.8(react@18.3.1) 5615 - '@react-stately/virtualizer': 3.7.1(react@18.3.1) 5616 - '@react-types/grid': 3.2.6(react@18.3.1) 5617 - '@react-types/table': 3.9.5(react@18.3.1) 5618 - react: 18.3.1 5619 - react-dom: 18.3.1(react@18.3.1) 5913 + '@nextui-org/checkbox': 2.3.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5914 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5915 + '@nextui-org/shared-icons': 2.1.1(react@19.0.0) 5916 + '@nextui-org/shared-utils': 2.1.1 5917 + '@nextui-org/spacer': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5918 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5919 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5920 + '@react-aria/focus': 3.18.4(react@19.0.0) 5921 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5922 + '@react-aria/table': 3.15.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5923 + '@react-aria/utils': 3.26.0(react@19.0.0) 5924 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 5925 + '@react-stately/table': 3.12.3(react@19.0.0) 5926 + '@react-stately/virtualizer': 4.1.0(react@19.0.0) 5927 + '@react-types/grid': 3.2.9(react@19.0.0) 5928 + '@react-types/table': 3.10.2(react@19.0.0) 5929 + react: 19.0.0 5930 + react-dom: 19.0.0(react@19.0.0) 5620 5931 5621 - '@nextui-org/tabs@2.0.37(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5932 + '@nextui-org/tabs@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5622 5933 dependencies: 5623 - '@nextui-org/aria-utils': 2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5624 - '@nextui-org/framer-utils': 2.0.25(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5625 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5626 - '@nextui-org/shared-utils': 2.0.8 5627 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5628 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5629 - '@nextui-org/use-is-mounted': 2.0.6(react@18.3.1) 5630 - '@nextui-org/use-update-effect': 2.0.6(react@18.3.1) 5631 - '@react-aria/focus': 3.17.1(react@18.3.1) 5632 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5633 - '@react-aria/tabs': 3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5634 - '@react-aria/utils': 3.24.1(react@18.3.1) 5635 - '@react-stately/tabs': 3.6.6(react@18.3.1) 5636 - '@react-types/shared': 3.23.1(react@18.3.1) 5637 - '@react-types/tabs': 3.3.7(react@18.3.1) 5638 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5639 - react: 18.3.1 5640 - react-dom: 18.3.1(react@18.3.1) 5934 + '@nextui-org/aria-utils': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5935 + '@nextui-org/framer-utils': 2.1.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5936 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5937 + '@nextui-org/shared-utils': 2.1.1 5938 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5939 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5940 + '@nextui-org/use-is-mounted': 2.1.1(react@19.0.0) 5941 + '@nextui-org/use-update-effect': 2.1.1(react@19.0.0) 5942 + '@react-aria/focus': 3.18.4(react@19.0.0) 5943 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5944 + '@react-aria/tabs': 3.9.7(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5945 + '@react-aria/utils': 3.26.0(react@19.0.0) 5946 + '@react-stately/tabs': 3.6.10(react@19.0.0) 5947 + '@react-types/shared': 3.25.0(react@19.0.0) 5948 + '@react-types/tabs': 3.3.10(react@19.0.0) 5949 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5950 + react: 19.0.0 5951 + react-dom: 19.0.0(react@19.0.0) 5641 5952 scroll-into-view-if-needed: 3.0.10 5642 5953 5643 - '@nextui-org/theme@2.2.11(tailwindcss@3.4.15)': 5954 + '@nextui-org/theme@2.4.1(tailwindcss@3.4.16)': 5644 5955 dependencies: 5956 + '@nextui-org/shared-utils': 2.1.1 5645 5957 clsx: 1.2.1 5646 5958 color: 4.2.3 5647 5959 color2k: 2.0.3 5648 5960 deepmerge: 4.3.1 5649 5961 flat: 5.0.2 5650 - lodash.foreach: 4.5.0 5651 - lodash.get: 4.4.2 5652 - lodash.kebabcase: 4.1.1 5653 - lodash.mapkeys: 4.6.0 5654 - lodash.omit: 4.5.0 5655 - tailwind-merge: 1.14.0 5656 - tailwind-variants: 0.1.20(tailwindcss@3.4.15) 5657 - tailwindcss: 3.4.15 5962 + tailwind-merge: 2.5.5 5963 + tailwind-variants: 0.1.20(tailwindcss@3.4.16) 5964 + tailwindcss: 3.4.16 5658 5965 5659 - '@nextui-org/tooltip@2.0.41(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5966 + '@nextui-org/tooltip@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5660 5967 dependencies: 5661 - '@nextui-org/aria-utils': 2.0.26(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5662 - '@nextui-org/framer-utils': 2.0.25(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5663 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5664 - '@nextui-org/shared-utils': 2.0.8 5665 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5666 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5667 - '@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1) 5668 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5669 - '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5670 - '@react-aria/tooltip': 3.7.4(react@18.3.1) 5671 - '@react-aria/utils': 3.24.1(react@18.3.1) 5672 - '@react-stately/tooltip': 3.4.9(react@18.3.1) 5673 - '@react-types/overlays': 3.8.7(react@18.3.1) 5674 - '@react-types/tooltip': 3.4.9(react@18.3.1) 5675 - framer-motion: 11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5676 - react: 18.3.1 5677 - react-dom: 18.3.1(react@18.3.1) 5968 + '@nextui-org/aria-utils': 2.2.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5969 + '@nextui-org/dom-animation': 2.1.1(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) 5970 + '@nextui-org/framer-utils': 2.1.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5971 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 5972 + '@nextui-org/shared-utils': 2.1.1 5973 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5974 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 5975 + '@nextui-org/use-safe-layout-effect': 2.1.1(react@19.0.0) 5976 + '@react-aria/interactions': 3.22.4(react@19.0.0) 5977 + '@react-aria/overlays': 3.23.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5978 + '@react-aria/tooltip': 3.7.9(react@19.0.0) 5979 + '@react-aria/utils': 3.26.0(react@19.0.0) 5980 + '@react-stately/tooltip': 3.4.13(react@19.0.0) 5981 + '@react-types/overlays': 3.8.10(react@19.0.0) 5982 + '@react-types/tooltip': 3.4.12(react@19.0.0) 5983 + framer-motion: 12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5984 + react: 19.0.0 5985 + react-dom: 19.0.0(react@19.0.0) 5678 5986 5679 - '@nextui-org/use-aria-accordion@2.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 5987 + '@nextui-org/use-aria-accordion@2.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5680 5988 dependencies: 5681 - '@react-aria/button': 3.9.5(react@18.3.1) 5682 - '@react-aria/focus': 3.17.1(react@18.3.1) 5683 - '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5684 - '@react-aria/utils': 3.24.1(react@18.3.1) 5685 - '@react-stately/tree': 3.8.1(react@18.3.1) 5686 - '@react-types/accordion': 3.0.0-alpha.21(react@18.3.1) 5687 - '@react-types/shared': 3.23.1(react@18.3.1) 5688 - react: 18.3.1 5989 + '@react-aria/button': 3.10.1(react@19.0.0) 5990 + '@react-aria/focus': 3.18.4(react@19.0.0) 5991 + '@react-aria/selection': 3.20.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5992 + '@react-aria/utils': 3.26.0(react@19.0.0) 5993 + '@react-stately/tree': 3.8.5(react@19.0.0) 5994 + '@react-types/accordion': 3.0.0-alpha.24(react@19.0.0) 5995 + '@react-types/shared': 3.25.0(react@19.0.0) 5996 + react: 19.0.0 5689 5997 transitivePeerDependencies: 5690 5998 - react-dom 5691 5999 5692 - '@nextui-org/use-aria-button@2.0.10(react@18.3.1)': 6000 + '@nextui-org/use-aria-button@2.2.1(react@19.0.0)': 5693 6001 dependencies: 5694 - '@react-aria/focus': 3.17.1(react@18.3.1) 5695 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5696 - '@react-aria/utils': 3.24.1(react@18.3.1) 5697 - '@react-types/button': 3.9.4(react@18.3.1) 5698 - '@react-types/shared': 3.23.1(react@18.3.1) 5699 - react: 18.3.1 6002 + '@react-aria/focus': 3.18.4(react@19.0.0) 6003 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6004 + '@react-aria/utils': 3.26.0(react@19.0.0) 6005 + '@react-types/button': 3.10.0(react@19.0.0) 6006 + '@react-types/shared': 3.25.0(react@19.0.0) 6007 + react: 19.0.0 5700 6008 5701 - '@nextui-org/use-aria-link@2.0.19(react@18.3.1)': 6009 + '@nextui-org/use-aria-link@2.2.1(react@19.0.0)': 5702 6010 dependencies: 5703 - '@react-aria/focus': 3.17.1(react@18.3.1) 5704 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5705 - '@react-aria/utils': 3.24.1(react@18.3.1) 5706 - '@react-types/link': 3.5.5(react@18.3.1) 5707 - '@react-types/shared': 3.23.1(react@18.3.1) 5708 - react: 18.3.1 6011 + '@react-aria/focus': 3.18.4(react@19.0.0) 6012 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6013 + '@react-aria/utils': 3.26.0(react@19.0.0) 6014 + '@react-types/link': 3.5.8(react@19.0.0) 6015 + '@react-types/shared': 3.25.0(react@19.0.0) 6016 + react: 19.0.0 5709 6017 5710 - '@nextui-org/use-aria-menu@2.0.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6018 + '@nextui-org/use-aria-menu@2.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5711 6019 dependencies: 5712 - '@react-aria/i18n': 3.11.1(react@18.3.1) 5713 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5714 - '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5715 - '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5716 - '@react-aria/utils': 3.24.1(react@18.3.1) 5717 - '@react-stately/collections': 3.10.7(react@18.3.1) 5718 - '@react-stately/tree': 3.8.1(react@18.3.1) 5719 - '@react-types/menu': 3.9.9(react@18.3.1) 5720 - '@react-types/shared': 3.23.1(react@18.3.1) 5721 - react: 18.3.1 5722 - react-dom: 18.3.1(react@18.3.1) 6020 + '@react-aria/i18n': 3.12.3(react@19.0.0) 6021 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6022 + '@react-aria/menu': 3.15.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6023 + '@react-aria/selection': 3.20.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6024 + '@react-aria/utils': 3.26.0(react@19.0.0) 6025 + '@react-stately/collections': 3.11.0(react@19.0.0) 6026 + '@react-stately/tree': 3.8.5(react@19.0.0) 6027 + '@react-types/menu': 3.9.12(react@19.0.0) 6028 + '@react-types/shared': 3.25.0(react@19.0.0) 6029 + react: 19.0.0 6030 + react-dom: 19.0.0(react@19.0.0) 5723 6031 5724 - '@nextui-org/use-aria-modal-overlay@2.0.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6032 + '@nextui-org/use-aria-modal-overlay@2.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5725 6033 dependencies: 5726 - '@react-aria/overlays': 3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5727 - '@react-aria/utils': 3.24.1(react@18.3.1) 5728 - '@react-stately/overlays': 3.6.7(react@18.3.1) 5729 - '@react-types/shared': 3.23.1(react@18.3.1) 5730 - react: 18.3.1 5731 - react-dom: 18.3.1(react@18.3.1) 6034 + '@react-aria/overlays': 3.23.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6035 + '@react-aria/utils': 3.26.0(react@19.0.0) 6036 + '@react-stately/overlays': 3.6.11(react@19.0.0) 6037 + '@react-types/shared': 3.25.0(react@19.0.0) 6038 + react: 19.0.0 6039 + react-dom: 19.0.0(react@19.0.0) 5732 6040 5733 - '@nextui-org/use-aria-multiselect@2.2.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6041 + '@nextui-org/use-aria-multiselect@2.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5734 6042 dependencies: 5735 - '@react-aria/i18n': 3.11.1(react@18.3.1) 5736 - '@react-aria/interactions': 3.21.3(react@18.3.1) 5737 - '@react-aria/label': 3.7.8(react@18.3.1) 5738 - '@react-aria/listbox': 3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5739 - '@react-aria/menu': 3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5740 - '@react-aria/selection': 3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5741 - '@react-aria/utils': 3.24.1(react@18.3.1) 5742 - '@react-stately/form': 3.0.3(react@18.3.1) 5743 - '@react-stately/list': 3.10.5(react@18.3.1) 5744 - '@react-stately/menu': 3.7.1(react@18.3.1) 5745 - '@react-types/button': 3.9.4(react@18.3.1) 5746 - '@react-types/overlays': 3.8.7(react@18.3.1) 5747 - '@react-types/select': 3.9.4(react@18.3.1) 5748 - '@react-types/shared': 3.23.1(react@18.3.1) 5749 - react: 18.3.1 5750 - react-dom: 18.3.1(react@18.3.1) 6043 + '@react-aria/i18n': 3.12.3(react@19.0.0) 6044 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6045 + '@react-aria/label': 3.7.12(react@19.0.0) 6046 + '@react-aria/listbox': 3.13.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6047 + '@react-aria/menu': 3.15.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6048 + '@react-aria/selection': 3.20.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6049 + '@react-aria/utils': 3.26.0(react@19.0.0) 6050 + '@react-stately/form': 3.0.6(react@19.0.0) 6051 + '@react-stately/list': 3.11.0(react@19.0.0) 6052 + '@react-stately/menu': 3.8.3(react@19.0.0) 6053 + '@react-types/button': 3.10.0(react@19.0.0) 6054 + '@react-types/overlays': 3.8.10(react@19.0.0) 6055 + '@react-types/select': 3.9.7(react@19.0.0) 6056 + '@react-types/shared': 3.25.0(react@19.0.0) 6057 + react: 19.0.0 6058 + react-dom: 19.0.0(react@19.0.0) 5751 6059 5752 - '@nextui-org/use-aria-toggle-button@2.0.10(react@18.3.1)': 6060 + '@nextui-org/use-aria-toggle-button@2.2.1(react@19.0.0)': 5753 6061 dependencies: 5754 - '@nextui-org/use-aria-button': 2.0.10(react@18.3.1) 5755 - '@react-aria/utils': 3.24.1(react@18.3.1) 5756 - '@react-stately/toggle': 3.7.4(react@18.3.1) 5757 - '@react-types/button': 3.9.4(react@18.3.1) 5758 - '@react-types/shared': 3.23.1(react@18.3.1) 5759 - react: 18.3.1 6062 + '@nextui-org/use-aria-button': 2.2.1(react@19.0.0) 6063 + '@react-aria/utils': 3.26.0(react@19.0.0) 6064 + '@react-stately/toggle': 3.7.8(react@19.0.0) 6065 + '@react-types/button': 3.10.0(react@19.0.0) 6066 + '@react-types/shared': 3.25.0(react@19.0.0) 6067 + react: 19.0.0 5760 6068 5761 - '@nextui-org/use-callback-ref@2.0.6(react@18.3.1)': 6069 + '@nextui-org/use-callback-ref@2.1.1(react@19.0.0)': 5762 6070 dependencies: 5763 - '@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1) 5764 - react: 18.3.1 6071 + '@nextui-org/use-safe-layout-effect': 2.1.1(react@19.0.0) 6072 + react: 19.0.0 5765 6073 5766 - '@nextui-org/use-clipboard@2.0.7(react@18.3.1)': 6074 + '@nextui-org/use-clipboard@2.1.1(react@19.0.0)': 5767 6075 dependencies: 5768 - react: 18.3.1 6076 + react: 19.0.0 6077 + 6078 + '@nextui-org/use-data-scroll-overflow@2.2.1(react@19.0.0)': 6079 + dependencies: 6080 + '@nextui-org/shared-utils': 2.1.1 6081 + react: 19.0.0 6082 + 6083 + '@nextui-org/use-disclosure@2.2.1(react@19.0.0)': 6084 + dependencies: 6085 + '@nextui-org/use-callback-ref': 2.1.1(react@19.0.0) 6086 + '@react-aria/utils': 3.26.0(react@19.0.0) 6087 + '@react-stately/utils': 3.10.4(react@19.0.0) 6088 + react: 19.0.0 5769 6089 5770 - '@nextui-org/use-data-scroll-overflow@2.1.7(react@18.3.1)': 6090 + '@nextui-org/use-draggable@2.1.1(react@19.0.0)': 5771 6091 dependencies: 5772 - '@nextui-org/shared-utils': 2.0.8 5773 - react: 18.3.1 6092 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6093 + react: 19.0.0 5774 6094 5775 - '@nextui-org/use-disclosure@2.0.10(react@18.3.1)': 6095 + '@nextui-org/use-image@2.1.1(react@19.0.0)': 5776 6096 dependencies: 5777 - '@nextui-org/use-callback-ref': 2.0.6(react@18.3.1) 5778 - '@react-aria/utils': 3.24.1(react@18.3.1) 5779 - '@react-stately/utils': 3.10.1(react@18.3.1) 5780 - react: 18.3.1 6097 + '@nextui-org/use-safe-layout-effect': 2.1.1(react@19.0.0) 6098 + react: 19.0.0 5781 6099 5782 - '@nextui-org/use-image@2.0.6(react@18.3.1)': 6100 + '@nextui-org/use-intersection-observer@2.2.1(react@19.0.0)': 5783 6101 dependencies: 5784 - '@nextui-org/use-safe-layout-effect': 2.0.6(react@18.3.1) 5785 - react: 18.3.1 6102 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6103 + '@react-aria/ssr': 3.9.6(react@19.0.0) 6104 + '@react-aria/utils': 3.26.0(react@19.0.0) 6105 + '@react-types/shared': 3.25.0(react@19.0.0) 6106 + react: 19.0.0 5786 6107 5787 - '@nextui-org/use-is-mobile@2.0.9(react@18.3.1)': 6108 + '@nextui-org/use-is-mobile@2.2.1(react@19.0.0)': 5788 6109 dependencies: 5789 - '@react-aria/ssr': 3.9.4(react@18.3.1) 5790 - react: 18.3.1 6110 + '@react-aria/ssr': 3.9.6(react@19.0.0) 6111 + react: 19.0.0 5791 6112 5792 - '@nextui-org/use-is-mounted@2.0.6(react@18.3.1)': 6113 + '@nextui-org/use-is-mounted@2.1.1(react@19.0.0)': 5793 6114 dependencies: 5794 - react: 18.3.1 6115 + react: 19.0.0 5795 6116 5796 - '@nextui-org/use-measure@2.0.2(react@18.3.1)': 6117 + '@nextui-org/use-measure@2.1.1(react@19.0.0)': 5797 6118 dependencies: 5798 - react: 18.3.1 6119 + react: 19.0.0 5799 6120 5800 - '@nextui-org/use-pagination@2.0.10(react@18.3.1)': 6121 + '@nextui-org/use-pagination@2.2.1(react@19.0.0)': 5801 6122 dependencies: 5802 - '@nextui-org/shared-utils': 2.0.8 5803 - '@react-aria/i18n': 3.11.1(react@18.3.1) 5804 - react: 18.3.1 6123 + '@nextui-org/shared-utils': 2.1.1 6124 + '@react-aria/i18n': 3.12.3(react@19.0.0) 6125 + react: 19.0.0 5805 6126 5806 - '@nextui-org/use-safe-layout-effect@2.0.6(react@18.3.1)': 6127 + '@nextui-org/use-safe-layout-effect@2.1.1(react@19.0.0)': 5807 6128 dependencies: 5808 - react: 18.3.1 6129 + react: 19.0.0 5809 6130 5810 - '@nextui-org/use-scroll-position@2.0.9(react@18.3.1)': 6131 + '@nextui-org/use-scroll-position@2.1.1(react@19.0.0)': 5811 6132 dependencies: 5812 - react: 18.3.1 6133 + react: 19.0.0 5813 6134 5814 - '@nextui-org/use-update-effect@2.0.6(react@18.3.1)': 6135 + '@nextui-org/use-update-effect@2.1.1(react@19.0.0)': 5815 6136 dependencies: 5816 - react: 18.3.1 6137 + react: 19.0.0 5817 6138 5818 - '@nextui-org/user@2.0.34(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6139 + '@nextui-org/user@2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5819 6140 dependencies: 5820 - '@nextui-org/avatar': 2.0.33(@nextui-org/system@2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5821 - '@nextui-org/react-utils': 2.0.17(react@18.3.1) 5822 - '@nextui-org/shared-utils': 2.0.8 5823 - '@nextui-org/system': 2.2.6(@nextui-org/theme@2.2.11(tailwindcss@3.4.15))(framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5824 - '@nextui-org/theme': 2.2.11(tailwindcss@3.4.15) 5825 - '@react-aria/focus': 3.17.1(react@18.3.1) 5826 - '@react-aria/utils': 3.24.1(react@18.3.1) 5827 - react: 18.3.1 5828 - react-dom: 18.3.1(react@18.3.1) 6141 + '@nextui-org/avatar': 2.2.2(@nextui-org/system@2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6142 + '@nextui-org/react-utils': 2.1.1(react@19.0.0) 6143 + '@nextui-org/shared-utils': 2.1.1 6144 + '@nextui-org/system': 2.4.2(@nextui-org/theme@2.4.1(tailwindcss@3.4.16))(framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6145 + '@nextui-org/theme': 2.4.1(tailwindcss@3.4.16) 6146 + '@react-aria/focus': 3.18.4(react@19.0.0) 6147 + '@react-aria/utils': 3.26.0(react@19.0.0) 6148 + react: 19.0.0 6149 + react-dom: 19.0.0(react@19.0.0) 5829 6150 5830 6151 '@nodelib/fs.scandir@2.1.5': 5831 6152 dependencies: ··· 5841 6162 5842 6163 '@octokit/openapi-types@22.2.0': {} 5843 6164 5844 - '@octokit/types@13.6.1': 6165 + '@octokit/types@13.6.2': 5845 6166 dependencies: 5846 6167 '@octokit/openapi-types': 22.2.0 5847 6168 5848 - '@odiffey/discord-markdown@3.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6169 + '@odiffey/discord-markdown@3.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5849 6170 dependencies: 5850 - '@khanacademy/simple-markdown': 0.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6171 + '@khanacademy/simple-markdown': 0.12.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 5851 6172 highlight.js: 11.10.0 5852 6173 transitivePeerDependencies: 5853 6174 - react ··· 5858 6179 5859 6180 '@radix-ui/primitive@1.1.0': {} 5860 6181 5861 - '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6182 + '@radix-ui/react-arrow@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5862 6183 dependencies: 5863 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5864 - react: 18.3.1 5865 - react-dom: 18.3.1(react@18.3.1) 6184 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6185 + react: 19.0.0 6186 + react-dom: 19.0.0(react@19.0.0) 5866 6187 optionalDependencies: 5867 - '@types/react': 18.3.12 5868 - '@types/react-dom': 18.3.1 6188 + '@types/react': 19.0.1 6189 + '@types/react-dom': 19.0.1 5869 6190 5870 - '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.12)(react@18.3.1)': 6191 + '@radix-ui/react-compose-refs@1.1.0(@types/react@19.0.1)(react@19.0.0)': 5871 6192 dependencies: 5872 - react: 18.3.1 6193 + react: 19.0.0 5873 6194 optionalDependencies: 5874 - '@types/react': 18.3.12 6195 + '@types/react': 19.0.1 5875 6196 5876 - '@radix-ui/react-context@1.1.0(@types/react@18.3.12)(react@18.3.1)': 6197 + '@radix-ui/react-context@1.1.0(@types/react@19.0.1)(react@19.0.0)': 5877 6198 dependencies: 5878 - react: 18.3.1 6199 + react: 19.0.0 5879 6200 optionalDependencies: 5880 - '@types/react': 18.3.12 6201 + '@types/react': 19.0.1 5881 6202 5882 - '@radix-ui/react-context@1.1.1(@types/react@18.3.12)(react@18.3.1)': 6203 + '@radix-ui/react-context@1.1.1(@types/react@19.0.1)(react@19.0.0)': 5883 6204 dependencies: 5884 - react: 18.3.1 6205 + react: 19.0.0 5885 6206 optionalDependencies: 5886 - '@types/react': 18.3.12 6207 + '@types/react': 19.0.1 5887 6208 5888 - '@radix-ui/react-dialog@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6209 + '@radix-ui/react-dialog@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5889 6210 dependencies: 5890 6211 '@radix-ui/primitive': 1.1.0 5891 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5892 - '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@18.3.1) 5893 - '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5894 - '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.12)(react@18.3.1) 5895 - '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5896 - '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5897 - '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5898 - '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5899 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5900 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5901 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@18.3.1) 6212 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6213 + '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 6214 + '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6215 + '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0) 6216 + '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6217 + '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6218 + '@radix-ui/react-portal': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6219 + '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6220 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6221 + '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6222 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 5902 6223 aria-hidden: 1.2.4 5903 - react: 18.3.1 5904 - react-dom: 18.3.1(react@18.3.1) 5905 - react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1) 6224 + react: 19.0.0 6225 + react-dom: 19.0.0(react@19.0.0) 6226 + react-remove-scroll: 2.6.0(@types/react@19.0.1)(react@19.0.0) 5906 6227 optionalDependencies: 5907 - '@types/react': 18.3.12 5908 - '@types/react-dom': 18.3.1 6228 + '@types/react': 19.0.1 6229 + '@types/react-dom': 19.0.1 5909 6230 5910 - '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6231 + '@radix-ui/react-dismissable-layer@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5911 6232 dependencies: 5912 6233 '@radix-ui/primitive': 1.1.0 5913 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5914 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5915 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5916 - '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5917 - react: 18.3.1 5918 - react-dom: 18.3.1(react@18.3.1) 6234 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6235 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6236 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6237 + '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6238 + react: 19.0.0 6239 + react-dom: 19.0.0(react@19.0.0) 5919 6240 optionalDependencies: 5920 - '@types/react': 18.3.12 5921 - '@types/react-dom': 18.3.1 6241 + '@types/react': 19.0.1 6242 + '@types/react-dom': 19.0.1 5922 6243 5923 - '@radix-ui/react-focus-guards@1.1.1(@types/react@18.3.12)(react@18.3.1)': 6244 + '@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.1)(react@19.0.0)': 5924 6245 dependencies: 5925 - react: 18.3.1 6246 + react: 19.0.0 5926 6247 optionalDependencies: 5927 - '@types/react': 18.3.12 6248 + '@types/react': 19.0.1 5928 6249 5929 - '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6250 + '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5930 6251 dependencies: 5931 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5932 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5933 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5934 - react: 18.3.1 5935 - react-dom: 18.3.1(react@18.3.1) 6252 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6253 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6254 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6255 + react: 19.0.0 6256 + react-dom: 19.0.0(react@19.0.0) 5936 6257 optionalDependencies: 5937 - '@types/react': 18.3.12 5938 - '@types/react-dom': 18.3.1 6258 + '@types/react': 19.0.1 6259 + '@types/react-dom': 19.0.1 5939 6260 5940 - '@radix-ui/react-id@1.1.0(@types/react@18.3.12)(react@18.3.1)': 6261 + '@radix-ui/react-id@1.1.0(@types/react@19.0.1)(react@19.0.0)': 5941 6262 dependencies: 5942 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5943 - react: 18.3.1 6263 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6264 + react: 19.0.0 5944 6265 optionalDependencies: 5945 - '@types/react': 18.3.12 6266 + '@types/react': 19.0.1 5946 6267 5947 - '@radix-ui/react-popover@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6268 + '@radix-ui/react-popover@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5948 6269 dependencies: 5949 6270 '@radix-ui/primitive': 1.1.0 5950 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5951 - '@radix-ui/react-context': 1.1.1(@types/react@18.3.12)(react@18.3.1) 5952 - '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5953 - '@radix-ui/react-focus-guards': 1.1.1(@types/react@18.3.12)(react@18.3.1) 5954 - '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5955 - '@radix-ui/react-id': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5956 - '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5957 - '@radix-ui/react-portal': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5958 - '@radix-ui/react-presence': 1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5959 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5960 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5961 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.12)(react@18.3.1) 6271 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6272 + '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 6273 + '@radix-ui/react-dismissable-layer': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6274 + '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0) 6275 + '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6276 + '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6277 + '@radix-ui/react-popper': 1.2.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6278 + '@radix-ui/react-portal': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6279 + '@radix-ui/react-presence': 1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6280 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6281 + '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6282 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 5962 6283 aria-hidden: 1.2.4 5963 - react: 18.3.1 5964 - react-dom: 18.3.1(react@18.3.1) 5965 - react-remove-scroll: 2.6.0(@types/react@18.3.12)(react@18.3.1) 6284 + react: 19.0.0 6285 + react-dom: 19.0.0(react@19.0.0) 6286 + react-remove-scroll: 2.6.0(@types/react@19.0.1)(react@19.0.0) 5966 6287 optionalDependencies: 5967 - '@types/react': 18.3.12 5968 - '@types/react-dom': 18.3.1 6288 + '@types/react': 19.0.1 6289 + '@types/react-dom': 19.0.1 5969 6290 5970 - '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6291 + '@radix-ui/react-popper@1.2.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5971 6292 dependencies: 5972 - '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5973 - '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5974 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5975 - '@radix-ui/react-context': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5976 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5977 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5978 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5979 - '@radix-ui/react-use-rect': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5980 - '@radix-ui/react-use-size': 1.1.0(@types/react@18.3.12)(react@18.3.1) 6293 + '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6294 + '@radix-ui/react-arrow': 1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6295 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6296 + '@radix-ui/react-context': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6297 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6298 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6299 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6300 + '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6301 + '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0) 5981 6302 '@radix-ui/rect': 1.1.0 5982 - react: 18.3.1 5983 - react-dom: 18.3.1(react@18.3.1) 6303 + react: 19.0.0 6304 + react-dom: 19.0.0(react@19.0.0) 5984 6305 optionalDependencies: 5985 - '@types/react': 18.3.12 5986 - '@types/react-dom': 18.3.1 6306 + '@types/react': 19.0.1 6307 + '@types/react-dom': 19.0.1 5987 6308 5988 - '@radix-ui/react-portal@1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6309 + '@radix-ui/react-portal@1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5989 6310 dependencies: 5990 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5991 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1) 5992 - react: 18.3.1 5993 - react-dom: 18.3.1(react@18.3.1) 6311 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6312 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6313 + react: 19.0.0 6314 + react-dom: 19.0.0(react@19.0.0) 5994 6315 optionalDependencies: 5995 - '@types/react': 18.3.12 5996 - '@types/react-dom': 18.3.1 6316 + '@types/react': 19.0.1 6317 + '@types/react-dom': 19.0.1 5997 6318 5998 - '@radix-ui/react-presence@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6319 + '@radix-ui/react-presence@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 5999 6320 dependencies: 6000 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1) 6001 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1) 6002 - react: 18.3.1 6003 - react-dom: 18.3.1(react@18.3.1) 6321 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6322 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6323 + react: 19.0.0 6324 + react-dom: 19.0.0(react@19.0.0) 6004 6325 optionalDependencies: 6005 - '@types/react': 18.3.12 6006 - '@types/react-dom': 18.3.1 6326 + '@types/react': 19.0.1 6327 + '@types/react-dom': 19.0.1 6007 6328 6008 - '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6329 + '@radix-ui/react-primitive@2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6009 6330 dependencies: 6010 - '@radix-ui/react-slot': 1.1.0(@types/react@18.3.12)(react@18.3.1) 6011 - react: 18.3.1 6012 - react-dom: 18.3.1(react@18.3.1) 6331 + '@radix-ui/react-slot': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6332 + react: 19.0.0 6333 + react-dom: 19.0.0(react@19.0.0) 6013 6334 optionalDependencies: 6014 - '@types/react': 18.3.12 6015 - '@types/react-dom': 18.3.1 6335 + '@types/react': 19.0.1 6336 + '@types/react-dom': 19.0.1 6016 6337 6017 - '@radix-ui/react-separator@1.1.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6338 + '@radix-ui/react-separator@1.1.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6018 6339 dependencies: 6019 - '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6020 - react: 18.3.1 6021 - react-dom: 18.3.1(react@18.3.1) 6340 + '@radix-ui/react-primitive': 2.0.0(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6341 + react: 19.0.0 6342 + react-dom: 19.0.0(react@19.0.0) 6022 6343 optionalDependencies: 6023 - '@types/react': 18.3.12 6024 - '@types/react-dom': 18.3.1 6344 + '@types/react': 19.0.1 6345 + '@types/react-dom': 19.0.1 6025 6346 6026 - '@radix-ui/react-slot@1.1.0(@types/react@18.3.12)(react@18.3.1)': 6347 + '@radix-ui/react-slot@1.1.0(@types/react@19.0.1)(react@19.0.0)': 6027 6348 dependencies: 6028 - '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.12)(react@18.3.1) 6029 - react: 18.3.1 6349 + '@radix-ui/react-compose-refs': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6350 + react: 19.0.0 6030 6351 optionalDependencies: 6031 - '@types/react': 18.3.12 6352 + '@types/react': 19.0.1 6032 6353 6033 - '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.12)(react@18.3.1)': 6354 + '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.1)(react@19.0.0)': 6034 6355 dependencies: 6035 - react: 18.3.1 6356 + react: 19.0.0 6036 6357 optionalDependencies: 6037 - '@types/react': 18.3.12 6358 + '@types/react': 19.0.1 6038 6359 6039 - '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.12)(react@18.3.1)': 6360 + '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.1)(react@19.0.0)': 6040 6361 dependencies: 6041 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1) 6042 - react: 18.3.1 6362 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6363 + react: 19.0.0 6043 6364 optionalDependencies: 6044 - '@types/react': 18.3.12 6365 + '@types/react': 19.0.1 6045 6366 6046 - '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.12)(react@18.3.1)': 6367 + '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.1)(react@19.0.0)': 6047 6368 dependencies: 6048 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.12)(react@18.3.1) 6049 - react: 18.3.1 6369 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6370 + react: 19.0.0 6050 6371 optionalDependencies: 6051 - '@types/react': 18.3.12 6372 + '@types/react': 19.0.1 6052 6373 6053 - '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.12)(react@18.3.1)': 6374 + '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.1)(react@19.0.0)': 6054 6375 dependencies: 6055 - react: 18.3.1 6376 + react: 19.0.0 6056 6377 optionalDependencies: 6057 - '@types/react': 18.3.12 6378 + '@types/react': 19.0.1 6058 6379 6059 - '@radix-ui/react-use-rect@1.1.0(@types/react@18.3.12)(react@18.3.1)': 6380 + '@radix-ui/react-use-rect@1.1.0(@types/react@19.0.1)(react@19.0.0)': 6060 6381 dependencies: 6061 6382 '@radix-ui/rect': 1.1.0 6062 - react: 18.3.1 6383 + react: 19.0.0 6063 6384 optionalDependencies: 6064 - '@types/react': 18.3.12 6385 + '@types/react': 19.0.1 6065 6386 6066 - '@radix-ui/react-use-size@1.1.0(@types/react@18.3.12)(react@18.3.1)': 6387 + '@radix-ui/react-use-size@1.1.0(@types/react@19.0.1)(react@19.0.0)': 6067 6388 dependencies: 6068 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.12)(react@18.3.1) 6069 - react: 18.3.1 6389 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 6390 + react: 19.0.0 6070 6391 optionalDependencies: 6071 - '@types/react': 18.3.12 6392 + '@types/react': 19.0.1 6072 6393 6073 6394 '@radix-ui/rect@1.1.0': {} 6074 6395 6075 - '@react-aria/breadcrumbs@3.5.13(react@18.3.1)': 6396 + '@react-aria/breadcrumbs@3.5.18(react@19.0.0)': 6076 6397 dependencies: 6077 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6078 - '@react-aria/link': 3.7.3(react@18.3.1) 6079 - '@react-aria/utils': 3.25.1(react@18.3.1) 6080 - '@react-types/breadcrumbs': 3.7.5(react@18.3.1) 6081 - '@react-types/shared': 3.24.1(react@18.3.1) 6398 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6399 + '@react-aria/link': 3.7.7(react@19.0.0) 6400 + '@react-aria/utils': 3.26.0(react@19.0.0) 6401 + '@react-types/breadcrumbs': 3.7.8(react@19.0.0) 6402 + '@react-types/shared': 3.25.0(react@19.0.0) 6082 6403 '@swc/helpers': 0.5.13 6083 - react: 18.3.1 6404 + react: 19.0.0 6084 6405 6085 - '@react-aria/button@3.9.5(react@18.3.1)': 6406 + '@react-aria/button@3.10.1(react@19.0.0)': 6086 6407 dependencies: 6087 - '@react-aria/focus': 3.18.1(react@18.3.1) 6088 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6089 - '@react-aria/utils': 3.25.1(react@18.3.1) 6090 - '@react-stately/toggle': 3.7.6(react@18.3.1) 6091 - '@react-types/button': 3.9.6(react@18.3.1) 6092 - '@react-types/shared': 3.24.1(react@18.3.1) 6408 + '@react-aria/focus': 3.18.4(react@19.0.0) 6409 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6410 + '@react-aria/utils': 3.26.0(react@19.0.0) 6411 + '@react-stately/toggle': 3.8.0(react@19.0.0) 6412 + '@react-types/button': 3.10.1(react@19.0.0) 6413 + '@react-types/shared': 3.25.0(react@19.0.0) 6093 6414 '@swc/helpers': 0.5.13 6094 - react: 18.3.1 6415 + react: 19.0.0 6095 6416 6096 - '@react-aria/calendar@3.5.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6417 + '@react-aria/calendar@3.5.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6097 6418 dependencies: 6098 - '@internationalized/date': 3.5.5 6099 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6100 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6101 - '@react-aria/live-announcer': 3.3.4 6102 - '@react-aria/utils': 3.25.1(react@18.3.1) 6103 - '@react-stately/calendar': 3.5.1(react@18.3.1) 6104 - '@react-types/button': 3.9.6(react@18.3.1) 6105 - '@react-types/calendar': 3.4.8(react@18.3.1) 6106 - '@react-types/shared': 3.24.1(react@18.3.1) 6419 + '@internationalized/date': 3.5.6 6420 + '@react-aria/i18n': 3.12.3(react@19.0.0) 6421 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6422 + '@react-aria/live-announcer': 3.4.1 6423 + '@react-aria/utils': 3.26.0(react@19.0.0) 6424 + '@react-stately/calendar': 3.5.5(react@19.0.0) 6425 + '@react-types/button': 3.10.0(react@19.0.0) 6426 + '@react-types/calendar': 3.4.10(react@19.0.0) 6427 + '@react-types/shared': 3.25.0(react@19.0.0) 6107 6428 '@swc/helpers': 0.5.13 6108 - react: 18.3.1 6109 - react-dom: 18.3.1(react@18.3.1) 6429 + react: 19.0.0 6430 + react-dom: 19.0.0(react@19.0.0) 6110 6431 6111 - '@react-aria/checkbox@3.14.3(react@18.3.1)': 6432 + '@react-aria/checkbox@3.14.8(react@19.0.0)': 6112 6433 dependencies: 6113 - '@react-aria/form': 3.0.7(react@18.3.1) 6114 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6115 - '@react-aria/label': 3.7.10(react@18.3.1) 6116 - '@react-aria/toggle': 3.10.6(react@18.3.1) 6117 - '@react-aria/utils': 3.25.1(react@18.3.1) 6118 - '@react-stately/checkbox': 3.6.5(react@18.3.1) 6119 - '@react-stately/form': 3.0.5(react@18.3.1) 6120 - '@react-stately/toggle': 3.7.6(react@18.3.1) 6121 - '@react-types/checkbox': 3.8.3(react@18.3.1) 6122 - '@react-types/shared': 3.24.1(react@18.3.1) 6434 + '@react-aria/form': 3.0.11(react@19.0.0) 6435 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6436 + '@react-aria/label': 3.7.13(react@19.0.0) 6437 + '@react-aria/toggle': 3.10.10(react@19.0.0) 6438 + '@react-aria/utils': 3.26.0(react@19.0.0) 6439 + '@react-stately/checkbox': 3.6.9(react@19.0.0) 6440 + '@react-stately/form': 3.1.0(react@19.0.0) 6441 + '@react-stately/toggle': 3.7.8(react@19.0.0) 6442 + '@react-types/checkbox': 3.8.4(react@19.0.0) 6443 + '@react-types/shared': 3.25.0(react@19.0.0) 6123 6444 '@swc/helpers': 0.5.13 6124 - react: 18.3.1 6445 + react: 19.0.0 6125 6446 6126 - '@react-aria/combobox@3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6447 + '@react-aria/combobox@3.10.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6127 6448 dependencies: 6128 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6129 - '@react-aria/listbox': 3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6130 - '@react-aria/live-announcer': 3.3.4 6131 - '@react-aria/menu': 3.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6132 - '@react-aria/overlays': 3.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6133 - '@react-aria/selection': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6134 - '@react-aria/textfield': 3.14.7(react@18.3.1) 6135 - '@react-aria/utils': 3.25.1(react@18.3.1) 6136 - '@react-stately/collections': 3.10.9(react@18.3.1) 6137 - '@react-stately/combobox': 3.8.4(react@18.3.1) 6138 - '@react-stately/form': 3.0.5(react@18.3.1) 6139 - '@react-types/button': 3.9.6(react@18.3.1) 6140 - '@react-types/combobox': 3.11.1(react@18.3.1) 6141 - '@react-types/shared': 3.24.1(react@18.3.1) 6449 + '@react-aria/i18n': 3.12.3(react@19.0.0) 6450 + '@react-aria/listbox': 3.13.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6451 + '@react-aria/live-announcer': 3.4.1 6452 + '@react-aria/menu': 3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6453 + '@react-aria/overlays': 3.24.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6454 + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6455 + '@react-aria/textfield': 3.15.0(react@19.0.0) 6456 + '@react-aria/utils': 3.26.0(react@19.0.0) 6457 + '@react-stately/collections': 3.12.0(react@19.0.0) 6458 + '@react-stately/combobox': 3.10.0(react@19.0.0) 6459 + '@react-stately/form': 3.1.0(react@19.0.0) 6460 + '@react-types/button': 3.10.1(react@19.0.0) 6461 + '@react-types/combobox': 3.13.0(react@19.0.0) 6462 + '@react-types/shared': 3.25.0(react@19.0.0) 6142 6463 '@swc/helpers': 0.5.13 6143 - react: 18.3.1 6144 - react-dom: 18.3.1(react@18.3.1) 6464 + react: 19.0.0 6465 + react-dom: 19.0.0(react@19.0.0) 6145 6466 6146 - '@react-aria/datepicker@3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6467 + '@react-aria/datepicker@3.11.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6147 6468 dependencies: 6148 - '@internationalized/date': 3.5.5 6149 - '@internationalized/number': 3.5.3 6150 - '@internationalized/string': 3.2.3 6151 - '@react-aria/focus': 3.18.1(react@18.3.1) 6152 - '@react-aria/form': 3.0.7(react@18.3.1) 6153 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6154 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6155 - '@react-aria/label': 3.7.10(react@18.3.1) 6156 - '@react-aria/spinbutton': 3.6.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6157 - '@react-aria/utils': 3.25.1(react@18.3.1) 6158 - '@react-stately/datepicker': 3.9.4(react@18.3.1) 6159 - '@react-stately/form': 3.0.5(react@18.3.1) 6160 - '@react-types/button': 3.9.6(react@18.3.1) 6161 - '@react-types/calendar': 3.4.8(react@18.3.1) 6162 - '@react-types/datepicker': 3.7.4(react@18.3.1) 6163 - '@react-types/dialog': 3.5.12(react@18.3.1) 6164 - '@react-types/shared': 3.24.1(react@18.3.1) 6469 + '@internationalized/date': 3.5.6 6470 + '@internationalized/number': 3.6.0 6471 + '@internationalized/string': 3.2.5 6472 + '@react-aria/focus': 3.19.0(react@19.0.0) 6473 + '@react-aria/form': 3.0.11(react@19.0.0) 6474 + '@react-aria/i18n': 3.12.3(react@19.0.0) 6475 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6476 + '@react-aria/label': 3.7.13(react@19.0.0) 6477 + '@react-aria/spinbutton': 3.6.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6478 + '@react-aria/utils': 3.26.0(react@19.0.0) 6479 + '@react-stately/datepicker': 3.10.3(react@19.0.0) 6480 + '@react-stately/form': 3.1.0(react@19.0.0) 6481 + '@react-types/button': 3.10.1(react@19.0.0) 6482 + '@react-types/calendar': 3.5.0(react@19.0.0) 6483 + '@react-types/datepicker': 3.8.3(react@19.0.0) 6484 + '@react-types/dialog': 3.5.14(react@19.0.0) 6485 + '@react-types/shared': 3.25.0(react@19.0.0) 6165 6486 '@swc/helpers': 0.5.13 6166 - react: 18.3.1 6167 - react-dom: 18.3.1(react@18.3.1) 6487 + react: 19.0.0 6488 + react-dom: 19.0.0(react@19.0.0) 6168 6489 6169 - '@react-aria/dialog@3.5.14(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6490 + '@react-aria/dialog@3.5.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6170 6491 dependencies: 6171 - '@react-aria/focus': 3.18.1(react@18.3.1) 6172 - '@react-aria/overlays': 3.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6173 - '@react-aria/utils': 3.25.1(react@18.3.1) 6174 - '@react-types/dialog': 3.5.12(react@18.3.1) 6175 - '@react-types/shared': 3.24.1(react@18.3.1) 6492 + '@react-aria/focus': 3.18.4(react@19.0.0) 6493 + '@react-aria/overlays': 3.23.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6494 + '@react-aria/utils': 3.26.0(react@19.0.0) 6495 + '@react-types/dialog': 3.5.14(react@19.0.0) 6496 + '@react-types/shared': 3.26.0(react@19.0.0) 6176 6497 '@swc/helpers': 0.5.13 6177 - react: 18.3.1 6178 - react-dom: 18.3.1(react@18.3.1) 6498 + react: 19.0.0 6499 + react-dom: 19.0.0(react@19.0.0) 6179 6500 6180 - '@react-aria/focus@3.17.1(react@18.3.1)': 6501 + '@react-aria/focus@3.18.4(react@19.0.0)': 6181 6502 dependencies: 6182 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6183 - '@react-aria/utils': 3.25.1(react@18.3.1) 6184 - '@react-types/shared': 3.24.1(react@18.3.1) 6503 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6504 + '@react-aria/utils': 3.26.0(react@19.0.0) 6505 + '@react-types/shared': 3.25.0(react@19.0.0) 6185 6506 '@swc/helpers': 0.5.13 6186 6507 clsx: 2.1.1 6187 - react: 18.3.1 6508 + react: 19.0.0 6188 6509 6189 - '@react-aria/focus@3.18.1(react@18.3.1)': 6510 + '@react-aria/focus@3.19.0(react@19.0.0)': 6190 6511 dependencies: 6191 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6192 - '@react-aria/utils': 3.25.1(react@18.3.1) 6193 - '@react-types/shared': 3.24.1(react@18.3.1) 6512 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6513 + '@react-aria/utils': 3.26.0(react@19.0.0) 6514 + '@react-types/shared': 3.26.0(react@19.0.0) 6194 6515 '@swc/helpers': 0.5.13 6195 6516 clsx: 2.1.1 6196 - react: 18.3.1 6517 + react: 19.0.0 6197 6518 6198 - '@react-aria/form@3.0.5(react@18.3.1)': 6519 + '@react-aria/form@3.0.10(react@19.0.0)': 6199 6520 dependencies: 6200 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6201 - '@react-aria/utils': 3.25.1(react@18.3.1) 6202 - '@react-stately/form': 3.0.5(react@18.3.1) 6203 - '@react-types/shared': 3.24.1(react@18.3.1) 6521 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6522 + '@react-aria/utils': 3.26.0(react@19.0.0) 6523 + '@react-stately/form': 3.1.0(react@19.0.0) 6524 + '@react-types/shared': 3.25.0(react@19.0.0) 6204 6525 '@swc/helpers': 0.5.13 6205 - react: 18.3.1 6526 + react: 19.0.0 6206 6527 6207 - '@react-aria/form@3.0.7(react@18.3.1)': 6528 + '@react-aria/form@3.0.11(react@19.0.0)': 6208 6529 dependencies: 6209 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6210 - '@react-aria/utils': 3.25.1(react@18.3.1) 6211 - '@react-stately/form': 3.0.5(react@18.3.1) 6212 - '@react-types/shared': 3.24.1(react@18.3.1) 6530 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6531 + '@react-aria/utils': 3.26.0(react@19.0.0) 6532 + '@react-stately/form': 3.1.0(react@19.0.0) 6533 + '@react-types/shared': 3.26.0(react@19.0.0) 6213 6534 '@swc/helpers': 0.5.13 6214 - react: 18.3.1 6535 + react: 19.0.0 6215 6536 6216 - '@react-aria/grid@3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6537 + '@react-aria/form@3.0.8(react@19.0.0)': 6217 6538 dependencies: 6218 - '@react-aria/focus': 3.18.1(react@18.3.1) 6219 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6220 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6221 - '@react-aria/live-announcer': 3.3.4 6222 - '@react-aria/selection': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6223 - '@react-aria/utils': 3.25.1(react@18.3.1) 6224 - '@react-stately/collections': 3.10.9(react@18.3.1) 6225 - '@react-stately/grid': 3.9.1(react@18.3.1) 6226 - '@react-stately/selection': 3.16.1(react@18.3.1) 6227 - '@react-types/checkbox': 3.8.3(react@18.3.1) 6228 - '@react-types/grid': 3.2.8(react@18.3.1) 6229 - '@react-types/shared': 3.24.1(react@18.3.1) 6539 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6540 + '@react-aria/utils': 3.26.0(react@19.0.0) 6541 + '@react-stately/form': 3.0.5(react@19.0.0) 6542 + '@react-types/shared': 3.24.1(react@19.0.0) 6230 6543 '@swc/helpers': 0.5.13 6231 - react: 18.3.1 6232 - react-dom: 18.3.1(react@18.3.1) 6544 + react: 19.0.0 6233 6545 6234 - '@react-aria/i18n@3.11.1(react@18.3.1)': 6546 + '@react-aria/grid@3.11.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6235 6547 dependencies: 6236 - '@internationalized/date': 3.5.5 6237 - '@internationalized/message': 3.1.4 6238 - '@internationalized/number': 3.5.3 6239 - '@internationalized/string': 3.2.3 6240 - '@react-aria/ssr': 3.9.5(react@18.3.1) 6241 - '@react-aria/utils': 3.25.1(react@18.3.1) 6242 - '@react-types/shared': 3.24.1(react@18.3.1) 6548 + '@react-aria/focus': 3.19.0(react@19.0.0) 6549 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6550 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6551 + '@react-aria/live-announcer': 3.4.1 6552 + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6553 + '@react-aria/utils': 3.26.0(react@19.0.0) 6554 + '@react-stately/collections': 3.12.0(react@19.0.0) 6555 + '@react-stately/grid': 3.10.0(react@19.0.0) 6556 + '@react-stately/selection': 3.18.0(react@19.0.0) 6557 + '@react-types/checkbox': 3.9.0(react@19.0.0) 6558 + '@react-types/grid': 3.2.10(react@19.0.0) 6559 + '@react-types/shared': 3.26.0(react@19.0.0) 6243 6560 '@swc/helpers': 0.5.13 6244 - react: 18.3.1 6561 + react: 19.0.0 6562 + react-dom: 19.0.0(react@19.0.0) 6245 6563 6246 - '@react-aria/i18n@3.12.1(react@18.3.1)': 6564 + '@react-aria/i18n@3.12.3(react@19.0.0)': 6247 6565 dependencies: 6248 - '@internationalized/date': 3.5.5 6249 - '@internationalized/message': 3.1.4 6250 - '@internationalized/number': 3.5.3 6251 - '@internationalized/string': 3.2.3 6252 - '@react-aria/ssr': 3.9.5(react@18.3.1) 6253 - '@react-aria/utils': 3.25.1(react@18.3.1) 6254 - '@react-types/shared': 3.24.1(react@18.3.1) 6566 + '@internationalized/date': 3.6.0 6567 + '@internationalized/message': 3.1.6 6568 + '@internationalized/number': 3.6.0 6569 + '@internationalized/string': 3.2.5 6570 + '@react-aria/ssr': 3.9.7(react@19.0.0) 6571 + '@react-aria/utils': 3.26.0(react@19.0.0) 6572 + '@react-types/shared': 3.25.0(react@19.0.0) 6255 6573 '@swc/helpers': 0.5.13 6256 - react: 18.3.1 6574 + react: 19.0.0 6257 6575 6258 - '@react-aria/interactions@3.21.3(react@18.3.1)': 6576 + '@react-aria/i18n@3.12.4(react@19.0.0)': 6259 6577 dependencies: 6260 - '@react-aria/ssr': 3.9.5(react@18.3.1) 6261 - '@react-aria/utils': 3.25.1(react@18.3.1) 6262 - '@react-types/shared': 3.24.1(react@18.3.1) 6578 + '@internationalized/date': 3.6.0 6579 + '@internationalized/message': 3.1.6 6580 + '@internationalized/number': 3.6.0 6581 + '@internationalized/string': 3.2.5 6582 + '@react-aria/ssr': 3.9.7(react@19.0.0) 6583 + '@react-aria/utils': 3.26.0(react@19.0.0) 6584 + '@react-types/shared': 3.26.0(react@19.0.0) 6263 6585 '@swc/helpers': 0.5.13 6264 - react: 18.3.1 6586 + react: 19.0.0 6265 6587 6266 - '@react-aria/interactions@3.22.1(react@18.3.1)': 6588 + '@react-aria/interactions@3.22.4(react@19.0.0)': 6267 6589 dependencies: 6268 - '@react-aria/ssr': 3.9.5(react@18.3.1) 6269 - '@react-aria/utils': 3.25.1(react@18.3.1) 6270 - '@react-types/shared': 3.24.1(react@18.3.1) 6590 + '@react-aria/ssr': 3.9.7(react@19.0.0) 6591 + '@react-aria/utils': 3.26.0(react@19.0.0) 6592 + '@react-types/shared': 3.25.0(react@19.0.0) 6271 6593 '@swc/helpers': 0.5.13 6272 - react: 18.3.1 6594 + react: 19.0.0 6273 6595 6274 - '@react-aria/label@3.7.10(react@18.3.1)': 6596 + '@react-aria/interactions@3.22.5(react@19.0.0)': 6275 6597 dependencies: 6276 - '@react-aria/utils': 3.25.1(react@18.3.1) 6277 - '@react-types/shared': 3.24.1(react@18.3.1) 6598 + '@react-aria/ssr': 3.9.7(react@19.0.0) 6599 + '@react-aria/utils': 3.26.0(react@19.0.0) 6600 + '@react-types/shared': 3.26.0(react@19.0.0) 6278 6601 '@swc/helpers': 0.5.13 6279 - react: 18.3.1 6602 + react: 19.0.0 6280 6603 6281 - '@react-aria/label@3.7.8(react@18.3.1)': 6604 + '@react-aria/label@3.7.12(react@19.0.0)': 6282 6605 dependencies: 6283 - '@react-aria/utils': 3.25.1(react@18.3.1) 6284 - '@react-types/shared': 3.24.1(react@18.3.1) 6606 + '@react-aria/utils': 3.26.0(react@19.0.0) 6607 + '@react-types/shared': 3.25.0(react@19.0.0) 6285 6608 '@swc/helpers': 0.5.13 6286 - react: 18.3.1 6609 + react: 19.0.0 6287 6610 6288 - '@react-aria/link@3.7.1(react@18.3.1)': 6611 + '@react-aria/label@3.7.13(react@19.0.0)': 6289 6612 dependencies: 6290 - '@react-aria/focus': 3.18.1(react@18.3.1) 6291 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6292 - '@react-aria/utils': 3.25.1(react@18.3.1) 6293 - '@react-types/link': 3.5.7(react@18.3.1) 6294 - '@react-types/shared': 3.24.1(react@18.3.1) 6613 + '@react-aria/utils': 3.26.0(react@19.0.0) 6614 + '@react-types/shared': 3.26.0(react@19.0.0) 6295 6615 '@swc/helpers': 0.5.13 6296 - react: 18.3.1 6616 + react: 19.0.0 6297 6617 6298 - '@react-aria/link@3.7.3(react@18.3.1)': 6618 + '@react-aria/link@3.7.6(react@19.0.0)': 6299 6619 dependencies: 6300 - '@react-aria/focus': 3.18.1(react@18.3.1) 6301 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6302 - '@react-aria/utils': 3.25.1(react@18.3.1) 6303 - '@react-types/link': 3.5.7(react@18.3.1) 6304 - '@react-types/shared': 3.24.1(react@18.3.1) 6620 + '@react-aria/focus': 3.18.4(react@19.0.0) 6621 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6622 + '@react-aria/utils': 3.26.0(react@19.0.0) 6623 + '@react-types/link': 3.5.8(react@19.0.0) 6624 + '@react-types/shared': 3.26.0(react@19.0.0) 6305 6625 '@swc/helpers': 0.5.13 6306 - react: 18.3.1 6626 + react: 19.0.0 6307 6627 6308 - '@react-aria/listbox@3.12.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6628 + '@react-aria/link@3.7.7(react@19.0.0)': 6309 6629 dependencies: 6310 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6311 - '@react-aria/label': 3.7.10(react@18.3.1) 6312 - '@react-aria/selection': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6313 - '@react-aria/utils': 3.25.1(react@18.3.1) 6314 - '@react-stately/collections': 3.10.9(react@18.3.1) 6315 - '@react-stately/list': 3.10.7(react@18.3.1) 6316 - '@react-types/listbox': 3.5.1(react@18.3.1) 6317 - '@react-types/shared': 3.24.1(react@18.3.1) 6630 + '@react-aria/focus': 3.19.0(react@19.0.0) 6631 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6632 + '@react-aria/utils': 3.26.0(react@19.0.0) 6633 + '@react-types/link': 3.5.9(react@19.0.0) 6634 + '@react-types/shared': 3.26.0(react@19.0.0) 6635 + '@swc/helpers': 0.5.13 6636 + react: 19.0.0 6637 + 6638 + '@react-aria/listbox@3.13.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6639 + dependencies: 6640 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6641 + '@react-aria/label': 3.7.13(react@19.0.0) 6642 + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6643 + '@react-aria/utils': 3.26.0(react@19.0.0) 6644 + '@react-stately/collections': 3.12.0(react@19.0.0) 6645 + '@react-stately/list': 3.11.0(react@19.0.0) 6646 + '@react-types/listbox': 3.5.3(react@19.0.0) 6647 + '@react-types/shared': 3.25.0(react@19.0.0) 6648 + '@swc/helpers': 0.5.13 6649 + react: 19.0.0 6650 + react-dom: 19.0.0(react@19.0.0) 6651 + 6652 + '@react-aria/listbox@3.13.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6653 + dependencies: 6654 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6655 + '@react-aria/label': 3.7.13(react@19.0.0) 6656 + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6657 + '@react-aria/utils': 3.26.0(react@19.0.0) 6658 + '@react-stately/collections': 3.12.0(react@19.0.0) 6659 + '@react-stately/list': 3.11.1(react@19.0.0) 6660 + '@react-types/listbox': 3.5.3(react@19.0.0) 6661 + '@react-types/shared': 3.26.0(react@19.0.0) 6318 6662 '@swc/helpers': 0.5.13 6319 - react: 18.3.1 6320 - react-dom: 18.3.1(react@18.3.1) 6663 + react: 19.0.0 6664 + react-dom: 19.0.0(react@19.0.0) 6321 6665 6322 - '@react-aria/listbox@3.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6666 + '@react-aria/live-announcer@3.4.1': 6323 6667 dependencies: 6324 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6325 - '@react-aria/label': 3.7.10(react@18.3.1) 6326 - '@react-aria/selection': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6327 - '@react-aria/utils': 3.25.1(react@18.3.1) 6328 - '@react-stately/collections': 3.10.9(react@18.3.1) 6329 - '@react-stately/list': 3.10.7(react@18.3.1) 6330 - '@react-types/listbox': 3.5.1(react@18.3.1) 6331 - '@react-types/shared': 3.24.1(react@18.3.1) 6332 6668 '@swc/helpers': 0.5.13 6333 - react: 18.3.1 6334 - react-dom: 18.3.1(react@18.3.1) 6335 6669 6336 - '@react-aria/live-announcer@3.3.4': 6670 + '@react-aria/menu@3.15.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6337 6671 dependencies: 6672 + '@react-aria/focus': 3.18.4(react@19.0.0) 6673 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6674 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6675 + '@react-aria/overlays': 3.24.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6676 + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6677 + '@react-aria/utils': 3.26.0(react@19.0.0) 6678 + '@react-stately/collections': 3.12.0(react@19.0.0) 6679 + '@react-stately/menu': 3.8.3(react@19.0.0) 6680 + '@react-stately/tree': 3.8.6(react@19.0.0) 6681 + '@react-types/button': 3.10.1(react@19.0.0) 6682 + '@react-types/menu': 3.9.12(react@19.0.0) 6683 + '@react-types/shared': 3.26.0(react@19.0.0) 6338 6684 '@swc/helpers': 0.5.13 6685 + react: 19.0.0 6686 + react-dom: 19.0.0(react@19.0.0) 6339 6687 6340 - '@react-aria/menu@3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6688 + '@react-aria/menu@3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6341 6689 dependencies: 6342 - '@react-aria/focus': 3.18.1(react@18.3.1) 6343 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6344 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6345 - '@react-aria/overlays': 3.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6346 - '@react-aria/selection': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6347 - '@react-aria/utils': 3.25.1(react@18.3.1) 6348 - '@react-stately/collections': 3.10.9(react@18.3.1) 6349 - '@react-stately/menu': 3.8.1(react@18.3.1) 6350 - '@react-stately/tree': 3.8.3(react@18.3.1) 6351 - '@react-types/button': 3.9.6(react@18.3.1) 6352 - '@react-types/menu': 3.9.11(react@18.3.1) 6353 - '@react-types/shared': 3.24.1(react@18.3.1) 6690 + '@react-aria/focus': 3.19.0(react@19.0.0) 6691 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6692 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6693 + '@react-aria/overlays': 3.24.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6694 + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6695 + '@react-aria/utils': 3.26.0(react@19.0.0) 6696 + '@react-stately/collections': 3.12.0(react@19.0.0) 6697 + '@react-stately/menu': 3.9.0(react@19.0.0) 6698 + '@react-stately/selection': 3.18.0(react@19.0.0) 6699 + '@react-stately/tree': 3.8.6(react@19.0.0) 6700 + '@react-types/button': 3.10.1(react@19.0.0) 6701 + '@react-types/menu': 3.9.13(react@19.0.0) 6702 + '@react-types/shared': 3.26.0(react@19.0.0) 6354 6703 '@swc/helpers': 0.5.13 6355 - react: 18.3.1 6356 - react-dom: 18.3.1(react@18.3.1) 6704 + react: 19.0.0 6705 + react-dom: 19.0.0(react@19.0.0) 6357 6706 6358 - '@react-aria/menu@3.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6707 + '@react-aria/overlays@3.23.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6359 6708 dependencies: 6360 - '@react-aria/focus': 3.18.1(react@18.3.1) 6361 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6362 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6363 - '@react-aria/overlays': 3.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6364 - '@react-aria/selection': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6365 - '@react-aria/utils': 3.25.1(react@18.3.1) 6366 - '@react-stately/collections': 3.10.9(react@18.3.1) 6367 - '@react-stately/menu': 3.8.1(react@18.3.1) 6368 - '@react-stately/tree': 3.8.3(react@18.3.1) 6369 - '@react-types/button': 3.9.6(react@18.3.1) 6370 - '@react-types/menu': 3.9.11(react@18.3.1) 6371 - '@react-types/shared': 3.24.1(react@18.3.1) 6709 + '@react-aria/focus': 3.19.0(react@19.0.0) 6710 + '@react-aria/i18n': 3.12.3(react@19.0.0) 6711 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6712 + '@react-aria/ssr': 3.9.7(react@19.0.0) 6713 + '@react-aria/utils': 3.26.0(react@19.0.0) 6714 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 6715 + '@react-stately/overlays': 3.6.12(react@19.0.0) 6716 + '@react-types/button': 3.10.1(react@19.0.0) 6717 + '@react-types/overlays': 3.8.11(react@19.0.0) 6718 + '@react-types/shared': 3.26.0(react@19.0.0) 6372 6719 '@swc/helpers': 0.5.13 6373 - react: 18.3.1 6374 - react-dom: 18.3.1(react@18.3.1) 6720 + react: 19.0.0 6721 + react-dom: 19.0.0(react@19.0.0) 6375 6722 6376 - '@react-aria/overlays@3.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6723 + '@react-aria/overlays@3.24.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6377 6724 dependencies: 6378 - '@react-aria/focus': 3.18.1(react@18.3.1) 6379 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6380 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6381 - '@react-aria/ssr': 3.9.5(react@18.3.1) 6382 - '@react-aria/utils': 3.25.1(react@18.3.1) 6383 - '@react-aria/visually-hidden': 3.8.14(react@18.3.1) 6384 - '@react-stately/overlays': 3.6.9(react@18.3.1) 6385 - '@react-types/button': 3.9.6(react@18.3.1) 6386 - '@react-types/overlays': 3.8.9(react@18.3.1) 6387 - '@react-types/shared': 3.24.1(react@18.3.1) 6725 + '@react-aria/focus': 3.19.0(react@19.0.0) 6726 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6727 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6728 + '@react-aria/ssr': 3.9.7(react@19.0.0) 6729 + '@react-aria/utils': 3.26.0(react@19.0.0) 6730 + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) 6731 + '@react-stately/overlays': 3.6.12(react@19.0.0) 6732 + '@react-types/button': 3.10.1(react@19.0.0) 6733 + '@react-types/overlays': 3.8.11(react@19.0.0) 6734 + '@react-types/shared': 3.26.0(react@19.0.0) 6388 6735 '@swc/helpers': 0.5.13 6389 - react: 18.3.1 6390 - react-dom: 18.3.1(react@18.3.1) 6736 + react: 19.0.0 6737 + react-dom: 19.0.0(react@19.0.0) 6391 6738 6392 - '@react-aria/overlays@3.23.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6739 + '@react-aria/progress@3.4.17(react@19.0.0)': 6393 6740 dependencies: 6394 - '@react-aria/focus': 3.18.1(react@18.3.1) 6395 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6396 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6397 - '@react-aria/ssr': 3.9.5(react@18.3.1) 6398 - '@react-aria/utils': 3.25.1(react@18.3.1) 6399 - '@react-aria/visually-hidden': 3.8.14(react@18.3.1) 6400 - '@react-stately/overlays': 3.6.9(react@18.3.1) 6401 - '@react-types/button': 3.9.6(react@18.3.1) 6402 - '@react-types/overlays': 3.8.9(react@18.3.1) 6403 - '@react-types/shared': 3.24.1(react@18.3.1) 6741 + '@react-aria/i18n': 3.12.3(react@19.0.0) 6742 + '@react-aria/label': 3.7.13(react@19.0.0) 6743 + '@react-aria/utils': 3.26.0(react@19.0.0) 6744 + '@react-types/progress': 3.5.7(react@19.0.0) 6745 + '@react-types/shared': 3.26.0(react@19.0.0) 6404 6746 '@swc/helpers': 0.5.13 6405 - react: 18.3.1 6406 - react-dom: 18.3.1(react@18.3.1) 6747 + react: 19.0.0 6407 6748 6408 - '@react-aria/progress@3.4.13(react@18.3.1)': 6749 + '@react-aria/radio@3.10.9(react@19.0.0)': 6409 6750 dependencies: 6410 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6411 - '@react-aria/label': 3.7.10(react@18.3.1) 6412 - '@react-aria/utils': 3.25.1(react@18.3.1) 6413 - '@react-types/progress': 3.5.4(react@18.3.1) 6414 - '@react-types/shared': 3.24.1(react@18.3.1) 6751 + '@react-aria/focus': 3.18.4(react@19.0.0) 6752 + '@react-aria/form': 3.0.11(react@19.0.0) 6753 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6754 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6755 + '@react-aria/label': 3.7.13(react@19.0.0) 6756 + '@react-aria/utils': 3.26.0(react@19.0.0) 6757 + '@react-stately/radio': 3.10.8(react@19.0.0) 6758 + '@react-types/radio': 3.8.4(react@19.0.0) 6759 + '@react-types/shared': 3.25.0(react@19.0.0) 6415 6760 '@swc/helpers': 0.5.13 6416 - react: 18.3.1 6761 + react: 19.0.0 6417 6762 6418 - '@react-aria/radio@3.10.4(react@18.3.1)': 6763 + '@react-aria/selection@3.20.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6419 6764 dependencies: 6420 - '@react-aria/focus': 3.18.1(react@18.3.1) 6421 - '@react-aria/form': 3.0.7(react@18.3.1) 6422 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6423 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6424 - '@react-aria/label': 3.7.10(react@18.3.1) 6425 - '@react-aria/utils': 3.25.1(react@18.3.1) 6426 - '@react-stately/radio': 3.10.4(react@18.3.1) 6427 - '@react-types/radio': 3.8.1(react@18.3.1) 6428 - '@react-types/shared': 3.24.1(react@18.3.1) 6765 + '@react-aria/focus': 3.18.4(react@19.0.0) 6766 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6767 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6768 + '@react-aria/utils': 3.26.0(react@19.0.0) 6769 + '@react-stately/selection': 3.18.0(react@19.0.0) 6770 + '@react-types/shared': 3.25.0(react@19.0.0) 6429 6771 '@swc/helpers': 0.5.13 6430 - react: 18.3.1 6772 + react: 19.0.0 6773 + react-dom: 19.0.0(react@19.0.0) 6431 6774 6432 - '@react-aria/selection@3.18.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6775 + '@react-aria/selection@3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6433 6776 dependencies: 6434 - '@react-aria/focus': 3.18.1(react@18.3.1) 6435 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6436 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6437 - '@react-aria/utils': 3.25.1(react@18.3.1) 6438 - '@react-stately/selection': 3.16.1(react@18.3.1) 6439 - '@react-types/shared': 3.24.1(react@18.3.1) 6777 + '@react-aria/focus': 3.19.0(react@19.0.0) 6778 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6779 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6780 + '@react-aria/utils': 3.26.0(react@19.0.0) 6781 + '@react-stately/selection': 3.18.0(react@19.0.0) 6782 + '@react-types/shared': 3.26.0(react@19.0.0) 6440 6783 '@swc/helpers': 0.5.13 6441 - react: 18.3.1 6442 - react-dom: 18.3.1(react@18.3.1) 6784 + react: 19.0.0 6785 + react-dom: 19.0.0(react@19.0.0) 6443 6786 6444 - '@react-aria/selection@3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6787 + '@react-aria/slider@3.7.13(react@19.0.0)': 6445 6788 dependencies: 6446 - '@react-aria/focus': 3.18.1(react@18.3.1) 6447 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6448 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6449 - '@react-aria/utils': 3.25.1(react@18.3.1) 6450 - '@react-stately/selection': 3.16.1(react@18.3.1) 6451 - '@react-types/shared': 3.24.1(react@18.3.1) 6789 + '@react-aria/focus': 3.18.4(react@19.0.0) 6790 + '@react-aria/i18n': 3.12.3(react@19.0.0) 6791 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6792 + '@react-aria/label': 3.7.13(react@19.0.0) 6793 + '@react-aria/utils': 3.26.0(react@19.0.0) 6794 + '@react-stately/slider': 3.5.8(react@19.0.0) 6795 + '@react-types/shared': 3.26.0(react@19.0.0) 6796 + '@react-types/slider': 3.7.7(react@19.0.0) 6452 6797 '@swc/helpers': 0.5.13 6453 - react: 18.3.1 6454 - react-dom: 18.3.1(react@18.3.1) 6798 + react: 19.0.0 6455 6799 6456 - '@react-aria/slider@3.7.8(react@18.3.1)': 6800 + '@react-aria/spinbutton@3.6.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6457 6801 dependencies: 6458 - '@react-aria/focus': 3.18.1(react@18.3.1) 6459 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6460 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6461 - '@react-aria/label': 3.7.10(react@18.3.1) 6462 - '@react-aria/utils': 3.25.1(react@18.3.1) 6463 - '@react-stately/slider': 3.5.4(react@18.3.1) 6464 - '@react-types/shared': 3.24.1(react@18.3.1) 6465 - '@react-types/slider': 3.7.5(react@18.3.1) 6802 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6803 + '@react-aria/live-announcer': 3.4.1 6804 + '@react-aria/utils': 3.26.0(react@19.0.0) 6805 + '@react-types/button': 3.10.1(react@19.0.0) 6806 + '@react-types/shared': 3.26.0(react@19.0.0) 6466 6807 '@swc/helpers': 0.5.13 6467 - react: 18.3.1 6808 + react: 19.0.0 6809 + react-dom: 19.0.0(react@19.0.0) 6468 6810 6469 - '@react-aria/spinbutton@3.6.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6811 + '@react-aria/ssr@3.9.5(react@19.0.0)': 6470 6812 dependencies: 6471 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6472 - '@react-aria/live-announcer': 3.3.4 6473 - '@react-aria/utils': 3.25.1(react@18.3.1) 6474 - '@react-types/button': 3.9.6(react@18.3.1) 6475 - '@react-types/shared': 3.24.1(react@18.3.1) 6476 6813 '@swc/helpers': 0.5.13 6477 - react: 18.3.1 6478 - react-dom: 18.3.1(react@18.3.1) 6814 + react: 19.0.0 6479 6815 6480 - '@react-aria/ssr@3.9.4(react@18.3.1)': 6816 + '@react-aria/ssr@3.9.6(react@19.0.0)': 6481 6817 dependencies: 6482 6818 '@swc/helpers': 0.5.13 6483 - react: 18.3.1 6819 + react: 19.0.0 6484 6820 6485 - '@react-aria/ssr@3.9.5(react@18.3.1)': 6821 + '@react-aria/ssr@3.9.7(react@19.0.0)': 6486 6822 dependencies: 6487 6823 '@swc/helpers': 0.5.13 6488 - react: 18.3.1 6824 + react: 19.0.0 6489 6825 6490 - '@react-aria/switch@3.6.4(react@18.3.1)': 6826 + '@react-aria/switch@3.6.9(react@19.0.0)': 6491 6827 dependencies: 6492 - '@react-aria/toggle': 3.10.6(react@18.3.1) 6493 - '@react-stately/toggle': 3.7.6(react@18.3.1) 6494 - '@react-types/switch': 3.5.5(react@18.3.1) 6828 + '@react-aria/toggle': 3.10.10(react@19.0.0) 6829 + '@react-stately/toggle': 3.7.8(react@19.0.0) 6830 + '@react-types/shared': 3.25.0(react@19.0.0) 6831 + '@react-types/switch': 3.5.7(react@19.0.0) 6495 6832 '@swc/helpers': 0.5.13 6496 - react: 18.3.1 6833 + react: 19.0.0 6497 6834 6498 - '@react-aria/table@3.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6835 + '@react-aria/table@3.15.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6499 6836 dependencies: 6500 - '@react-aria/focus': 3.18.1(react@18.3.1) 6501 - '@react-aria/grid': 3.10.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6502 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6503 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6504 - '@react-aria/live-announcer': 3.3.4 6505 - '@react-aria/utils': 3.25.1(react@18.3.1) 6506 - '@react-aria/visually-hidden': 3.8.14(react@18.3.1) 6507 - '@react-stately/collections': 3.10.9(react@18.3.1) 6508 - '@react-stately/flags': 3.0.3 6509 - '@react-stately/table': 3.11.8(react@18.3.1) 6510 - '@react-stately/virtualizer': 3.7.1(react@18.3.1) 6511 - '@react-types/checkbox': 3.8.3(react@18.3.1) 6512 - '@react-types/grid': 3.2.8(react@18.3.1) 6513 - '@react-types/shared': 3.24.1(react@18.3.1) 6514 - '@react-types/table': 3.9.5(react@18.3.1) 6837 + '@react-aria/focus': 3.18.4(react@19.0.0) 6838 + '@react-aria/grid': 3.11.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6839 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6840 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6841 + '@react-aria/live-announcer': 3.4.1 6842 + '@react-aria/utils': 3.26.0(react@19.0.0) 6843 + '@react-aria/visually-hidden': 3.8.17(react@19.0.0) 6844 + '@react-stately/collections': 3.12.0(react@19.0.0) 6845 + '@react-stately/flags': 3.0.5 6846 + '@react-stately/table': 3.12.3(react@19.0.0) 6847 + '@react-types/checkbox': 3.9.0(react@19.0.0) 6848 + '@react-types/grid': 3.2.9(react@19.0.0) 6849 + '@react-types/shared': 3.26.0(react@19.0.0) 6850 + '@react-types/table': 3.10.2(react@19.0.0) 6515 6851 '@swc/helpers': 0.5.13 6516 - react: 18.3.1 6517 - react-dom: 18.3.1(react@18.3.1) 6852 + react: 19.0.0 6853 + react-dom: 19.0.0(react@19.0.0) 6518 6854 6519 - '@react-aria/tabs@3.9.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 6855 + '@react-aria/tabs@3.9.7(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 6520 6856 dependencies: 6521 - '@react-aria/focus': 3.18.1(react@18.3.1) 6522 - '@react-aria/i18n': 3.12.1(react@18.3.1) 6523 - '@react-aria/selection': 3.19.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6524 - '@react-aria/utils': 3.25.1(react@18.3.1) 6525 - '@react-stately/tabs': 3.6.6(react@18.3.1) 6526 - '@react-types/shared': 3.24.1(react@18.3.1) 6527 - '@react-types/tabs': 3.3.7(react@18.3.1) 6857 + '@react-aria/focus': 3.18.4(react@19.0.0) 6858 + '@react-aria/i18n': 3.12.4(react@19.0.0) 6859 + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 6860 + '@react-aria/utils': 3.26.0(react@19.0.0) 6861 + '@react-stately/tabs': 3.6.10(react@19.0.0) 6862 + '@react-types/shared': 3.25.0(react@19.0.0) 6863 + '@react-types/tabs': 3.3.10(react@19.0.0) 6528 6864 '@swc/helpers': 0.5.13 6529 - react: 18.3.1 6530 - react-dom: 18.3.1(react@18.3.1) 6865 + react: 19.0.0 6866 + react-dom: 19.0.0(react@19.0.0) 6531 6867 6532 - '@react-aria/textfield@3.14.5(react@18.3.1)': 6868 + '@react-aria/textfield@3.14.10(react@19.0.0)': 6533 6869 dependencies: 6534 - '@react-aria/focus': 3.18.1(react@18.3.1) 6535 - '@react-aria/form': 3.0.7(react@18.3.1) 6536 - '@react-aria/label': 3.7.10(react@18.3.1) 6537 - '@react-aria/utils': 3.25.1(react@18.3.1) 6538 - '@react-stately/form': 3.0.5(react@18.3.1) 6539 - '@react-stately/utils': 3.10.2(react@18.3.1) 6540 - '@react-types/shared': 3.24.1(react@18.3.1) 6541 - '@react-types/textfield': 3.9.5(react@18.3.1) 6870 + '@react-aria/focus': 3.18.4(react@19.0.0) 6871 + '@react-aria/form': 3.0.11(react@19.0.0) 6872 + '@react-aria/label': 3.7.13(react@19.0.0) 6873 + '@react-aria/utils': 3.26.0(react@19.0.0) 6874 + '@react-stately/form': 3.1.0(react@19.0.0) 6875 + '@react-stately/utils': 3.10.4(react@19.0.0) 6876 + '@react-types/shared': 3.25.0(react@19.0.0) 6877 + '@react-types/textfield': 3.9.7(react@19.0.0) 6542 6878 '@swc/helpers': 0.5.13 6543 - react: 18.3.1 6879 + react: 19.0.0 6544 6880 6545 - '@react-aria/textfield@3.14.7(react@18.3.1)': 6881 + '@react-aria/textfield@3.15.0(react@19.0.0)': 6546 6882 dependencies: 6547 - '@react-aria/focus': 3.18.1(react@18.3.1) 6548 - '@react-aria/form': 3.0.7(react@18.3.1) 6549 - '@react-aria/label': 3.7.10(react@18.3.1) 6550 - '@react-aria/utils': 3.25.1(react@18.3.1) 6551 - '@react-stately/form': 3.0.5(react@18.3.1) 6552 - '@react-stately/utils': 3.10.2(react@18.3.1) 6553 - '@react-types/shared': 3.24.1(react@18.3.1) 6554 - '@react-types/textfield': 3.9.5(react@18.3.1) 6883 + '@react-aria/focus': 3.19.0(react@19.0.0) 6884 + '@react-aria/form': 3.0.11(react@19.0.0) 6885 + '@react-aria/label': 3.7.13(react@19.0.0) 6886 + '@react-aria/utils': 3.26.0(react@19.0.0) 6887 + '@react-stately/form': 3.1.0(react@19.0.0) 6888 + '@react-stately/utils': 3.10.5(react@19.0.0) 6889 + '@react-types/shared': 3.26.0(react@19.0.0) 6890 + '@react-types/textfield': 3.10.0(react@19.0.0) 6555 6891 '@swc/helpers': 0.5.13 6556 - react: 18.3.1 6892 + react: 19.0.0 6557 6893 6558 - '@react-aria/toggle@3.10.6(react@18.3.1)': 6894 + '@react-aria/toggle@3.10.10(react@19.0.0)': 6559 6895 dependencies: 6560 - '@react-aria/focus': 3.18.1(react@18.3.1) 6561 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6562 - '@react-aria/utils': 3.25.1(react@18.3.1) 6563 - '@react-stately/toggle': 3.7.6(react@18.3.1) 6564 - '@react-types/checkbox': 3.8.3(react@18.3.1) 6565 - '@react-types/shared': 3.24.1(react@18.3.1) 6896 + '@react-aria/focus': 3.19.0(react@19.0.0) 6897 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6898 + '@react-aria/utils': 3.26.0(react@19.0.0) 6899 + '@react-stately/toggle': 3.8.0(react@19.0.0) 6900 + '@react-types/checkbox': 3.9.0(react@19.0.0) 6901 + '@react-types/shared': 3.26.0(react@19.0.0) 6566 6902 '@swc/helpers': 0.5.13 6567 - react: 18.3.1 6903 + react: 19.0.0 6568 6904 6569 - '@react-aria/tooltip@3.7.4(react@18.3.1)': 6905 + '@react-aria/tooltip@3.7.9(react@19.0.0)': 6570 6906 dependencies: 6571 - '@react-aria/focus': 3.18.1(react@18.3.1) 6572 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6573 - '@react-aria/utils': 3.25.1(react@18.3.1) 6574 - '@react-stately/tooltip': 3.4.9(react@18.3.1) 6575 - '@react-types/shared': 3.24.1(react@18.3.1) 6576 - '@react-types/tooltip': 3.4.9(react@18.3.1) 6907 + '@react-aria/focus': 3.19.0(react@19.0.0) 6908 + '@react-aria/interactions': 3.22.4(react@19.0.0) 6909 + '@react-aria/utils': 3.26.0(react@19.0.0) 6910 + '@react-stately/tooltip': 3.4.13(react@19.0.0) 6911 + '@react-types/shared': 3.26.0(react@19.0.0) 6912 + '@react-types/tooltip': 3.4.12(react@19.0.0) 6577 6913 '@swc/helpers': 0.5.13 6578 - react: 18.3.1 6914 + react: 19.0.0 6579 6915 6580 - '@react-aria/utils@3.24.1(react@18.3.1)': 6916 + '@react-aria/utils@3.24.1(react@19.0.0)': 6581 6917 dependencies: 6582 - '@react-aria/ssr': 3.9.5(react@18.3.1) 6583 - '@react-stately/utils': 3.10.2(react@18.3.1) 6584 - '@react-types/shared': 3.24.1(react@18.3.1) 6918 + '@react-aria/ssr': 3.9.5(react@19.0.0) 6919 + '@react-stately/utils': 3.10.2(react@19.0.0) 6920 + '@react-types/shared': 3.24.1(react@19.0.0) 6585 6921 '@swc/helpers': 0.5.13 6586 6922 clsx: 2.1.1 6587 - react: 18.3.1 6923 + react: 19.0.0 6588 6924 6589 - '@react-aria/utils@3.25.1(react@18.3.1)': 6925 + '@react-aria/utils@3.26.0(react@19.0.0)': 6590 6926 dependencies: 6591 - '@react-aria/ssr': 3.9.5(react@18.3.1) 6592 - '@react-stately/utils': 3.10.2(react@18.3.1) 6593 - '@react-types/shared': 3.24.1(react@18.3.1) 6927 + '@react-aria/ssr': 3.9.7(react@19.0.0) 6928 + '@react-stately/utils': 3.10.5(react@19.0.0) 6929 + '@react-types/shared': 3.26.0(react@19.0.0) 6594 6930 '@swc/helpers': 0.5.13 6595 6931 clsx: 2.1.1 6596 - react: 18.3.1 6932 + react: 19.0.0 6597 6933 6598 - '@react-aria/visually-hidden@3.8.12(react@18.3.1)': 6934 + '@react-aria/visually-hidden@3.8.17(react@19.0.0)': 6599 6935 dependencies: 6600 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6601 - '@react-aria/utils': 3.25.1(react@18.3.1) 6602 - '@react-types/shared': 3.24.1(react@18.3.1) 6936 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6937 + '@react-aria/utils': 3.26.0(react@19.0.0) 6938 + '@react-types/shared': 3.26.0(react@19.0.0) 6603 6939 '@swc/helpers': 0.5.13 6604 - react: 18.3.1 6940 + react: 19.0.0 6605 6941 6606 - '@react-aria/visually-hidden@3.8.14(react@18.3.1)': 6942 + '@react-aria/visually-hidden@3.8.18(react@19.0.0)': 6607 6943 dependencies: 6608 - '@react-aria/interactions': 3.22.1(react@18.3.1) 6609 - '@react-aria/utils': 3.25.1(react@18.3.1) 6610 - '@react-types/shared': 3.24.1(react@18.3.1) 6944 + '@react-aria/interactions': 3.22.5(react@19.0.0) 6945 + '@react-aria/utils': 3.26.0(react@19.0.0) 6946 + '@react-types/shared': 3.26.0(react@19.0.0) 6611 6947 '@swc/helpers': 0.5.13 6612 - react: 18.3.1 6948 + react: 19.0.0 6613 6949 6614 - '@react-stately/calendar@3.5.1(react@18.3.1)': 6950 + '@react-stately/calendar@3.5.5(react@19.0.0)': 6615 6951 dependencies: 6616 - '@internationalized/date': 3.5.5 6617 - '@react-stately/utils': 3.10.2(react@18.3.1) 6618 - '@react-types/calendar': 3.4.8(react@18.3.1) 6619 - '@react-types/shared': 3.24.1(react@18.3.1) 6952 + '@internationalized/date': 3.5.6 6953 + '@react-stately/utils': 3.10.4(react@19.0.0) 6954 + '@react-types/calendar': 3.4.10(react@19.0.0) 6955 + '@react-types/shared': 3.25.0(react@19.0.0) 6620 6956 '@swc/helpers': 0.5.13 6621 - react: 18.3.1 6957 + react: 19.0.0 6622 6958 6623 - '@react-stately/checkbox@3.6.5(react@18.3.1)': 6959 + '@react-stately/checkbox@3.6.9(react@19.0.0)': 6624 6960 dependencies: 6625 - '@react-stately/form': 3.0.5(react@18.3.1) 6626 - '@react-stately/utils': 3.10.2(react@18.3.1) 6627 - '@react-types/checkbox': 3.8.3(react@18.3.1) 6628 - '@react-types/shared': 3.24.1(react@18.3.1) 6961 + '@react-stately/form': 3.1.0(react@19.0.0) 6962 + '@react-stately/utils': 3.10.5(react@19.0.0) 6963 + '@react-types/checkbox': 3.8.4(react@19.0.0) 6964 + '@react-types/shared': 3.25.0(react@19.0.0) 6629 6965 '@swc/helpers': 0.5.13 6630 - react: 18.3.1 6966 + react: 19.0.0 6631 6967 6632 - '@react-stately/collections@3.10.7(react@18.3.1)': 6968 + '@react-stately/collections@3.11.0(react@19.0.0)': 6633 6969 dependencies: 6634 - '@react-types/shared': 3.24.1(react@18.3.1) 6970 + '@react-types/shared': 3.25.0(react@19.0.0) 6635 6971 '@swc/helpers': 0.5.13 6636 - react: 18.3.1 6972 + react: 19.0.0 6637 6973 6638 - '@react-stately/collections@3.10.9(react@18.3.1)': 6974 + '@react-stately/collections@3.12.0(react@19.0.0)': 6639 6975 dependencies: 6640 - '@react-types/shared': 3.24.1(react@18.3.1) 6976 + '@react-types/shared': 3.26.0(react@19.0.0) 6641 6977 '@swc/helpers': 0.5.13 6642 - react: 18.3.1 6978 + react: 19.0.0 6643 6979 6644 - '@react-stately/combobox@3.8.4(react@18.3.1)': 6980 + '@react-stately/combobox@3.10.0(react@19.0.0)': 6645 6981 dependencies: 6646 - '@react-stately/collections': 3.10.9(react@18.3.1) 6647 - '@react-stately/form': 3.0.5(react@18.3.1) 6648 - '@react-stately/list': 3.10.7(react@18.3.1) 6649 - '@react-stately/overlays': 3.6.9(react@18.3.1) 6650 - '@react-stately/select': 3.6.6(react@18.3.1) 6651 - '@react-stately/utils': 3.10.2(react@18.3.1) 6652 - '@react-types/combobox': 3.11.1(react@18.3.1) 6653 - '@react-types/shared': 3.24.1(react@18.3.1) 6982 + '@react-stately/collections': 3.12.0(react@19.0.0) 6983 + '@react-stately/form': 3.1.0(react@19.0.0) 6984 + '@react-stately/list': 3.11.1(react@19.0.0) 6985 + '@react-stately/overlays': 3.6.12(react@19.0.0) 6986 + '@react-stately/select': 3.6.9(react@19.0.0) 6987 + '@react-stately/utils': 3.10.5(react@19.0.0) 6988 + '@react-types/combobox': 3.13.0(react@19.0.0) 6989 + '@react-types/shared': 3.25.0(react@19.0.0) 6654 6990 '@swc/helpers': 0.5.13 6655 - react: 18.3.1 6991 + react: 19.0.0 6656 6992 6657 - '@react-stately/datepicker@3.9.4(react@18.3.1)': 6993 + '@react-stately/datepicker@3.10.3(react@19.0.0)': 6658 6994 dependencies: 6659 - '@internationalized/date': 3.5.5 6660 - '@internationalized/string': 3.2.3 6661 - '@react-stately/form': 3.0.5(react@18.3.1) 6662 - '@react-stately/overlays': 3.6.9(react@18.3.1) 6663 - '@react-stately/utils': 3.10.2(react@18.3.1) 6664 - '@react-types/datepicker': 3.7.4(react@18.3.1) 6665 - '@react-types/shared': 3.24.1(react@18.3.1) 6995 + '@internationalized/date': 3.5.6 6996 + '@internationalized/string': 3.2.5 6997 + '@react-stately/form': 3.1.0(react@19.0.0) 6998 + '@react-stately/overlays': 3.6.12(react@19.0.0) 6999 + '@react-stately/utils': 3.10.5(react@19.0.0) 7000 + '@react-types/datepicker': 3.8.3(react@19.0.0) 7001 + '@react-types/shared': 3.25.0(react@19.0.0) 6666 7002 '@swc/helpers': 0.5.13 6667 - react: 18.3.1 7003 + react: 19.0.0 6668 7004 6669 - '@react-stately/flags@3.0.3': 7005 + '@react-stately/flags@3.0.5': 6670 7006 dependencies: 6671 7007 '@swc/helpers': 0.5.13 6672 7008 6673 - '@react-stately/form@3.0.3(react@18.3.1)': 7009 + '@react-stately/form@3.0.5(react@19.0.0)': 6674 7010 dependencies: 6675 - '@react-types/shared': 3.24.1(react@18.3.1) 7011 + '@react-types/shared': 3.24.1(react@19.0.0) 6676 7012 '@swc/helpers': 0.5.13 6677 - react: 18.3.1 7013 + react: 19.0.0 6678 7014 6679 - '@react-stately/form@3.0.5(react@18.3.1)': 7015 + '@react-stately/form@3.0.6(react@19.0.0)': 6680 7016 dependencies: 6681 - '@react-types/shared': 3.24.1(react@18.3.1) 7017 + '@react-types/shared': 3.25.0(react@19.0.0) 6682 7018 '@swc/helpers': 0.5.13 6683 - react: 18.3.1 7019 + react: 19.0.0 6684 7020 6685 - '@react-stately/grid@3.9.1(react@18.3.1)': 7021 + '@react-stately/form@3.1.0(react@19.0.0)': 6686 7022 dependencies: 6687 - '@react-stately/collections': 3.10.9(react@18.3.1) 6688 - '@react-stately/selection': 3.16.1(react@18.3.1) 6689 - '@react-types/grid': 3.2.8(react@18.3.1) 6690 - '@react-types/shared': 3.24.1(react@18.3.1) 7023 + '@react-types/shared': 3.26.0(react@19.0.0) 6691 7024 '@swc/helpers': 0.5.13 6692 - react: 18.3.1 7025 + react: 19.0.0 6693 7026 6694 - '@react-stately/list@3.10.5(react@18.3.1)': 7027 + '@react-stately/grid@3.10.0(react@19.0.0)': 6695 7028 dependencies: 6696 - '@react-stately/collections': 3.10.9(react@18.3.1) 6697 - '@react-stately/selection': 3.16.1(react@18.3.1) 6698 - '@react-stately/utils': 3.10.2(react@18.3.1) 6699 - '@react-types/shared': 3.24.1(react@18.3.1) 7029 + '@react-stately/collections': 3.12.0(react@19.0.0) 7030 + '@react-stately/selection': 3.18.0(react@19.0.0) 7031 + '@react-types/grid': 3.2.10(react@19.0.0) 7032 + '@react-types/shared': 3.26.0(react@19.0.0) 6700 7033 '@swc/helpers': 0.5.13 6701 - react: 18.3.1 7034 + react: 19.0.0 6702 7035 6703 - '@react-stately/list@3.10.7(react@18.3.1)': 7036 + '@react-stately/list@3.11.0(react@19.0.0)': 6704 7037 dependencies: 6705 - '@react-stately/collections': 3.10.9(react@18.3.1) 6706 - '@react-stately/selection': 3.16.1(react@18.3.1) 6707 - '@react-stately/utils': 3.10.2(react@18.3.1) 6708 - '@react-types/shared': 3.24.1(react@18.3.1) 7038 + '@react-stately/collections': 3.12.0(react@19.0.0) 7039 + '@react-stately/selection': 3.18.0(react@19.0.0) 7040 + '@react-stately/utils': 3.10.5(react@19.0.0) 7041 + '@react-types/shared': 3.25.0(react@19.0.0) 6709 7042 '@swc/helpers': 0.5.13 6710 - react: 18.3.1 7043 + react: 19.0.0 6711 7044 6712 - '@react-stately/menu@3.7.1(react@18.3.1)': 7045 + '@react-stately/list@3.11.1(react@19.0.0)': 6713 7046 dependencies: 6714 - '@react-stately/overlays': 3.6.9(react@18.3.1) 6715 - '@react-types/menu': 3.9.11(react@18.3.1) 6716 - '@react-types/shared': 3.24.1(react@18.3.1) 7047 + '@react-stately/collections': 3.12.0(react@19.0.0) 7048 + '@react-stately/selection': 3.18.0(react@19.0.0) 7049 + '@react-stately/utils': 3.10.5(react@19.0.0) 7050 + '@react-types/shared': 3.26.0(react@19.0.0) 6717 7051 '@swc/helpers': 0.5.13 6718 - react: 18.3.1 7052 + react: 19.0.0 6719 7053 6720 - '@react-stately/menu@3.8.1(react@18.3.1)': 7054 + '@react-stately/menu@3.8.3(react@19.0.0)': 6721 7055 dependencies: 6722 - '@react-stately/overlays': 3.6.9(react@18.3.1) 6723 - '@react-types/menu': 3.9.11(react@18.3.1) 6724 - '@react-types/shared': 3.24.1(react@18.3.1) 7056 + '@react-stately/overlays': 3.6.12(react@19.0.0) 7057 + '@react-types/menu': 3.9.12(react@19.0.0) 7058 + '@react-types/shared': 3.26.0(react@19.0.0) 6725 7059 '@swc/helpers': 0.5.13 6726 - react: 18.3.1 7060 + react: 19.0.0 6727 7061 6728 - '@react-stately/overlays@3.6.7(react@18.3.1)': 7062 + '@react-stately/menu@3.9.0(react@19.0.0)': 6729 7063 dependencies: 6730 - '@react-stately/utils': 3.10.2(react@18.3.1) 6731 - '@react-types/overlays': 3.8.9(react@18.3.1) 7064 + '@react-stately/overlays': 3.6.12(react@19.0.0) 7065 + '@react-types/menu': 3.9.13(react@19.0.0) 7066 + '@react-types/shared': 3.26.0(react@19.0.0) 6732 7067 '@swc/helpers': 0.5.13 6733 - react: 18.3.1 7068 + react: 19.0.0 6734 7069 6735 - '@react-stately/overlays@3.6.9(react@18.3.1)': 7070 + '@react-stately/overlays@3.6.11(react@19.0.0)': 6736 7071 dependencies: 6737 - '@react-stately/utils': 3.10.2(react@18.3.1) 6738 - '@react-types/overlays': 3.8.9(react@18.3.1) 7072 + '@react-stately/utils': 3.10.5(react@19.0.0) 7073 + '@react-types/overlays': 3.8.10(react@19.0.0) 6739 7074 '@swc/helpers': 0.5.13 6740 - react: 18.3.1 7075 + react: 19.0.0 6741 7076 6742 - '@react-stately/radio@3.10.4(react@18.3.1)': 7077 + '@react-stately/overlays@3.6.12(react@19.0.0)': 6743 7078 dependencies: 6744 - '@react-stately/form': 3.0.5(react@18.3.1) 6745 - '@react-stately/utils': 3.10.2(react@18.3.1) 6746 - '@react-types/radio': 3.8.1(react@18.3.1) 6747 - '@react-types/shared': 3.24.1(react@18.3.1) 7079 + '@react-stately/utils': 3.10.5(react@19.0.0) 7080 + '@react-types/overlays': 3.8.11(react@19.0.0) 6748 7081 '@swc/helpers': 0.5.13 6749 - react: 18.3.1 7082 + react: 19.0.0 6750 7083 6751 - '@react-stately/select@3.6.6(react@18.3.1)': 7084 + '@react-stately/radio@3.10.8(react@19.0.0)': 6752 7085 dependencies: 6753 - '@react-stately/form': 3.0.5(react@18.3.1) 6754 - '@react-stately/list': 3.10.7(react@18.3.1) 6755 - '@react-stately/overlays': 3.6.9(react@18.3.1) 6756 - '@react-types/select': 3.9.6(react@18.3.1) 6757 - '@react-types/shared': 3.24.1(react@18.3.1) 7086 + '@react-stately/form': 3.1.0(react@19.0.0) 7087 + '@react-stately/utils': 3.10.5(react@19.0.0) 7088 + '@react-types/radio': 3.8.4(react@19.0.0) 7089 + '@react-types/shared': 3.25.0(react@19.0.0) 6758 7090 '@swc/helpers': 0.5.13 6759 - react: 18.3.1 7091 + react: 19.0.0 6760 7092 6761 - '@react-stately/selection@3.16.1(react@18.3.1)': 7093 + '@react-stately/select@3.6.9(react@19.0.0)': 6762 7094 dependencies: 6763 - '@react-stately/collections': 3.10.9(react@18.3.1) 6764 - '@react-stately/utils': 3.10.2(react@18.3.1) 6765 - '@react-types/shared': 3.24.1(react@18.3.1) 7095 + '@react-stately/form': 3.1.0(react@19.0.0) 7096 + '@react-stately/list': 3.11.1(react@19.0.0) 7097 + '@react-stately/overlays': 3.6.12(react@19.0.0) 7098 + '@react-types/select': 3.9.8(react@19.0.0) 7099 + '@react-types/shared': 3.26.0(react@19.0.0) 6766 7100 '@swc/helpers': 0.5.13 6767 - react: 18.3.1 7101 + react: 19.0.0 6768 7102 6769 - '@react-stately/slider@3.5.4(react@18.3.1)': 7103 + '@react-stately/selection@3.18.0(react@19.0.0)': 6770 7104 dependencies: 6771 - '@react-stately/utils': 3.10.2(react@18.3.1) 6772 - '@react-types/shared': 3.24.1(react@18.3.1) 6773 - '@react-types/slider': 3.7.5(react@18.3.1) 7105 + '@react-stately/collections': 3.12.0(react@19.0.0) 7106 + '@react-stately/utils': 3.10.5(react@19.0.0) 7107 + '@react-types/shared': 3.26.0(react@19.0.0) 6774 7108 '@swc/helpers': 0.5.13 6775 - react: 18.3.1 7109 + react: 19.0.0 6776 7110 6777 - '@react-stately/table@3.11.8(react@18.3.1)': 7111 + '@react-stately/slider@3.5.8(react@19.0.0)': 6778 7112 dependencies: 6779 - '@react-stately/collections': 3.10.9(react@18.3.1) 6780 - '@react-stately/flags': 3.0.3 6781 - '@react-stately/grid': 3.9.1(react@18.3.1) 6782 - '@react-stately/selection': 3.16.1(react@18.3.1) 6783 - '@react-stately/utils': 3.10.2(react@18.3.1) 6784 - '@react-types/grid': 3.2.8(react@18.3.1) 6785 - '@react-types/shared': 3.24.1(react@18.3.1) 6786 - '@react-types/table': 3.9.5(react@18.3.1) 7113 + '@react-stately/utils': 3.10.5(react@19.0.0) 7114 + '@react-types/shared': 3.26.0(react@19.0.0) 7115 + '@react-types/slider': 3.7.7(react@19.0.0) 6787 7116 '@swc/helpers': 0.5.13 6788 - react: 18.3.1 7117 + react: 19.0.0 6789 7118 6790 - '@react-stately/tabs@3.6.6(react@18.3.1)': 7119 + '@react-stately/table@3.12.3(react@19.0.0)': 6791 7120 dependencies: 6792 - '@react-stately/list': 3.10.7(react@18.3.1) 6793 - '@react-types/shared': 3.24.1(react@18.3.1) 6794 - '@react-types/tabs': 3.3.7(react@18.3.1) 7121 + '@react-stately/collections': 3.12.0(react@19.0.0) 7122 + '@react-stately/flags': 3.0.5 7123 + '@react-stately/grid': 3.10.0(react@19.0.0) 7124 + '@react-stately/selection': 3.18.0(react@19.0.0) 7125 + '@react-stately/utils': 3.10.5(react@19.0.0) 7126 + '@react-types/grid': 3.2.9(react@19.0.0) 7127 + '@react-types/shared': 3.26.0(react@19.0.0) 7128 + '@react-types/table': 3.10.2(react@19.0.0) 6795 7129 '@swc/helpers': 0.5.13 6796 - react: 18.3.1 7130 + react: 19.0.0 6797 7131 6798 - '@react-stately/toggle@3.7.4(react@18.3.1)': 7132 + '@react-stately/tabs@3.6.10(react@19.0.0)': 6799 7133 dependencies: 6800 - '@react-stately/utils': 3.10.2(react@18.3.1) 6801 - '@react-types/checkbox': 3.8.3(react@18.3.1) 7134 + '@react-stately/list': 3.11.1(react@19.0.0) 7135 + '@react-types/shared': 3.25.0(react@19.0.0) 7136 + '@react-types/tabs': 3.3.10(react@19.0.0) 6802 7137 '@swc/helpers': 0.5.13 6803 - react: 18.3.1 7138 + react: 19.0.0 6804 7139 6805 - '@react-stately/toggle@3.7.6(react@18.3.1)': 7140 + '@react-stately/toggle@3.7.8(react@19.0.0)': 6806 7141 dependencies: 6807 - '@react-stately/utils': 3.10.2(react@18.3.1) 6808 - '@react-types/checkbox': 3.8.3(react@18.3.1) 7142 + '@react-stately/utils': 3.10.5(react@19.0.0) 7143 + '@react-types/checkbox': 3.8.4(react@19.0.0) 6809 7144 '@swc/helpers': 0.5.13 6810 - react: 18.3.1 7145 + react: 19.0.0 6811 7146 6812 - '@react-stately/tooltip@3.4.9(react@18.3.1)': 7147 + '@react-stately/toggle@3.8.0(react@19.0.0)': 6813 7148 dependencies: 6814 - '@react-stately/overlays': 3.6.9(react@18.3.1) 6815 - '@react-types/tooltip': 3.4.9(react@18.3.1) 7149 + '@react-stately/utils': 3.10.5(react@19.0.0) 7150 + '@react-types/checkbox': 3.9.0(react@19.0.0) 7151 + '@react-types/shared': 3.26.0(react@19.0.0) 6816 7152 '@swc/helpers': 0.5.13 6817 - react: 18.3.1 7153 + react: 19.0.0 6818 7154 6819 - '@react-stately/tree@3.8.1(react@18.3.1)': 7155 + '@react-stately/tooltip@3.4.13(react@19.0.0)': 6820 7156 dependencies: 6821 - '@react-stately/collections': 3.10.9(react@18.3.1) 6822 - '@react-stately/selection': 3.16.1(react@18.3.1) 6823 - '@react-stately/utils': 3.10.2(react@18.3.1) 6824 - '@react-types/shared': 3.24.1(react@18.3.1) 7157 + '@react-stately/overlays': 3.6.12(react@19.0.0) 7158 + '@react-types/tooltip': 3.4.12(react@19.0.0) 6825 7159 '@swc/helpers': 0.5.13 6826 - react: 18.3.1 7160 + react: 19.0.0 6827 7161 6828 - '@react-stately/tree@3.8.3(react@18.3.1)': 7162 + '@react-stately/tree@3.8.5(react@19.0.0)': 6829 7163 dependencies: 6830 - '@react-stately/collections': 3.10.9(react@18.3.1) 6831 - '@react-stately/selection': 3.16.1(react@18.3.1) 6832 - '@react-stately/utils': 3.10.2(react@18.3.1) 6833 - '@react-types/shared': 3.24.1(react@18.3.1) 7164 + '@react-stately/collections': 3.12.0(react@19.0.0) 7165 + '@react-stately/selection': 3.18.0(react@19.0.0) 7166 + '@react-stately/utils': 3.10.5(react@19.0.0) 7167 + '@react-types/shared': 3.25.0(react@19.0.0) 6834 7168 '@swc/helpers': 0.5.13 6835 - react: 18.3.1 7169 + react: 19.0.0 6836 7170 6837 - '@react-stately/utils@3.10.1(react@18.3.1)': 7171 + '@react-stately/tree@3.8.6(react@19.0.0)': 6838 7172 dependencies: 7173 + '@react-stately/collections': 3.12.0(react@19.0.0) 7174 + '@react-stately/selection': 3.18.0(react@19.0.0) 7175 + '@react-stately/utils': 3.10.5(react@19.0.0) 7176 + '@react-types/shared': 3.26.0(react@19.0.0) 6839 7177 '@swc/helpers': 0.5.13 6840 - react: 18.3.1 7178 + react: 19.0.0 6841 7179 6842 - '@react-stately/utils@3.10.2(react@18.3.1)': 7180 + '@react-stately/utils@3.10.1(react@19.0.0)': 6843 7181 dependencies: 6844 7182 '@swc/helpers': 0.5.13 6845 - react: 18.3.1 7183 + react: 19.0.0 6846 7184 6847 - '@react-stately/virtualizer@3.7.1(react@18.3.1)': 7185 + '@react-stately/utils@3.10.2(react@19.0.0)': 6848 7186 dependencies: 6849 - '@react-aria/utils': 3.25.1(react@18.3.1) 6850 - '@react-types/shared': 3.24.1(react@18.3.1) 6851 7187 '@swc/helpers': 0.5.13 6852 - react: 18.3.1 7188 + react: 19.0.0 6853 7189 6854 - '@react-types/accordion@3.0.0-alpha.21(react@18.3.1)': 7190 + '@react-stately/utils@3.10.4(react@19.0.0)': 6855 7191 dependencies: 6856 - '@react-types/shared': 3.24.1(react@18.3.1) 6857 - react: 18.3.1 7192 + '@swc/helpers': 0.5.13 7193 + react: 19.0.0 6858 7194 6859 - '@react-types/breadcrumbs@3.7.5(react@18.3.1)': 7195 + '@react-stately/utils@3.10.5(react@19.0.0)': 6860 7196 dependencies: 6861 - '@react-types/link': 3.5.7(react@18.3.1) 6862 - '@react-types/shared': 3.24.1(react@18.3.1) 6863 - react: 18.3.1 7197 + '@swc/helpers': 0.5.13 7198 + react: 19.0.0 6864 7199 6865 - '@react-types/button@3.9.4(react@18.3.1)': 7200 + '@react-stately/virtualizer@4.1.0(react@19.0.0)': 6866 7201 dependencies: 6867 - '@react-types/shared': 3.24.1(react@18.3.1) 6868 - react: 18.3.1 7202 + '@react-aria/utils': 3.26.0(react@19.0.0) 7203 + '@react-types/shared': 3.26.0(react@19.0.0) 7204 + '@swc/helpers': 0.5.13 7205 + react: 19.0.0 6869 7206 6870 - '@react-types/button@3.9.6(react@18.3.1)': 7207 + '@react-types/accordion@3.0.0-alpha.24(react@19.0.0)': 6871 7208 dependencies: 6872 - '@react-types/shared': 3.24.1(react@18.3.1) 6873 - react: 18.3.1 7209 + '@react-types/shared': 3.25.0(react@19.0.0) 7210 + react: 19.0.0 6874 7211 6875 - '@react-types/calendar@3.4.6(react@18.3.1)': 7212 + '@react-types/breadcrumbs@3.7.8(react@19.0.0)': 6876 7213 dependencies: 6877 - '@internationalized/date': 3.5.5 6878 - '@react-types/shared': 3.24.1(react@18.3.1) 6879 - react: 18.3.1 7214 + '@react-types/link': 3.5.9(react@19.0.0) 7215 + '@react-types/shared': 3.25.0(react@19.0.0) 7216 + react: 19.0.0 6880 7217 6881 - '@react-types/calendar@3.4.8(react@18.3.1)': 7218 + '@react-types/button@3.10.0(react@19.0.0)': 6882 7219 dependencies: 6883 - '@internationalized/date': 3.5.5 6884 - '@react-types/shared': 3.24.1(react@18.3.1) 6885 - react: 18.3.1 7220 + '@react-types/shared': 3.25.0(react@19.0.0) 7221 + react: 19.0.0 6886 7222 6887 - '@react-types/checkbox@3.8.1(react@18.3.1)': 7223 + '@react-types/button@3.10.1(react@19.0.0)': 6888 7224 dependencies: 6889 - '@react-types/shared': 3.24.1(react@18.3.1) 6890 - react: 18.3.1 7225 + '@react-types/shared': 3.26.0(react@19.0.0) 7226 + react: 19.0.0 6891 7227 6892 - '@react-types/checkbox@3.8.3(react@18.3.1)': 7228 + '@react-types/calendar@3.4.10(react@19.0.0)': 6893 7229 dependencies: 6894 - '@react-types/shared': 3.24.1(react@18.3.1) 6895 - react: 18.3.1 7230 + '@internationalized/date': 3.5.6 7231 + '@react-types/shared': 3.25.0(react@19.0.0) 7232 + react: 19.0.0 6896 7233 6897 - '@react-types/combobox@3.11.1(react@18.3.1)': 7234 + '@react-types/calendar@3.5.0(react@19.0.0)': 6898 7235 dependencies: 6899 - '@react-types/shared': 3.24.1(react@18.3.1) 6900 - react: 18.3.1 7236 + '@internationalized/date': 3.6.0 7237 + '@react-types/shared': 3.26.0(react@19.0.0) 7238 + react: 19.0.0 6901 7239 6902 - '@react-types/datepicker@3.7.4(react@18.3.1)': 7240 + '@react-types/checkbox@3.8.4(react@19.0.0)': 6903 7241 dependencies: 6904 - '@internationalized/date': 3.5.5 6905 - '@react-types/calendar': 3.4.8(react@18.3.1) 6906 - '@react-types/overlays': 3.8.9(react@18.3.1) 6907 - '@react-types/shared': 3.24.1(react@18.3.1) 6908 - react: 18.3.1 7242 + '@react-types/shared': 3.26.0(react@19.0.0) 7243 + react: 19.0.0 6909 7244 6910 - '@react-types/dialog@3.5.12(react@18.3.1)': 7245 + '@react-types/checkbox@3.9.0(react@19.0.0)': 6911 7246 dependencies: 6912 - '@react-types/overlays': 3.8.9(react@18.3.1) 6913 - '@react-types/shared': 3.24.1(react@18.3.1) 6914 - react: 18.3.1 7247 + '@react-types/shared': 3.26.0(react@19.0.0) 7248 + react: 19.0.0 6915 7249 6916 - '@react-types/grid@3.2.6(react@18.3.1)': 7250 + '@react-types/combobox@3.13.0(react@19.0.0)': 6917 7251 dependencies: 6918 - '@react-types/shared': 3.24.1(react@18.3.1) 6919 - react: 18.3.1 7252 + '@react-types/shared': 3.25.0(react@19.0.0) 7253 + react: 19.0.0 6920 7254 6921 - '@react-types/grid@3.2.8(react@18.3.1)': 7255 + '@react-types/datepicker@3.8.3(react@19.0.0)': 6922 7256 dependencies: 6923 - '@react-types/shared': 3.24.1(react@18.3.1) 6924 - react: 18.3.1 7257 + '@internationalized/date': 3.5.6 7258 + '@react-types/calendar': 3.5.0(react@19.0.0) 7259 + '@react-types/overlays': 3.8.11(react@19.0.0) 7260 + '@react-types/shared': 3.26.0(react@19.0.0) 7261 + react: 19.0.0 6925 7262 6926 - '@react-types/link@3.5.5(react@18.3.1)': 7263 + '@react-types/dialog@3.5.14(react@19.0.0)': 6927 7264 dependencies: 6928 - '@react-types/shared': 3.24.1(react@18.3.1) 6929 - react: 18.3.1 7265 + '@react-types/overlays': 3.8.11(react@19.0.0) 7266 + '@react-types/shared': 3.26.0(react@19.0.0) 7267 + react: 19.0.0 6930 7268 6931 - '@react-types/link@3.5.7(react@18.3.1)': 7269 + '@react-types/form@3.7.8(react@19.0.0)': 6932 7270 dependencies: 6933 - '@react-types/shared': 3.24.1(react@18.3.1) 6934 - react: 18.3.1 7271 + '@react-types/shared': 3.26.0(react@19.0.0) 7272 + react: 19.0.0 6935 7273 6936 - '@react-types/listbox@3.5.1(react@18.3.1)': 7274 + '@react-types/grid@3.2.10(react@19.0.0)': 6937 7275 dependencies: 6938 - '@react-types/shared': 3.24.1(react@18.3.1) 6939 - react: 18.3.1 7276 + '@react-types/shared': 3.26.0(react@19.0.0) 7277 + react: 19.0.0 6940 7278 6941 - '@react-types/menu@3.9.11(react@18.3.1)': 7279 + '@react-types/grid@3.2.9(react@19.0.0)': 6942 7280 dependencies: 6943 - '@react-types/overlays': 3.8.9(react@18.3.1) 6944 - '@react-types/shared': 3.24.1(react@18.3.1) 6945 - react: 18.3.1 7281 + '@react-types/shared': 3.26.0(react@19.0.0) 7282 + react: 19.0.0 6946 7283 6947 - '@react-types/menu@3.9.9(react@18.3.1)': 7284 + '@react-types/link@3.5.8(react@19.0.0)': 6948 7285 dependencies: 6949 - '@react-types/overlays': 3.8.9(react@18.3.1) 6950 - '@react-types/shared': 3.24.1(react@18.3.1) 6951 - react: 18.3.1 7286 + '@react-types/shared': 3.26.0(react@19.0.0) 7287 + react: 19.0.0 6952 7288 6953 - '@react-types/overlays@3.8.7(react@18.3.1)': 7289 + '@react-types/link@3.5.9(react@19.0.0)': 6954 7290 dependencies: 6955 - '@react-types/shared': 3.24.1(react@18.3.1) 6956 - react: 18.3.1 7291 + '@react-types/shared': 3.26.0(react@19.0.0) 7292 + react: 19.0.0 6957 7293 6958 - '@react-types/overlays@3.8.9(react@18.3.1)': 7294 + '@react-types/listbox@3.5.3(react@19.0.0)': 6959 7295 dependencies: 6960 - '@react-types/shared': 3.24.1(react@18.3.1) 6961 - react: 18.3.1 7296 + '@react-types/shared': 3.26.0(react@19.0.0) 7297 + react: 19.0.0 6962 7298 6963 - '@react-types/progress@3.5.4(react@18.3.1)': 7299 + '@react-types/menu@3.9.12(react@19.0.0)': 6964 7300 dependencies: 6965 - '@react-types/shared': 3.24.1(react@18.3.1) 6966 - react: 18.3.1 7301 + '@react-types/overlays': 3.8.11(react@19.0.0) 7302 + '@react-types/shared': 3.26.0(react@19.0.0) 7303 + react: 19.0.0 6967 7304 6968 - '@react-types/radio@3.8.1(react@18.3.1)': 7305 + '@react-types/menu@3.9.13(react@19.0.0)': 6969 7306 dependencies: 6970 - '@react-types/shared': 3.24.1(react@18.3.1) 6971 - react: 18.3.1 7307 + '@react-types/overlays': 3.8.11(react@19.0.0) 7308 + '@react-types/shared': 3.26.0(react@19.0.0) 7309 + react: 19.0.0 6972 7310 6973 - '@react-types/select@3.9.4(react@18.3.1)': 7311 + '@react-types/overlays@3.8.10(react@19.0.0)': 6974 7312 dependencies: 6975 - '@react-types/shared': 3.24.1(react@18.3.1) 6976 - react: 18.3.1 7313 + '@react-types/shared': 3.26.0(react@19.0.0) 7314 + react: 19.0.0 6977 7315 6978 - '@react-types/select@3.9.6(react@18.3.1)': 7316 + '@react-types/overlays@3.8.11(react@19.0.0)': 6979 7317 dependencies: 6980 - '@react-types/shared': 3.24.1(react@18.3.1) 6981 - react: 18.3.1 7318 + '@react-types/shared': 3.26.0(react@19.0.0) 7319 + react: 19.0.0 6982 7320 6983 - '@react-types/shared@3.23.1(react@18.3.1)': 7321 + '@react-types/progress@3.5.7(react@19.0.0)': 6984 7322 dependencies: 6985 - react: 18.3.1 7323 + '@react-types/shared': 3.26.0(react@19.0.0) 7324 + react: 19.0.0 6986 7325 6987 - '@react-types/shared@3.24.1(react@18.3.1)': 7326 + '@react-types/radio@3.8.4(react@19.0.0)': 6988 7327 dependencies: 6989 - react: 18.3.1 7328 + '@react-types/shared': 3.25.0(react@19.0.0) 7329 + react: 19.0.0 6990 7330 6991 - '@react-types/slider@3.7.5(react@18.3.1)': 7331 + '@react-types/select@3.9.7(react@19.0.0)': 6992 7332 dependencies: 6993 - '@react-types/shared': 3.24.1(react@18.3.1) 6994 - react: 18.3.1 7333 + '@react-types/shared': 3.25.0(react@19.0.0) 7334 + react: 19.0.0 6995 7335 6996 - '@react-types/switch@3.5.5(react@18.3.1)': 7336 + '@react-types/select@3.9.8(react@19.0.0)': 6997 7337 dependencies: 6998 - '@react-types/shared': 3.24.1(react@18.3.1) 6999 - react: 18.3.1 7338 + '@react-types/shared': 3.26.0(react@19.0.0) 7339 + react: 19.0.0 7340 + 7341 + '@react-types/shared@3.24.1(react@19.0.0)': 7342 + dependencies: 7343 + react: 19.0.0 7344 + 7345 + '@react-types/shared@3.25.0(react@19.0.0)': 7346 + dependencies: 7347 + react: 19.0.0 7000 7348 7001 - '@react-types/table@3.9.5(react@18.3.1)': 7349 + '@react-types/shared@3.26.0(react@19.0.0)': 7002 7350 dependencies: 7003 - '@react-types/grid': 3.2.8(react@18.3.1) 7004 - '@react-types/shared': 3.24.1(react@18.3.1) 7005 - react: 18.3.1 7351 + react: 19.0.0 7006 7352 7007 - '@react-types/tabs@3.3.7(react@18.3.1)': 7353 + '@react-types/slider@3.7.7(react@19.0.0)': 7008 7354 dependencies: 7009 - '@react-types/shared': 3.24.1(react@18.3.1) 7010 - react: 18.3.1 7355 + '@react-types/shared': 3.26.0(react@19.0.0) 7356 + react: 19.0.0 7011 7357 7012 - '@react-types/textfield@3.9.3(react@18.3.1)': 7358 + '@react-types/switch@3.5.7(react@19.0.0)': 7013 7359 dependencies: 7014 - '@react-types/shared': 3.24.1(react@18.3.1) 7015 - react: 18.3.1 7360 + '@react-types/shared': 3.26.0(react@19.0.0) 7361 + react: 19.0.0 7016 7362 7017 - '@react-types/textfield@3.9.5(react@18.3.1)': 7363 + '@react-types/table@3.10.2(react@19.0.0)': 7018 7364 dependencies: 7019 - '@react-types/shared': 3.24.1(react@18.3.1) 7020 - react: 18.3.1 7365 + '@react-types/grid': 3.2.9(react@19.0.0) 7366 + '@react-types/shared': 3.26.0(react@19.0.0) 7367 + react: 19.0.0 7021 7368 7022 - '@react-types/tooltip@3.4.9(react@18.3.1)': 7369 + '@react-types/tabs@3.3.10(react@19.0.0)': 7023 7370 dependencies: 7024 - '@react-types/overlays': 3.8.9(react@18.3.1) 7025 - '@react-types/shared': 3.24.1(react@18.3.1) 7026 - react: 18.3.1 7371 + '@react-types/shared': 3.25.0(react@19.0.0) 7372 + react: 19.0.0 7373 + 7374 + '@react-types/textfield@3.10.0(react@19.0.0)': 7375 + dependencies: 7376 + '@react-types/shared': 3.26.0(react@19.0.0) 7377 + react: 19.0.0 7378 + 7379 + '@react-types/textfield@3.9.3(react@19.0.0)': 7380 + dependencies: 7381 + '@react-types/shared': 3.24.1(react@19.0.0) 7382 + react: 19.0.0 7383 + 7384 + '@react-types/textfield@3.9.7(react@19.0.0)': 7385 + dependencies: 7386 + '@react-types/shared': 3.25.0(react@19.0.0) 7387 + react: 19.0.0 7388 + 7389 + '@react-types/tooltip@3.4.12(react@19.0.0)': 7390 + dependencies: 7391 + '@react-types/overlays': 3.8.10(react@19.0.0) 7392 + '@react-types/shared': 3.26.0(react@19.0.0) 7393 + react: 19.0.0 7027 7394 7028 7395 '@rtsao/scc@1.1.0': {} 7029 7396 ··· 7033 7400 7034 7401 '@sapphire/snowflake@3.5.3': {} 7035 7402 7036 - '@stylistic/eslint-plugin@2.11.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2)': 7403 + '@stylistic/eslint-plugin@2.11.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)': 7037 7404 dependencies: 7038 - '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 7039 - eslint: 9.15.0(jiti@1.21.6) 7405 + '@typescript-eslint/utils': 8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7406 + eslint: 9.16.0(jiti@1.21.6) 7040 7407 eslint-visitor-keys: 4.2.0 7041 7408 espree: 10.3.0 7042 7409 estraverse: 5.3.0 ··· 7050 7417 '@swc/helpers@0.5.13': 7051 7418 dependencies: 7052 7419 tslib: 2.6.3 7420 + 7421 + '@tanstack/react-virtual@3.10.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 7422 + dependencies: 7423 + '@tanstack/virtual-core': 3.10.9 7424 + react: 19.0.0 7425 + react-dom: 19.0.0(react@19.0.0) 7426 + 7427 + '@tanstack/virtual-core@3.10.9': {} 7053 7428 7054 7429 '@types/d3-array@3.2.1': {} 7055 7430 ··· 7105 7480 7106 7481 '@types/ms@0.7.34': {} 7107 7482 7108 - '@types/node@22.9.3': 7483 + '@types/node@22.10.1': 7109 7484 dependencies: 7110 - undici-types: 6.19.8 7111 - 7112 - '@types/prop-types@15.7.12': {} 7485 + undici-types: 6.20.0 7113 7486 7114 - '@types/react-dom@18.3.1': 7487 + '@types/react-dom@19.0.1': 7115 7488 dependencies: 7116 - '@types/react': 18.3.12 7489 + '@types/react': 19.0.1 7117 7490 7118 - '@types/react@18.3.12': 7491 + '@types/react@19.0.1': 7119 7492 dependencies: 7120 - '@types/prop-types': 15.7.12 7121 7493 csstype: 3.1.3 7122 7494 7123 7495 '@types/unist@2.0.10': {} 7124 7496 7125 7497 '@types/unist@3.0.2': {} 7126 7498 7127 - '@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2)': 7499 + '@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)': 7128 7500 dependencies: 7129 7501 '@eslint-community/regexpp': 4.12.1 7130 - '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 7502 + '@typescript-eslint/parser': 8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7131 7503 '@typescript-eslint/scope-manager': 8.15.0 7132 - '@typescript-eslint/type-utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 7133 - '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 7504 + '@typescript-eslint/type-utils': 8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7505 + '@typescript-eslint/utils': 8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7134 7506 '@typescript-eslint/visitor-keys': 8.15.0 7135 - eslint: 9.15.0(jiti@1.21.6) 7507 + eslint: 9.16.0(jiti@1.21.6) 7508 + graphemer: 1.4.0 7509 + ignore: 5.3.1 7510 + natural-compare: 1.4.0 7511 + ts-api-utils: 1.4.0(typescript@5.7.2) 7512 + optionalDependencies: 7513 + typescript: 5.7.2 7514 + transitivePeerDependencies: 7515 + - supports-color 7516 + 7517 + '@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)': 7518 + dependencies: 7519 + '@eslint-community/regexpp': 4.12.1 7520 + '@typescript-eslint/parser': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7521 + '@typescript-eslint/scope-manager': 8.17.0 7522 + '@typescript-eslint/type-utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7523 + '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7524 + '@typescript-eslint/visitor-keys': 8.17.0 7525 + eslint: 9.16.0(jiti@1.21.6) 7136 7526 graphemer: 1.4.0 7137 7527 ignore: 5.3.1 7138 7528 natural-compare: 1.4.0 ··· 7142 7532 transitivePeerDependencies: 7143 7533 - supports-color 7144 7534 7145 - '@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2)': 7535 + '@typescript-eslint/parser@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)': 7146 7536 dependencies: 7147 7537 '@typescript-eslint/scope-manager': 8.15.0 7148 7538 '@typescript-eslint/types': 8.15.0 7149 7539 '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.7.2) 7150 7540 '@typescript-eslint/visitor-keys': 8.15.0 7151 7541 debug: 4.3.6 7152 - eslint: 9.15.0(jiti@1.21.6) 7542 + eslint: 9.16.0(jiti@1.21.6) 7543 + optionalDependencies: 7544 + typescript: 5.7.2 7545 + transitivePeerDependencies: 7546 + - supports-color 7547 + 7548 + '@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)': 7549 + dependencies: 7550 + '@typescript-eslint/scope-manager': 8.17.0 7551 + '@typescript-eslint/types': 8.17.0 7552 + '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2) 7553 + '@typescript-eslint/visitor-keys': 8.17.0 7554 + debug: 4.3.6 7555 + eslint: 9.16.0(jiti@1.21.6) 7153 7556 optionalDependencies: 7154 7557 typescript: 5.7.2 7155 7558 transitivePeerDependencies: ··· 7160 7563 '@typescript-eslint/types': 8.15.0 7161 7564 '@typescript-eslint/visitor-keys': 8.15.0 7162 7565 7163 - '@typescript-eslint/type-utils@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2)': 7566 + '@typescript-eslint/scope-manager@8.17.0': 7567 + dependencies: 7568 + '@typescript-eslint/types': 8.17.0 7569 + '@typescript-eslint/visitor-keys': 8.17.0 7570 + 7571 + '@typescript-eslint/type-utils@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)': 7164 7572 dependencies: 7165 7573 '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.7.2) 7166 - '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 7574 + '@typescript-eslint/utils': 8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7575 + debug: 4.3.6 7576 + eslint: 9.16.0(jiti@1.21.6) 7577 + ts-api-utils: 1.4.0(typescript@5.7.2) 7578 + optionalDependencies: 7579 + typescript: 5.7.2 7580 + transitivePeerDependencies: 7581 + - supports-color 7582 + 7583 + '@typescript-eslint/type-utils@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)': 7584 + dependencies: 7585 + '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2) 7586 + '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7167 7587 debug: 4.3.6 7168 - eslint: 9.15.0(jiti@1.21.6) 7588 + eslint: 9.16.0(jiti@1.21.6) 7169 7589 ts-api-utils: 1.4.0(typescript@5.7.2) 7170 7590 optionalDependencies: 7171 7591 typescript: 5.7.2 ··· 7173 7593 - supports-color 7174 7594 7175 7595 '@typescript-eslint/types@8.15.0': {} 7596 + 7597 + '@typescript-eslint/types@8.17.0': {} 7176 7598 7177 7599 '@typescript-eslint/typescript-estree@8.15.0(typescript@5.7.2)': 7178 7600 dependencies: ··· 7189 7611 transitivePeerDependencies: 7190 7612 - supports-color 7191 7613 7192 - '@typescript-eslint/utils@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2)': 7614 + '@typescript-eslint/typescript-estree@8.17.0(typescript@5.7.2)': 7193 7615 dependencies: 7194 - '@eslint-community/eslint-utils': 4.4.0(eslint@9.15.0(jiti@1.21.6)) 7616 + '@typescript-eslint/types': 8.17.0 7617 + '@typescript-eslint/visitor-keys': 8.17.0 7618 + debug: 4.3.6 7619 + fast-glob: 3.3.2 7620 + is-glob: 4.0.3 7621 + minimatch: 9.0.5 7622 + semver: 7.6.3 7623 + ts-api-utils: 1.4.0(typescript@5.7.2) 7624 + optionalDependencies: 7625 + typescript: 5.7.2 7626 + transitivePeerDependencies: 7627 + - supports-color 7628 + 7629 + '@typescript-eslint/utils@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)': 7630 + dependencies: 7631 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@1.21.6)) 7195 7632 '@typescript-eslint/scope-manager': 8.15.0 7196 7633 '@typescript-eslint/types': 8.15.0 7197 7634 '@typescript-eslint/typescript-estree': 8.15.0(typescript@5.7.2) 7198 - eslint: 9.15.0(jiti@1.21.6) 7635 + eslint: 9.16.0(jiti@1.21.6) 7636 + optionalDependencies: 7637 + typescript: 5.7.2 7638 + transitivePeerDependencies: 7639 + - supports-color 7640 + 7641 + '@typescript-eslint/utils@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2)': 7642 + dependencies: 7643 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@1.21.6)) 7644 + '@typescript-eslint/scope-manager': 8.17.0 7645 + '@typescript-eslint/types': 8.17.0 7646 + '@typescript-eslint/typescript-estree': 8.17.0(typescript@5.7.2) 7647 + eslint: 9.16.0(jiti@1.21.6) 7199 7648 optionalDependencies: 7200 7649 typescript: 5.7.2 7201 7650 transitivePeerDependencies: ··· 7204 7653 '@typescript-eslint/visitor-keys@8.15.0': 7205 7654 dependencies: 7206 7655 '@typescript-eslint/types': 8.15.0 7656 + eslint-visitor-keys: 4.2.0 7657 + 7658 + '@typescript-eslint/visitor-keys@8.17.0': 7659 + dependencies: 7660 + '@typescript-eslint/types': 8.17.0 7207 7661 eslint-visitor-keys: 4.2.0 7208 7662 7209 7663 '@ungap/structured-clone@1.2.0': {} ··· 7468 7922 isobject: 3.0.1 7469 7923 static-extend: 0.1.2 7470 7924 7471 - class-variance-authority@0.7.0: 7925 + class-variance-authority@0.7.1: 7472 7926 dependencies: 7473 - clsx: 2.0.0 7927 + clsx: 2.1.1 7474 7928 7475 7929 client-only@0.0.1: {} 7476 7930 7477 7931 clsx@1.2.1: {} 7478 - 7479 - clsx@2.0.0: {} 7480 7932 7481 7933 clsx@2.1.1: {} 7482 7934 ··· 7656 8108 7657 8109 didyoumean@1.2.2: {} 7658 8110 7659 - discord-api-types@0.37.107: {} 8111 + discord-api-types@0.37.110: {} 7660 8112 7661 8113 discord-api-types@0.37.97: {} 7662 8114 ··· 7785 8237 7786 8238 escape-string-regexp@4.0.0: {} 7787 8239 7788 - eslint-config-next@15.0.3(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2): 8240 + eslint-config-next@15.0.4(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2): 7789 8241 dependencies: 7790 - '@next/eslint-plugin-next': 15.0.3 8242 + '@next/eslint-plugin-next': 15.0.4 7791 8243 '@rushstack/eslint-patch': 1.10.4 7792 - '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 7793 - '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 7794 - eslint: 9.15.0(jiti@1.21.6) 8244 + '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 8245 + '@typescript-eslint/parser': 8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 8246 + eslint: 9.16.0(jiti@1.21.6) 7795 8247 eslint-import-resolver-node: 0.3.9 7796 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.15.0(jiti@1.21.6)) 7797 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.1)(eslint@9.15.0(jiti@1.21.6)) 7798 - eslint-plugin-jsx-a11y: 6.10.2(eslint@9.15.0(jiti@1.21.6)) 7799 - eslint-plugin-react: 7.37.2(eslint@9.15.0(jiti@1.21.6)) 7800 - eslint-plugin-react-hooks: 5.0.0(eslint@9.15.0(jiti@1.21.6)) 8248 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.16.0(jiti@1.21.6)) 8249 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6)) 8250 + eslint-plugin-jsx-a11y: 6.10.2(eslint@9.16.0(jiti@1.21.6)) 8251 + eslint-plugin-react: 7.37.2(eslint@9.16.0(jiti@1.21.6)) 8252 + eslint-plugin-react-hooks: 5.1.0(eslint@9.16.0(jiti@1.21.6)) 7801 8253 optionalDependencies: 7802 8254 typescript: 5.7.2 7803 8255 transitivePeerDependencies: ··· 7812 8264 transitivePeerDependencies: 7813 8265 - supports-color 7814 8266 7815 - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.15.0(jiti@1.21.6)): 8267 + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.16.0(jiti@1.21.6)): 7816 8268 dependencies: 7817 8269 debug: 4.3.6 7818 8270 enhanced-resolve: 5.17.1 7819 - eslint: 9.15.0(jiti@1.21.6) 7820 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@9.15.0(jiti@1.21.6)) 7821 - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.1)(eslint@9.15.0(jiti@1.21.6)) 8271 + eslint: 9.16.0(jiti@1.21.6) 8272 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@9.16.0(jiti@1.21.6)) 8273 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6)) 7822 8274 fast-glob: 3.3.2 7823 8275 get-tsconfig: 4.7.6 7824 8276 is-core-module: 2.15.1 ··· 7829 8281 - eslint-import-resolver-webpack 7830 8282 - supports-color 7831 8283 7832 - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@9.15.0(jiti@1.21.6)): 8284 + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@9.16.0(jiti@1.21.6)): 7833 8285 dependencies: 7834 8286 debug: 3.2.7 7835 8287 optionalDependencies: 7836 - '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 7837 - eslint: 9.15.0(jiti@1.21.6) 8288 + '@typescript-eslint/parser': 8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 8289 + eslint: 9.16.0(jiti@1.21.6) 7838 8290 eslint-import-resolver-node: 0.3.9 7839 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.15.0(jiti@1.21.6)) 8291 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.16.0(jiti@1.21.6)) 7840 8292 transitivePeerDependencies: 7841 8293 - supports-color 7842 8294 7843 - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-typescript@3.6.1)(eslint@9.15.0(jiti@1.21.6)): 8295 + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6)): 7844 8296 dependencies: 7845 8297 '@rtsao/scc': 1.1.0 7846 8298 array-includes: 3.1.8 ··· 7849 8301 array.prototype.flatmap: 1.3.2 7850 8302 debug: 3.2.7 7851 8303 doctrine: 2.1.0 7852 - eslint: 9.15.0(jiti@1.21.6) 8304 + eslint: 9.16.0(jiti@1.21.6) 7853 8305 eslint-import-resolver-node: 0.3.9 7854 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@9.15.0(jiti@1.21.6)) 8306 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.15.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@9.16.0(jiti@1.21.6)) 7855 8307 hasown: 2.0.2 7856 8308 is-core-module: 2.15.1 7857 8309 is-glob: 4.0.3 ··· 7863 8315 string.prototype.trimend: 1.0.8 7864 8316 tsconfig-paths: 3.15.0 7865 8317 optionalDependencies: 7866 - '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 8318 + '@typescript-eslint/parser': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7867 8319 transitivePeerDependencies: 7868 8320 - eslint-import-resolver-typescript 7869 8321 - eslint-import-resolver-webpack 7870 8322 - supports-color 7871 8323 7872 - eslint-plugin-jsx-a11y@6.10.2(eslint@9.15.0(jiti@1.21.6)): 8324 + eslint-plugin-jsx-a11y@6.10.2(eslint@9.16.0(jiti@1.21.6)): 7873 8325 dependencies: 7874 8326 aria-query: 5.3.2 7875 8327 array-includes: 3.1.8 ··· 7879 8331 axobject-query: 4.1.0 7880 8332 damerau-levenshtein: 1.0.8 7881 8333 emoji-regex: 9.2.2 7882 - eslint: 9.15.0(jiti@1.21.6) 8334 + eslint: 9.16.0(jiti@1.21.6) 7883 8335 hasown: 2.0.2 7884 8336 jsx-ast-utils: 3.3.5 7885 8337 language-tags: 1.0.9 ··· 7888 8340 safe-regex-test: 1.0.3 7889 8341 string.prototype.includes: 2.0.1 7890 8342 7891 - eslint-plugin-path-alias@2.1.0(eslint@9.15.0(jiti@1.21.6)): 8343 + eslint-plugin-path-alias@2.1.0(eslint@9.16.0(jiti@1.21.6)): 7892 8344 dependencies: 7893 - eslint: 9.15.0(jiti@1.21.6) 8345 + eslint: 9.16.0(jiti@1.21.6) 7894 8346 find-pkg: 2.0.0 7895 8347 get-tsconfig: 4.7.6 7896 8348 nanomatch: 1.2.13 7897 8349 transitivePeerDependencies: 7898 8350 - supports-color 7899 8351 7900 - eslint-plugin-react-compiler@19.0.0-beta-0dec889-20241115(eslint@9.15.0(jiti@1.21.6)): 8352 + eslint-plugin-react-compiler@19.0.0-beta-df7b47d-20241124(eslint@9.16.0(jiti@1.21.6)): 7901 8353 dependencies: 7902 8354 '@babel/core': 7.25.2 7903 8355 '@babel/parser': 7.25.3 7904 - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.25.2) 7905 - eslint: 9.15.0(jiti@1.21.6) 7906 - hermes-parser: 0.20.1 8356 + '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.25.2) 8357 + eslint: 9.16.0(jiti@1.21.6) 8358 + hermes-parser: 0.25.1 7907 8359 zod: 3.23.8 7908 8360 zod-validation-error: 3.3.1(zod@3.23.8) 7909 8361 transitivePeerDependencies: 7910 8362 - supports-color 7911 8363 7912 - eslint-plugin-react-hooks@5.0.0(eslint@9.15.0(jiti@1.21.6)): 8364 + eslint-plugin-react-hooks@5.1.0(eslint@9.16.0(jiti@1.21.6)): 7913 8365 dependencies: 7914 - eslint: 9.15.0(jiti@1.21.6) 8366 + eslint: 9.16.0(jiti@1.21.6) 7915 8367 7916 - eslint-plugin-react@7.37.2(eslint@9.15.0(jiti@1.21.6)): 8368 + eslint-plugin-react@7.37.2(eslint@9.16.0(jiti@1.21.6)): 7917 8369 dependencies: 7918 8370 array-includes: 3.1.8 7919 8371 array.prototype.findlast: 1.2.5 ··· 7921 8373 array.prototype.tosorted: 1.1.4 7922 8374 doctrine: 2.1.0 7923 8375 es-iterator-helpers: 1.2.0 7924 - eslint: 9.15.0(jiti@1.21.6) 8376 + eslint: 9.16.0(jiti@1.21.6) 7925 8377 estraverse: 5.3.0 7926 8378 hasown: 2.0.2 7927 8379 jsx-ast-utils: 3.3.5 ··· 7935 8387 string.prototype.matchall: 4.0.11 7936 8388 string.prototype.repeat: 1.0.0 7937 8389 7938 - eslint-plugin-simple-import-sort@12.1.1(eslint@9.15.0(jiti@1.21.6)): 8390 + eslint-plugin-simple-import-sort@12.1.1(eslint@9.16.0(jiti@1.21.6)): 7939 8391 dependencies: 7940 - eslint: 9.15.0(jiti@1.21.6) 8392 + eslint: 9.16.0(jiti@1.21.6) 7941 8393 7942 - eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.6)): 8394 + eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6)): 7943 8395 dependencies: 7944 - eslint: 9.15.0(jiti@1.21.6) 8396 + eslint: 9.16.0(jiti@1.21.6) 7945 8397 optionalDependencies: 7946 - '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 8398 + '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 7947 8399 7948 8400 eslint-scope@8.2.0: 7949 8401 dependencies: ··· 7954 8406 7955 8407 eslint-visitor-keys@4.2.0: {} 7956 8408 7957 - eslint@9.15.0(jiti@1.21.6): 8409 + eslint@9.16.0(jiti@1.21.6): 7958 8410 dependencies: 7959 - '@eslint-community/eslint-utils': 4.4.0(eslint@9.15.0(jiti@1.21.6)) 8411 + '@eslint-community/eslint-utils': 4.4.0(eslint@9.16.0(jiti@1.21.6)) 7960 8412 '@eslint-community/regexpp': 4.12.1 7961 8413 '@eslint/config-array': 0.19.0 7962 8414 '@eslint/core': 0.9.0 7963 8415 '@eslint/eslintrc': 3.2.0 7964 - '@eslint/js': 9.15.0 8416 + '@eslint/js': 9.16.0 7965 8417 '@eslint/plugin-kit': 0.2.3 7966 8418 '@humanfs/node': 0.16.6 7967 8419 '@humanwhocodes/module-importer': 1.0.1 ··· 8107 8559 dependencies: 8108 8560 map-cache: 0.2.2 8109 8561 8110 - framer-motion@11.11.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 8562 + framer-motion@12.0.0-alpha.2(@emotion/is-prop-valid@0.8.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 8111 8563 dependencies: 8112 8564 tslib: 2.6.3 8113 8565 optionalDependencies: 8114 - react: 18.3.1 8115 - react-dom: 18.3.1(react@18.3.1) 8566 + '@emotion/is-prop-valid': 0.8.8 8567 + react: 19.0.0 8568 + react-dom: 19.0.0(react@19.0.0) 8116 8569 8117 8570 fs.realpath@1.0.0: {} 8118 8571 ··· 8325 8778 property-information: 6.5.0 8326 8779 space-separated-tokens: 2.0.2 8327 8780 8328 - hermes-estree@0.20.1: {} 8781 + hermes-estree@0.25.1: {} 8329 8782 8330 - hermes-parser@0.20.1: 8783 + hermes-parser@0.25.1: 8331 8784 dependencies: 8332 - hermes-estree: 0.20.1 8785 + hermes-estree: 0.25.1 8333 8786 8334 8787 highlight.js@11.10.0: {} 8335 8788 ··· 8360 8813 ini@1.3.8: {} 8361 8814 8362 8815 inline-style-parser@0.2.4: {} 8816 + 8817 + input-otp@1.4.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 8818 + dependencies: 8819 + react: 19.0.0 8820 + react-dom: 19.0.0(react@19.0.0) 8363 8821 8364 8822 internal-slot@1.0.7: 8365 8823 dependencies: ··· 8571 9029 8572 9030 jsesc@2.5.2: {} 8573 9031 9032 + jsesc@3.0.2: {} 9033 + 8574 9034 json-buffer@3.0.1: {} 8575 9035 8576 9036 json-schema-traverse@0.4.1: {} ··· 8615 9075 prelude-ls: 1.2.1 8616 9076 type-check: 0.4.0 8617 9077 8618 - lilconfig@2.1.0: {} 8619 - 8620 - lilconfig@3.1.2: {} 9078 + lilconfig@3.1.3: {} 8621 9079 8622 9080 lines-and-columns@1.2.4: {} 8623 9081 ··· 8625 9083 dependencies: 8626 9084 p-locate: 5.0.0 8627 9085 8628 - lodash.debounce@4.0.8: {} 8629 - 8630 - lodash.foreach@4.5.0: {} 8631 - 8632 - lodash.get@4.4.2: {} 8633 - 8634 - lodash.kebabcase@4.1.1: {} 8635 - 8636 - lodash.mapkeys@4.6.0: {} 8637 - 8638 9086 lodash.merge@4.6.2: {} 8639 - 8640 - lodash.omit@4.5.0: {} 8641 9087 8642 9088 lodash@4.17.21: {} 8643 9089 ··· 8653 9099 dependencies: 8654 9100 yallist: 3.1.1 8655 9101 8656 - lucide-react@0.460.0(react@18.3.1): 9102 + lucide-react@0.468.0(react@19.0.0): 8657 9103 dependencies: 8658 - react: 18.3.1 9104 + react: 19.0.0 8659 9105 8660 9106 magic-bytes.js@1.10.0: {} 8661 9107 ··· 8956 9402 8957 9403 natural-compare@1.4.0: {} 8958 9404 8959 - next-client-cookies@2.0.0(next@15.0.3(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1): 9405 + next-client-cookies@2.0.0(next@15.0.4(@babel/core@7.25.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0): 8960 9406 dependencies: 8961 9407 js-cookie: 3.0.5 8962 - next: 15.0.3(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8963 - react: 18.3.1 9408 + next: 15.0.4(@babel/core@7.25.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9409 + react: 19.0.0 8964 9410 8965 - next@15.0.3(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 9411 + next@15.0.4(@babel/core@7.25.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 8966 9412 dependencies: 8967 - '@next/env': 15.0.3 9413 + '@next/env': 15.0.4 8968 9414 '@swc/counter': 0.1.3 8969 9415 '@swc/helpers': 0.5.13 8970 9416 busboy: 1.6.0 8971 9417 caniuse-lite: 1.0.30001672 8972 9418 postcss: 8.4.31 8973 - react: 18.3.1 8974 - react-dom: 18.3.1(react@18.3.1) 8975 - styled-jsx: 5.1.6(@babel/core@7.25.2)(react@18.3.1) 9419 + react: 19.0.0 9420 + react-dom: 19.0.0(react@19.0.0) 9421 + styled-jsx: 5.1.6(@babel/core@7.25.2)(react@19.0.0) 8976 9422 optionalDependencies: 8977 - '@next/swc-darwin-arm64': 15.0.3 8978 - '@next/swc-darwin-x64': 15.0.3 8979 - '@next/swc-linux-arm64-gnu': 15.0.3 8980 - '@next/swc-linux-arm64-musl': 15.0.3 8981 - '@next/swc-linux-x64-gnu': 15.0.3 8982 - '@next/swc-linux-x64-musl': 15.0.3 8983 - '@next/swc-win32-arm64-msvc': 15.0.3 8984 - '@next/swc-win32-x64-msvc': 15.0.3 9423 + '@next/swc-darwin-arm64': 15.0.4 9424 + '@next/swc-darwin-x64': 15.0.4 9425 + '@next/swc-linux-arm64-gnu': 15.0.4 9426 + '@next/swc-linux-arm64-musl': 15.0.4 9427 + '@next/swc-linux-x64-gnu': 15.0.4 9428 + '@next/swc-linux-x64-musl': 15.0.4 9429 + '@next/swc-win32-arm64-msvc': 15.0.4 9430 + '@next/swc-win32-x64-msvc': 15.0.4 8985 9431 sharp: 0.33.5 8986 9432 transitivePeerDependencies: 8987 9433 - '@babel/core' ··· 9134 9580 9135 9581 postcss-load-config@4.0.2(postcss@8.4.49): 9136 9582 dependencies: 9137 - lilconfig: 3.1.2 9583 + lilconfig: 3.1.3 9138 9584 yaml: 2.5.0 9139 9585 optionalDependencies: 9140 9586 postcss: 8.4.49 ··· 9177 9623 9178 9624 queue-microtask@1.2.3: {} 9179 9625 9180 - react-countup@6.5.3(react@18.3.1): 9626 + react-countup@6.5.3(react@19.0.0): 9181 9627 dependencies: 9182 9628 countup.js: 2.8.0 9183 - react: 18.3.1 9629 + react: 19.0.0 9184 9630 9185 - react-dom@18.3.1(react@18.3.1): 9631 + react-dom@19.0.0(react@19.0.0): 9186 9632 dependencies: 9187 - loose-envify: 1.4.0 9188 - react: 18.3.1 9189 - scheduler: 0.23.2 9633 + react: 19.0.0 9634 + scheduler: 0.25.0 9190 9635 9191 - react-icons@5.3.0(react@18.3.1): 9636 + react-icons@5.4.0(react@19.0.0): 9192 9637 dependencies: 9193 - react: 18.3.1 9638 + react: 19.0.0 9194 9639 9195 9640 react-is@16.13.1: {} 9196 9641 ··· 9198 9643 9199 9644 react-loading-icons@1.1.0: {} 9200 9645 9201 - react-markdown@9.0.1(@types/react@18.3.12)(react@18.3.1): 9646 + react-markdown@9.0.1(@types/react@19.0.1)(react@19.0.0): 9202 9647 dependencies: 9203 9648 '@types/hast': 3.0.4 9204 - '@types/react': 18.3.12 9649 + '@types/react': 19.0.1 9205 9650 devlop: 1.1.0 9206 9651 hast-util-to-jsx-runtime: 2.3.2 9207 9652 html-url-attributes: 3.0.1 9208 9653 mdast-util-to-hast: 13.2.0 9209 - react: 18.3.1 9654 + react: 19.0.0 9210 9655 remark-parse: 11.0.0 9211 9656 remark-rehype: 11.1.1 9212 9657 unified: 11.0.5 ··· 9215 9660 transitivePeerDependencies: 9216 9661 - supports-color 9217 9662 9218 - react-query@3.39.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 9663 + react-query@3.39.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 9219 9664 dependencies: 9220 9665 '@babel/runtime': 7.25.0 9221 9666 broadcast-channel: 3.7.0 9222 9667 match-sorter: 6.3.4 9223 - react: 18.3.1 9668 + react: 19.0.0 9224 9669 optionalDependencies: 9225 - react-dom: 18.3.1(react@18.3.1) 9670 + react-dom: 19.0.0(react@19.0.0) 9226 9671 9227 - react-remove-scroll-bar@2.3.6(@types/react@18.3.12)(react@18.3.1): 9672 + react-remove-scroll-bar@2.3.6(@types/react@19.0.1)(react@19.0.0): 9228 9673 dependencies: 9229 - react: 18.3.1 9230 - react-style-singleton: 2.2.1(@types/react@18.3.12)(react@18.3.1) 9674 + react: 19.0.0 9675 + react-style-singleton: 2.2.1(@types/react@19.0.1)(react@19.0.0) 9231 9676 tslib: 2.6.3 9232 9677 optionalDependencies: 9233 - '@types/react': 18.3.12 9678 + '@types/react': 19.0.1 9234 9679 9235 - react-remove-scroll@2.6.0(@types/react@18.3.12)(react@18.3.1): 9680 + react-remove-scroll@2.6.0(@types/react@19.0.1)(react@19.0.0): 9236 9681 dependencies: 9237 - react: 18.3.1 9238 - react-remove-scroll-bar: 2.3.6(@types/react@18.3.12)(react@18.3.1) 9239 - react-style-singleton: 2.2.1(@types/react@18.3.12)(react@18.3.1) 9682 + react: 19.0.0 9683 + react-remove-scroll-bar: 2.3.6(@types/react@19.0.1)(react@19.0.0) 9684 + react-style-singleton: 2.2.1(@types/react@19.0.1)(react@19.0.0) 9240 9685 tslib: 2.6.3 9241 - use-callback-ref: 1.3.2(@types/react@18.3.12)(react@18.3.1) 9242 - use-sidecar: 1.1.2(@types/react@18.3.12)(react@18.3.1) 9686 + use-callback-ref: 1.3.2(@types/react@19.0.1)(react@19.0.0) 9687 + use-sidecar: 1.1.2(@types/react@19.0.1)(react@19.0.0) 9243 9688 optionalDependencies: 9244 - '@types/react': 18.3.12 9689 + '@types/react': 19.0.1 9245 9690 9246 - react-smooth@4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 9691 + react-smooth@4.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 9247 9692 dependencies: 9248 9693 fast-equals: 5.0.1 9249 9694 prop-types: 15.8.1 9250 - react: 18.3.1 9251 - react-dom: 18.3.1(react@18.3.1) 9252 - react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9695 + react: 19.0.0 9696 + react-dom: 19.0.0(react@19.0.0) 9697 + react-transition-group: 4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9253 9698 9254 - react-style-singleton@2.2.1(@types/react@18.3.12)(react@18.3.1): 9699 + react-style-singleton@2.2.1(@types/react@19.0.1)(react@19.0.0): 9255 9700 dependencies: 9256 9701 get-nonce: 1.0.1 9257 9702 invariant: 2.2.4 9258 - react: 18.3.1 9703 + react: 19.0.0 9259 9704 tslib: 2.6.3 9260 9705 optionalDependencies: 9261 - '@types/react': 18.3.12 9706 + '@types/react': 19.0.1 9262 9707 9263 - react-textarea-autosize@8.5.3(@types/react@18.3.12)(react@18.3.1): 9708 + react-textarea-autosize@8.5.3(@types/react@19.0.1)(react@19.0.0): 9264 9709 dependencies: 9265 9710 '@babel/runtime': 7.25.0 9266 - react: 18.3.1 9267 - use-composed-ref: 1.3.0(react@18.3.1) 9268 - use-latest: 1.2.1(@types/react@18.3.12)(react@18.3.1) 9711 + react: 19.0.0 9712 + use-composed-ref: 1.3.0(react@19.0.0) 9713 + use-latest: 1.2.1(@types/react@19.0.1)(react@19.0.0) 9269 9714 transitivePeerDependencies: 9270 9715 - '@types/react' 9271 9716 9272 - react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 9717 + react-transition-group@4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 9273 9718 dependencies: 9274 9719 '@babel/runtime': 7.25.0 9275 9720 dom-helpers: 5.2.1 9276 9721 loose-envify: 1.4.0 9277 9722 prop-types: 15.8.1 9278 - react: 18.3.1 9279 - react-dom: 18.3.1(react@18.3.1) 9723 + react: 19.0.0 9724 + react-dom: 19.0.0(react@19.0.0) 9280 9725 9281 - react@18.3.1: 9282 - dependencies: 9283 - loose-envify: 1.4.0 9726 + react@19.0.0: {} 9284 9727 9285 9728 read-cache@1.0.0: 9286 9729 dependencies: ··· 9294 9737 dependencies: 9295 9738 decimal.js-light: 2.5.1 9296 9739 9297 - recharts@2.13.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 9740 + recharts@2.14.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 9298 9741 dependencies: 9299 9742 clsx: 2.1.1 9300 9743 eventemitter3: 4.0.7 9301 9744 lodash: 4.17.21 9302 - react: 18.3.1 9303 - react-dom: 18.3.1(react@18.3.1) 9745 + react: 19.0.0 9746 + react-dom: 19.0.0(react@19.0.0) 9304 9747 react-is: 18.3.1 9305 - react-smooth: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9748 + react-smooth: 4.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 9306 9749 recharts-scale: 0.4.5 9307 9750 tiny-invariant: 1.3.3 9308 9751 victory-vendor: 36.9.2 ··· 9408 9851 dependencies: 9409 9852 ret: 0.1.15 9410 9853 9411 - scheduler@0.23.2: 9412 - dependencies: 9413 - loose-envify: 1.4.0 9854 + scheduler@0.25.0: {} 9414 9855 9415 9856 scroll-into-view-if-needed@3.0.10: 9416 9857 dependencies: ··· 9606 10047 dependencies: 9607 10048 inline-style-parser: 0.2.4 9608 10049 9609 - styled-jsx@5.1.6(@babel/core@7.25.2)(react@18.3.1): 10050 + styled-jsx@5.1.6(@babel/core@7.25.2)(react@19.0.0): 9610 10051 dependencies: 9611 10052 client-only: 0.0.1 9612 - react: 18.3.1 10053 + react: 19.0.0 9613 10054 optionalDependencies: 9614 10055 '@babel/core': 7.25.2 9615 10056 ··· 9635 10076 9636 10077 tailwind-merge@1.14.0: {} 9637 10078 9638 - tailwind-merge@2.5.4: {} 10079 + tailwind-merge@2.5.5: {} 9639 10080 9640 - tailwind-variants@0.1.20(tailwindcss@3.4.15): 10081 + tailwind-variants@0.1.20(tailwindcss@3.4.16): 9641 10082 dependencies: 9642 10083 tailwind-merge: 1.14.0 9643 - tailwindcss: 3.4.15 10084 + tailwindcss: 3.4.16 9644 10085 9645 - tailwindcss-animate@1.0.7(tailwindcss@3.4.15): 10086 + tailwindcss-animate@1.0.7(tailwindcss@3.4.16): 9646 10087 dependencies: 9647 - tailwindcss: 3.4.15 10088 + tailwindcss: 3.4.16 9648 10089 9649 - tailwindcss@3.4.15: 10090 + tailwindcss@3.4.16: 9650 10091 dependencies: 9651 10092 '@alloc/quick-lru': 5.2.0 9652 10093 arg: 5.0.2 ··· 9657 10098 glob-parent: 6.0.2 9658 10099 is-glob: 4.0.3 9659 10100 jiti: 1.21.6 9660 - lilconfig: 2.1.0 10101 + lilconfig: 3.1.3 9661 10102 micromatch: 4.0.8 9662 10103 normalize-path: 3.0.0 9663 10104 object-hash: 3.0.0 ··· 9757 10198 is-typed-array: 1.1.13 9758 10199 possible-typed-array-names: 1.0.0 9759 10200 9760 - typescript-eslint@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2): 10201 + typescript-eslint@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2): 9761 10202 dependencies: 9762 - '@typescript-eslint/eslint-plugin': 8.15.0(@typescript-eslint/parser@8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 9763 - '@typescript-eslint/parser': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 9764 - '@typescript-eslint/utils': 8.15.0(eslint@9.15.0(jiti@1.21.6))(typescript@5.7.2) 9765 - eslint: 9.15.0(jiti@1.21.6) 10203 + '@typescript-eslint/eslint-plugin': 8.17.0(@typescript-eslint/parser@8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2))(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 10204 + '@typescript-eslint/parser': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 10205 + '@typescript-eslint/utils': 8.17.0(eslint@9.16.0(jiti@1.21.6))(typescript@5.7.2) 10206 + eslint: 9.16.0(jiti@1.21.6) 9766 10207 optionalDependencies: 9767 10208 typescript: 5.7.2 9768 10209 transitivePeerDependencies: ··· 9777 10218 has-symbols: 1.0.3 9778 10219 which-boxed-primitive: 1.0.2 9779 10220 9780 - undici-types@6.19.8: {} 10221 + undici-types@6.20.0: {} 9781 10222 9782 10223 undici@6.19.8: {} 9783 10224 ··· 9843 10284 9844 10285 urix@0.1.0: {} 9845 10286 9846 - use-callback-ref@1.3.2(@types/react@18.3.12)(react@18.3.1): 10287 + use-callback-ref@1.3.2(@types/react@19.0.1)(react@19.0.0): 9847 10288 dependencies: 9848 - react: 18.3.1 10289 + react: 19.0.0 9849 10290 tslib: 2.6.3 9850 10291 optionalDependencies: 9851 - '@types/react': 18.3.12 10292 + '@types/react': 19.0.1 9852 10293 9853 - use-composed-ref@1.3.0(react@18.3.1): 10294 + use-composed-ref@1.3.0(react@19.0.0): 9854 10295 dependencies: 9855 - react: 18.3.1 10296 + react: 19.0.0 9856 10297 9857 - use-isomorphic-layout-effect@1.1.2(@types/react@18.3.12)(react@18.3.1): 10298 + use-isomorphic-layout-effect@1.1.2(@types/react@19.0.1)(react@19.0.0): 9858 10299 dependencies: 9859 - react: 18.3.1 10300 + react: 19.0.0 9860 10301 optionalDependencies: 9861 - '@types/react': 18.3.12 10302 + '@types/react': 19.0.1 9862 10303 9863 - use-latest@1.2.1(@types/react@18.3.12)(react@18.3.1): 10304 + use-latest@1.2.1(@types/react@19.0.1)(react@19.0.0): 9864 10305 dependencies: 9865 - react: 18.3.1 9866 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.12)(react@18.3.1) 10306 + react: 19.0.0 10307 + use-isomorphic-layout-effect: 1.1.2(@types/react@19.0.1)(react@19.0.0) 9867 10308 optionalDependencies: 9868 - '@types/react': 18.3.12 10309 + '@types/react': 19.0.1 9869 10310 9870 - use-sidecar@1.1.2(@types/react@18.3.12)(react@18.3.1): 10311 + use-sidecar@1.1.2(@types/react@19.0.1)(react@19.0.0): 9871 10312 dependencies: 9872 10313 detect-node-es: 1.1.0 9873 - react: 18.3.1 10314 + react: 19.0.0 9874 10315 tslib: 2.6.3 9875 10316 optionalDependencies: 9876 - '@types/react': 18.3.12 10317 + '@types/react': 19.0.1 9877 10318 9878 - use-sync-external-store@1.2.0(react@18.3.1): 10319 + use-sync-external-store@1.2.0(react@19.0.0): 9879 10320 dependencies: 9880 - react: 18.3.1 10321 + react: 19.0.0 9881 10322 optional: true 9882 10323 9883 10324 use@3.1.1: {} 9884 10325 9885 10326 util-deprecate@1.0.2: {} 9886 10327 9887 - vaul@1.1.1(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 10328 + vaul@1.1.1(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 9888 10329 dependencies: 9889 - '@radix-ui/react-dialog': 1.1.2(@types/react-dom@18.3.1)(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9890 - react: 18.3.1 9891 - react-dom: 18.3.1(react@18.3.1) 10330 + '@radix-ui/react-dialog': 1.1.2(@types/react-dom@19.0.1)(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 10331 + react: 19.0.0 10332 + react-dom: 19.0.0(react@19.0.0) 9892 10333 transitivePeerDependencies: 9893 10334 - '@types/react' 9894 10335 - '@types/react-dom' ··· 10002 10443 10003 10444 zod@3.23.8: {} 10004 10445 10005 - zustand@5.0.1(@types/react@18.3.12)(react@18.3.1)(use-sync-external-store@1.2.0(react@18.3.1)): 10446 + zustand@5.0.2(@types/react@19.0.1)(react@19.0.0)(use-sync-external-store@1.2.0(react@19.0.0)): 10006 10447 optionalDependencies: 10007 - '@types/react': 18.3.12 10008 - react: 18.3.1 10009 - use-sync-external-store: 1.2.0(react@18.3.1) 10448 + '@types/react': 19.0.1 10449 + react: 19.0.0 10450 + use-sync-external-store: 1.2.0(react@19.0.0) 10010 10451 10011 10452 zwitch@2.0.4: {}