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

Configure Feed

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

add nsfw-image-scanning to dash

Luna 714add07 58625c22

+609 -394
+145
app/dashboard/[guildId]/nsfw-image-scanning/page.tsx
··· 1 + "use client"; 2 + 3 + import { Code } from "@nextui-org/react"; 4 + import { useParams } from "next/navigation"; 5 + import { useState } from "react"; 6 + import { HiExclamation, HiViewGridAdd } from "react-icons/hi"; 7 + import { useQuery } from "react-query"; 8 + 9 + import { guildStore } from "@/common/guilds"; 10 + import MultiSelectMenu from "@/components/inputs/MultiSelectMenu"; 11 + import SelectMenu from "@/components/inputs/SelectMenu"; 12 + import Switch from "@/components/inputs/Switch"; 13 + import { ScreenMessage } from "@/components/screen-message"; 14 + import { getData } from "@/lib/api"; 15 + import { ApiV1GuildsModulesNsfwModerationGetResponse } from "@/typings"; 16 + 17 + export default function Home() { 18 + const guild = guildStore((g) => g); 19 + const params = useParams(); 20 + 21 + const url = `/guilds/${params.guildId}/modules/nsfw-image-scanning`; 22 + 23 + const [data, setData] = useState<ApiV1GuildsModulesNsfwModerationGetResponse | null>(null); 24 + 25 + const { status } = useQuery( 26 + ["guilds", params.guildId, "modules", "nsfw-image-scanning"], 27 + () => getData<ApiV1GuildsModulesNsfwModerationGetResponse>(url), 28 + { 29 + enabled: !!params.guildId, 30 + onSuccess: (d) => setData(d) 31 + } 32 + ); 33 + 34 + const handleSwitchToggle = (enabled: boolean) => { 35 + if (!data) return; 36 + const updatedLocalData = { ...data, enabled }; 37 + setData(updatedLocalData); 38 + }; 39 + 40 + if (status === "loading") return <></>; 41 + if (!data || status === "error") { 42 + return ( 43 + <ScreenMessage 44 + title="Something went wrong.." 45 + description="We couldn't load the data for this page." 46 + href={`/dashboard/${guild?.id}`} 47 + button="Go back to overview" 48 + icon={<HiViewGridAdd />} 49 + /> 50 + ); 51 + } 52 + 53 + return ( 54 + <> 55 + 56 + <div className="mb-6 p-3 rounded-md bg-violet-500/80 border-violet-400/80 border text-neutral-200 flex items-center gap-2"> 57 + <HiExclamation className="mt-1 h-5 w-5" /> 58 + <span>Images could be false positives of false negatives, this will not replace human moderation.</span> 59 + </div> 60 + 61 + <Switch 62 + name="NSFW image moderation enabled." 63 + url={url} 64 + dataName="enabled" 65 + defaultState={data.enabled || false} 66 + disabled={false} 67 + onSave={handleSwitchToggle} 68 + /> 69 + 70 + <div className="lg:flex gap-3"> 71 + <div className="lg:w-1/2"> 72 + <SelectMenu 73 + name="Logging channel" 74 + url={url} 75 + dataName="logChannelId" 76 + items={guild?.channels?.sort((a, b) => a.name.localeCompare(b.name)).map((c) => { return { name: `#${c.name}`, value: c.id, error: c.missingPermissions.join(", ") }; })} 77 + description="Select the channel where the logs should be send into." 78 + defaultState={data.logChannelId} 79 + disabled={!data.enabled} 80 + /> 81 + </div> 82 + <div className="lg:w-1/2"> 83 + <SelectMenu 84 + name="Punishment" 85 + url={url} 86 + dataName="punishment" 87 + items={[ 88 + { 89 + name: "Nothing", 90 + value: 0 91 + }, 92 + { 93 + name: "Ban member", 94 + value: 1 95 + }, 96 + { 97 + name: "Kick member", 98 + value: 2 99 + }, 100 + { 101 + name: "Delete message", 102 + value: 3 103 + } 104 + ]} 105 + description="Select what should happen if a user sets images containing nsfw." 106 + defaultState={data.punishment} 107 + disabled={!data.enabled} 108 + /> 109 + </div> 110 + </div> 111 + 112 + 113 + 114 + <div className="lg:flex gap-3"> 115 + <div className="lg:w-1/2"> 116 + <MultiSelectMenu 117 + name="Whitelist channels" 118 + url={url} 119 + dataName="logChannelId" 120 + items={guild?.channels?.sort((a, b) => a.name.localeCompare(b.name)).map((c) => ({ name: `#${c.name}`, value: c.id, error: c.missingPermissions.join(", ") }))} 121 + description="Select channels where images should not be scanned in." 122 + defaultState={data.whitelistChannelIds} 123 + disabled={!data.enabled} 124 + /> 125 + </div> 126 + <div className="lg:w-1/2"> 127 + <MultiSelectMenu 128 + name="Whitelist roles" 129 + url={url} 130 + dataName="logChannelId" 131 + items={guild?.roles?.sort((a, b) => b.position - a.position).map((r) => ({ name: `@${r.name}`, value: r.id, color: r.color }))} 132 + description="Select roles by who images should not be scanned for." 133 + defaultState={data.whitelistRoleIds} 134 + disabled={!data.enabled} 135 + /> 136 + </div> 137 + </div> 138 + 139 + <span className="mb-2" > 140 + Members with the <Code>Manage Messages</Code> permission bypass the NSFW image scanning automatically. <br /> 141 + </span> 142 + 143 + </> 144 + ); 145 + }
+1 -1
app/leaderboard/[guildId]/open-graph.png/route.tsx
··· 9 9 import { getGuild, getTopMembers } from "../api"; 10 10 import { LeaderboardProps } from "../layout"; 11 11 12 - // export const revalidate = 3600; // 1 hour 12 + export const revalidate = 3600; // 1 hour 13 13 14 14 export async function GET( 15 15 request: NextRequest,
+7 -3
app/provider.tsx
··· 1 1 "use client"; 2 2 3 3 import { NextUIProvider } from "@nextui-org/react"; 4 + import { QueryClient, QueryClientProvider } from "react-query"; 5 + const queryClient = new QueryClient(); 4 6 5 7 interface Props { 6 8 children: React.ReactNode; ··· 9 11 export function Provider({ children }: Props) { 10 12 return ( 11 13 <NextUIProvider style={{ minHeight: "85%" }}> 12 - <main className="dark:text-neutral-400 text-neutral-700 flex flex-col items-center justify-between md:p-5 p-3 w-6xl max-w-full mt-2 md:mt-10"> 13 - {children} 14 - </main> 14 + <QueryClientProvider client={queryClient}> 15 + <main className="dark:text-neutral-400 text-neutral-700 flex flex-col items-center justify-between md:p-5 p-3 w-6xl max-w-full mt-2 md:mt-10"> 16 + {children} 17 + </main> 18 + </QueryClientProvider> 15 19 </NextUIProvider> 16 20 ); 17 21 }
+9
lib/api.ts
··· 1 + export async function getData<T>(path: string) { 2 + const response = await fetch(`${process.env.NEXT_PUBLIC_API}${path}`, { 3 + headers: { 4 + authorization: localStorage.getItem("token") as string 5 + } 6 + }); 7 + 8 + return response.json() as Promise<T>; 9 + }
+11 -10
package.json
··· 10 10 }, 11 11 "dependencies": { 12 12 "@nextui-org/react": "^2.2.9", 13 - "autoprefixer": "10.4.16", 13 + "autoprefixer": "10.4.17", 14 14 "clsx": "^2.1.0", 15 - "eslint": "8.55.0", 16 - "eslint-config-next": "14.0.4", 17 - "framer-motion": "^10.18.0", 18 - "next": "14.0.4", 19 - "postcss": "8.4.32", 15 + "eslint": "8.56.0", 16 + "eslint-config-next": "14.1.0", 17 + "framer-motion": "^11.0.3", 18 + "next": "14.1.0", 19 + "postcss": "8.4.33", 20 20 "react": "18.2.0", 21 21 "react-countup": "^6.5.0", 22 22 "react-dom": "18.2.0", 23 - "react-icons": "^4.12.0", 23 + "react-icons": "^5.0.1", 24 24 "react-loading-icons": "^1.1.0", 25 25 "react-markdown": "^8.0.7", 26 + "react-query": "^3.39.3", 26 27 "recharts": "^2.11.0", 27 28 "rehype-raw": "^7.0.0", 28 29 "sharp": "^0.33.2", 29 30 "tailwind-merge": "^2.2.1", 30 - "tailwindcss": "3.3.6", 31 + "tailwindcss": "3.4.1", 31 32 "typescript": "5.3.3", 32 33 "zustand": "^4.5.0" 33 34 }, 34 35 "devDependencies": { 35 - "@types/node": "^20.11.8", 36 - "@types/react": "^18.2.48", 36 + "@types/node": "^20.11.16", 37 + "@types/react": "^18.2.52", 37 38 "@types/react-dom": "^18.2.18", 38 39 "@typescript-eslint/eslint-plugin": "^5.62.0", 39 40 "@typescript-eslint/parser": "^5.62.0",
+436 -380
pnpm-lock.yaml
··· 7 7 dependencies: 8 8 '@nextui-org/react': 9 9 specifier: ^2.2.9 10 - version: 2.2.9(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20)(tailwindcss@3.3.6) 10 + version: 2.2.9(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20)(tailwindcss@3.4.1) 11 11 autoprefixer: 12 - specifier: 10.4.16 13 - version: 10.4.16(postcss@8.4.32) 12 + specifier: 10.4.17 13 + version: 10.4.17(postcss@8.4.33) 14 14 clsx: 15 15 specifier: ^2.1.0 16 16 version: 2.1.0 17 17 eslint: 18 - specifier: 8.55.0 19 - version: 8.55.0 18 + specifier: 8.56.0 19 + version: 8.56.0 20 20 eslint-config-next: 21 - specifier: 14.0.4 22 - version: 14.0.4(eslint@8.55.0)(typescript@5.3.3) 21 + specifier: 14.1.0 22 + version: 14.1.0(eslint@8.56.0)(typescript@5.3.3) 23 23 framer-motion: 24 - specifier: ^10.18.0 25 - version: 10.18.0(react-dom@18.2.0)(react@18.2.0) 24 + specifier: ^11.0.3 25 + version: 11.0.3(react-dom@18.2.0)(react@18.2.0) 26 26 next: 27 - specifier: 14.0.4 28 - version: 14.0.4(react-dom@18.2.0)(react@18.2.0) 27 + specifier: 14.1.0 28 + version: 14.1.0(react-dom@18.2.0)(react@18.2.0) 29 29 postcss: 30 - specifier: 8.4.32 31 - version: 8.4.32 30 + specifier: 8.4.33 31 + version: 8.4.33 32 32 react: 33 33 specifier: 18.2.0 34 34 version: 18.2.0 ··· 39 39 specifier: 18.2.0 40 40 version: 18.2.0(react@18.2.0) 41 41 react-icons: 42 - specifier: ^4.12.0 43 - version: 4.12.0(react@18.2.0) 42 + specifier: ^5.0.1 43 + version: 5.0.1(react@18.2.0) 44 44 react-loading-icons: 45 45 specifier: ^1.1.0 46 46 version: 1.1.0 47 47 react-markdown: 48 48 specifier: ^8.0.7 49 - version: 8.0.7(@types/react@18.2.48)(react@18.2.0) 49 + version: 8.0.7(@types/react@18.2.52)(react@18.2.0) 50 + react-query: 51 + specifier: ^3.39.3 52 + version: 3.39.3(react-dom@18.2.0)(react@18.2.0) 50 53 recharts: 51 54 specifier: ^2.11.0 52 55 version: 2.11.0(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0) ··· 60 63 specifier: ^2.2.1 61 64 version: 2.2.1 62 65 tailwindcss: 63 - specifier: 3.3.6 64 - version: 3.3.6 66 + specifier: 3.4.1 67 + version: 3.4.1 65 68 typescript: 66 69 specifier: 5.3.3 67 70 version: 5.3.3 68 71 zustand: 69 72 specifier: ^4.5.0 70 - version: 4.5.0(@types/react@18.2.48)(react@18.2.0) 73 + version: 4.5.0(@types/react@18.2.52)(react@18.2.0) 71 74 72 75 devDependencies: 73 76 '@types/node': 74 - specifier: ^20.11.8 75 - version: 20.11.8 77 + specifier: ^20.11.16 78 + version: 20.11.16 76 79 '@types/react': 77 - specifier: ^18.2.48 78 - version: 18.2.48 80 + specifier: ^18.2.52 81 + version: 18.2.52 79 82 '@types/react-dom': 80 83 specifier: ^18.2.18 81 84 version: 18.2.18 82 85 '@typescript-eslint/eslint-plugin': 83 86 specifier: ^5.62.0 84 - version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.55.0)(typescript@5.3.3) 87 + version: 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.3.3) 85 88 '@typescript-eslint/parser': 86 89 specifier: ^5.62.0 87 - version: 5.62.0(eslint@8.55.0)(typescript@5.3.3) 90 + version: 5.62.0(eslint@8.56.0)(typescript@5.3.3) 88 91 eslint-plugin-path-alias: 89 92 specifier: ^1.0.0 90 - version: 1.0.0(eslint@8.55.0) 93 + version: 1.0.0(eslint@8.56.0) 91 94 eslint-plugin-simple-import-sort: 92 95 specifier: ^10.0.0 93 - version: 10.0.0(eslint@8.55.0) 96 + version: 10.0.0(eslint@8.56.0) 94 97 eslint-plugin-unused-imports: 95 98 specifier: ^2.0.0 96 - version: 2.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.55.0) 99 + version: 2.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.56.0) 97 100 98 101 packages: 99 102 ··· 135 138 dev: false 136 139 optional: true 137 140 138 - /@eslint-community/eslint-utils@4.4.0(eslint@8.55.0): 141 + /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): 139 142 resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 140 143 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 141 144 peerDependencies: 142 145 eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 143 146 dependencies: 144 - eslint: 8.55.0 147 + eslint: 8.56.0 145 148 eslint-visitor-keys: 3.4.3 146 149 147 150 /@eslint-community/regexpp@4.10.0: ··· 156 159 debug: 4.3.4 157 160 espree: 9.6.1 158 161 globals: 13.24.0 159 - ignore: 5.3.0 162 + ignore: 5.3.1 160 163 import-fresh: 3.3.0 161 164 js-yaml: 4.1.0 162 165 minimatch: 3.1.2 ··· 164 167 transitivePeerDependencies: 165 168 - supports-color 166 169 167 - /@eslint/js@8.55.0: 168 - resolution: {integrity: sha512-qQfo2mxH5yVom1kacMtZZJFVdW+E70mqHMJvVg6WTLo+VBuQJ4TojZlfWBjK0ve5BdEeNAVxOsl/nvNMpJOaJA==} 170 + /@eslint/js@8.56.0: 171 + resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} 169 172 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 170 173 171 174 /@formatjs/ecma402-abstract@1.18.2: ··· 474 477 '@jridgewell/sourcemap-codec': 1.4.15 475 478 dev: false 476 479 477 - /@next/env@14.0.4: 478 - resolution: {integrity: sha512-irQnbMLbUNQpP1wcE5NstJtbuA/69kRfzBrpAD7Gsn8zm/CY6YQYc3HQBz8QPxwISG26tIm5afvvVbu508oBeQ==} 480 + /@next/env@14.1.0: 481 + resolution: {integrity: sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw==} 479 482 dev: false 480 483 481 - /@next/eslint-plugin-next@14.0.4: 482 - resolution: {integrity: sha512-U3qMNHmEZoVmHA0j/57nRfi3AscXNvkOnxDmle/69Jz/G0o/gWjXTDdlgILZdrxQ0Lw/jv2mPW8PGy0EGIHXhQ==} 484 + /@next/eslint-plugin-next@14.1.0: 485 + resolution: {integrity: sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==} 483 486 dependencies: 484 - glob: 7.1.7 487 + glob: 10.3.10 485 488 dev: false 486 489 487 - /@next/swc-darwin-arm64@14.0.4: 488 - resolution: {integrity: sha512-mF05E/5uPthWzyYDyptcwHptucf/jj09i2SXBPwNzbgBNc+XnwzrL0U6BmPjQeOL+FiB+iG1gwBeq7mlDjSRPg==} 490 + /@next/swc-darwin-arm64@14.1.0: 491 + resolution: {integrity: sha512-nUDn7TOGcIeyQni6lZHfzNoo9S0euXnu0jhsbMOmMJUBfgsnESdjN97kM7cBqQxZa8L/bM9om/S5/1dzCrW6wQ==} 489 492 engines: {node: '>= 10'} 490 493 cpu: [arm64] 491 494 os: [darwin] ··· 493 496 dev: false 494 497 optional: true 495 498 496 - /@next/swc-darwin-x64@14.0.4: 497 - resolution: {integrity: sha512-IZQ3C7Bx0k2rYtrZZxKKiusMTM9WWcK5ajyhOZkYYTCc8xytmwSzR1skU7qLgVT/EY9xtXDG0WhY6fyujnI3rw==} 499 + /@next/swc-darwin-x64@14.1.0: 500 + resolution: {integrity: sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g==} 498 501 engines: {node: '>= 10'} 499 502 cpu: [x64] 500 503 os: [darwin] ··· 502 505 dev: false 503 506 optional: true 504 507 505 - /@next/swc-linux-arm64-gnu@14.0.4: 506 - resolution: {integrity: sha512-VwwZKrBQo/MGb1VOrxJ6LrKvbpo7UbROuyMRvQKTFKhNaXjUmKTu7wxVkIuCARAfiI8JpaWAnKR+D6tzpCcM4w==} 508 + /@next/swc-linux-arm64-gnu@14.1.0: 509 + resolution: {integrity: sha512-RHo7Tcj+jllXUbK7xk2NyIDod3YcCPDZxj1WLIYxd709BQ7WuRYl3OWUNG+WUfqeQBds6kvZYlc42NJJTNi4tQ==} 507 510 engines: {node: '>= 10'} 508 511 cpu: [arm64] 509 512 os: [linux] ··· 511 514 dev: false 512 515 optional: true 513 516 514 - /@next/swc-linux-arm64-musl@14.0.4: 515 - resolution: {integrity: sha512-8QftwPEW37XxXoAwsn+nXlodKWHfpMaSvt81W43Wh8dv0gkheD+30ezWMcFGHLI71KiWmHK5PSQbTQGUiidvLQ==} 517 + /@next/swc-linux-arm64-musl@14.1.0: 518 + resolution: {integrity: sha512-v6kP8sHYxjO8RwHmWMJSq7VZP2nYCkRVQ0qolh2l6xroe9QjbgV8siTbduED4u0hlk0+tjS6/Tuy4n5XCp+l6g==} 516 519 engines: {node: '>= 10'} 517 520 cpu: [arm64] 518 521 os: [linux] ··· 520 523 dev: false 521 524 optional: true 522 525 523 - /@next/swc-linux-x64-gnu@14.0.4: 524 - resolution: {integrity: sha512-/s/Pme3VKfZAfISlYVq2hzFS8AcAIOTnoKupc/j4WlvF6GQ0VouS2Q2KEgPuO1eMBwakWPB1aYFIA4VNVh667A==} 526 + /@next/swc-linux-x64-gnu@14.1.0: 527 + resolution: {integrity: sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ==} 525 528 engines: {node: '>= 10'} 526 529 cpu: [x64] 527 530 os: [linux] ··· 529 532 dev: false 530 533 optional: true 531 534 532 - /@next/swc-linux-x64-musl@14.0.4: 533 - resolution: {integrity: sha512-m8z/6Fyal4L9Bnlxde5g2Mfa1Z7dasMQyhEhskDATpqr+Y0mjOBZcXQ7G5U+vgL22cI4T7MfvgtrM2jdopqWaw==} 535 + /@next/swc-linux-x64-musl@14.1.0: 536 + resolution: {integrity: sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg==} 534 537 engines: {node: '>= 10'} 535 538 cpu: [x64] 536 539 os: [linux] ··· 538 541 dev: false 539 542 optional: true 540 543 541 - /@next/swc-win32-arm64-msvc@14.0.4: 542 - resolution: {integrity: sha512-7Wv4PRiWIAWbm5XrGz3D8HUkCVDMMz9igffZG4NB1p4u1KoItwx9qjATHz88kwCEal/HXmbShucaslXCQXUM5w==} 544 + /@next/swc-win32-arm64-msvc@14.1.0: 545 + resolution: {integrity: sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ==} 543 546 engines: {node: '>= 10'} 544 547 cpu: [arm64] 545 548 os: [win32] ··· 547 550 dev: false 548 551 optional: true 549 552 550 - /@next/swc-win32-ia32-msvc@14.0.4: 551 - resolution: {integrity: sha512-zLeNEAPULsl0phfGb4kdzF/cAVIfaC7hY+kt0/d+y9mzcZHsMS3hAS829WbJ31DkSlVKQeHEjZHIdhN+Pg7Gyg==} 553 + /@next/swc-win32-ia32-msvc@14.1.0: 554 + resolution: {integrity: sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw==} 552 555 engines: {node: '>= 10'} 553 556 cpu: [ia32] 554 557 os: [win32] ··· 556 559 dev: false 557 560 optional: true 558 561 559 - /@next/swc-win32-x64-msvc@14.0.4: 560 - resolution: {integrity: sha512-yEh2+R8qDlDCjxVpzOTEpBLQTEFAcP2A8fUFLaWNap9GitYKkKv1//y2S6XY6zsR4rCOPRpU7plYDR+az2n30A==} 562 + /@next/swc-win32-x64-msvc@14.1.0: 563 + resolution: {integrity: sha512-9WEbVRRAqJ3YFVqEZIxUqkiO8l1nool1LmNxygr5HWF8AcSYsEpneUDhmjUVJEzO2A04+oPtZdombzzPPkTtgg==} 561 564 engines: {node: '>= 10'} 562 565 cpu: [x64] 563 566 os: [win32] ··· 565 568 dev: false 566 569 optional: true 567 570 568 - /@nextui-org/accordion@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 571 + /@nextui-org/accordion@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 569 572 resolution: {integrity: sha512-WzD7sscL+4K0TFyUutTn1AhU0wcS68TqNCTNv7KgON6ODdwieydilMxAyXvwo3RgXeWG+8BbdxJC/6W+/iLBTg==} 570 573 peerDependencies: 571 574 '@nextui-org/system': '>=2.0.0' ··· 576 579 dependencies: 577 580 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 578 581 '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 579 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 582 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 580 583 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 581 584 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 582 585 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 583 586 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 584 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 587 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 585 588 '@nextui-org/use-aria-accordion': 2.0.2(react-dom@18.2.0)(react@18.2.0) 586 589 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 587 590 '@react-aria/button': 3.9.1(react@18.2.0) ··· 591 594 '@react-stately/tree': 3.7.5(react@18.2.0) 592 595 '@react-types/accordion': 3.0.0-alpha.17(react@18.2.0) 593 596 '@react-types/shared': 3.22.0(react@18.2.0) 594 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 597 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 595 598 react: 18.2.0 596 599 react-dom: 18.2.0(react@18.2.0) 597 600 transitivePeerDependencies: ··· 618 621 - tailwind-variants 619 622 dev: false 620 623 621 - /@nextui-org/autocomplete@2.0.9(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 624 + /@nextui-org/autocomplete@2.0.9(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 622 625 resolution: {integrity: sha512-ViPXrZnP35k7LF+TBA4w8nqu0OEj9p1z9Rt7rwrACmY2VmDGY6h6a6nDCMjhuTVXptftRvzxfIPsIyzBYqxb0g==} 623 626 peerDependencies: 624 627 '@nextui-org/system': '>=2.0.0' ··· 628 631 react-dom: '>=18' 629 632 dependencies: 630 633 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 631 - '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 632 - '@nextui-org/input': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) 634 + '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 635 + '@nextui-org/input': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(react-dom@18.2.0)(react@18.2.0) 633 636 '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 634 - '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 637 + '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 635 638 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 636 639 '@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 637 640 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 638 641 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 639 642 '@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 640 643 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 641 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 644 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 642 645 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 643 646 '@react-aria/combobox': 3.8.2(react-dom@18.2.0)(react@18.2.0) 644 647 '@react-aria/focus': 3.16.0(react@18.2.0) ··· 649 652 '@react-stately/combobox': 3.8.1(react@18.2.0) 650 653 '@react-types/combobox': 3.10.0(react@18.2.0) 651 654 '@react-types/shared': 3.22.0(react@18.2.0) 652 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 655 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 653 656 react: 18.2.0 654 657 react-dom: 18.2.0(react@18.2.0) 655 658 transitivePeerDependencies: ··· 668 671 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 669 672 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 670 673 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 671 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 674 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 672 675 '@nextui-org/use-image': 2.0.4(react@18.2.0) 673 676 '@react-aria/focus': 3.16.0(react@18.2.0) 674 677 '@react-aria/interactions': 3.20.1(react@18.2.0) ··· 687 690 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 688 691 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 689 692 '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.20) 690 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 693 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 691 694 react: 18.2.0 692 695 react-dom: 18.2.0(react@18.2.0) 693 696 transitivePeerDependencies: ··· 706 709 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 707 710 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 708 711 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 709 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 712 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 710 713 '@react-aria/breadcrumbs': 3.5.9(react@18.2.0) 711 714 '@react-aria/focus': 3.16.0(react@18.2.0) 712 715 '@react-aria/utils': 3.23.0(react@18.2.0) ··· 716 719 react-dom: 18.2.0(react@18.2.0) 717 720 dev: false 718 721 719 - /@nextui-org/button@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 722 + /@nextui-org/button@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 720 723 resolution: {integrity: sha512-mDrSII1oneY4omwDdxUhl5oLa3AhoWCchwV/jt7egunnAFie32HbTqfFYGpLGiJw3JMMh3WDUthrI1islVTRKA==} 721 724 peerDependencies: 722 725 '@nextui-org/system': '>=2.0.0' ··· 726 729 react-dom: '>=18' 727 730 dependencies: 728 731 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 729 - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0) 732 + '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0) 730 733 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 731 734 '@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 732 735 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 733 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 736 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 734 737 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 735 738 '@react-aria/button': 3.9.1(react@18.2.0) 736 739 '@react-aria/focus': 3.16.0(react@18.2.0) ··· 738 741 '@react-aria/utils': 3.23.0(react@18.2.0) 739 742 '@react-types/button': 3.9.1(react@18.2.0) 740 743 '@react-types/shared': 3.22.0(react@18.2.0) 741 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 744 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 742 745 react: 18.2.0 743 746 react-dom: 18.2.0(react@18.2.0) 744 747 transitivePeerDependencies: 745 748 - tailwind-variants 746 749 dev: false 747 750 748 - /@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0): 751 + /@nextui-org/card@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0): 749 752 resolution: {integrity: sha512-16uAS0i6+EO+u8aqtmaCXatjovsyuTq51JwCLBlB67OldfgXoYcYl3GaE2VoZdEwxVu1G/qypDfXv29k46nZuA==} 750 753 peerDependencies: 751 754 '@nextui-org/system': '>=2.0.0' ··· 755 758 react-dom: '>=18' 756 759 dependencies: 757 760 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 758 - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0) 761 + '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0) 759 762 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 760 763 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 761 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 764 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 762 765 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 763 766 '@react-aria/button': 3.9.1(react@18.2.0) 764 767 '@react-aria/focus': 3.16.0(react@18.2.0) 765 768 '@react-aria/interactions': 3.20.1(react@18.2.0) 766 769 '@react-aria/utils': 3.23.0(react@18.2.0) 767 770 '@react-types/shared': 3.22.0(react@18.2.0) 768 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 771 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 769 772 react: 18.2.0 770 773 react-dom: 18.2.0(react@18.2.0) 771 774 dev: false ··· 781 784 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 782 785 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 783 786 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 784 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 787 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 785 788 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 786 789 '@react-aria/checkbox': 3.13.0(react@18.2.0) 787 790 '@react-aria/focus': 3.16.0(react@18.2.0) ··· 808 811 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 809 812 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 810 813 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 811 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 814 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 812 815 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 813 816 '@react-aria/focus': 3.16.0(react@18.2.0) 814 817 '@react-aria/interactions': 3.20.1(react@18.2.0) ··· 828 831 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 829 832 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 830 833 '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.20) 831 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 834 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 832 835 react: 18.2.0 833 836 react-dom: 18.2.0(react@18.2.0) 834 837 transitivePeerDependencies: ··· 845 848 '@nextui-org/react-rsc-utils': 2.0.10 846 849 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 847 850 '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.20) 848 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 851 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 849 852 '@react-types/shared': 3.22.0(react@18.2.0) 850 853 react: 18.2.0 851 854 react-dom: 18.2.0(react@18.2.0) ··· 853 856 - tailwind-variants 854 857 dev: false 855 858 856 - /@nextui-org/dropdown@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 859 + /@nextui-org/dropdown@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 857 860 resolution: {integrity: sha512-3KINNvC7Cz+deQltCM8gaB7iJCfU4Qsp1fwnoy1wUEjeZhEtPOPR59oTyqT+gPaPIisP1+LLOfcqRl4jNQoVXw==} 858 861 peerDependencies: 859 862 '@nextui-org/system': '>=2.0.0' ··· 863 866 react-dom: '>=18' 864 867 dependencies: 865 868 '@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 866 - '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 869 + '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 867 870 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 868 871 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 869 872 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 870 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 873 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 871 874 '@react-aria/focus': 3.16.0(react@18.2.0) 872 875 '@react-aria/menu': 3.12.0(react-dom@18.2.0)(react@18.2.0) 873 876 '@react-aria/utils': 3.23.0(react@18.2.0) 874 877 '@react-stately/menu': 3.6.0(react@18.2.0) 875 878 '@react-types/menu': 3.9.6(react@18.2.0) 876 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 879 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 877 880 react: 18.2.0 878 881 react-dom: 18.2.0(react@18.2.0) 879 882 transitivePeerDependencies: ··· 881 884 - tailwind-variants 882 885 dev: false 883 886 884 - /@nextui-org/framer-transitions@2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 887 + /@nextui-org/framer-transitions@2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 885 888 resolution: {integrity: sha512-UlWMCAFdrq8wKrYFGwc+O4kFhKCkL4L9ZadBkP0PqjmfyAC2gA3ygRbNqtKhFMWeKbBAiC8qQ9aTBEA/+0r/EA==} 886 889 peerDependencies: 887 890 framer-motion: '>=4.0.0' ··· 890 893 dependencies: 891 894 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 892 895 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 893 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 896 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 894 897 react: 18.2.0 895 898 react-dom: 18.2.0(react@18.2.0) 896 899 transitivePeerDependencies: ··· 909 912 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 910 913 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 911 914 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 912 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 915 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 913 916 '@nextui-org/use-image': 2.0.4(react@18.2.0) 914 917 react: 18.2.0 915 918 react-dom: 18.2.0(react@18.2.0) 916 919 dev: false 917 920 918 - /@nextui-org/input@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0): 921 + /@nextui-org/input@2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(react-dom@18.2.0)(react@18.2.0): 919 922 resolution: {integrity: sha512-nUTlAvsXj5t88ycvQdICxf78/pko6Wznx2OomvYjb3E45eb77twQcWUDhydkJCWIh3b4AhGHSMM6GYxwWUgMDA==} 920 923 peerDependencies: 921 924 '@nextui-org/system': '>=2.0.0' ··· 927 930 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 928 931 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 929 932 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 930 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 933 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 931 934 '@react-aria/focus': 3.16.0(react@18.2.0) 932 935 '@react-aria/interactions': 3.20.1(react@18.2.0) 933 936 '@react-aria/textfield': 3.14.1(react@18.2.0) ··· 937 940 '@react-types/textfield': 3.9.0(react@18.2.0) 938 941 react: 18.2.0 939 942 react-dom: 18.2.0(react@18.2.0) 940 - react-textarea-autosize: 8.5.3(@types/react@18.2.48)(react@18.2.0) 943 + react-textarea-autosize: 8.5.3(@types/react@18.2.52)(react@18.2.0) 941 944 transitivePeerDependencies: 942 945 - '@types/react' 943 946 dev: false ··· 952 955 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 953 956 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 954 957 '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.20) 955 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 958 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 956 959 '@react-aria/utils': 3.23.0(react@18.2.0) 957 960 react: 18.2.0 958 961 react-dom: 18.2.0(react@18.2.0) ··· 972 975 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 973 976 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 974 977 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 975 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 978 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 976 979 '@nextui-org/use-aria-link': 2.0.15(react@18.2.0) 977 980 '@react-aria/focus': 3.16.0(react@18.2.0) 978 981 '@react-aria/link': 3.6.3(react@18.2.0) ··· 995 998 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 996 999 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 997 1000 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 998 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1001 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 999 1002 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1000 1003 '@nextui-org/use-is-mobile': 2.0.6(react@18.2.0) 1001 1004 '@react-aria/focus': 3.16.0(react@18.2.0) ··· 1024 1027 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1025 1028 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1026 1029 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1027 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1030 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1028 1031 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1029 1032 '@nextui-org/use-is-mobile': 2.0.6(react@18.2.0) 1030 1033 '@react-aria/focus': 3.16.0(react@18.2.0) ··· 1041 1044 - tailwind-variants 1042 1045 dev: false 1043 1046 1044 - /@nextui-org/modal@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1047 + /@nextui-org/modal@2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1045 1048 resolution: {integrity: sha512-unfP0EMF3FDg5CkRqou03s4/BopWbaBTeVIMZeA2A1WF5teHUOmpLdp44Z1KOoWB1RVMDVd4JeoauNHNhJMp0g==} 1046 1049 peerDependencies: 1047 1050 '@nextui-org/system': '>=2.0.0' ··· 1050 1053 react: '>=18' 1051 1054 react-dom: '>=18' 1052 1055 dependencies: 1053 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1056 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1054 1057 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1055 1058 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1056 1059 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1057 1060 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1058 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1061 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1059 1062 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 1060 1063 '@nextui-org/use-aria-modal-overlay': 2.0.6(react-dom@18.2.0)(react@18.2.0) 1061 1064 '@nextui-org/use-disclosure': 2.0.6(react@18.2.0) ··· 1066 1069 '@react-aria/utils': 3.23.0(react@18.2.0) 1067 1070 '@react-stately/overlays': 3.6.4(react@18.2.0) 1068 1071 '@react-types/overlays': 3.8.4(react@18.2.0) 1069 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 1072 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 1070 1073 react: 18.2.0 1071 1074 react-dom: 18.2.0(react@18.2.0) 1072 - react-remove-scroll: 2.5.7(@types/react@18.2.48)(react@18.2.0) 1075 + react-remove-scroll: 2.5.7(@types/react@18.2.52)(react@18.2.0) 1073 1076 transitivePeerDependencies: 1074 1077 - '@types/react' 1075 1078 - tailwind-variants 1076 1079 dev: false 1077 1080 1078 - /@nextui-org/navbar@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1081 + /@nextui-org/navbar@2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1079 1082 resolution: {integrity: sha512-iP4Pn4ItQkAW1nbu1Jmrh5l9pMVG43lDxq9rbx6DbLjLnnZOOrE6fURb8uN5NVy3ooV5dF02zKAoxlkE5fN/xw==} 1080 1083 peerDependencies: 1081 1084 '@nextui-org/system': '>=2.0.0' ··· 1084 1087 react: '>=18' 1085 1088 react-dom: '>=18' 1086 1089 dependencies: 1087 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1090 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1088 1091 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1089 1092 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1090 1093 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1091 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1094 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1092 1095 '@nextui-org/use-aria-toggle-button': 2.0.6(react@18.2.0) 1093 1096 '@nextui-org/use-scroll-position': 2.0.4(react@18.2.0) 1094 1097 '@react-aria/focus': 3.16.0(react@18.2.0) ··· 1097 1100 '@react-aria/utils': 3.23.0(react@18.2.0) 1098 1101 '@react-stately/toggle': 3.7.0(react@18.2.0) 1099 1102 '@react-stately/utils': 3.9.0(react@18.2.0) 1100 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 1103 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 1101 1104 react: 18.2.0 1102 1105 react-dom: 18.2.0(react@18.2.0) 1103 - react-remove-scroll: 2.5.7(@types/react@18.2.48)(react@18.2.0) 1106 + react-remove-scroll: 2.5.7(@types/react@18.2.52)(react@18.2.0) 1104 1107 transitivePeerDependencies: 1105 1108 - '@types/react' 1106 1109 - tailwind-variants ··· 1118 1121 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1119 1122 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1120 1123 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1121 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1124 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1122 1125 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1123 1126 '@nextui-org/use-pagination': 2.0.4(react@18.2.0) 1124 1127 '@react-aria/focus': 3.16.0(react@18.2.0) ··· 1129 1132 scroll-into-view-if-needed: 3.0.10 1130 1133 dev: false 1131 1134 1132 - /@nextui-org/popover@2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1135 + /@nextui-org/popover@2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1133 1136 resolution: {integrity: sha512-fqqktFQ/chIBS9Y3MghL6KX6qAy3hodtXUDchnxLa1GL+oi6TCBLUjo+wgI5EMJrTTbqo/eFLui/Ks00JfCj+A==} 1134 1137 peerDependencies: 1135 1138 '@nextui-org/system': '>=2.0.0' ··· 1139 1142 react-dom: '>=18' 1140 1143 dependencies: 1141 1144 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1142 - '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1143 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1145 + '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1146 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1144 1147 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1145 1148 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1146 1149 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1147 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1150 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1148 1151 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 1149 1152 '@react-aria/dialog': 3.5.10(react-dom@18.2.0)(react@18.2.0) 1150 1153 '@react-aria/focus': 3.16.0(react@18.2.0) ··· 1154 1157 '@react-stately/overlays': 3.6.4(react@18.2.0) 1155 1158 '@react-types/button': 3.9.1(react@18.2.0) 1156 1159 '@react-types/overlays': 3.8.4(react@18.2.0) 1157 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 1160 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 1158 1161 react: 18.2.0 1159 1162 react-dom: 18.2.0(react@18.2.0) 1160 - react-remove-scroll: 2.5.7(@types/react@18.2.48)(react@18.2.0) 1163 + react-remove-scroll: 2.5.7(@types/react@18.2.52)(react@18.2.0) 1161 1164 transitivePeerDependencies: 1162 1165 - '@types/react' 1163 1166 - tailwind-variants ··· 1174 1177 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1175 1178 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1176 1179 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1177 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1180 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1178 1181 '@nextui-org/use-is-mounted': 2.0.4(react@18.2.0) 1179 1182 '@react-aria/i18n': 3.10.0(react@18.2.0) 1180 1183 '@react-aria/progress': 3.4.9(react@18.2.0) ··· 1195 1198 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1196 1199 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1197 1200 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1198 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1201 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1199 1202 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1200 1203 '@react-aria/focus': 3.16.0(react@18.2.0) 1201 1204 '@react-aria/interactions': 3.20.1(react@18.2.0) ··· 1223 1226 react: 18.2.0 1224 1227 dev: false 1225 1228 1226 - /@nextui-org/react@2.2.9(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20)(tailwindcss@3.3.6): 1229 + /@nextui-org/react@2.2.9(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20)(tailwindcss@3.4.1): 1227 1230 resolution: {integrity: sha512-QHkUQTxI9sYoVjrvTpYm5K68pMDRqD13+DVzdsrkJuETGhbvE2c2CCGc4on9EwXC3JsOxuP/OyqaAmOIuHhYkA==} 1228 1231 peerDependencies: 1229 1232 framer-motion: '>=4.0.0' 1230 1233 react: '>=18' 1231 1234 react-dom: '>=18' 1232 1235 dependencies: 1233 - '@nextui-org/accordion': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1234 - '@nextui-org/autocomplete': 2.0.9(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1236 + '@nextui-org/accordion': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1237 + '@nextui-org/autocomplete': 2.0.9(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1235 1238 '@nextui-org/avatar': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1236 1239 '@nextui-org/badge': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1237 1240 '@nextui-org/breadcrumbs': 2.0.4(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1238 - '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1239 - '@nextui-org/card': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0) 1241 + '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1242 + '@nextui-org/card': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0) 1240 1243 '@nextui-org/checkbox': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1241 1244 '@nextui-org/chip': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1242 1245 '@nextui-org/code': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1243 1246 '@nextui-org/divider': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1244 - '@nextui-org/dropdown': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1247 + '@nextui-org/dropdown': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1245 1248 '@nextui-org/image': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1246 - '@nextui-org/input': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0) 1249 + '@nextui-org/input': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(react-dom@18.2.0)(react@18.2.0) 1247 1250 '@nextui-org/kbd': 2.0.25(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1248 1251 '@nextui-org/link': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1249 1252 '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1250 1253 '@nextui-org/menu': 2.0.17(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1251 - '@nextui-org/modal': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1252 - '@nextui-org/navbar': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1254 + '@nextui-org/modal': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1255 + '@nextui-org/navbar': 2.0.27(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1253 1256 '@nextui-org/pagination': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1254 - '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1257 + '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1255 1258 '@nextui-org/progress': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1256 1259 '@nextui-org/radio': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1257 - '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0) 1260 + '@nextui-org/ripple': 2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0) 1258 1261 '@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1259 - '@nextui-org/select': 2.1.20(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1262 + '@nextui-org/select': 2.1.20(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1260 1263 '@nextui-org/skeleton': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1261 - '@nextui-org/slider': 2.2.5(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1262 - '@nextui-org/snippet': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1264 + '@nextui-org/slider': 2.2.5(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1265 + '@nextui-org/snippet': 2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1263 1266 '@nextui-org/spacer': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1264 1267 '@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1265 1268 '@nextui-org/switch': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1266 1269 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1267 1270 '@nextui-org/table': 2.0.28(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1268 - '@nextui-org/tabs': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1269 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1270 - '@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1271 + '@nextui-org/tabs': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1272 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1273 + '@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1271 1274 '@nextui-org/user': 2.0.25(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1272 1275 '@react-aria/visually-hidden': 3.8.8(react@18.2.0) 1273 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 1276 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 1274 1277 react: 18.2.0 1275 1278 react-dom: 18.2.0(react@18.2.0) 1276 1279 transitivePeerDependencies: ··· 1279 1282 - tailwindcss 1280 1283 dev: false 1281 1284 1282 - /@nextui-org/ripple@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0): 1285 + /@nextui-org/ripple@2.0.24(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0): 1283 1286 resolution: {integrity: sha512-PCvAk9ErhmPX46VRmhsg8yMxw3Qd9LY7BDkRRfIF8KftgRDyOpG2vV8DxvSOxQu1/aqBWkkHNUuEjM/EvSEung==} 1284 1287 peerDependencies: 1285 1288 '@nextui-org/system': '>=2.0.0' ··· 1291 1294 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1292 1295 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1293 1296 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1294 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1295 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 1297 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1298 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 1296 1299 react: 18.2.0 1297 1300 react-dom: 18.2.0(react@18.2.0) 1298 1301 dev: false ··· 1308 1311 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1309 1312 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1310 1313 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1311 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1314 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1312 1315 '@nextui-org/use-data-scroll-overflow': 2.1.2(react@18.2.0) 1313 1316 react: 18.2.0 1314 1317 react-dom: 18.2.0(react@18.2.0) 1315 1318 dev: false 1316 1319 1317 - /@nextui-org/select@2.1.20(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1320 + /@nextui-org/select@2.1.20(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1318 1321 resolution: {integrity: sha512-GCO9uzyYnFIdJTqIe6aDe2NnYlclcdYfZnECFAze/R2MW0jpoysk5ysGBDjVDmZis6tLu+BOFXJbIlYEi+LoUQ==} 1319 1322 peerDependencies: 1320 1323 '@nextui-org/system': '>=2.0.0' ··· 1325 1328 dependencies: 1326 1329 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1327 1330 '@nextui-org/listbox': 2.1.16(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1328 - '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.48)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1331 + '@nextui-org/popover': 2.1.14(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(@types/react@18.2.52)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1329 1332 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1330 1333 '@nextui-org/scroll-shadow': 2.1.12(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0) 1331 1334 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1332 1335 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1333 1336 '@nextui-org/spinner': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1334 1337 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1335 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1338 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1336 1339 '@nextui-org/use-aria-button': 2.0.6(react@18.2.0) 1337 1340 '@nextui-org/use-aria-multiselect': 2.1.3(react-dom@18.2.0)(react@18.2.0) 1338 1341 '@react-aria/focus': 3.16.0(react@18.2.0) ··· 1340 1343 '@react-aria/utils': 3.23.0(react@18.2.0) 1341 1344 '@react-aria/visually-hidden': 3.8.8(react@18.2.0) 1342 1345 '@react-types/shared': 3.22.0(react@18.2.0) 1343 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 1346 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 1344 1347 react: 18.2.0 1345 1348 react-dom: 18.2.0(react@18.2.0) 1346 1349 transitivePeerDependencies: ··· 1374 1377 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1375 1378 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1376 1379 '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.20) 1377 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1380 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1378 1381 react: 18.2.0 1379 1382 react-dom: 18.2.0(react@18.2.0) 1380 1383 transitivePeerDependencies: 1381 1384 - tailwind-variants 1382 1385 dev: false 1383 1386 1384 - /@nextui-org/slider@2.2.5(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1387 + /@nextui-org/slider@2.2.5(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1385 1388 resolution: {integrity: sha512-dC6HHMmtn2WvxDmbY/Dq51XJjQ7cAnjZsuYVIvhwIiCLDG8QnEIhmYN0DQp/6oeZsCHnyMHC4DmtgOiJL0eXrQ==} 1386 1389 peerDependencies: 1387 1390 '@nextui-org/system': '>=2.0.0' ··· 1392 1395 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1393 1396 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1394 1397 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1395 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1396 - '@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1398 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1399 + '@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1397 1400 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1398 1401 '@react-aria/focus': 3.16.0(react@18.2.0) 1399 1402 '@react-aria/i18n': 3.10.0(react@18.2.0) ··· 1409 1412 - tailwind-variants 1410 1413 dev: false 1411 1414 1412 - /@nextui-org/snippet@2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1415 + /@nextui-org/snippet@2.0.30(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1413 1416 resolution: {integrity: sha512-8hKxqKpbJIMqFVedzYj90T4td+TkWdOdyYD9+VjywMdezAjsWdr8tqQj7boaMFjVNVSG+Pnw55Pgg/vkpc21aw==} 1414 1417 peerDependencies: 1415 1418 '@nextui-org/system': '>=2.0.0' ··· 1418 1421 react: '>=18' 1419 1422 react-dom: '>=18' 1420 1423 dependencies: 1421 - '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1424 + '@nextui-org/button': 2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1422 1425 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1423 1426 '@nextui-org/shared-icons': 2.0.6(react@18.2.0) 1424 1427 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1425 1428 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1426 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1427 - '@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1429 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1430 + '@nextui-org/tooltip': 2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1428 1431 '@nextui-org/use-clipboard': 2.0.4(react@18.2.0) 1429 1432 '@react-aria/focus': 3.16.0(react@18.2.0) 1430 1433 '@react-aria/utils': 3.23.0(react@18.2.0) 1431 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 1434 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 1432 1435 react: 18.2.0 1433 1436 react-dom: 18.2.0(react@18.2.0) 1434 1437 transitivePeerDependencies: ··· 1445 1448 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1446 1449 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1447 1450 '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.20) 1448 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1451 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1449 1452 react: 18.2.0 1450 1453 react-dom: 18.2.0(react@18.2.0) 1451 1454 transitivePeerDependencies: ··· 1462 1465 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1463 1466 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1464 1467 '@nextui-org/system-rsc': 2.0.11(@nextui-org/theme@2.1.17)(react@18.2.0)(tailwind-variants@0.1.20) 1465 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1468 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1466 1469 react: 18.2.0 1467 1470 react-dom: 18.2.0(react@18.2.0) 1468 1471 transitivePeerDependencies: ··· 1480 1483 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1481 1484 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1482 1485 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1483 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1486 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1484 1487 '@nextui-org/use-aria-press': 2.0.1(react@18.2.0) 1485 1488 '@react-aria/focus': 3.16.0(react@18.2.0) 1486 1489 '@react-aria/interactions': 3.20.1(react@18.2.0) ··· 1500 1503 react: '>=18' 1501 1504 tailwind-variants: '>=0.1.13' 1502 1505 dependencies: 1503 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1506 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1504 1507 clsx: 1.2.1 1505 1508 react: 18.2.0 1506 - tailwind-variants: 0.1.20(tailwindcss@3.3.6) 1509 + tailwind-variants: 0.1.20(tailwindcss@3.4.1) 1507 1510 dev: false 1508 1511 1509 1512 /@nextui-org/system@2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): ··· 1538 1541 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1539 1542 '@nextui-org/spacer': 2.0.24(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1540 1543 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1541 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1544 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1542 1545 '@react-aria/focus': 3.16.0(react@18.2.0) 1543 1546 '@react-aria/interactions': 3.20.1(react@18.2.0) 1544 1547 '@react-aria/table': 3.13.3(react-dom@18.2.0)(react@18.2.0) ··· 1554 1557 - tailwind-variants 1555 1558 dev: false 1556 1559 1557 - /@nextui-org/tabs@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1560 + /@nextui-org/tabs@2.0.26(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1558 1561 resolution: {integrity: sha512-GjERgBYUAY1KD4GqNVy0cRi6GyQnf62q0ddcN4je3sEM6rsq3PygEXhkN5pxxFPacoYM/UE6rBswHSKlbjJjgw==} 1559 1562 peerDependencies: 1560 1563 '@nextui-org/system': '>=2.0.0' ··· 1564 1567 react-dom: '>=18' 1565 1568 dependencies: 1566 1569 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1567 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1570 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1568 1571 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1569 1572 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1570 1573 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1571 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1574 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1572 1575 '@nextui-org/use-is-mounted': 2.0.4(react@18.2.0) 1573 1576 '@nextui-org/use-update-effect': 2.0.4(react@18.2.0) 1574 1577 '@react-aria/focus': 3.16.0(react@18.2.0) ··· 1578 1581 '@react-stately/tabs': 3.6.3(react@18.2.0) 1579 1582 '@react-types/shared': 3.22.0(react@18.2.0) 1580 1583 '@react-types/tabs': 3.3.4(react@18.2.0) 1581 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 1584 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 1582 1585 react: 18.2.0 1583 1586 react-dom: 18.2.0(react@18.2.0) 1584 1587 scroll-into-view-if-needed: 3.0.10 ··· 1586 1589 - tailwind-variants 1587 1590 dev: false 1588 1591 1589 - /@nextui-org/theme@2.1.17(tailwindcss@3.3.6): 1592 + /@nextui-org/theme@2.1.17(tailwindcss@3.4.1): 1590 1593 resolution: {integrity: sha512-/WeHcMrAcWPGsEVn9M9TnvxKkaYkCocBH9JrDYCEFQoJgleUzHd4nVk7MWtpSOYJXLUzUMY1M9AqAK3jBkw+5g==} 1591 1594 peerDependencies: 1592 1595 tailwindcss: '*' ··· 1600 1603 lodash.kebabcase: 4.1.1 1601 1604 lodash.mapkeys: 4.6.0 1602 1605 lodash.omit: 4.5.0 1603 - tailwind-variants: 0.1.20(tailwindcss@3.3.6) 1604 - tailwindcss: 3.3.6 1606 + tailwind-variants: 0.1.20(tailwindcss@3.4.1) 1607 + tailwindcss: 3.4.1 1605 1608 dev: false 1606 1609 1607 - /@nextui-org/tooltip@2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1610 + /@nextui-org/tooltip@2.0.29(@nextui-org/system@2.0.15)(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20): 1608 1611 resolution: {integrity: sha512-LaFyS5bXhcZFXP9rnh6pTKsYX6siWjzEe5z72FIOyAV2yvv2yhkRiO/mEHKI8moo+/tScW/6muFXsvbEalPefg==} 1609 1612 peerDependencies: 1610 1613 '@nextui-org/system': '>=2.0.0' ··· 1614 1617 react-dom: '>=18' 1615 1618 dependencies: 1616 1619 '@nextui-org/aria-utils': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1617 - '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@10.18.0)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1620 + '@nextui-org/framer-transitions': 2.0.15(@nextui-org/theme@2.1.17)(framer-motion@11.0.3)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1618 1621 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1619 1622 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1620 1623 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1621 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1624 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1622 1625 '@react-aria/interactions': 3.20.1(react@18.2.0) 1623 1626 '@react-aria/overlays': 3.20.0(react-dom@18.2.0)(react@18.2.0) 1624 1627 '@react-aria/tooltip': 3.7.0(react@18.2.0) ··· 1626 1629 '@react-stately/tooltip': 3.4.6(react@18.2.0) 1627 1630 '@react-types/overlays': 3.8.4(react@18.2.0) 1628 1631 '@react-types/tooltip': 3.4.6(react@18.2.0) 1629 - framer-motion: 10.18.0(react-dom@18.2.0)(react@18.2.0) 1632 + framer-motion: 11.0.3(react-dom@18.2.0)(react@18.2.0) 1630 1633 react: 18.2.0 1631 1634 react-dom: 18.2.0(react@18.2.0) 1632 1635 transitivePeerDependencies: ··· 1848 1851 '@nextui-org/react-utils': 2.0.10(react@18.2.0) 1849 1852 '@nextui-org/shared-utils': 2.0.4(react@18.2.0) 1850 1853 '@nextui-org/system': 2.0.15(@nextui-org/theme@2.1.17)(react-dom@18.2.0)(react@18.2.0)(tailwind-variants@0.1.20) 1851 - '@nextui-org/theme': 2.1.17(tailwindcss@3.3.6) 1854 + '@nextui-org/theme': 2.1.17(tailwindcss@3.4.1) 1852 1855 '@react-aria/focus': 3.16.0(react@18.2.0) 1853 1856 '@react-aria/utils': 3.23.0(react@18.2.0) 1854 1857 react: 18.2.0 ··· 2853 2856 '@types/ms': 0.7.34 2854 2857 dev: false 2855 2858 2856 - /@types/hast@2.3.9: 2857 - resolution: {integrity: sha512-pTHyNlaMD/oKJmS+ZZUyFUcsZeBZpC0lmGquw98CqRVNgAdJZJeD7GoeLiT6Xbx5rU9VCjSt0RwEvDgzh4obFw==} 2859 + /@types/hast@2.3.10: 2860 + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} 2858 2861 dependencies: 2859 2862 '@types/unist': 2.0.10 2860 2863 dev: false 2861 2864 2862 - /@types/hast@3.0.3: 2863 - resolution: {integrity: sha512-2fYGlaDy/qyLlhidX42wAH0KBi2TCjKMH8CHmBXgRlJ3Y+OXTiqsPQ6IWarZKwF1JoUcAJdPogv1d4b0COTpmQ==} 2865 + /@types/hast@3.0.4: 2866 + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 2864 2867 dependencies: 2865 2868 '@types/unist': 3.0.2 2866 2869 dev: false ··· 2889 2892 resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} 2890 2893 dev: false 2891 2894 2892 - /@types/node@20.11.8: 2893 - resolution: {integrity: sha512-i7omyekpPTNdv4Jb/Rgqg0RU8YqLcNsI12quKSDkRXNfx7Wxdm6HhK1awT3xTgEkgxPn3bvnSpiEAc7a7Lpyow==} 2895 + /@types/node@20.11.16: 2896 + resolution: {integrity: sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==} 2894 2897 dependencies: 2895 2898 undici-types: 5.26.5 2896 2899 dev: true ··· 2901 2904 /@types/react-dom@18.2.18: 2902 2905 resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==} 2903 2906 dependencies: 2904 - '@types/react': 18.2.48 2907 + '@types/react': 18.2.52 2905 2908 dev: true 2906 2909 2907 - /@types/react@18.2.48: 2908 - resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==} 2910 + /@types/react@18.2.52: 2911 + resolution: {integrity: sha512-E/YjWh3tH+qsLKaUzgpZb5AY0ChVa+ZJzF7ogehVILrFpdQk6nC/WXOv0bfFEABbXbgNxLBGU7IIZByPKb6eBw==} 2909 2912 dependencies: 2910 2913 '@types/prop-types': 15.7.11 2911 2914 '@types/scheduler': 0.16.8 ··· 2926 2929 resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} 2927 2930 dev: false 2928 2931 2929 - /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.55.0)(typescript@5.3.3): 2932 + /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.3.3): 2930 2933 resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} 2931 2934 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2932 2935 peerDependencies: ··· 2938 2941 optional: true 2939 2942 dependencies: 2940 2943 '@eslint-community/regexpp': 4.10.0 2941 - '@typescript-eslint/parser': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 2944 + '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 2942 2945 '@typescript-eslint/scope-manager': 5.62.0 2943 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 2944 - '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 2946 + '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 2947 + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 2945 2948 debug: 4.3.4 2946 - eslint: 8.55.0 2949 + eslint: 8.56.0 2947 2950 graphemer: 1.4.0 2948 - ignore: 5.3.0 2951 + ignore: 5.3.1 2949 2952 natural-compare-lite: 1.4.0 2950 2953 semver: 7.5.4 2951 2954 tsutils: 3.21.0(typescript@5.3.3) ··· 2954 2957 - supports-color 2955 2958 dev: true 2956 2959 2957 - /@typescript-eslint/parser@5.62.0(eslint@8.55.0)(typescript@5.3.3): 2960 + /@typescript-eslint/parser@5.62.0(eslint@8.56.0)(typescript@5.3.3): 2958 2961 resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} 2959 2962 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2960 2963 peerDependencies: ··· 2968 2971 '@typescript-eslint/types': 5.62.0 2969 2972 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) 2970 2973 debug: 4.3.4 2971 - eslint: 8.55.0 2974 + eslint: 8.56.0 2972 2975 typescript: 5.3.3 2973 2976 transitivePeerDependencies: 2974 2977 - supports-color ··· 2980 2983 '@typescript-eslint/types': 5.62.0 2981 2984 '@typescript-eslint/visitor-keys': 5.62.0 2982 2985 2983 - /@typescript-eslint/type-utils@5.62.0(eslint@8.55.0)(typescript@5.3.3): 2986 + /@typescript-eslint/type-utils@5.62.0(eslint@8.56.0)(typescript@5.3.3): 2984 2987 resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} 2985 2988 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2986 2989 peerDependencies: ··· 2991 2994 optional: true 2992 2995 dependencies: 2993 2996 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) 2994 - '@typescript-eslint/utils': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 2997 + '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 2995 2998 debug: 4.3.4 2996 - eslint: 8.55.0 2999 + eslint: 8.56.0 2997 3000 tsutils: 3.21.0(typescript@5.3.3) 2998 3001 typescript: 5.3.3 2999 3002 transitivePeerDependencies: ··· 3024 3027 transitivePeerDependencies: 3025 3028 - supports-color 3026 3029 3027 - /@typescript-eslint/utils@5.62.0(eslint@8.55.0)(typescript@5.3.3): 3030 + /@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.3.3): 3028 3031 resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} 3029 3032 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3030 3033 peerDependencies: 3031 3034 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 3032 3035 dependencies: 3033 - '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) 3036 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) 3034 3037 '@types/json-schema': 7.0.15 3035 3038 '@types/semver': 7.5.6 3036 3039 '@typescript-eslint/scope-manager': 5.62.0 3037 3040 '@typescript-eslint/types': 5.62.0 3038 3041 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) 3039 - eslint: 8.55.0 3042 + eslint: 8.56.0 3040 3043 eslint-scope: 5.1.1 3041 3044 semver: 7.5.4 3042 3045 transitivePeerDependencies: ··· 3133 3136 resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 3134 3137 dependencies: 3135 3138 call-bind: 1.0.5 3136 - is-array-buffer: 3.0.2 3139 + is-array-buffer: 3.0.4 3137 3140 dev: false 3138 3141 3139 3142 /array-includes@3.1.7: ··· 3206 3209 define-properties: 1.2.1 3207 3210 es-abstract: 1.22.3 3208 3211 get-intrinsic: 1.2.2 3209 - is-array-buffer: 3.0.2 3212 + is-array-buffer: 3.0.4 3210 3213 is-shared-array-buffer: 1.0.2 3211 3214 dev: false 3212 3215 ··· 3231 3234 hasBin: true 3232 3235 dev: true 3233 3236 3234 - /autoprefixer@10.4.16(postcss@8.4.32): 3235 - resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} 3237 + /autoprefixer@10.4.17(postcss@8.4.33): 3238 + resolution: {integrity: sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==} 3236 3239 engines: {node: ^10 || ^12 || >=14} 3237 3240 hasBin: true 3238 3241 peerDependencies: 3239 3242 postcss: ^8.1.0 3240 3243 dependencies: 3241 3244 browserslist: 4.22.3 3242 - caniuse-lite: 1.0.30001580 3245 + caniuse-lite: 1.0.30001583 3243 3246 fraction.js: 4.3.7 3244 3247 normalize-range: 0.1.2 3245 3248 picocolors: 1.0.0 3246 - postcss: 8.4.32 3249 + postcss: 8.4.33 3247 3250 postcss-value-parser: 4.2.0 3248 3251 dev: false 3249 3252 3250 - /available-typed-arrays@1.0.5: 3251 - resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 3253 + /available-typed-arrays@1.0.6: 3254 + resolution: {integrity: sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==} 3252 3255 engines: {node: '>= 0.4'} 3253 3256 dev: false 3254 3257 ··· 3283 3286 pascalcase: 0.1.1 3284 3287 dev: true 3285 3288 3289 + /big-integer@1.6.52: 3290 + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} 3291 + engines: {node: '>=0.6'} 3292 + dev: false 3293 + 3286 3294 /binary-extensions@2.2.0: 3287 3295 resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 3288 3296 engines: {node: '>=8'} ··· 3306 3314 dependencies: 3307 3315 fill-range: 7.0.1 3308 3316 3317 + /broadcast-channel@3.7.0: 3318 + resolution: {integrity: sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==} 3319 + dependencies: 3320 + '@babel/runtime': 7.23.9 3321 + detect-node: 2.1.0 3322 + js-sha3: 0.8.0 3323 + microseconds: 0.2.0 3324 + nano-time: 1.0.0 3325 + oblivious-set: 1.0.0 3326 + rimraf: 3.0.2 3327 + unload: 2.2.0 3328 + dev: false 3329 + 3309 3330 /browserslist@4.22.3: 3310 3331 resolution: {integrity: sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==} 3311 3332 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 3312 3333 hasBin: true 3313 3334 dependencies: 3314 - caniuse-lite: 1.0.30001580 3315 - electron-to-chromium: 1.4.648 3335 + caniuse-lite: 1.0.30001583 3336 + electron-to-chromium: 1.4.656 3316 3337 node-releases: 2.0.14 3317 3338 update-browserslist-db: 1.0.13(browserslist@4.22.3) 3318 3339 dev: false ··· 3356 3377 engines: {node: '>= 6'} 3357 3378 dev: false 3358 3379 3359 - /caniuse-lite@1.0.30001580: 3360 - resolution: {integrity: sha512-mtj5ur2FFPZcCEpXFy8ADXbDACuNFXg6mxVDqp7tqooX6l3zwm+d8EPoeOSIFRDvHs8qu7/SLFOGniULkcH2iA==} 3380 + /caniuse-lite@1.0.30001583: 3381 + resolution: {integrity: sha512-acWTYaha8xfhA/Du/z4sNZjHUWjkiuoAi2LM+T/aL+kemKQgPT1xBb/YKjlQ0Qo8gvbHsGNplrEJ+9G3gL7i4Q==} 3361 3382 dev: false 3362 3383 3363 3384 /chalk@4.1.2: ··· 3677 3698 resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} 3678 3699 dev: false 3679 3700 3701 + /detect-node@2.1.0: 3702 + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} 3703 + dev: false 3704 + 3680 3705 /devlop@1.1.0: 3681 3706 resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 3682 3707 dependencies: ··· 3725 3750 resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 3726 3751 dev: false 3727 3752 3728 - /electron-to-chromium@1.4.648: 3729 - resolution: {integrity: sha512-EmFMarXeqJp9cUKu/QEciEApn0S/xRcpZWuAm32U7NgoZCimjsilKXHRO9saeEW55eHZagIDg6XTUOv32w9pjg==} 3753 + /electron-to-chromium@1.4.656: 3754 + resolution: {integrity: sha512-9AQB5eFTHyR3Gvt2t/NwR0le2jBSUNwCnMbUCejFWHD+so4tH40/dRLgoE+jxlPeWS43XJewyvCv+I8LPMl49Q==} 3730 3755 dev: false 3731 3756 3732 3757 /emoji-regex@8.0.0: ··· 3756 3781 dependencies: 3757 3782 array-buffer-byte-length: 1.0.0 3758 3783 arraybuffer.prototype.slice: 1.0.2 3759 - available-typed-arrays: 1.0.5 3784 + available-typed-arrays: 1.0.6 3760 3785 call-bind: 1.0.5 3761 3786 es-set-tostringtag: 2.0.2 3762 3787 es-to-primitive: 1.2.1 ··· 3770 3795 has-symbols: 1.0.3 3771 3796 hasown: 2.0.0 3772 3797 internal-slot: 1.0.6 3773 - is-array-buffer: 3.0.2 3798 + is-array-buffer: 3.0.4 3774 3799 is-callable: 1.2.7 3775 3800 is-negative-zero: 2.0.2 3776 3801 is-regex: 1.1.4 3777 3802 is-shared-array-buffer: 1.0.2 3778 3803 is-string: 1.0.7 3779 - is-typed-array: 1.1.12 3804 + is-typed-array: 1.1.13 3780 3805 is-weakref: 1.0.2 3781 3806 object-inspect: 1.13.1 3782 3807 object-keys: 1.1.1 ··· 3792 3817 typed-array-byte-offset: 1.0.0 3793 3818 typed-array-length: 1.0.4 3794 3819 unbox-primitive: 1.0.2 3795 - which-typed-array: 1.1.13 3820 + which-typed-array: 1.1.14 3796 3821 dev: false 3797 3822 3798 3823 /es-iterator-helpers@1.0.15: ··· 3819 3844 engines: {node: '>= 0.4'} 3820 3845 dependencies: 3821 3846 get-intrinsic: 1.2.2 3822 - has-tostringtag: 1.0.0 3847 + has-tostringtag: 1.0.2 3823 3848 hasown: 2.0.0 3824 3849 dev: false 3825 3850 ··· 3847 3872 resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 3848 3873 engines: {node: '>=10'} 3849 3874 3850 - /eslint-config-next@14.0.4(eslint@8.55.0)(typescript@5.3.3): 3851 - resolution: {integrity: sha512-9/xbOHEQOmQtqvQ1UsTQZpnA7SlDMBtuKJ//S4JnoyK3oGLhILKXdBgu/UO7lQo/2xOykQULS1qQ6p2+EpHgAQ==} 3875 + /eslint-config-next@14.1.0(eslint@8.56.0)(typescript@5.3.3): 3876 + resolution: {integrity: sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg==} 3852 3877 peerDependencies: 3853 3878 eslint: ^7.23.0 || ^8.0.0 3854 3879 typescript: '>=3.3.1' ··· 3856 3881 typescript: 3857 3882 optional: true 3858 3883 dependencies: 3859 - '@next/eslint-plugin-next': 14.0.4 3884 + '@next/eslint-plugin-next': 14.1.0 3860 3885 '@rushstack/eslint-patch': 1.7.2 3861 - '@typescript-eslint/parser': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 3862 - eslint: 8.55.0 3886 + '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 3887 + eslint: 8.56.0 3863 3888 eslint-import-resolver-node: 0.3.9 3864 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.55.0) 3865 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.55.0) 3866 - eslint-plugin-jsx-a11y: 6.8.0(eslint@8.55.0) 3867 - eslint-plugin-react: 7.33.2(eslint@8.55.0) 3868 - eslint-plugin-react-hooks: 4.6.0(eslint@8.55.0) 3889 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 3890 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3891 + eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0) 3892 + eslint-plugin-react: 7.33.2(eslint@8.56.0) 3893 + eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0) 3869 3894 typescript: 5.3.3 3870 3895 transitivePeerDependencies: 3871 3896 - eslint-import-resolver-webpack ··· 3882 3907 - supports-color 3883 3908 dev: false 3884 3909 3885 - /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.55.0): 3910 + /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0): 3886 3911 resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} 3887 3912 engines: {node: ^14.18.0 || >=16.0.0} 3888 3913 peerDependencies: ··· 3891 3916 dependencies: 3892 3917 debug: 4.3.4 3893 3918 enhanced-resolve: 5.15.0 3894 - eslint: 8.55.0 3895 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.55.0) 3896 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.55.0) 3919 + eslint: 8.56.0 3920 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3921 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3897 3922 fast-glob: 3.3.2 3898 3923 get-tsconfig: 4.7.2 3899 3924 is-core-module: 2.13.1 ··· 3905 3930 - supports-color 3906 3931 dev: false 3907 3932 3908 - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.55.0): 3933 + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 3909 3934 resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 3910 3935 engines: {node: '>=4'} 3911 3936 peerDependencies: ··· 3926 3951 eslint-import-resolver-webpack: 3927 3952 optional: true 3928 3953 dependencies: 3929 - '@typescript-eslint/parser': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 3954 + '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 3930 3955 debug: 3.2.7 3931 - eslint: 8.55.0 3956 + eslint: 8.56.0 3932 3957 eslint-import-resolver-node: 0.3.9 3933 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.55.0) 3958 + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0) 3934 3959 transitivePeerDependencies: 3935 3960 - supports-color 3936 3961 dev: false 3937 3962 3938 - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.55.0): 3963 + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0): 3939 3964 resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} 3940 3965 engines: {node: '>=4'} 3941 3966 peerDependencies: ··· 3945 3970 '@typescript-eslint/parser': 3946 3971 optional: true 3947 3972 dependencies: 3948 - '@typescript-eslint/parser': 5.62.0(eslint@8.55.0)(typescript@5.3.3) 3973 + '@typescript-eslint/parser': 5.62.0(eslint@8.56.0)(typescript@5.3.3) 3949 3974 array-includes: 3.1.7 3950 3975 array.prototype.findlastindex: 1.2.3 3951 3976 array.prototype.flat: 1.3.2 3952 3977 array.prototype.flatmap: 1.3.2 3953 3978 debug: 3.2.7 3954 3979 doctrine: 2.1.0 3955 - eslint: 8.55.0 3980 + eslint: 8.56.0 3956 3981 eslint-import-resolver-node: 0.3.9 3957 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.55.0) 3982 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) 3958 3983 hasown: 2.0.0 3959 3984 is-core-module: 2.13.1 3960 3985 is-glob: 4.0.3 ··· 3970 3995 - supports-color 3971 3996 dev: false 3972 3997 3973 - /eslint-plugin-jsx-a11y@6.8.0(eslint@8.55.0): 3998 + /eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0): 3974 3999 resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} 3975 4000 engines: {node: '>=4.0'} 3976 4001 peerDependencies: ··· 3986 4011 damerau-levenshtein: 1.0.8 3987 4012 emoji-regex: 9.2.2 3988 4013 es-iterator-helpers: 1.0.15 3989 - eslint: 8.55.0 4014 + eslint: 8.56.0 3990 4015 hasown: 2.0.0 3991 4016 jsx-ast-utils: 3.3.5 3992 4017 language-tags: 1.0.9 ··· 3995 4020 object.fromentries: 2.0.7 3996 4021 dev: false 3997 4022 3998 - /eslint-plugin-path-alias@1.0.0(eslint@8.55.0): 4023 + /eslint-plugin-path-alias@1.0.0(eslint@8.56.0): 3999 4024 resolution: {integrity: sha512-FXus57yC+Zd3sMv46pbloXYwFeNVNHJqlACr9V68FG/IzGFBBokGJpmjDbEjpt8ZCeVSndUubeDWWl2A8sCNVQ==} 4000 4025 peerDependencies: 4001 4026 eslint: ^7 4002 4027 dependencies: 4003 - eslint: 8.55.0 4028 + eslint: 8.56.0 4004 4029 nanomatch: 1.2.13 4005 4030 transitivePeerDependencies: 4006 4031 - supports-color 4007 4032 dev: true 4008 4033 4009 - /eslint-plugin-react-hooks@4.6.0(eslint@8.55.0): 4034 + /eslint-plugin-react-hooks@4.6.0(eslint@8.56.0): 4010 4035 resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 4011 4036 engines: {node: '>=10'} 4012 4037 peerDependencies: 4013 4038 eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 4014 4039 dependencies: 4015 - eslint: 8.55.0 4040 + eslint: 8.56.0 4016 4041 dev: false 4017 4042 4018 - /eslint-plugin-react@7.33.2(eslint@8.55.0): 4043 + /eslint-plugin-react@7.33.2(eslint@8.56.0): 4019 4044 resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} 4020 4045 engines: {node: '>=4'} 4021 4046 peerDependencies: ··· 4026 4051 array.prototype.tosorted: 1.1.2 4027 4052 doctrine: 2.1.0 4028 4053 es-iterator-helpers: 1.0.15 4029 - eslint: 8.55.0 4054 + eslint: 8.56.0 4030 4055 estraverse: 5.3.0 4031 4056 jsx-ast-utils: 3.3.5 4032 4057 minimatch: 3.1.2 ··· 4040 4065 string.prototype.matchall: 4.0.10 4041 4066 dev: false 4042 4067 4043 - /eslint-plugin-simple-import-sort@10.0.0(eslint@8.55.0): 4068 + /eslint-plugin-simple-import-sort@10.0.0(eslint@8.56.0): 4044 4069 resolution: {integrity: sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==} 4045 4070 peerDependencies: 4046 4071 eslint: '>=5.0.0' 4047 4072 dependencies: 4048 - eslint: 8.55.0 4073 + eslint: 8.56.0 4049 4074 dev: true 4050 4075 4051 - /eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.55.0): 4076 + /eslint-plugin-unused-imports@2.0.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@8.56.0): 4052 4077 resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==} 4053 4078 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4054 4079 peerDependencies: ··· 4058 4083 '@typescript-eslint/eslint-plugin': 4059 4084 optional: true 4060 4085 dependencies: 4061 - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.55.0)(typescript@5.3.3) 4062 - eslint: 8.55.0 4086 + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.56.0)(typescript@5.3.3) 4087 + eslint: 8.56.0 4063 4088 eslint-rule-composer: 0.3.0 4064 4089 dev: true 4065 4090 ··· 4087 4112 resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 4088 4113 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4089 4114 4090 - /eslint@8.55.0: 4091 - resolution: {integrity: sha512-iyUUAM0PCKj5QpwGfmCAG9XXbZCWsqP/eWAWrG/W0umvjuLRBECwSFdt+rCntju0xEH7teIABPwXpahftIaTdA==} 4115 + /eslint@8.56.0: 4116 + resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} 4092 4117 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4093 4118 hasBin: true 4094 4119 dependencies: 4095 - '@eslint-community/eslint-utils': 4.4.0(eslint@8.55.0) 4120 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) 4096 4121 '@eslint-community/regexpp': 4.10.0 4097 4122 '@eslint/eslintrc': 2.1.4 4098 - '@eslint/js': 8.55.0 4123 + '@eslint/js': 8.56.0 4099 4124 '@humanwhocodes/config-array': 0.11.14 4100 4125 '@humanwhocodes/module-importer': 1.0.1 4101 4126 '@nodelib/fs.walk': 1.2.8 ··· 4117 4142 glob-parent: 6.0.2 4118 4143 globals: 13.24.0 4119 4144 graphemer: 1.4.0 4120 - ignore: 5.3.0 4145 + ignore: 5.3.1 4121 4146 imurmurhash: 0.1.4 4122 4147 is-glob: 4.0.3 4123 4148 is-path-inside: 3.0.3 ··· 4283 4308 map-cache: 0.2.2 4284 4309 dev: true 4285 4310 4286 - /framer-motion@10.18.0(react-dom@18.2.0)(react@18.2.0): 4287 - resolution: {integrity: sha512-oGlDh1Q1XqYPksuTD/usb0I70hq95OUzmL9+6Zd+Hs4XV0oaISBa/UUMSjYiq6m8EUF32132mOJ8xVZS+I0S6w==} 4311 + /framer-motion@11.0.3(react-dom@18.2.0)(react@18.2.0): 4312 + resolution: {integrity: sha512-6x2poQpIWBdbZwLd73w6cKZ1I9IEPIU94C6/Swp1Zt3LJ+sB5bPe1E2wC6EH5hSISXNkMJ4afH7AdwS7MrtkWw==} 4288 4313 peerDependencies: 4289 4314 react: ^18.0.0 4290 4315 react-dom: ^18.0.0 ··· 4374 4399 dependencies: 4375 4400 is-glob: 4.0.3 4376 4401 4377 - /glob-to-regexp@0.4.1: 4378 - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} 4379 - dev: false 4380 - 4381 4402 /glob@10.3.10: 4382 4403 resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} 4383 4404 engines: {node: '>=16 || 14 >=14.17'} ··· 4390 4411 path-scurry: 1.10.1 4391 4412 dev: false 4392 4413 4393 - /glob@7.1.7: 4394 - resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 4395 - dependencies: 4396 - fs.realpath: 1.0.0 4397 - inflight: 1.0.6 4398 - inherits: 2.0.4 4399 - minimatch: 3.1.2 4400 - once: 1.4.0 4401 - path-is-absolute: 1.0.1 4402 - dev: false 4403 - 4404 4414 /glob@7.2.3: 4405 4415 resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 4406 4416 dependencies: ··· 4431 4441 array-union: 2.1.0 4432 4442 dir-glob: 3.0.1 4433 4443 fast-glob: 3.3.2 4434 - ignore: 5.3.0 4444 + ignore: 5.3.1 4435 4445 merge2: 1.4.1 4436 4446 slash: 3.0.0 4437 4447 ··· 4472 4482 engines: {node: '>= 0.4'} 4473 4483 dev: false 4474 4484 4475 - /has-tostringtag@1.0.0: 4476 - resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 4485 + /has-tostringtag@1.0.2: 4486 + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 4477 4487 engines: {node: '>= 0.4'} 4478 4488 dependencies: 4479 4489 has-symbols: 1.0.3 ··· 4519 4529 /hast-util-from-parse5@8.0.1: 4520 4530 resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} 4521 4531 dependencies: 4522 - '@types/hast': 3.0.3 4532 + '@types/hast': 3.0.4 4523 4533 '@types/unist': 3.0.2 4524 4534 devlop: 1.1.0 4525 4535 hastscript: 8.0.0 ··· 4532 4542 /hast-util-parse-selector@4.0.0: 4533 4543 resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} 4534 4544 dependencies: 4535 - '@types/hast': 3.0.3 4545 + '@types/hast': 3.0.4 4536 4546 dev: false 4537 4547 4538 4548 /hast-util-raw@9.0.2: 4539 4549 resolution: {integrity: sha512-PldBy71wO9Uq1kyaMch9AHIghtQvIwxBUkv823pKmkTM3oV1JxtsTNYdevMxvUHqcnOAuO65JKU2+0NOxc2ksA==} 4540 4550 dependencies: 4541 - '@types/hast': 3.0.3 4551 + '@types/hast': 3.0.4 4542 4552 '@types/unist': 3.0.2 4543 4553 '@ungap/structured-clone': 1.2.0 4544 4554 hast-util-from-parse5: 8.0.1 ··· 4556 4566 /hast-util-to-parse5@8.0.0: 4557 4567 resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} 4558 4568 dependencies: 4559 - '@types/hast': 3.0.3 4569 + '@types/hast': 3.0.4 4560 4570 comma-separated-tokens: 2.0.3 4561 4571 devlop: 1.1.0 4562 4572 property-information: 6.4.1 ··· 4572 4582 /hastscript@8.0.0: 4573 4583 resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} 4574 4584 dependencies: 4575 - '@types/hast': 3.0.3 4585 + '@types/hast': 3.0.4 4576 4586 comma-separated-tokens: 2.0.3 4577 4587 hast-util-parse-selector: 4.0.0 4578 4588 property-information: 6.4.1 ··· 4583 4593 resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 4584 4594 dev: false 4585 4595 4586 - /ignore@5.3.0: 4587 - resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} 4596 + /ignore@5.3.1: 4597 + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} 4588 4598 engines: {node: '>= 4'} 4589 4599 4590 4600 /import-fresh@3.3.0: ··· 4647 4657 hasown: 2.0.0 4648 4658 dev: true 4649 4659 4650 - /is-array-buffer@3.0.2: 4651 - resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 4660 + /is-array-buffer@3.0.4: 4661 + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 4662 + engines: {node: '>= 0.4'} 4652 4663 dependencies: 4653 4664 call-bind: 1.0.5 4654 4665 get-intrinsic: 1.2.2 4655 - is-typed-array: 1.1.12 4656 4666 dev: false 4657 4667 4658 4668 /is-arrayish@0.3.2: ··· 4663 4673 resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 4664 4674 engines: {node: '>= 0.4'} 4665 4675 dependencies: 4666 - has-tostringtag: 1.0.0 4676 + has-tostringtag: 1.0.2 4667 4677 dev: false 4668 4678 4669 4679 /is-bigint@1.0.4: ··· 4684 4694 engines: {node: '>= 0.4'} 4685 4695 dependencies: 4686 4696 call-bind: 1.0.5 4687 - has-tostringtag: 1.0.0 4697 + has-tostringtag: 1.0.2 4688 4698 dev: false 4689 4699 4690 4700 /is-buffer@1.1.6: ··· 4718 4728 resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 4719 4729 engines: {node: '>= 0.4'} 4720 4730 dependencies: 4721 - has-tostringtag: 1.0.0 4731 + has-tostringtag: 1.0.2 4722 4732 dev: false 4723 4733 4724 4734 /is-descriptor@0.1.7: ··· 4768 4778 resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 4769 4779 engines: {node: '>= 0.4'} 4770 4780 dependencies: 4771 - has-tostringtag: 1.0.0 4781 + has-tostringtag: 1.0.2 4772 4782 dev: false 4773 4783 4774 4784 /is-glob@4.0.3: ··· 4790 4800 resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 4791 4801 engines: {node: '>= 0.4'} 4792 4802 dependencies: 4793 - has-tostringtag: 1.0.0 4803 + has-tostringtag: 1.0.2 4794 4804 dev: false 4795 4805 4796 4806 /is-number@3.0.0: ··· 4825 4835 engines: {node: '>= 0.4'} 4826 4836 dependencies: 4827 4837 call-bind: 1.0.5 4828 - has-tostringtag: 1.0.0 4838 + has-tostringtag: 1.0.2 4829 4839 dev: false 4830 4840 4831 4841 /is-set@2.0.2: ··· 4842 4852 resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 4843 4853 engines: {node: '>= 0.4'} 4844 4854 dependencies: 4845 - has-tostringtag: 1.0.0 4855 + has-tostringtag: 1.0.2 4846 4856 dev: false 4847 4857 4848 4858 /is-symbol@1.0.4: ··· 4852 4862 has-symbols: 1.0.3 4853 4863 dev: false 4854 4864 4855 - /is-typed-array@1.1.12: 4856 - resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} 4865 + /is-typed-array@1.1.13: 4866 + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 4857 4867 engines: {node: '>= 0.4'} 4858 4868 dependencies: 4859 - which-typed-array: 1.1.13 4869 + which-typed-array: 1.1.14 4860 4870 dev: false 4861 4871 4862 4872 /is-weakmap@2.0.1: ··· 4926 4936 /jiti@1.21.0: 4927 4937 resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} 4928 4938 hasBin: true 4939 + dev: false 4940 + 4941 + /js-sha3@0.8.0: 4942 + resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} 4929 4943 dev: false 4930 4944 4931 4945 /js-tokens@4.0.0: ··· 5088 5102 object-visit: 1.0.1 5089 5103 dev: true 5090 5104 5105 + /match-sorter@6.3.3: 5106 + resolution: {integrity: sha512-sgiXxrRijEe0SzHKGX4HouCpfHRPnqteH42UdMEW7BlWy990ZkzcvonJGv4Uu9WE7Y1f8Yocm91+4qFPCbmNww==} 5107 + dependencies: 5108 + '@babel/runtime': 7.23.9 5109 + remove-accents: 0.5.0 5110 + dev: false 5111 + 5091 5112 /mdast-util-definitions@5.1.2: 5092 5113 resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} 5093 5114 dependencies: ··· 5118 5139 /mdast-util-to-hast@12.3.0: 5119 5140 resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} 5120 5141 dependencies: 5121 - '@types/hast': 2.3.9 5142 + '@types/hast': 2.3.10 5122 5143 '@types/mdast': 3.0.15 5123 5144 mdast-util-definitions: 5.1.2 5124 5145 micromark-util-sanitize-uri: 1.2.0 ··· 5131 5152 /mdast-util-to-hast@13.1.0: 5132 5153 resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==} 5133 5154 dependencies: 5134 - '@types/hast': 3.0.3 5155 + '@types/hast': 3.0.4 5135 5156 '@types/mdast': 4.0.3 5136 5157 '@ungap/structured-clone': 1.2.0 5137 5158 devlop: 1.1.0 ··· 5222 5243 micromark-util-types: 1.1.0 5223 5244 dev: false 5224 5245 5225 - /micromark-util-character@2.0.1: 5226 - resolution: {integrity: sha512-3wgnrmEAJ4T+mGXAUfMvMAbxU9RDG43XmGce4j6CwPtVxB3vfwXSZ6KhFwDzZ3mZHhmPimMAXg71veiBGzeAZw==} 5246 + /micromark-util-character@2.1.0: 5247 + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} 5227 5248 dependencies: 5228 5249 micromark-util-symbol: 2.0.0 5229 5250 micromark-util-types: 2.0.0 ··· 5300 5321 /micromark-util-sanitize-uri@2.0.0: 5301 5322 resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} 5302 5323 dependencies: 5303 - micromark-util-character: 2.0.1 5324 + micromark-util-character: 2.1.0 5304 5325 micromark-util-encode: 2.0.0 5305 5326 micromark-util-symbol: 2.0.0 5306 5327 dev: false ··· 5361 5382 braces: 3.0.2 5362 5383 picomatch: 2.3.1 5363 5384 5385 + /microseconds@0.2.0: 5386 + resolution: {integrity: sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==} 5387 + dev: false 5388 + 5364 5389 /minimatch@3.1.2: 5365 5390 resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 5366 5391 dependencies: ··· 5412 5437 any-promise: 1.3.0 5413 5438 object-assign: 4.1.1 5414 5439 thenify-all: 1.6.0 5440 + dev: false 5441 + 5442 + /nano-time@1.0.0: 5443 + resolution: {integrity: sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==} 5444 + dependencies: 5445 + big-integer: 1.6.52 5415 5446 dev: false 5416 5447 5417 5448 /nanoid@3.3.7: ··· 5446 5477 /natural-compare@1.4.0: 5447 5478 resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 5448 5479 5449 - /next@14.0.4(react-dom@18.2.0)(react@18.2.0): 5450 - resolution: {integrity: sha512-qbwypnM7327SadwFtxXnQdGiKpkuhaRLE2uq62/nRul9cj9KhQ5LhHmlziTNqUidZotw/Q1I9OjirBROdUJNgA==} 5480 + /next@14.1.0(react-dom@18.2.0)(react@18.2.0): 5481 + resolution: {integrity: sha512-wlzrsbfeSU48YQBjZhDzOwhWhGsy+uQycR8bHAOt1LY1bn3zZEcDyHQOEoN3aWzQ8LHCAJ1nqrWCc9XF2+O45Q==} 5451 5482 engines: {node: '>=18.17.0'} 5452 5483 hasBin: true 5453 5484 peerDependencies: ··· 5461 5492 sass: 5462 5493 optional: true 5463 5494 dependencies: 5464 - '@next/env': 14.0.4 5495 + '@next/env': 14.1.0 5465 5496 '@swc/helpers': 0.5.2 5466 5497 busboy: 1.6.0 5467 - caniuse-lite: 1.0.30001580 5498 + caniuse-lite: 1.0.30001583 5468 5499 graceful-fs: 4.2.11 5469 5500 postcss: 8.4.31 5470 5501 react: 18.2.0 5471 5502 react-dom: 18.2.0(react@18.2.0) 5472 5503 styled-jsx: 5.1.1(react@18.2.0) 5473 - watchpack: 2.4.0 5474 5504 optionalDependencies: 5475 - '@next/swc-darwin-arm64': 14.0.4 5476 - '@next/swc-darwin-x64': 14.0.4 5477 - '@next/swc-linux-arm64-gnu': 14.0.4 5478 - '@next/swc-linux-arm64-musl': 14.0.4 5479 - '@next/swc-linux-x64-gnu': 14.0.4 5480 - '@next/swc-linux-x64-musl': 14.0.4 5481 - '@next/swc-win32-arm64-msvc': 14.0.4 5482 - '@next/swc-win32-ia32-msvc': 14.0.4 5483 - '@next/swc-win32-x64-msvc': 14.0.4 5505 + '@next/swc-darwin-arm64': 14.1.0 5506 + '@next/swc-darwin-x64': 14.1.0 5507 + '@next/swc-linux-arm64-gnu': 14.1.0 5508 + '@next/swc-linux-arm64-musl': 14.1.0 5509 + '@next/swc-linux-x64-gnu': 14.1.0 5510 + '@next/swc-linux-x64-musl': 14.1.0 5511 + '@next/swc-win32-arm64-msvc': 14.1.0 5512 + '@next/swc-win32-ia32-msvc': 14.1.0 5513 + '@next/swc-win32-x64-msvc': 14.1.0 5484 5514 transitivePeerDependencies: 5485 5515 - '@babel/core' 5486 5516 - babel-plugin-macros ··· 5595 5625 es-abstract: 1.22.3 5596 5626 dev: false 5597 5627 5628 + /oblivious-set@1.0.0: 5629 + resolution: {integrity: sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==} 5630 + dev: false 5631 + 5598 5632 /once@1.4.0: 5599 5633 resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 5600 5634 dependencies: ··· 5686 5720 engines: {node: '>= 6'} 5687 5721 dev: false 5688 5722 5689 - /postcss-import@15.1.0(postcss@8.4.32): 5723 + /postcss-import@15.1.0(postcss@8.4.33): 5690 5724 resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 5691 5725 engines: {node: '>=14.0.0'} 5692 5726 peerDependencies: 5693 5727 postcss: ^8.0.0 5694 5728 dependencies: 5695 - postcss: 8.4.32 5729 + postcss: 8.4.33 5696 5730 postcss-value-parser: 4.2.0 5697 5731 read-cache: 1.0.0 5698 5732 resolve: 1.22.8 5699 5733 dev: false 5700 5734 5701 - /postcss-js@4.0.1(postcss@8.4.32): 5735 + /postcss-js@4.0.1(postcss@8.4.33): 5702 5736 resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 5703 5737 engines: {node: ^12 || ^14 || >= 16} 5704 5738 peerDependencies: 5705 5739 postcss: ^8.4.21 5706 5740 dependencies: 5707 5741 camelcase-css: 2.0.1 5708 - postcss: 8.4.32 5742 + postcss: 8.4.33 5709 5743 dev: false 5710 5744 5711 - /postcss-load-config@4.0.2(postcss@8.4.32): 5745 + /postcss-load-config@4.0.2(postcss@8.4.33): 5712 5746 resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} 5713 5747 engines: {node: '>= 14'} 5714 5748 peerDependencies: ··· 5721 5755 optional: true 5722 5756 dependencies: 5723 5757 lilconfig: 3.0.0 5724 - postcss: 8.4.32 5758 + postcss: 8.4.33 5725 5759 yaml: 2.3.4 5726 5760 dev: false 5727 5761 5728 - /postcss-nested@6.0.1(postcss@8.4.32): 5762 + /postcss-nested@6.0.1(postcss@8.4.33): 5729 5763 resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 5730 5764 engines: {node: '>=12.0'} 5731 5765 peerDependencies: 5732 5766 postcss: ^8.2.14 5733 5767 dependencies: 5734 - postcss: 8.4.32 5768 + postcss: 8.4.33 5735 5769 postcss-selector-parser: 6.0.15 5736 5770 dev: false 5737 5771 ··· 5756 5790 source-map-js: 1.0.2 5757 5791 dev: false 5758 5792 5759 - /postcss@8.4.32: 5760 - resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==} 5793 + /postcss@8.4.33: 5794 + resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} 5761 5795 engines: {node: ^10 || ^12 || >=14} 5762 5796 dependencies: 5763 5797 nanoid: 3.3.7 ··· 5807 5841 scheduler: 0.23.0 5808 5842 dev: false 5809 5843 5810 - /react-icons@4.12.0(react@18.2.0): 5811 - resolution: {integrity: sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==} 5844 + /react-icons@5.0.1(react@18.2.0): 5845 + resolution: {integrity: sha512-WqLZJ4bLzlhmsvme6iFdgO8gfZP17rfjYEJ2m9RsZjZ+cc4k1hTzknEz63YS1MeT50kVzoa1Nz36f4BEx+Wigw==} 5812 5846 peerDependencies: 5813 5847 react: '*' 5814 5848 dependencies: ··· 5832 5866 engines: {node: '>= 12.0.0'} 5833 5867 dev: false 5834 5868 5835 - /react-markdown@8.0.7(@types/react@18.2.48)(react@18.2.0): 5869 + /react-markdown@8.0.7(@types/react@18.2.52)(react@18.2.0): 5836 5870 resolution: {integrity: sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==} 5837 5871 peerDependencies: 5838 5872 '@types/react': '>=16' 5839 5873 react: '>=16' 5840 5874 dependencies: 5841 - '@types/hast': 2.3.9 5875 + '@types/hast': 2.3.10 5842 5876 '@types/prop-types': 15.7.11 5843 - '@types/react': 18.2.48 5877 + '@types/react': 18.2.52 5844 5878 '@types/unist': 2.0.10 5845 5879 comma-separated-tokens: 2.0.3 5846 5880 hast-util-whitespace: 2.0.1 ··· 5859 5893 - supports-color 5860 5894 dev: false 5861 5895 5862 - /react-remove-scroll-bar@2.3.4(@types/react@18.2.48)(react@18.2.0): 5896 + /react-query@3.39.3(react-dom@18.2.0)(react@18.2.0): 5897 + resolution: {integrity: sha512-nLfLz7GiohKTJDuT4us4X3h/8unOh+00MLb2yJoGTPjxKs2bc1iDhkNx2bd5MKklXnOD3NrVZ+J2UXujA5In4g==} 5898 + peerDependencies: 5899 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 5900 + react-dom: '*' 5901 + react-native: '*' 5902 + peerDependenciesMeta: 5903 + react-dom: 5904 + optional: true 5905 + react-native: 5906 + optional: true 5907 + dependencies: 5908 + '@babel/runtime': 7.23.9 5909 + broadcast-channel: 3.7.0 5910 + match-sorter: 6.3.3 5911 + react: 18.2.0 5912 + react-dom: 18.2.0(react@18.2.0) 5913 + dev: false 5914 + 5915 + /react-remove-scroll-bar@2.3.4(@types/react@18.2.52)(react@18.2.0): 5863 5916 resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} 5864 5917 engines: {node: '>=10'} 5865 5918 peerDependencies: ··· 5869 5922 '@types/react': 5870 5923 optional: true 5871 5924 dependencies: 5872 - '@types/react': 18.2.48 5925 + '@types/react': 18.2.52 5873 5926 react: 18.2.0 5874 - react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0) 5927 + react-style-singleton: 2.2.1(@types/react@18.2.52)(react@18.2.0) 5875 5928 tslib: 2.6.2 5876 5929 dev: false 5877 5930 5878 - /react-remove-scroll@2.5.7(@types/react@18.2.48)(react@18.2.0): 5931 + /react-remove-scroll@2.5.7(@types/react@18.2.52)(react@18.2.0): 5879 5932 resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==} 5880 5933 engines: {node: '>=10'} 5881 5934 peerDependencies: ··· 5885 5938 '@types/react': 5886 5939 optional: true 5887 5940 dependencies: 5888 - '@types/react': 18.2.48 5941 + '@types/react': 18.2.52 5889 5942 react: 18.2.0 5890 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.48)(react@18.2.0) 5891 - react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0) 5943 + react-remove-scroll-bar: 2.3.4(@types/react@18.2.52)(react@18.2.0) 5944 + react-style-singleton: 2.2.1(@types/react@18.2.52)(react@18.2.0) 5892 5945 tslib: 2.6.2 5893 - use-callback-ref: 1.3.1(@types/react@18.2.48)(react@18.2.0) 5894 - use-sidecar: 1.1.2(@types/react@18.2.48)(react@18.2.0) 5946 + use-callback-ref: 1.3.1(@types/react@18.2.52)(react@18.2.0) 5947 + use-sidecar: 1.1.2(@types/react@18.2.52)(react@18.2.0) 5895 5948 dev: false 5896 5949 5897 5950 /react-smooth@2.0.5(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0): ··· 5908 5961 react-transition-group: 2.9.0(react-dom@18.2.0)(react@18.2.0) 5909 5962 dev: false 5910 5963 5911 - /react-style-singleton@2.2.1(@types/react@18.2.48)(react@18.2.0): 5964 + /react-style-singleton@2.2.1(@types/react@18.2.52)(react@18.2.0): 5912 5965 resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} 5913 5966 engines: {node: '>=10'} 5914 5967 peerDependencies: ··· 5918 5971 '@types/react': 5919 5972 optional: true 5920 5973 dependencies: 5921 - '@types/react': 18.2.48 5974 + '@types/react': 18.2.52 5922 5975 get-nonce: 1.0.1 5923 5976 invariant: 2.2.4 5924 5977 react: 18.2.0 5925 5978 tslib: 2.6.2 5926 5979 dev: false 5927 5980 5928 - /react-textarea-autosize@8.5.3(@types/react@18.2.48)(react@18.2.0): 5981 + /react-textarea-autosize@8.5.3(@types/react@18.2.52)(react@18.2.0): 5929 5982 resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} 5930 5983 engines: {node: '>=10'} 5931 5984 peerDependencies: ··· 5934 5987 '@babel/runtime': 7.23.9 5935 5988 react: 18.2.0 5936 5989 use-composed-ref: 1.3.0(react@18.2.0) 5937 - use-latest: 1.2.1(@types/react@18.2.48)(react@18.2.0) 5990 + use-latest: 1.2.1(@types/react@18.2.52)(react@18.2.0) 5938 5991 transitivePeerDependencies: 5939 5992 - '@types/react' 5940 5993 dev: false ··· 5997 6050 react-smooth: 2.0.5(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0) 5998 6051 recharts-scale: 0.4.5 5999 6052 tiny-invariant: 1.3.1 6000 - victory-vendor: 36.8.2 6053 + victory-vendor: 36.8.6 6001 6054 dev: false 6002 6055 6003 6056 /reflect.getprototypeof@1.0.4: ··· 6036 6089 /rehype-raw@7.0.0: 6037 6090 resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} 6038 6091 dependencies: 6039 - '@types/hast': 3.0.3 6092 + '@types/hast': 3.0.4 6040 6093 hast-util-raw: 9.0.2 6041 6094 vfile: 6.0.1 6042 6095 dev: false ··· 6054 6107 /remark-rehype@10.1.0: 6055 6108 resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} 6056 6109 dependencies: 6057 - '@types/hast': 2.3.9 6110 + '@types/hast': 2.3.10 6058 6111 '@types/mdast': 3.0.15 6059 6112 mdast-util-to-hast: 12.3.0 6060 6113 unified: 10.1.2 6114 + dev: false 6115 + 6116 + /remove-accents@0.5.0: 6117 + resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==} 6061 6118 dev: false 6062 6119 6063 6120 /resolve-from@4.0.0: ··· 6463 6520 '@babel/runtime': 7.23.9 6464 6521 dev: false 6465 6522 6466 - /tailwind-variants@0.1.20(tailwindcss@3.3.6): 6523 + /tailwind-variants@0.1.20(tailwindcss@3.4.1): 6467 6524 resolution: {integrity: sha512-AMh7x313t/V+eTySKB0Dal08RHY7ggYK0MSn/ad8wKWOrDUIzyiWNayRUm2PIJ4VRkvRnfNuyRuKbLV3EN+ewQ==} 6468 6525 engines: {node: '>=16.x', pnpm: '>=7.x'} 6469 6526 peerDependencies: 6470 6527 tailwindcss: '*' 6471 6528 dependencies: 6472 6529 tailwind-merge: 1.14.0 6473 - tailwindcss: 3.3.6 6530 + tailwindcss: 3.4.1 6474 6531 dev: false 6475 6532 6476 - /tailwindcss@3.3.6: 6477 - resolution: {integrity: sha512-AKjF7qbbLvLaPieoKeTjG1+FyNZT6KaJMJPFeQyLfIp7l82ggH1fbHJSsYIvnbTFQOlkh+gBYpyby5GT1LIdLw==} 6533 + /tailwindcss@3.4.1: 6534 + resolution: {integrity: sha512-qAYmXRfk3ENzuPBakNK0SRrUDipP8NQnEY6772uDhflcQz5EhRdD7JNZxyrFHVQNCwULPBn6FNPp9brpO7ctcA==} 6478 6535 engines: {node: '>=14.0.0'} 6479 6536 hasBin: true 6480 6537 dependencies: ··· 6492 6549 normalize-path: 3.0.0 6493 6550 object-hash: 3.0.0 6494 6551 picocolors: 1.0.0 6495 - postcss: 8.4.32 6496 - postcss-import: 15.1.0(postcss@8.4.32) 6497 - postcss-js: 4.0.1(postcss@8.4.32) 6498 - postcss-load-config: 4.0.2(postcss@8.4.32) 6499 - postcss-nested: 6.0.1(postcss@8.4.32) 6552 + postcss: 8.4.33 6553 + postcss-import: 15.1.0(postcss@8.4.33) 6554 + postcss-js: 4.0.1(postcss@8.4.33) 6555 + postcss-load-config: 4.0.2(postcss@8.4.33) 6556 + postcss-nested: 6.0.1(postcss@8.4.33) 6500 6557 postcss-selector-parser: 6.0.15 6501 6558 resolve: 1.22.8 6502 6559 sucrase: 3.35.0 ··· 6605 6662 dependencies: 6606 6663 call-bind: 1.0.5 6607 6664 get-intrinsic: 1.2.2 6608 - is-typed-array: 1.1.12 6665 + is-typed-array: 1.1.13 6609 6666 dev: false 6610 6667 6611 6668 /typed-array-byte-length@1.0.0: ··· 6615 6672 call-bind: 1.0.5 6616 6673 for-each: 0.3.3 6617 6674 has-proto: 1.0.1 6618 - is-typed-array: 1.1.12 6675 + is-typed-array: 1.1.13 6619 6676 dev: false 6620 6677 6621 6678 /typed-array-byte-offset@1.0.0: 6622 6679 resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} 6623 6680 engines: {node: '>= 0.4'} 6624 6681 dependencies: 6625 - available-typed-arrays: 1.0.5 6682 + available-typed-arrays: 1.0.6 6626 6683 call-bind: 1.0.5 6627 6684 for-each: 0.3.3 6628 6685 has-proto: 1.0.1 6629 - is-typed-array: 1.1.12 6686 + is-typed-array: 1.1.13 6630 6687 dev: false 6631 6688 6632 6689 /typed-array-length@1.0.4: ··· 6634 6691 dependencies: 6635 6692 call-bind: 1.0.5 6636 6693 for-each: 0.3.3 6637 - is-typed-array: 1.1.12 6694 + is-typed-array: 1.1.13 6638 6695 dev: false 6639 6696 6640 6697 /typescript@5.3.3: ··· 6747 6804 unist-util-visit-parents: 6.0.1 6748 6805 dev: false 6749 6806 6807 + /unload@2.2.0: 6808 + resolution: {integrity: sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==} 6809 + dependencies: 6810 + '@babel/runtime': 7.23.9 6811 + detect-node: 2.1.0 6812 + dev: false 6813 + 6750 6814 /unset-value@1.0.0: 6751 6815 resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} 6752 6816 engines: {node: '>=0.10.0'} ··· 6776 6840 deprecated: Please see https://github.com/lydell/urix#deprecated 6777 6841 dev: true 6778 6842 6779 - /use-callback-ref@1.3.1(@types/react@18.2.48)(react@18.2.0): 6843 + /use-callback-ref@1.3.1(@types/react@18.2.52)(react@18.2.0): 6780 6844 resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==} 6781 6845 engines: {node: '>=10'} 6782 6846 peerDependencies: ··· 6786 6850 '@types/react': 6787 6851 optional: true 6788 6852 dependencies: 6789 - '@types/react': 18.2.48 6853 + '@types/react': 18.2.52 6790 6854 react: 18.2.0 6791 6855 tslib: 2.6.2 6792 6856 dev: false ··· 6799 6863 react: 18.2.0 6800 6864 dev: false 6801 6865 6802 - /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.48)(react@18.2.0): 6866 + /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.52)(react@18.2.0): 6803 6867 resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} 6804 6868 peerDependencies: 6805 6869 '@types/react': '*' ··· 6808 6872 '@types/react': 6809 6873 optional: true 6810 6874 dependencies: 6811 - '@types/react': 18.2.48 6875 + '@types/react': 18.2.52 6812 6876 react: 18.2.0 6813 6877 dev: false 6814 6878 6815 - /use-latest@1.2.1(@types/react@18.2.48)(react@18.2.0): 6879 + /use-latest@1.2.1(@types/react@18.2.52)(react@18.2.0): 6816 6880 resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} 6817 6881 peerDependencies: 6818 6882 '@types/react': '*' ··· 6821 6885 '@types/react': 6822 6886 optional: true 6823 6887 dependencies: 6824 - '@types/react': 18.2.48 6888 + '@types/react': 18.2.52 6825 6889 react: 18.2.0 6826 - use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.48)(react@18.2.0) 6890 + use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.52)(react@18.2.0) 6827 6891 dev: false 6828 6892 6829 - /use-sidecar@1.1.2(@types/react@18.2.48)(react@18.2.0): 6893 + /use-sidecar@1.1.2(@types/react@18.2.52)(react@18.2.0): 6830 6894 resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} 6831 6895 engines: {node: '>=10'} 6832 6896 peerDependencies: ··· 6836 6900 '@types/react': 6837 6901 optional: true 6838 6902 dependencies: 6839 - '@types/react': 18.2.48 6903 + '@types/react': 18.2.52 6840 6904 detect-node-es: 1.1.0 6841 6905 react: 18.2.0 6842 6906 tslib: 2.6.2 ··· 6908 6972 vfile-message: 4.0.2 6909 6973 dev: false 6910 6974 6911 - /victory-vendor@36.8.2: 6912 - resolution: {integrity: sha512-NfSQi7ISCdBbDpn3b6rg+8RpFZmWIM9mcks48BbogHE2F6h1XKdA34oiCKP5hP1OGvTotDRzsexiJKzrK4Exuw==} 6975 + /victory-vendor@36.8.6: 6976 + resolution: {integrity: sha512-PH8Wj9b0xIZ4AVfyn0c1SJrOhtxDJ5PNxj1ZDABPg1Gw1vJr1mJVqESPhvsFj7mXLQohVdiKqp4kWZkXlPcRcA==} 6913 6977 dependencies: 6914 6978 '@types/d3-array': 3.2.1 6915 6979 '@types/d3-ease': 3.0.2 ··· 6927 6991 d3-timer: 3.0.1 6928 6992 dev: false 6929 6993 6930 - /watchpack@2.4.0: 6931 - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} 6932 - engines: {node: '>=10.13.0'} 6933 - dependencies: 6934 - glob-to-regexp: 0.4.1 6935 - graceful-fs: 4.2.11 6936 - dev: false 6937 - 6938 6994 /web-namespaces@2.0.1: 6939 6995 resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} 6940 6996 dev: false ··· 6954 7010 engines: {node: '>= 0.4'} 6955 7011 dependencies: 6956 7012 function.prototype.name: 1.1.6 6957 - has-tostringtag: 1.0.0 7013 + has-tostringtag: 1.0.2 6958 7014 is-async-function: 2.0.0 6959 7015 is-date-object: 1.0.5 6960 7016 is-finalizationregistry: 1.0.2 ··· 6964 7020 isarray: 2.0.5 6965 7021 which-boxed-primitive: 1.0.2 6966 7022 which-collection: 1.0.1 6967 - which-typed-array: 1.1.13 7023 + which-typed-array: 1.1.14 6968 7024 dev: false 6969 7025 6970 7026 /which-collection@1.0.1: ··· 6976 7032 is-weakset: 2.0.2 6977 7033 dev: false 6978 7034 6979 - /which-typed-array@1.1.13: 6980 - resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} 7035 + /which-typed-array@1.1.14: 7036 + resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==} 6981 7037 engines: {node: '>= 0.4'} 6982 7038 dependencies: 6983 - available-typed-arrays: 1.0.5 7039 + available-typed-arrays: 1.0.6 6984 7040 call-bind: 1.0.5 6985 7041 for-each: 0.3.3 6986 7042 gopd: 1.0.1 6987 - has-tostringtag: 1.0.0 7043 + has-tostringtag: 1.0.2 6988 7044 dev: false 6989 7045 6990 7046 /which@2.0.2: ··· 7027 7083 resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 7028 7084 engines: {node: '>=10'} 7029 7085 7030 - /zustand@4.5.0(@types/react@18.2.48)(react@18.2.0): 7086 + /zustand@4.5.0(@types/react@18.2.52)(react@18.2.0): 7031 7087 resolution: {integrity: sha512-zlVFqS5TQ21nwijjhJlx4f9iGrXSL0o/+Dpy4txAP22miJ8Ti6c1Ol1RLNN98BMib83lmDH/2KmLwaNXpjrO1A==} 7032 7088 engines: {node: '>=12.7.0'} 7033 7089 peerDependencies: ··· 7042 7098 react: 7043 7099 optional: true 7044 7100 dependencies: 7045 - '@types/react': 18.2.48 7101 + '@types/react': 18.2.52 7046 7102 react: 18.2.0 7047 7103 use-sync-external-store: 1.2.0(react@18.2.0) 7048 7104 dev: false