diff --git a/apps/guide/package.json b/apps/guide/package.json index e2f9d9e16..2d6d71ee4 100644 --- a/apps/guide/package.json +++ b/apps/guide/package.json @@ -70,7 +70,7 @@ "@testing-library/user-event": "^14.5.2", "@types/html-escaper": "^3.0.2", "@types/node": "18.18.8", - "@types/react": "^18.3.2", + "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", "@unocss/eslint-plugin": "^0.60.2", "@unocss/postcss": "^0.60.2", diff --git a/apps/website/package.json b/apps/website/package.json index b34d7afdd..2847634dc 100644 --- a/apps/website/package.json +++ b/apps/website/package.json @@ -49,24 +49,24 @@ "dependencies": { "@radix-ui/react-collapsible": "^1.0.3", "@react-icons/all-files": "^4.1.0", - "@vercel/analytics": "^1.2.2", - "@vercel/blob": "^0.23.2", - "@vercel/edge-config": "^1.1.0", + "@vercel/analytics": "^1.3.0", + "@vercel/blob": "^0.23.3", + "@vercel/edge-config": "^1.1.1", "@vercel/og": "^0.6.2", "@vercel/postgres": "^0.8.0", "cmdk": "^1.0.0", "geist": "^1.3.0", - "jotai": "^2.8.0", - "lucide-react": "^0.378.0", + "jotai": "^2.8.1", + "lucide-react": "^0.379.0", "meilisearch": "^0.40.0", - "next": "^14.3.0-canary.70", - "next-mdx-remote": "^4.4.1", + "next": "^15.0.0-rc.0", + "next-mdx-remote-client": "^1.0.3", "next-themes": "^0.3.0", - "overlayscrollbars": "^2.8.0", + "overlayscrollbars": "^2.8.2", "overlayscrollbars-react": "^0.5.6", - "react": "^19.0.0-rc-3f1436cca1-20240516", - "react-aria-components": "^1.2.0", - "react-dom": "^19.0.0-rc-3f1436cca1-20240516", + "react": "^19.0.0-rc-4c2e457c7c-20240522", + "react-aria-components": "^1.2.1", + "react-dom": "^19.0.0-rc-4c2e457c7c-20240522", "sharp": "^0.33.4", "usehooks-ts": "^3.1.0", "vaul": "^0.9.1" @@ -77,12 +77,12 @@ "@testing-library/react": "^15.0.7", "@testing-library/user-event": "^14.5.2", "@types/node": "18.18.8", - "@types/react": "^18.3.2", + "@types/react": "^18.3.3", "@types/react-dom": "^18.3.0", "@vitejs/plugin-react": "^4.2.1", "@vitest/coverage-v8": "^1.6.0", "autoprefixer": "^10.4.19", - "babel-plugin-react-compiler": "^0.0.0-experimental-592953e-20240517", + "babel-plugin-react-compiler": "0.0.0-experimental-592953e-20240517", "cpy-cli": "^5.0.0", "cross-env": "^7.0.3", "eslint": "^8.57.0", @@ -92,13 +92,13 @@ "postcss": "^8.4.38", "prettier": "^3.2.5", "prettier-plugin-tailwindcss": "^0.5.14", - "remark-gfm": "^3.0.1", + "remark-gfm": "^4.0.0", "remark-rehype": "^11.1.0", "shiki": "^1.6.0", "tailwindcss": "^3.4.3", "turbo": "^1.13.2", "typescript": "^5.4.5", - "vercel": "^34.0.0", + "vercel": "^34.2.2", "vitest": "^1.5.0" }, "engines": { diff --git a/apps/website/src/app/docs/packages/[packageName]/[version]/[item]/opengraph-image.tsx b/apps/website/src/app/docs/packages/[packageName]/[version]/[item]/opengraph-image.tsx index c8c16e1f4..c72b261d4 100644 --- a/apps/website/src/app/docs/packages/[packageName]/[version]/[item]/opengraph-image.tsx +++ b/apps/website/src/app/docs/packages/[packageName]/[version]/[item]/opengraph-image.tsx @@ -1,4 +1,5 @@ /* eslint-disable react/no-unknown-property */ + import { ImageResponse } from 'next/og'; import { resolveKind } from '~/util/resolveNodeKind'; diff --git a/apps/website/src/app/docs/packages/[packageName]/[version]/page.tsx b/apps/website/src/app/docs/packages/[packageName]/[version]/page.tsx index 5bb585b42..d83cf8bd1 100644 --- a/apps/website/src/app/docs/packages/[packageName]/[version]/page.tsx +++ b/apps/website/src/app/docs/packages/[packageName]/[version]/page.tsx @@ -1,7 +1,7 @@ import { readFile } from 'node:fs/promises'; import { join } from 'node:path'; import rehypeShikiFromHighlighter from '@shikijs/rehype/core'; -import { MDXRemote } from 'next-mdx-remote/rsc'; +import { MDXRemote } from 'next-mdx-remote-client/rsc'; import remarkGfm from 'remark-gfm'; import { getHighlighterCore } from 'shiki/core'; import getWasm from 'shiki/wasm'; @@ -30,7 +30,7 @@ export default async function Page({ params }: { readonly params: { readonly pac remarkPlugins: [remarkGfm], rehypePlugins: [ [ - rehypeShikiFromHighlighter as any, + rehypeShikiFromHighlighter, highlighter, { themes: { diff --git a/apps/website/src/app/layout.tsx b/apps/website/src/app/layout.tsx index 462adacd8..97d991b31 100644 --- a/apps/website/src/app/layout.tsx +++ b/apps/website/src/app/layout.tsx @@ -20,11 +20,7 @@ export const viewport: Viewport = { }; export const metadata: Metadata = { - metadataBase: new URL( - process.env.NEXT_PUBLIC_LOCAL_DEV === 'true' - ? `http://localhost:${process.env.PORT ?? 3_000}` - : 'https://discord.js.org', - ), + metadataBase: new URL(ENV.IS_LOCAL_DEV ? `http://localhost:${ENV.PORT}` : 'https://discord.js.org'), title: { template: '%s | discord.js', default: 'discord.js', diff --git a/apps/website/src/util/env.ts b/apps/website/src/util/env.ts index 3f4636897..6e446d913 100644 --- a/apps/website/src/util/env.ts +++ b/apps/website/src/util/env.ts @@ -1,4 +1,5 @@ export const ENV = { IS_LOCAL_DEV: process.env.VERCEL_ENV === 'development' || process.env.NEXT_PUBLIC_LOCAL_DEV === 'true', IS_PREVIEW: process.env.VERCEL_ENV === 'preview', + PORT: process.env.PORT ?? 3_000, }; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4145eac91..fcc28478a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -110,10 +110,10 @@ importers: version: 0.6.2 ariakit: specifier: 2.0.0-next.44 - version: 2.0.0-next.44(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 2.0.0-next.44(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) cmdk: specifier: ^1.0.0 - version: 1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) contentlayer: specifier: ^0.3.4 version: 0.3.4 @@ -150,7 +150,7 @@ importers: devDependencies: '@testing-library/react': specifier: ^15.0.7 - version: 15.0.7(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 15.0.7(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@10.0.0) @@ -161,8 +161,8 @@ importers: specifier: 18.18.8 version: 18.18.8 '@types/react': - specifier: ^18.3.2 - version: 18.3.2 + specifier: ^18.3.3 + version: 18.3.3 '@types/react-dom': specifier: ^18.3.0 version: 18.3.0 @@ -231,19 +231,19 @@ importers: dependencies: '@radix-ui/react-collapsible': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) '@react-icons/all-files': specifier: ^4.1.0 version: 4.1.0(react@19.0.0-rc-915b914b3a-20240515) '@vercel/analytics': - specifier: ^1.2.2 - version: 1.2.2(next@14.3.0-canary.70(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + specifier: ^1.3.0 + version: 1.3.0(next@15.0.0-rc.0(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) '@vercel/blob': - specifier: ^0.23.2 - version: 0.23.2 + specifier: ^0.23.3 + version: 0.23.3 '@vercel/edge-config': - specifier: ^1.1.0 - version: 1.1.0(typescript@5.4.5) + specifier: ^1.1.1 + version: 1.1.1(typescript@5.4.5) '@vercel/og': specifier: ^0.6.2 version: 0.6.2 @@ -252,42 +252,42 @@ importers: version: 0.8.0 cmdk: specifier: ^1.0.0 - version: 1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) geist: specifier: ^1.3.0 - version: 1.3.0(next@14.3.0-canary.70(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)) + version: 1.3.0(next@15.0.0-rc.0(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)) jotai: - specifier: ^2.8.0 - version: 2.8.0(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + specifier: ^2.8.1 + version: 2.8.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) lucide-react: - specifier: ^0.378.0 - version: 0.378.0(react@19.0.0-rc-915b914b3a-20240515) + specifier: ^0.379.0 + version: 0.379.0(react@19.0.0-rc-915b914b3a-20240515) meilisearch: specifier: ^0.40.0 version: 0.40.0(encoding@0.1.13) next: - specifier: ^14.3.0-canary.70 - version: 14.3.0-canary.70(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - next-mdx-remote: - specifier: ^4.4.1 - version: 4.4.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + specifier: ^15.0.0-rc.0 + version: 15.0.0-rc.0(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + next-mdx-remote-client: + specifier: ^1.0.3 + version: 1.0.3(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) next-themes: specifier: ^0.3.0 version: 0.3.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) overlayscrollbars: - specifier: ^2.8.0 - version: 2.8.0 + specifier: ^2.8.2 + version: 2.8.2 overlayscrollbars-react: specifier: ^0.5.6 - version: 0.5.6(overlayscrollbars@2.8.0)(react@19.0.0-rc-915b914b3a-20240515) + version: 0.5.6(overlayscrollbars@2.8.2)(react@19.0.0-rc-915b914b3a-20240515) react: - specifier: ^19.0.0-rc-3f1436cca1-20240516 + specifier: ^19.0.0-rc-4c2e457c7c-20240522 version: 19.0.0-rc-915b914b3a-20240515 react-aria-components: - specifier: ^1.2.0 - version: 1.2.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + specifier: ^1.2.1 + version: 1.2.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) react-dom: - specifier: ^19.0.0-rc-3f1436cca1-20240516 + specifier: ^19.0.0-rc-4c2e457c7c-20240522 version: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) sharp: specifier: ^0.33.4 @@ -297,7 +297,7 @@ importers: version: 3.1.0(react@19.0.0-rc-915b914b3a-20240515) vaul: specifier: ^0.9.1 - version: 0.9.1(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 0.9.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) devDependencies: '@shikijs/rehype': specifier: ^1.6.0 @@ -307,7 +307,7 @@ importers: version: 0.5.13(tailwindcss@3.4.3(ts-node@10.9.1(@types/node@18.18.8)(typescript@5.4.5))) '@testing-library/react': specifier: ^15.0.7 - version: 15.0.7(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + version: 15.0.7(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@10.0.0) @@ -315,8 +315,8 @@ importers: specifier: 18.18.8 version: 18.18.8 '@types/react': - specifier: ^18.3.2 - version: 18.3.2 + specifier: ^18.3.3 + version: 18.3.3 '@types/react-dom': specifier: ^18.3.0 version: 18.3.0 @@ -330,7 +330,7 @@ importers: specifier: ^10.4.19 version: 10.4.19(postcss@8.4.38) babel-plugin-react-compiler: - specifier: ^0.0.0-experimental-592953e-20240517 + specifier: 0.0.0-experimental-592953e-20240517 version: 0.0.0-experimental-592953e-20240517 cpy-cli: specifier: ^5.0.0 @@ -360,8 +360,8 @@ importers: specifier: ^0.5.14 version: 0.5.14(prettier@3.2.5) remark-gfm: - specifier: ^3.0.1 - version: 3.0.1 + specifier: ^4.0.0 + version: 4.0.0 remark-rehype: specifier: ^11.1.0 version: 11.1.0 @@ -378,8 +378,8 @@ importers: specifier: ^5.4.5 version: 5.4.5 vercel: - specifier: ^34.0.0 - version: 34.0.0(encoding@0.1.13) + specifier: ^34.2.2 + version: 34.2.2(encoding@0.1.13) vitest: specifier: ^1.5.0 version: 1.5.0(@edge-runtime/vm@3.2.0)(@types/node@18.18.8)(happy-dom@14.11.0)(terser@5.29.1) @@ -3468,17 +3468,17 @@ packages: cpu: [x64] os: [win32] - '@internationalized/date@3.5.3': - resolution: {integrity: sha512-X9bi8NAEHAjD8yzmPYT2pdJsbe+tYSEBAfowtlxJVJdZR3aK8Vg7ZUT1Fm5M47KLzp/M1p1VwAaeSma3RT7biw==} + '@internationalized/date@3.5.4': + resolution: {integrity: sha512-qoVJVro+O0rBaw+8HPjUB1iH8Ihf8oziEnqMnvhJUSuVIrHOuZ6eNLHNvzXJKUvAtaDiqMnRlg8Z2mgh09BlUw==} - '@internationalized/message@3.1.3': - resolution: {integrity: sha512-jba3kGxnh4hN4zoeJZuMft99Ly1zbmon4fyDz3VAmO39Kb5Aw+usGub7oU/sGoBIcVQ7REEwsvjIWtIO1nitbw==} + '@internationalized/message@3.1.4': + resolution: {integrity: sha512-Dygi9hH1s7V9nha07pggCkvmRfDd3q2lWnMGvrJyrOwYMe1yj4D2T9BoH9I6MGR7xz0biQrtLPsqUkqXzIrBOw==} - '@internationalized/number@3.5.2': - resolution: {integrity: sha512-4FGHTi0rOEX1giSkt5MH4/te0eHBq3cvAYsfLlpguV6pzJAReXymiYpE5wPCqKqjkUO3PIsyvk+tBiIV1pZtbA==} + '@internationalized/number@3.5.3': + resolution: {integrity: sha512-rd1wA3ebzlp0Mehj5YTuTI50AQEx80gWFyHcQu+u91/5NgdwBecO8BH6ipPfE+lmQ9d63vpB3H9SHoIUiupllw==} - '@internationalized/string@3.2.2': - resolution: {integrity: sha512-5xy2JfSQyGqL9FDIdJXVjoKSBBDJR4lvwoCbqKhc5hQZ/qSLU/OlONCmrJPcSH0zxh88lXJMzbOAk8gJ48JBFw==} + '@internationalized/string@3.2.3': + resolution: {integrity: sha512-9kpfLoA8HegiWTeCbR2livhdVeKobCnVv8tlJ6M2jF+4tcMqDo94ezwlnrUANBWPgd8U7OXIHCk2Ov2qhk4KXw==} '@ioredis/commands@1.2.0': resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} @@ -3643,10 +3643,8 @@ packages: '@mdx-js/mdx@2.3.0': resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} - '@mdx-js/react@2.3.0': - resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} - peerDependencies: - react: '>=16' + '@mdx-js/mdx@3.0.1': + resolution: {integrity: sha512-eIQ4QTrOWyL3LWEe/bu6Taqzq2HQvHcyTMaOrI95P2/LmJE7AsfPfgJGuFLPVqBUE1BC1rik3VIhU+s9u72arA==} '@mdx-js/react@3.0.1': resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==} @@ -3680,8 +3678,8 @@ packages: '@next/env@14.2.3': resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==} - '@next/env@14.3.0-canary.70': - resolution: {integrity: sha512-ChJ+1JAD26royPa3Wkve3qSi2LbU535MMujJVwKOiDH+xJAGKVfFhLliPjDKCz3P8sxXSPtL3KMpL+2HqK/85A==} + '@next/env@15.0.0-rc.0': + resolution: {integrity: sha512-6W0ndQvHR9sXcqcKeR/inD2UTRCs9+VkSK3lfaGmEuZs7EjwwXMO2BPYjz9oBrtfPL3xuTjtXsHKSsalYQ5l1Q==} '@next/eslint-plugin-next@14.2.1': resolution: {integrity: sha512-Fp+mthEBjkn8r9qd6o4JgxKp0IDEzW0VYHD8ZC05xS5/lFNwHKuOdr2kVhWG7BQCO9L6eeepshM1Wbs2T+LgSg==} @@ -3692,8 +3690,8 @@ packages: cpu: [arm64] os: [darwin] - '@next/swc-darwin-arm64@14.3.0-canary.70': - resolution: {integrity: sha512-Ktmub3NnUGGNp2SncuAHbu1RV9Hbk48ZtAgKLupGpsoccHElqO3xrXGstjmKUZDPPixHjxUDjXNF1FK3yEuiiw==} + '@next/swc-darwin-arm64@15.0.0-rc.0': + resolution: {integrity: sha512-4OpTXvAWcSabXA5d688zdUwa3sfT9QrLnHMdpv4q2UDnnuqmOI0xLb6lrOxwpi+vHJNkneuNLqyc5HGBhkqL6A==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -3704,8 +3702,8 @@ packages: cpu: [x64] os: [darwin] - '@next/swc-darwin-x64@14.3.0-canary.70': - resolution: {integrity: sha512-RQnv5GN46v4Nnt2zQWVjpC7/bayossn9R6RnpOiVIfoI+jPHiSSSH6OKwcP4yRbGiz6p4M8iDFxF1nHVWIivJQ==} + '@next/swc-darwin-x64@15.0.0-rc.0': + resolution: {integrity: sha512-/TD8M9DT244uhtFA8P/0DUbM7ftg2zio6yOo6ajV16vNjkcug9Kt9//Wa4SrJjWcsGZpViLctOlwn3/6JFAuAA==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -3716,8 +3714,8 @@ packages: cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-gnu@14.3.0-canary.70': - resolution: {integrity: sha512-aTZW9MNEKw9qXS8M5OmEtfrX7ZRJ5yDzKKkbo8vkDRBWyYy1rqNrN4PucfU5mnVPMGzmRGRYrOl1dPPY2DD02Q==} + '@next/swc-linux-arm64-gnu@15.0.0-rc.0': + resolution: {integrity: sha512-3VTO32938AcqOlOI/U61/MIpeYrblP22VU1GrgmMQJozsAXEJgLCgf3wxZtn61/FG4Yc0tp7rPZE2t1fIGe0+w==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -3728,8 +3726,8 @@ packages: cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.3.0-canary.70': - resolution: {integrity: sha512-wUmayY3eEmz47kdNaK4PZ5AzKKaI0W9muSzY8QkhJi5rPlGerayXLy5Zr6ipH3GSm9wWsN0jfVWgtA7NL16tyA==} + '@next/swc-linux-arm64-musl@15.0.0-rc.0': + resolution: {integrity: sha512-0kDnxM3AfrrHFJ/wTkjkv7cVHIaGwv+CzDg9lL2BoLEM4kMQhH20DTsBOMqpTpo1K2KCg67LuTGd3QOITT5uFQ==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -3740,8 +3738,8 @@ packages: cpu: [x64] os: [linux] - '@next/swc-linux-x64-gnu@14.3.0-canary.70': - resolution: {integrity: sha512-fgt7KV9aXBFXK2kV0TkZZK3UjV+tZ0kJaymwvJAKkcHEMRUycHSz5j2mt5EV4VCYI5XZjvHKc7LOJ3AV3RXEfw==} + '@next/swc-linux-x64-gnu@15.0.0-rc.0': + resolution: {integrity: sha512-fPMNahzqYFjm5h0ncJ5+F3NrShmWhpusM+zrQl01MMU0Ed5xsL4pJJDSuXV4wPkNUSjCP3XstTjxR5kBdO4juQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -3752,8 +3750,8 @@ packages: cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.3.0-canary.70': - resolution: {integrity: sha512-1Zko7oqH/rSS0fMevyOa1F7BEKOc/vCHfCQIifAkeunqwCshmiWpacMOORLMWsgzf8xB5F6z1z9XzNPQTOJORw==} + '@next/swc-linux-x64-musl@15.0.0-rc.0': + resolution: {integrity: sha512-7/FLgOqrrQAxOVQrxfr3bGgZ83pSCmc2S3TXBILnHw0S8qLxmFjhSjH5ogaDmjrES/PSYMaX1FsP5Af88hp7Gw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -3764,8 +3762,8 @@ packages: cpu: [arm64] os: [win32] - '@next/swc-win32-arm64-msvc@14.3.0-canary.70': - resolution: {integrity: sha512-Ee8lquCQY1FpIAKV94pHOfqkZy0UEmzGcfh9w75uICi6JA2fAK9VrGgtKDj2OVRp7sWhGhkDrD+jYjkE/JGXDA==} + '@next/swc-win32-arm64-msvc@15.0.0-rc.0': + resolution: {integrity: sha512-5wcqoYHh7hbdghjH6Xs3i5/f0ov+i1Xw2E3O+BzZNESYVLgCM1q7KJu5gdGFoXA2gz5XaKF/VBcYHikLzyjgmA==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -3776,8 +3774,8 @@ packages: cpu: [ia32] os: [win32] - '@next/swc-win32-ia32-msvc@14.3.0-canary.70': - resolution: {integrity: sha512-Gji2u5u3bKzLFd9VSRHbpoKLDRd8sUysZjEB/8JmT4WyOxfnvXLKo+WAYhJ2zgaHdh8SsIaw6uxoZH5h72FsCw==} + '@next/swc-win32-ia32-msvc@15.0.0-rc.0': + resolution: {integrity: sha512-/hqOmYRTvtBPToE4Dbl9n+sLYU7DPd52R+TtjIrrEzTMgFo2/d7un3sD7GKmb2OwOj/ExyGv6Bd/JzytBVxXlw==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] @@ -3788,8 +3786,8 @@ packages: cpu: [x64] os: [win32] - '@next/swc-win32-x64-msvc@14.3.0-canary.70': - resolution: {integrity: sha512-NL5ApJbmfZkEb56rrVb3YalPyV5OJ2zelffR+Dp4Akdeia3+2iijuWK5kZVMH/bePBpK4x1H5gpHP1f1BzvPLg==} + '@next/swc-win32-x64-msvc@15.0.0-rc.0': + resolution: {integrity: sha512-2Jly5nShvCUzzngP3RzdQ3JcuEcHcnIEvkvZDCXqFAK+bWks4+qOkEUO1QIAERQ99J5J9/1AN/8zFBme3Mm57A==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -4365,236 +4363,236 @@ packages: '@radix-ui/rect@1.0.1': resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} - '@react-aria/breadcrumbs@3.5.12': - resolution: {integrity: sha512-UHTVe6kA73xbE1J6LLVjUooEQvTJ4vWPRyOxu4t3dZ/4dMttvHxpKylvj4z606wioSGVhCDEKC4Vn+RtQLypeA==} + '@react-aria/breadcrumbs@3.5.13': + resolution: {integrity: sha512-G1Gqf/P6kVdfs94ovwP18fTWuIxadIQgHsXS08JEVcFVYMjb9YjqnEBaohUxD1tq2WldMbYw53ahQblT4NTG+g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/button@3.9.4': - resolution: {integrity: sha512-YOt4XWtC+0m7LwLQnU1Gl0ENETLEhtM8SyDbwsFR/fIQYX0T0H9D6jMlnKxXDjKgRvHzom9NZ8caTfsEPbgW/g==} + '@react-aria/button@3.9.5': + resolution: {integrity: sha512-dgcYR6j8WDOMLKuVrtxzx4jIC05cVKDzc+HnPO8lNkBAOfjcuN5tkGRtIjLtqjMvpZHhQT5aDbgFpIaZzxgFIg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/calendar@3.5.7': - resolution: {integrity: sha512-HbOxoslIpak1/RKHQ/p4A5roI+RpM6geK68s72D+9n3NMPDw/X95yesc6JD1Sti2KsGl9GHI6Myf9xcNjuAMnw==} + '@react-aria/calendar@3.5.8': + resolution: {integrity: sha512-Whlp4CeAA5/ZkzrAHUv73kgIRYjw088eYGSc+cvSOCxfrc/2XkBm9rNrnSBv0DvhJ8AG0Fjz3vYakTmF3BgZBw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/checkbox@3.14.2': - resolution: {integrity: sha512-PeXTEfURrZZBN80YJUyVPAvkT7gwpPtwBgtKxg1ars+D1iDV4Yp48yh5pKaNSf0/rlLNOgKJSCpcFzY7V3ipFw==} + '@react-aria/checkbox@3.14.3': + resolution: {integrity: sha512-EtBJL6iu0gvrw3A4R7UeVLR6diaVk/mh4kFBc7c8hQjpEJweRr4hmJT3hrNg3MBcTWLxFiMEXPGgWEwXDBygtA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/color@3.0.0-beta.32': - resolution: {integrity: sha512-FKy5jb+31SIaLrjQR7oMq23CCBgoPdlYN06mwb16EdN024D1ZkQ2ULUvI84vBJxCul8cMOmoIK1DBOnhDslbrQ==} + '@react-aria/color@3.0.0-beta.33': + resolution: {integrity: sha512-nhqnIHYm5p6MbuF3cC6lnqzG7MjwBsBd0DtpO+ByFYO+zxpMMbeC5R+1SFxvapR4uqmAzTotbtiUCGsG+SUaIg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/combobox@3.9.0': - resolution: {integrity: sha512-JRiCoARx95Lu1hENmf4ndHzpJrMeP/2bV96jZbMn4StFUzhACKnUw0rNFpFdONfeoD/MkWO7tsvhxaPGLhpgtQ==} + '@react-aria/combobox@3.9.1': + resolution: {integrity: sha512-SpK92dCmT8qn8aEcUAihRQrBb5LZUhwIbDExFII8PvUvEFy/PoQHXIo3j1V29WkutDBDpMvBv/6XRCHGXPqrhQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/datepicker@3.10.0': - resolution: {integrity: sha512-YiIxY+mRxc2rPN8j9ypdiGspRHSIrsK6TShBgKEk5UoG5EBKEJfNe/FfoXDR2d5xcpWLAHVuRjERi9WkiJNDBw==} + '@react-aria/datepicker@3.10.1': + resolution: {integrity: sha512-4HZL593nrNMa1GjBmWEN/OTvNS6d3/16G1YJWlqiUlv11ADulSbqBIjMmkgwrJVFcjrgqtXFy+yyrTA/oq94Zw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/dialog@3.5.13': - resolution: {integrity: sha512-GUwY7sQtPMtO6LFHyoIGFMEv8tEBrNCrSNwEKilFLxvNUCo/1sY3N+7L2TcoeyDkcRWBJ9Uz9iR0iJ6EsCBWng==} + '@react-aria/dialog@3.5.14': + resolution: {integrity: sha512-oqDCjQ8hxe3GStf48XWBf2CliEnxlR9GgSYPHJPUc69WBj68D9rVcCW3kogJnLAnwIyf3FnzbX4wSjvUa88sAQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/dnd@3.6.0': - resolution: {integrity: sha512-uIM54sUr4NpSdvxWozNKGqSNSTe9ir/sO+QFGtGAF5dbjMX7FN/7sVVrtmB8UHKC+fwfs+Ml3kjJgHbm10/Qmg==} + '@react-aria/dnd@3.6.1': + resolution: {integrity: sha512-6WnujUTD+cIYZVF/B+uXdHyJ+WSpbYa8jH282epvY4FUAq1qLmen12/HHcoj/5dswKQe8X6EM3OhkQM89d9vFw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/focus@3.17.0': - resolution: {integrity: sha512-aRzBw1WTUkcIV3xFrqPA6aB8ZVt3XyGpTaSHAypU0Pgoy2wRq9YeJYpbunsKj9CJmskuffvTqXwAjTcaQish1Q==} + '@react-aria/focus@3.17.1': + resolution: {integrity: sha512-FLTySoSNqX++u0nWZJPPN5etXY0WBxaIe/YuL/GTEeuqUIuC/2bJSaw5hlsM6T2yjy6Y/VAxBcKSdAFUlU6njQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/form@3.0.4': - resolution: {integrity: sha512-wWfW9Hv+OWIUbJ0QYzJ4EO5Yt7xZD1i+XNZG9pKGBiREi7dYBo7Y7lbqlWc3pJASSE+6aP9HzhK18dMPtGluVA==} + '@react-aria/form@3.0.5': + resolution: {integrity: sha512-n290jRwrrRXO3fS82MyWR+OKN7yznVesy5Q10IclSTVYHHI3VI53xtAPr/WzNjJR1um8aLhOcDNFKwnNIUUCsQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/grid@3.9.0': - resolution: {integrity: sha512-jNg7haMptmeTKR7/ZomIjWZMLB6jWalBkl5in2JdU9Hc4pY5EKqD/7PSprr9SjOzCr5O+4MSiRDvw+Tu7xHevQ==} + '@react-aria/grid@3.9.1': + resolution: {integrity: sha512-fGEZqAEaS8mqzV/II3N4ndoNWegIcbh+L3PmKbXdpKKUP8VgMs/WY5rYl5WAF0f5RoFwXqx3ibDLeR9tKj/bOg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/gridlist@3.8.0': - resolution: {integrity: sha512-2iPBtpYZdTVij6XcqFsRsjzItjgg7FhFRPUEgD62mCyYd6NJIDkCxLuL97hkZ5BbXNxsr2jgVEns5Z4UzW//IQ==} + '@react-aria/gridlist@3.8.1': + resolution: {integrity: sha512-vVPkkA+Ct0NDcpnNm/tnYaBumg0fP9pXxsPLqL1rxvsTyj1PaIpFTZ4corabPTbTDExZwUSTS3LG1n+o1OvBtQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/i18n@3.11.0': - resolution: {integrity: sha512-dnopopsYKy2cd2dB2LdnmdJ58evKKcNCtiscWl624XFSbq2laDrYIQ4umrMhBxaKD7nDQkqydVBe6HoQKPzvJw==} + '@react-aria/i18n@3.11.1': + resolution: {integrity: sha512-vuiBHw1kZruNMYeKkTGGnmPyMnM5T+gT8bz97H1FqIq1hQ6OPzmtBZ6W6l6OIMjeHI5oJo4utTwfZl495GALFQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/interactions@3.21.2': - resolution: {integrity: sha512-Ju706DtoEmI/2vsfu9DCEIjDqsRBVLm/wmt2fr0xKbBca7PtmK8daajxFWz+eTq+EJakvYfLr7gWgLau9HyWXg==} + '@react-aria/interactions@3.21.3': + resolution: {integrity: sha512-BWIuf4qCs5FreDJ9AguawLVS0lV9UU+sK4CCnbCNNmYqOWY+1+gRXCsnOM32K+oMESBxilAjdHW5n1hsMqYMpA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/label@3.7.7': - resolution: {integrity: sha512-0MDIu4SbagwsYzkprcCzi1Z0V/t2K/5Dd30eSTL2zanXMa+/85MVGSQjXI0vPrXMOXSNqp0R/aMxcqcgJ59yRA==} + '@react-aria/label@3.7.8': + resolution: {integrity: sha512-MzgTm5+suPA3KX7Ug6ZBK2NX9cin/RFLsv1BdafJ6CZpmUSpWnGE/yQfYUB7csN7j31OsZrD3/P56eShYWAQfg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/link@3.7.0': - resolution: {integrity: sha512-gkF7KpDR+ApcMY5HS3xVKHrxRcwSP9TRPoySWEMBE4GPWvEK1Bk/On9EM1vRzeEibCZ5L6gKuLEEKLVSGbBMWg==} + '@react-aria/link@3.7.1': + resolution: {integrity: sha512-a4IaV50P3fXc7DQvEIPYkJJv26JknFbRzFT5MJOMgtzuhyJoQdILEUK6XHYjcSSNCA7uLgzpojArVk5Hz3lCpw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/listbox@3.12.0': - resolution: {integrity: sha512-Cy+UcfXU4MrOBMBnaB+kqG8bajeS3T1ZN8L7PXSTpmFS9jShFMhYkNz5gXpI+0SS4dgbHtkq/YDFJvu+bxFvdg==} + '@react-aria/listbox@3.12.1': + resolution: {integrity: sha512-7JiUp0NGykbv/HgSpmTY1wqhuf/RmjFxs1HZcNaTv8A+DlzgJYc7yQqFjP3ZA/z5RvJFuuIxggIYmgIFjaRYdA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/live-announcer@3.3.3': - resolution: {integrity: sha512-sMaBzzIgDPBDCeZ/UFbuXR/UnXikcE7t4OJ4cESzmUq6r6LvxzmZnG9ocwpH75n7udmUbINycKD082fneryHlg==} + '@react-aria/live-announcer@3.3.4': + resolution: {integrity: sha512-w8lxs35QrRrn6pBNzVfyGOeqWdxeVKf9U6bXIVwhq7rrTqRULL8jqy8RJIMfIs1s8G5FpwWYjyBOjl2g5Cu1iA==} - '@react-aria/menu@3.14.0': - resolution: {integrity: sha512-veZIpwKPKDIX1xpUzvGnxSVTmMfpRjPQUi1v+hMgqgdjBKedKI2LkprLABo9grggjqV9c2xT4XUXDk6xH3r8eA==} + '@react-aria/menu@3.14.1': + resolution: {integrity: sha512-BYliRb38uAzq05UOFcD5XkjA5foQoXRbcH3ZufBsc4kvh79BcP1PMW6KsXKGJ7dC/PJWUwCui6QL1kUg8PqMHA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/meter@3.4.12': - resolution: {integrity: sha512-Ofgy3SHBjNLrc0mzuEKfn5ozOyrLudzcpw1cP5BFgtYs8BDdUx2/e33+2sm1+Pm3M/AhBrV/9LGyOE2JCtb8pg==} + '@react-aria/meter@3.4.13': + resolution: {integrity: sha512-oG6KvHQM3ri93XkYQkgEaMKSMO9KNDVpcW1MUqFfqyUXHFBRZRrJB4BTXMZ4nyjheFVQjVboU51fRwoLjOzThg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/numberfield@3.11.2': - resolution: {integrity: sha512-PPCRLhAnCz3/mbv/EXoG3mY8lUvaOnZdGZf0ufb1VS4K/wKtb8z3sCTDiu1hi7nFo1YYqynb8mKue4Es5jUwSw==} + '@react-aria/numberfield@3.11.3': + resolution: {integrity: sha512-QQ9ZTzBbRI8d9ksaBWm6YVXbgv+5zzUsdxVxwzJVXLznvivoORB8rpdFJzUEWVCo25lzoBxluCEPYtLOxP1B0w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/overlays@3.22.0': - resolution: {integrity: sha512-M3Iayc2Hf9vJ4JJ8K/zh+Ct6aymDLmBbo686ChV3AtGOc254RyyzqnVSNuMs3j5QVBsDUKihHZQfl4E9RCwd+w==} + '@react-aria/overlays@3.22.1': + resolution: {integrity: sha512-GHiFMWO4EQ6+j6b5QCnNoOYiyx1Gk8ZiwLzzglCI4q1NY5AG2EAmfU4Z1+Gtrf2S5Y0zHbumC7rs9GnPoGLUYg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/progress@3.4.12': - resolution: {integrity: sha512-Wlz7VNFEzcLSawhZwWTKgJPM/IUKFiKJJG7KGcsT2biIlu6Yp60xj08hDZkCrLq3XsLLCRmweHlVfLFjG3AK9w==} + '@react-aria/progress@3.4.13': + resolution: {integrity: sha512-YBV9bOO5JzKvG8QCI0IAA00o6FczMgIDiK8Q9p5gKorFMatFUdRayxlbIPoYHMi+PguLil0jHgC7eOyaUcrZ0g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/radio@3.10.3': - resolution: {integrity: sha512-9noof5jyHE8iiFEUE7xCAHvCjG7EkZ/bZHh2+ZtrLlTFZmjpEbRbpZMw6QMKC8uzREPsmERBXjbd/6NyXH6mEQ==} + '@react-aria/radio@3.10.4': + resolution: {integrity: sha512-3fmoMcQtCpgjTwJReFjnvIE/C7zOZeCeWUn4JKDqz9s1ILYsC3Rk5zZ4q66tFn6v+IQnecrKT52wH6+hlVLwTA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/searchfield@3.7.4': - resolution: {integrity: sha512-92TR4M6/lBKkIp6l3Fl/Sqjjo++bDceIZEOKC62/cuYjLm9RRWl4tLlKIR1GN3IH1vJJStKj+TB/SjlWbPuwiA==} + '@react-aria/searchfield@3.7.5': + resolution: {integrity: sha512-h1sMUOWjhevaKKUHab/luHbM6yiyeN57L4RxZU0IIc9Ww0h5Rp2GUuKZA3pcdPiExHje0aijcImL3wBHEbKAzw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/select@3.14.4': - resolution: {integrity: sha512-MeFN8pw9liXwejkJS+hg0fDqGa3oW/mIwZYx8CrZZLbPnEcjZ9NI4ZXSxJaMOHEIQj/RXQ3Fpu0Sunu9FVpYXQ==} + '@react-aria/select@3.14.5': + resolution: {integrity: sha512-s8jixBuTUNdKWRHe2tIJqp55ORHeUObGMw1s7PQRRVrrHPdNSYseAOI9B2W7qpl3hKhvjJg40UW+45mcb1WKbw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/selection@3.18.0': - resolution: {integrity: sha512-6ZvRuS9OHe56UVTb/qnsZ1TOxpZH9gRlX6eGG3Pt4LZK12wcvs13Uz2OvB2aYQHu0KPAua9ACnPh94xvXzQIlQ==} + '@react-aria/selection@3.18.1': + resolution: {integrity: sha512-GSqN2jX6lh7v+ldqhVjAXDcrWS3N4IsKXxO6L6Ygsye86Q9q9Mq9twWDWWu5IjHD6LoVZLUBCMO+ENGbOkyqeQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/separator@3.3.12': - resolution: {integrity: sha512-KXeHynxek/DlAmjmry+M2KVRq+j75LqWFysX4x7t+OSbGR4t3bu5HRDd9bvDe9lsW8OKxlX3+hWTY7vsOL/HDA==} + '@react-aria/separator@3.3.13': + resolution: {integrity: sha512-hofA6JCPnAOqSE9vxnq7Dkazr7Kb2A0I5sR16fOG7ddjYRc/YEY5Nv7MWfKUGU0kNFHkgNjsDAILERtLechzeA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/slider@3.7.7': - resolution: {integrity: sha512-7tOJyR4ZZoSMKcVomC6DZxyYuXQqQopi9mPW2J1fViD1R5iO8YVmoX/ALXnokzi8GPuMA0c38i2Cmnecm30ZXA==} + '@react-aria/slider@3.7.8': + resolution: {integrity: sha512-MYvPcM0K8jxEJJicUK2+WxUkBIM/mquBxOTOSSIL3CszA80nXIGVnLlCUnQV3LOUzpWtabbWaZokSPtGgOgQOw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/spinbutton@3.6.4': - resolution: {integrity: sha512-KMnwm3bEM83g8MILGt6irbvAG7DNphkq6O0ePt7L1m6QZhWK3hbI2RNlxYMF1OKIDTAOhnEjR6IdMCWt9TuXvQ==} + '@react-aria/spinbutton@3.6.5': + resolution: {integrity: sha512-0aACBarF/Xr/7ixzjVBTQ0NBwwwsoGkf5v6AVFVMTC0uYMXHTALvRs+ULHjHMa5e/cX/aPlEvaVT7jfSs+Xy9Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/ssr@3.9.3': - resolution: {integrity: sha512-5bUZ93dmvHFcmfUcEN7qzYe8yQQ8JY+nHN6m9/iSDCQ/QmCiE0kWXYwhurjw5ch6I8WokQzx66xKIMHBAa4NNA==} + '@react-aria/ssr@3.9.4': + resolution: {integrity: sha512-4jmAigVq409qcJvQyuorsmBR4+9r3+JEC60wC+Y0MZV0HCtTmm8D9guYXlJMdx0SSkgj0hHAyFm/HvPNFofCoQ==} engines: {node: '>= 12'} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/switch@3.6.3': - resolution: {integrity: sha512-UBWbTEnnlTDT/dFOEpGKfX5ngPTIOVDLX1ltUhDHHk6SrgSnvYxTPTZAo+ujHIUSBFHOuxmvVYG7y54rk168mg==} + '@react-aria/switch@3.6.4': + resolution: {integrity: sha512-2nVqz4ZuJyof47IpGSt3oZRmp+EdS8wzeDYgf42WHQXrx4uEOk1mdLJ20+NnsYhj/2NHZsvXVrjBeKMjlMs+0w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/table@3.14.0': - resolution: {integrity: sha512-IwBmzeIxeZjWlOlmMXVj/L64FbYm3qUh7v3VRgU98BVOdvgUyEKBDIwi6SuOV4FwbXKrCPZbXPU/k+KQU4tUoQ==} + '@react-aria/table@3.14.1': + resolution: {integrity: sha512-WaPgQe4zQF5OaluO5rm+Y2nEoFR63vsLd4BT4yjK1uaFhKhDY2Zk+1SCVQvBLLKS4WK9dhP05nrNzT0vp/ZPOw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tabs@3.9.0': - resolution: {integrity: sha512-E4IHOO9ejEXNeSnpeThu79pDpNySHHYz3txr9ngtH6tp097k/I1auSqbGJPy/kwLj6MCPEt86dNJDXE2X0AcFw==} + '@react-aria/tabs@3.9.1': + resolution: {integrity: sha512-S5v/0sRcOaSXaJYZuuy1ZVzYc7JD4sDyseG1133GjyuNjJOFHgoWMb+b4uxNIJbZxnLgynn/ZDBZSO+qU+fIxw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tag@3.4.0': - resolution: {integrity: sha512-kTrj0zEIyABgdASZMM7qxe0LAEePAxlg4OmfjZfkiAYYV32liY4EPER7ocE0OhOXo6TeOYYIvpEcr0z/4PjCpw==} + '@react-aria/tag@3.4.1': + resolution: {integrity: sha512-gcIGPYZ2OBwMT4IHnlczEezKlxr0KRPL/mSfm2Q91GE027ZGOJnqusH9az6DX1qxrQx8x3vRdqYT2KmuefkrBQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/textfield@3.14.4': - resolution: {integrity: sha512-fdZChDyTRA4BPqbyDeD9gSw6rVeIAl7eG38osRwr0mzcKTiS/AyV3jiRwnHsBO9brU8RdViJFri4emVDuxSjag==} + '@react-aria/textfield@3.14.5': + resolution: {integrity: sha512-hj7H+66BjB1iTKKaFXwSZBZg88YT+wZboEXZ0DNdQB2ytzoz/g045wBItUuNi4ZjXI3P+0AOZznVMYadWBAmiA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/toggle@3.10.3': - resolution: {integrity: sha512-QtufHlWczMcTGmRxF7RCEgfMKpUPivyXJWZsQ1HSlknjRJPzf4uc3mSR62hq2sZ0VN9zXEpUsoixbEDB87TnGg==} + '@react-aria/toggle@3.10.4': + resolution: {integrity: sha512-bRk+CdB8QzrSyGNjENXiTWxfzYKRw753iwQXsEAU7agPCUdB8cZJyrhbaUoD0rwczzTp2zDbZ9rRbUPdsBE2YQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/toolbar@3.0.0-beta.4': - resolution: {integrity: sha512-nerKAoHwHFTvf25DDtj8d/zlDaZHaTPWvL4gweTm3hu9ztisE58CoVUqzqH+VNiYjcrWr2PYgLbNLsuOzk0q1Q==} + '@react-aria/toolbar@3.0.0-beta.5': + resolution: {integrity: sha512-c8spY7aeLI6L+ygdXvEbAzaT41vExsxZ1Ld0t7BB+6iEF3nyBNJHshjkgdR7nv8FLgNk0no4tj0GTq4Jj4UqHQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tooltip@3.7.3': - resolution: {integrity: sha512-uF2J/GRKTHSeEYMwvXTu7oK710nov/NRbY7db2Hh7yXluGmjJORXb5wxsy+lqHaWqPKBbkhmxBJYeJJpAqlZ5g==} + '@react-aria/tooltip@3.7.4': + resolution: {integrity: sha512-+XRx4HlLYqWY3fB8Z60bQi/rbWDIGlFUtXYbtoa1J+EyRWfhpvsYImP8qeeNO/vgjUtDy1j9oKa8p6App9mBMQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tree@3.0.0-alpha.0': - resolution: {integrity: sha512-/5dqWjSHEMlrvoJTsQuGHrtKRoxYco5OKrdIf5UQq5wHB/quUD6ZexEfn9/NzflyoHVz2zPIm7RU8J9WuZugNw==} + '@react-aria/tree@3.0.0-alpha.1': + resolution: {integrity: sha512-CucyeJ4VeAvWO5UJHt/l9JO65CVtsOVUctMOVNCQS77Isqp3olX9pvfD3LXt8fD5Ph2g0Q/b7siVpX5ieVB32g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/utils@3.24.0': - resolution: {integrity: sha512-JAxkPhK5fCvFVNY2YG3TW3m1nTzwRcbz7iyTSkUzLFat4N4LZ7Kzh7NMHsgeE/oMOxd8zLY+XsUxMu/E/2GujA==} + '@react-aria/utils@3.24.1': + resolution: {integrity: sha512-O3s9qhPMd6n42x9sKeJ3lhu5V1Tlnzhu6Yk8QOvDuXf7UGuUjXf9mzfHJt1dYzID4l9Fwm8toczBzPM9t0jc8Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/visually-hidden@3.8.11': - resolution: {integrity: sha512-1JFruyAatoKnC18qrix8Q1gyUNlizWZvYdPADgB5btakMy0PEGTWPmFRK5gFsO+N0CZLCFTCip0dkUv6rrp31w==} + '@react-aria/visually-hidden@3.8.12': + resolution: {integrity: sha512-Bawm+2Cmw3Xrlr7ARzl2RLtKh0lNUdJ0eNqzWcyx4c0VHUAWtThmH5l+HRqFUGzzutFZVo89SAy40BAbd0gjVw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -4603,271 +4601,271 @@ packages: peerDependencies: react: '*' - '@react-stately/calendar@3.5.0': - resolution: {integrity: sha512-tINxgGAeZ9KsYNomuR50PljG2mN9C9FWQ8zyvATfFq44EFcjjdXCMNWV+qgIRKGKLwrSJhu3boPaiHVIpUxrXA==} + '@react-stately/calendar@3.5.1': + resolution: {integrity: sha512-7l7QhqGUJ5AzWHfvZzbTe3J4t72Ht5BmhW4hlVI7flQXtfrmYkVtl3ZdytEZkkHmWGYZRW9b4IQTQGZxhtlElA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/checkbox@3.6.4': - resolution: {integrity: sha512-gecaRtWeQNoJuSl3AtfV6z6LjaUV578Kzbag8d3pTPbGXl8komTtTj/26nIEPsmf/L8jZ3kCscDGxGTKr+7sqg==} + '@react-stately/checkbox@3.6.5': + resolution: {integrity: sha512-IXV3f9k+LtmfQLE+DKIN41Q5QB/YBLDCB1YVx5PEdRp52S9+EACD5683rjVm8NVRDwjMi2SP6RnFRk7fVb5Azg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/collections@3.10.6': - resolution: {integrity: sha512-hb/yzxQnZaSRu43iR6ftkCJIqD4Qu5WUjl4ASBn2EGb9TmipA7bFnYVqSH4xFPCCTZ68Qxh95dOcxYBHlHeWZQ==} + '@react-stately/collections@3.10.7': + resolution: {integrity: sha512-KRo5O2MWVL8n3aiqb+XR3vP6akmHLhLWYZEmPKjIv0ghQaEebBTrN3wiEjtd6dzllv0QqcWvDLM1LntNfJ2TsA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/color@3.6.0': - resolution: {integrity: sha512-sjQDjE1zBAnaJaqssP4Ep63Pd32xvLOwcfUmXAOua6s+8CKVlKQqr5BoBiBnqvGGmy7oTlEJd1dkfZA+bvh/zw==} + '@react-stately/color@3.6.1': + resolution: {integrity: sha512-iW0nAhl3+fUBegHMw5EcAbFVDpgwHBrivfC85pVoTM3pyzp66hqNN6R6xWxW6ETyljS8UOer59+/w4GDVGdPig==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/combobox@3.8.3': - resolution: {integrity: sha512-lmwt2M39jHQUA9CWKhTc9MVoUBKuJM1Y+9GYPElON8P/guQL6G3bM1u8I4Hxf0zzGzAIW3ymV57bF9mcaA/nzA==} + '@react-stately/combobox@3.8.4': + resolution: {integrity: sha512-iLVGvKRRz0TeJXZhZyK783hveHpYA6xovOSdzSD+WGYpiPXo1QrcrNoH3AE0Z2sHtorU+8nc0j58vh5PB+m2AA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/data@3.11.3': - resolution: {integrity: sha512-iyg27s3uUquxvX5AXckAgOPszG6uX7fCOIg0D/GJXxdFxLv1gFSupIeIJhM+kXufPgpaLiugaQxoYlO5y65shA==} + '@react-stately/data@3.11.4': + resolution: {integrity: sha512-PbnUQxeE6AznSuEWYnRmrYQ9t5z1Asx98Jtrl96EeA6Iapt9kOjTN9ySqCxtPxMKleb1NIqG3+uHU3veIqmLsg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/datepicker@3.9.3': - resolution: {integrity: sha512-NjZ8uqxmKf7mGLNWSZsvm22xX46k+yo0QkPspONuorHFTf8qqCnp4i+bBpEpaVCwX5KVSRdjxJOk7XhvJF8q4w==} + '@react-stately/datepicker@3.9.4': + resolution: {integrity: sha512-yBdX01jn6gq4NIVvHIqdjBUPo+WN8Bujc4OnPw+ZnfA4jI0eIgq04pfZ84cp1LVXW0IB0VaCu1AlQ/kvtZjfGA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/dnd@3.3.0': - resolution: {integrity: sha512-bHH3B4wFqfATpyxpP5Wdv/5uQdci4WvStJgeExj7Yy2UwYSsZEnS6Ky0MhLLFdIyUpragjiSCzYcYwwli6oHUQ==} + '@react-stately/dnd@3.3.1': + resolution: {integrity: sha512-I/Ci5xB8hSgAXzoWYWScfMM9UK1MX/eTlARBhiSlfudewweOtNJAI+cXJgU7uiUnGjh4B4v3qDBtlAH1dWDCsw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/flags@3.0.2': - resolution: {integrity: sha512-/KyVJMND2WdkgoHpt+m+ash7h5q9pq91DLgyizQWcbf2xphicH9D1HKAB8co3Cfvq6T/QqjQEP8aBkheiPyfEg==} + '@react-stately/flags@3.0.3': + resolution: {integrity: sha512-/ha7XFA0RZTQsbzSPwu3KkbNMgbvuM0GuMTYLTBWpgBrovBNTM+QqI/PfZTdHg8PwCYF4H5Y8gjdSpdulCvJFw==} - '@react-stately/form@3.0.2': - resolution: {integrity: sha512-MA4P9lHv770I3DJpJTQlkh5POVuklmeQuixwlbyKzlWT+KqFSOXvqaliszqU7gyDdVGAFksMa6E3mXbGbk1wuA==} + '@react-stately/form@3.0.3': + resolution: {integrity: sha512-92YYBvlHEWUGUpXgIaQ48J50jU9XrxfjYIN8BTvvhBHdD63oWgm8DzQnyT/NIAMzdLnhkg7vP+fjG8LjHeyIAg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/grid@3.8.6': - resolution: {integrity: sha512-XkxDfaIAWzbsb5pnL2IE4FqQbqegVzPnU+R2ZvDrJT7514I2usSMoJ2ZUUoy8DIYQomJHB5QKZeyQkGIelHMcg==} + '@react-stately/grid@3.8.7': + resolution: {integrity: sha512-he3TXCLAhF5C5z1/G4ySzcwyt7PEiWcVIupxebJQqRyFrNWemSuv+7tolnStmG8maMVIyV3P/3j4eRBbdSlOIg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/list@3.10.4': - resolution: {integrity: sha512-sj501OKcQr+1Zdo0m6NuvpZDHLE0tUdReSKcWqt35odzC6ic/qr7C7ozZ/5ay+nuHTryUUTC/mDQ0zlBmQX0dA==} + '@react-stately/list@3.10.5': + resolution: {integrity: sha512-fV9plO+6QDHiewsYIhboxcDhF17GO95xepC5ki0bKXo44gr14g/LSo/BMmsaMnV+1BuGdBunB05bO4QOIaigXA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/menu@3.7.0': - resolution: {integrity: sha512-8UJhvKEF+zaHXrwv0YhFr73OSEprzIs6xRNoV6F/omd4twy1ngPZrL1X8HNzaXsf5BrHuib2tbh81e/Z95D3nA==} + '@react-stately/menu@3.7.1': + resolution: {integrity: sha512-mX1w9HHzt+xal1WIT2xGrTQsoLvDwuB2R1Er1MBABs//MsJzccycatcgV/J/28m6tO5M9iuFQQvLV+i1dCtodg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/numberfield@3.9.2': - resolution: {integrity: sha512-Sp+0MnqaqZ/Tu8qalZXbMIXyvZ7aXIny2PxNIxmnqxVHfxIzQCLJW5Y4bJr1yJIHH3QDZic5OyqS72MBWBXnIA==} + '@react-stately/numberfield@3.9.3': + resolution: {integrity: sha512-UlPTLSabhLEuHtgzM0PgfhtEaHy3yttbzcRb8yHNvGo4KbCHeHpTHd3QghKfTFm024Mug7+mVlWCmMtW0f5ttg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/overlays@3.6.6': - resolution: {integrity: sha512-NvzQXh4zYGZuUmZH5d3NmEDNr8r1hfub2s5w7WOeIG35xqIzoKGdFZ7LLWrie+4nxPmM+ckdfqOQ9pBZFNJypQ==} + '@react-stately/overlays@3.6.7': + resolution: {integrity: sha512-6zp8v/iNUm6YQap0loaFx6PlvN8C0DgWHNlrlzMtMmNuvjhjR0wYXVaTfNoUZBWj25tlDM81ukXOjpRXg9rLrw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/radio@3.10.3': - resolution: {integrity: sha512-EWLLRgLQ9orI7G9uPuJv1bdZPu3OoRWy1TGSn+6G8b8rleNx3haI4eZUR+JGB0YNgemotMz/gbNTNG/wEIsRgw==} + '@react-stately/radio@3.10.4': + resolution: {integrity: sha512-kCIc7tAl4L7Hu4Wt9l2jaa+MzYmAJm0qmC8G8yPMbExpWbLRu6J8Un80GZu+JxvzgDlqDyrVvyv9zFifwH/NkQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/searchfield@3.5.2': - resolution: {integrity: sha512-M73mhUCbY5aJAtVH8BF9TeBwOtEMC7G1N/W6j71V8f3MlN0ppN0n4pZWW3CMd2x0BKuYum8KPvcL1DgiXzoo5A==} + '@react-stately/searchfield@3.5.3': + resolution: {integrity: sha512-H0OvlgwPIFdc471ypw79MDjz3WXaVq9+THaY6JM4DIohEJNN5Dwei7O9g6r6m/GqPXJIn5TT3b74kJ2Osc00YQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/select@3.6.3': - resolution: {integrity: sha512-d/ha6j0oiEaw/F5hgPgCZg1e8LObNmvsocEebxXPToVdwHd9H55r2Fogi5nLoiX8geHKiYm0KPfSxs/oXbW/5Q==} + '@react-stately/select@3.6.4': + resolution: {integrity: sha512-whZgF1N53D0/dS8tOFdrswB0alsk5Q5620HC3z+5f2Hpi8gwgAZ8TYa+2IcmMYRiT+bxVuvEc/NirU9yPmqGbA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/selection@3.15.0': - resolution: {integrity: sha512-OtypXNtvRWLmpkaktluzCYEXKXAON16WIJv2mZ4cae3H0UVfWaFL9sD+ST9nj7UqYNTDXECug5ziIY+YKd7zvA==} + '@react-stately/selection@3.15.1': + resolution: {integrity: sha512-6TQnN9L0UY9w19B7xzb1P6mbUVBtW840Cw1SjgNXCB3NPaCf59SwqClYzoj8O2ZFzMe8F/nUJtfU1NS65/OLlw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/slider@3.5.3': - resolution: {integrity: sha512-jA0XR7GjtwoucLw8kx/KB50pSGNUbR7xNfM9t5H8D7k3wd+j4yqfarWyNFyPX/X5MJez+/bd+BIDJUl3XGOWkA==} + '@react-stately/slider@3.5.4': + resolution: {integrity: sha512-Jsf7K17dr93lkNKL9ij8HUcoM1sPbq8TvmibD6DhrK9If2lje+OOL8y4n4qreUnfMT56HCAeS9wCO3fg3eMyrw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/table@3.11.7': - resolution: {integrity: sha512-VvazamtoXLENeWJAYF1fJzfIAXO2qbiXCfosRLgkEMtoU2kGqV8DHYQhIXuqwMRn8nO8GVw9hgAiQQcKghgCXA==} + '@react-stately/table@3.11.8': + resolution: {integrity: sha512-EdyRW3lT1/kAVDp5FkEIi1BQ7tvmD2YgniGdLuW/l9LADo0T+oxZqruv60qpUS6sQap+59Riaxl91ClDxrJnpg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/tabs@3.6.5': - resolution: {integrity: sha512-z1saZgGRqb0AsoRi19iE4JOJaIRV73GjRnzUX9QSl3gpK75XsH31vbmtUYiXOXAd6Dt+1KFLgbyeCzMUlZEnMw==} + '@react-stately/tabs@3.6.6': + resolution: {integrity: sha512-sOLxorH2uqjAA+v1ppkMCc2YyjgqvSGeBDgtR/lyPSDd4CVMoTExszROX2dqG0c8il9RQvzFuufUtQWMY6PgSA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/toggle@3.7.3': - resolution: {integrity: sha512-4jW6wxTu7Gkq6/2mZWqtJoQ6ff27Cl6lnVMEXXM+M8HwK/3zHoMZhVz8EApwgOsRByxDQ76PNSGm3xKZAcqZNw==} + '@react-stately/toggle@3.7.4': + resolution: {integrity: sha512-CoYFe9WrhLkDP4HGDpJYQKwfiYCRBAeoBQHv+JWl5eyK61S8xSwoHsveYuEZ3bowx71zyCnNAqWRrmNOxJ4CKA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/tooltip@3.4.8': - resolution: {integrity: sha512-0D3cCeQhX5DjDpeuzFJwfX8SxIOxdL2iWPPjpC3hIxkUKuItavSq2A7G2tO39vpiip3RBOaaQMUpnSmjRK5DAQ==} + '@react-stately/tooltip@3.4.9': + resolution: {integrity: sha512-P7CDJsdoKarz32qFwf3VNS01lyC+63gXpDZG31pUu+EO5BeQd4WKN/AH1Beuswpr4GWzxzFc1aXQgERFGVzraA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/tree@3.8.0': - resolution: {integrity: sha512-7bfbCLjG8BTiWuo9GBE1A375PPI4S9r/rMtKQGLQvYAObgJb7C8P3svA9WKfryvl7M5iqaYrOVA0uzNSmeCNQQ==} + '@react-stately/tree@3.8.1': + resolution: {integrity: sha512-LOdkkruJWch3W89h4B/bXhfr0t0t1aRfEp+IMrrwdRAl23NaPqwl5ILHs4Xu5XDHqqhg8co73pHrJwUyiTWEjw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/utils@3.10.0': - resolution: {integrity: sha512-nji2i9fTYg65ZWx/3r11zR1F2tGya+mBubRCbMTwHyRnsSLFZaeq/W6lmrOyIy1uMJKBNKLJpqfmpT4x7rw6pg==} + '@react-stately/utils@3.10.1': + resolution: {integrity: sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/virtualizer@3.7.0': - resolution: {integrity: sha512-Wkh502y6mzUvjJJr30p5FLRwBaphnfmnoSnGwidamwo3HuyrDICBSlwFGPl0AmUHo1afSaLXl6j8smU48VcClA==} + '@react-stately/virtualizer@3.7.1': + resolution: {integrity: sha512-voHgE6EQ+oZaLv6u2umKxakvIKNkCQuUihqKACTjdslp7SJh4Mvs3oLBI0hf0JOh+rCcFIKDvQtFwy1fXFRYBA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/breadcrumbs@3.7.4': - resolution: {integrity: sha512-gQPLi71i+4zE6m5S74v7bpZ/yBERtlUt5qBcvB4C7gJu8aR4cFrv1YFZ//9f8uwlAHjau7XBpVlbBDlhfb2aOQ==} + '@react-types/breadcrumbs@3.7.5': + resolution: {integrity: sha512-lV9IDYsMiu2TgdMIjEmsOE0YWwjb3jhUNK1DCZZfq6uWuiHLgyx2EncazJBUWSjHJ4ta32j7xTuXch+8Ai6u/A==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/button@3.9.3': - resolution: {integrity: sha512-YHlSeH85FhasJXOmkY4x+6If74ZpUh88C2fMlw0HUA/Bq/KGckUoriV8cnMqSnB1OwPqi8dpBZGfFVj6f6lh9A==} + '@react-types/button@3.9.4': + resolution: {integrity: sha512-raeQBJUxBp0axNF74TXB8/H50GY8Q3eV6cEKMbZFP1+Dzr09Ngv0tJBeW0ewAxAguNH5DRoMUAUGIXtSXskVdA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/calendar@3.4.5': - resolution: {integrity: sha512-FAAUbqe8iPiNf/OtdxnpOuAEJzyeRgfK2QCzfb4BIVnNNaTDkbxGCI5wrqHfBQ4FASECJeNlkjYXtbvijaooyw==} + '@react-types/calendar@3.4.6': + resolution: {integrity: sha512-WSntZPwtvsIYWvBQRAPvuCn55UTJBZroTvX0vQvWykJRQnPAI20G1hMQ3dNsnAL+gLZUYxBXn66vphmjUuSYew==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/checkbox@3.8.0': - resolution: {integrity: sha512-IBJ2bAsb3xoXaL+f0pwfRLDvRkhxfcX/q4NRJ2oT9jeHLU+j6svgK1Dqk8IGmY+vw1ltKbbMlIVeVonKQ3fgHw==} + '@react-types/checkbox@3.8.1': + resolution: {integrity: sha512-5/oVByPw4MbR/8QSdHCaalmyWC71H/QGgd4aduTJSaNi825o+v/hsN2/CH7Fq9atkLKsC8fvKD00Bj2VGaKriQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/color@3.0.0-beta.24': - resolution: {integrity: sha512-YSb/9ERmFp7JxC+vjhqpcYI8HUt92SSv6aDEB+e//4RzBnCxvy+YQAGei9tI6PYIgzGgMLwEMkgpgH/7UcFblA==} + '@react-types/color@3.0.0-beta.25': + resolution: {integrity: sha512-D24ASvLeSWouBwOBi4ftUe4/BhrZj5AiHV7tXwrVeMGOy9Z9jyeK65Xysq+R3ecaSONLXsgai5CQMvj13cOacA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/combobox@3.11.0': - resolution: {integrity: sha512-L6EEcIUIk7lsVvhO1Z1bklgH5bM84fBht03TC+es9YvS2T1Z9hdtyjBFcH6b3lVW9RwAArdUTL82/RNtvgD0Eg==} + '@react-types/combobox@3.11.1': + resolution: {integrity: sha512-UNc3OHt5cUt5gCTHqhQIqhaWwKCpaNciD8R7eQazmHiA9fq8ROlV+7l3gdNgdhJbTf5Bu/V5ISnN7Y1xwL3zqQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/datepicker@3.7.3': - resolution: {integrity: sha512-SpA91itY03QaBvTAGP4X62SEAOoKJr91Av/U5DgH8gP7Ev4Ui+I3Aqh+w8Qw6nxKX4aAvDUx6wEHwLQLbvJUPA==} + '@react-types/datepicker@3.7.4': + resolution: {integrity: sha512-ZfvgscvNzBJpYyVWg3nstJtA/VlWLwErwSkd1ivZYam859N30w8yH+4qoYLa6FzWLCFlrsRHyvtxlEM7lUAt5A==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/dialog@3.5.9': - resolution: {integrity: sha512-8r9P1b1gq/cUv2bTPPNL3IFVEj9R5sIPACoSXznXkpXxh5FLU6yUPHDeQjvmM50q7KlEOgrPYhGl5pW525kLww==} + '@react-types/dialog@3.5.10': + resolution: {integrity: sha512-S9ga+edOLNLZw7/zVOnZdT5T40etpzUYBXEKdFPbxyPYnERvRxJAsC1/ASuBU9fQAXMRgLZzADWV+wJoGS/X9g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/form@3.7.3': - resolution: {integrity: sha512-RwVxgbuKuByIXTF9HnvIhc/KijzT10R8rnI2Hr/51nTH+QDkunmLtmzW279m4YJRT3Dlj94DRy/7SS/WNCT2FA==} + '@react-types/form@3.7.4': + resolution: {integrity: sha512-HZojAWrb6feYnhDEOy3vBamDVAHDl0l2JQZ7aIDLHmeTAGQC3JNZcm2fLTxqLye46zz8w8l8OHgI+NdD4PHdOw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/grid@3.2.5': - resolution: {integrity: sha512-kvE3Y+i0/RGLrf8qn/uVK1nVxXygNf5Jm6h9S6UdZkEVsclcqHKIX8UzqQgEUTd99jMHZk7fbKPm/La8uJ9yFQ==} + '@react-types/grid@3.2.6': + resolution: {integrity: sha512-XfHenL2jEBUYrhKiPdeM24mbLRXUn79wVzzMhrNYh24nBwhsPPpxF+gjFddT3Cy8dt6tRInfT6pMEu9nsXwaHw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/link@3.5.4': - resolution: {integrity: sha512-5hVAlKE4wiEVHmkqQG9/G4sdar257CISmLzWh9xf8heq14a93MBIHm7S9mhHULk2a84EC9bNoTi8Hh6P6nnMEw==} + '@react-types/link@3.5.5': + resolution: {integrity: sha512-G6P5WagHDR87npN7sEuC5IIgL1GsoY4WFWKO4734i2CXRYx24G9P0Su3AX4GA3qpspz8sK1AWkaCzBMmvnunfw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/listbox@3.4.8': - resolution: {integrity: sha512-HNLBvyhR02p8GaZsW8hAu4YwkDjaG/rcuCT/l4Sdxzsm7szPlFMEVBZ9Ji3Ffzj+9P20OgFJ+VylWs7EkUwJAA==} + '@react-types/listbox@3.4.9': + resolution: {integrity: sha512-S5G+WmNKUIOPZxZ4svWwWQupP3C6LmVfnf8QQmPDvwYXGzVc0WovkqUWyhhjJirFDswTXRCO9p0yaTHHIlkdwQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/menu@3.9.8': - resolution: {integrity: sha512-nkRCsfD3NXsJOv6mAnXCFyH2eGOFsmOOJOBQeOl9dj7BcdX9dcqp2PzUWPl33GrY9rYcXiRx4wsbUoqO1KVU4g==} + '@react-types/menu@3.9.9': + resolution: {integrity: sha512-FamUaPVs1Fxr4KOMI0YcR2rYZHoN7ypGtgiEiJ11v/tEPjPPGgeKDxii0McCrdOkjheatLN1yd2jmMwYj6hTDg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/meter@3.4.0': - resolution: {integrity: sha512-1czayiwMcg3QxRxQQSm9hvPbzPk1lyNmP68mDsWdVuY7fUTsUvItF05IkeJCkEB8tIqfBKnJHYAJN1XLY+5bfg==} + '@react-types/meter@3.4.1': + resolution: {integrity: sha512-AIJV4NDFAqKH94s02c5Da4TH2qgJjfrw978zuFM0KUBFD85WRPKh7MvgWpomvUgmzqE6lMCzIdi1KPKqrRabdw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/numberfield@3.8.2': - resolution: {integrity: sha512-2i7Je7fEYA4ousL9WhKZg+6Hejwgiq1AmoJpan6JfeIMQkvQ92q+klq02cih/lLXY/jvjd/KI3fa1fl3dfnaFw==} + '@react-types/numberfield@3.8.3': + resolution: {integrity: sha512-z5fGfVj3oh5bmkw9zDvClA1nDBSFL9affOuyk2qZ/M2SRUmykDAPCksbfcMndft0XULWKbF4s2CYbVI+E/yrUA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/overlays@3.8.6': - resolution: {integrity: sha512-7xBuroYqwADppt7IRGfM8lbxVwlZrhMtTzeIdUot595cqFdRlpd/XAo2sRnEeIjYW9OSI8I5v4kt3AG7bdCQlg==} + '@react-types/overlays@3.8.7': + resolution: {integrity: sha512-zCOYvI4at2DkhVpviIClJ7bRrLXYhSg3Z3v9xymuPH3mkiuuP/dm8mUCtkyY4UhVeUTHmrQh1bzaOP00A+SSQA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/progress@3.5.3': - resolution: {integrity: sha512-IcICNYRPFHQxl6iXi5jDgSZ3I9k2UQ2rIFcnoGo43K0hekv6fRdbbXWJU9ndShs3OfCHTPHEV5ooYB3UujNOAQ==} + '@react-types/progress@3.5.4': + resolution: {integrity: sha512-JNc246sTjasPyx5Dp7/s0rp3Bz4qlu4LrZTulZlxWyb53WgBNL7axc26CCi+I20rWL9+c7JjhrRxnLl/1cLN5g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/radio@3.8.0': - resolution: {integrity: sha512-0gvG74lgiaRo0DO46hoB5NxGFXhq5DsHaPZcCcb9VZ8cCzZMrO7U/B3JhF82TI2DndSx/AoiAMOQsc0v4ZwiGg==} + '@react-types/radio@3.8.1': + resolution: {integrity: sha512-bK0gio/qj1+0Ldu/3k/s9BaOZvnnRgvFtL3u5ky479+aLG5qf1CmYed3SKz8ErZ70JkpuCSrSwSCFf0t1IHovw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/searchfield@3.5.4': - resolution: {integrity: sha512-D7tUwlbUxyTzxhMYWNMdY9lp/a/kdr9mIGB7K3j/QSQhTI2T9H3VPxEKXmYt33cE3T7Q1DDsII1SrChI/KEdxA==} + '@react-types/searchfield@3.5.5': + resolution: {integrity: sha512-T/NHg12+w23TxlXMdetogLDUldk1z5dDavzbnjKrLkajLb221bp8brlR/+O6C1CtFpuJGALqYHgTasU1qkQFSA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/select@3.9.3': - resolution: {integrity: sha512-hK5RvA6frMbLdynRkegNW1lMOD0l9aFsW9X8WuTAg0zV6iZouU0hhSCT6JRDefJrv+m0X3fRdohMuVNZOhlA1g==} + '@react-types/select@3.9.4': + resolution: {integrity: sha512-xI7dnOW2st91fPPcv6hdtrTdcfetYiqZuuVPZ5TRobY7Q10/Zqqe/KqtOw1zFKUj9xqNJe4Ov3xP5GSdcO60Eg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/shared@3.23.0': - resolution: {integrity: sha512-GQm/iPiii3ikcaMNR4WdVkJ4w0mKtV3mLqeSfSqzdqbPr6vONkqXbh3RhPlPmAJs1b4QHnexd/wZQP3U9DHOwQ==} + '@react-types/shared@3.23.1': + resolution: {integrity: sha512-5d+3HbFDxGZjhbMBeFHRQhexMFt4pUce3okyRtUVKbbedQFUrtXSBg9VszgF2RTeQDKDkMCIQDtz5ccP/Lk1gw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/slider@3.7.2': - resolution: {integrity: sha512-HvC/Mdt/z741xcU0ymeNxslnowQ5EAHOSzyf2JMgXmle+pEIbbepz5QUVaOmEveQHS3bjxE/+n2yBTKbxP8CJg==} + '@react-types/slider@3.7.3': + resolution: {integrity: sha512-F8qFQaD2mqug2D0XeWMmjGBikiwbdERFlhFzdvNGbypPLz3AZICBKp1ZLPWdl0DMuy03G/jy6Gl4mDobl7RT2g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/switch@3.5.2': - resolution: {integrity: sha512-4i35eZ5GtVDgu9KFhlyLyXanspcQp5WEnPyaBKn3pDRDcpzAL7yNP/Rwqc/JDdcJWngV080o7loJCgEfJ6UFaQ==} + '@react-types/switch@3.5.3': + resolution: {integrity: sha512-Nb6+J5MrPaFa8ZNFKGMzAsen/NNzl5UG/BbC65SLGPy7O0VDa/sUpn7dcu8V2xRpRwwIN/Oso4v63bt2sgdkgA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/table@3.9.4': - resolution: {integrity: sha512-31EI0KAHwX7TbgERLBLVuD3nvpZUo0Wie7S7FEARmirIRfzm1fIkdDk5hfIHry2Lp4mq2/aqXLCY+oDR+lC2pw==} + '@react-types/table@3.9.5': + resolution: {integrity: sha512-fgM2j9F/UR4Anmd28CueghCgBwOZoCVyN8fjaIFPd2MN4gCwUUfANwxLav65gZk4BpwUXGoQdsW+X50L3555mg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/tabs@3.3.6': - resolution: {integrity: sha512-ubvB7pB4+e5OpIuYR1CYip53iW9rJRIWvioHTYfcX0DnMabEcVP6Ymdqr5bDh/VsBEhiddsNgMduQwJm6bUTew==} + '@react-types/tabs@3.3.7': + resolution: {integrity: sha512-ZdLe5xOcFX6+/ni45Dl2jO0jFATpTnoSqj6kLIS/BYv8oh0n817OjJkLf+DS3CLfNjApJWrHqAk34xNh6nRnEg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/textfield@3.9.2': - resolution: {integrity: sha512-8UcabahYhKm3KTu9CQBhz745FioUWO6CWgYusBpxMDJ+HnlhCC2JWyQvqg5tT98sr5AeSek4Jt/XS3ovzrhCDg==} + '@react-types/textfield@3.9.3': + resolution: {integrity: sha512-DoAY6cYOL0pJhgNGI1Rosni7g72GAt4OVr2ltEx2S9ARmFZ0DBvdhA9lL2nywcnKMf27PEJcKMXzXc10qaHsJw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/tooltip@3.4.8': - resolution: {integrity: sha512-6XVQ3cMaXVMif+F5PQCaVwxbgAL8HVRqVjt6DkHs8Xbae43hpEIwPrBYlWWMVpuZAcjXZLTGmmyPjYeORZZJ4A==} + '@react-types/tooltip@3.4.9': + resolution: {integrity: sha512-wZ+uF1+Zc43qG+cOJzioBmLUNjRa7ApdcT0LI1VvaYvH5GdfjzUJOorLX9V/vAci0XMJ50UZ+qsh79aUlw2yqg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5389,12 +5387,6 @@ packages: '@swc/counter@0.1.3': resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - '@swc/helpers@0.4.14': - resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} - - '@swc/helpers@0.4.36': - resolution: {integrity: sha512-5lxnyLEYFskErRPenYItLRSge5DjrJngYKdVjRSrWfza9G6KkgHEXi0vUZiyUeMU5JfXH1YnvXZzSp8ul88o2Q==} - '@swc/helpers@0.5.11': resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==} @@ -5628,9 +5620,6 @@ packages: '@types/jest@29.5.12': resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} - '@types/js-yaml@4.0.9': - resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} - '@types/jsdoc-to-markdown@7.0.6': resolution: {integrity: sha512-FB/oOam8P4WoGbkfLu6ciektQhqlVuL4VsbrGJp3/YDAlRGcoiOhXDnnPL73TtHYMsDZ7NHYhCGJn4hu0TZdHg==} @@ -5691,6 +5680,9 @@ packages: '@types/node@14.18.33': resolution: {integrity: sha512-qelS/Ra6sacc4loe/3MSjXNL1dNQ/GjxNHVzuChwMfmk7HuycRLVQN2qNY3XahK+fZc5E2szqQSKUyAF0E+2bg==} + '@types/node@16.18.11': + resolution: {integrity: sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA==} + '@types/node@16.18.60': resolution: {integrity: sha512-ZUGPWx5vKfN+G2/yN7pcSNLkIkXEvlwNaJEd4e0ppX7W2S8XAkdc/37hM4OUNJB9sa0p12AOvGvxL4JCPiz9DA==} @@ -5739,6 +5731,9 @@ packages: '@types/react@18.3.2': resolution: {integrity: sha512-Btgg89dAnqD4vV7R3hlwOxgqobUQKgx3MmrQRi0yYbs/P0ym8XozIAlkqVilPqHQwXs4e9Tf63rrCgl58BcO4w==} + '@types/react@18.3.3': + resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} + '@types/resolve@1.20.6': resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} @@ -6075,17 +6070,31 @@ packages: react: optional: true + '@vercel/analytics@1.3.0': + resolution: {integrity: sha512-iAeQhNwL2kGUVbx6Z43uT+PG19Bn7IUOGWB9Z4jmWAyL/Jn6v+KHmZj0fSFCcxN1YXU9xkjKpuD/6YlJmzN06A==} + peerDependencies: + next: '>= 13' + react: ^18 || ^19 + peerDependenciesMeta: + next: + optional: true + react: + optional: true + '@vercel/blob@0.22.3': resolution: {integrity: sha512-l0t2KhbOO/I8ZNOl9zypYf1NE0837aO4/CPQNGR/RAxtj8FpdYKjhyUADUXj2gERLQmnhun+teaVs/G7vZJ/TQ==} engines: {node: '>=16.14'} - '@vercel/blob@0.23.2': - resolution: {integrity: sha512-wejIdxb/CJkQpV18/TgGDuQFzZ2BCV+T2F786bmtt7LytmJmfhH8wHuJ70odOyvmiO3RIL57ht5GLZmeV8jqiA==} + '@vercel/blob@0.23.3': + resolution: {integrity: sha512-6Zr/9twzWpMJp4ap1fwLIcKkehju6UR8D1BK2+QUfGPxlXQBusxwBJzf3TqATCSceeShaJsALHaSDwuKDFpoTw==} engines: {node: '>=16.14'} '@vercel/build-utils@7.11.0': resolution: {integrity: sha512-UFrx1hNIjNJJkd0NZrYfaOrmcWhQmrVsbKe9o3L9jX9J1iufG685wIZ9tFCKKC0Fa2HWbNDNzNxrE5SCAS2lyA==} + '@vercel/build-utils@8.2.0': + resolution: {integrity: sha512-yDr/zp/SX45mIy6DO8IRD6hmEs6gIr33/ajT3y8efUt/crQvgNtaSkbx9ubbwkR4RV/qKL213v6kXxj+EpsnlQ==} + '@vercel/edge-config-fs@0.1.0': resolution: {integrity: sha512-NRIBwfcS0bUoUbRWlNGetqjvLSwgYH/BqKqDN7vK1g32p7dN96k0712COgaz6VFizAm9b0g6IG6hR6+hc0KCPg==} @@ -6098,6 +6107,15 @@ packages: '@opentelemetry/api': optional: true + '@vercel/edge-config@1.1.1': + resolution: {integrity: sha512-tZM3bTFoEJNXs3hJbKHvpZton4BvWbxD1+0HJJrdDGLX3nCO9O778mMUBf6NmI33fB8iM8PLLQiKC6RpiBjiBg==} + engines: {node: '>=14.6'} + peerDependencies: + '@opentelemetry/api': ^1.7.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@vercel/error-utils@2.0.2': resolution: {integrity: sha512-Sj0LFafGpYr6pfCqrQ82X6ukRl5qpmVrHM/191kNYFqkkB9YkjlMAj6QcEsvCG259x4QZ7Tya++0AB85NDPbKQ==} @@ -6111,6 +6129,9 @@ packages: '@vercel/gatsby-plugin-vercel-builder@2.0.24': resolution: {integrity: sha512-b02ifu8WCmz4ARjkC9AyuOxpXa0Tmh0uIbDDYvyvDRpvohQY53eC3sXKVOejnmQbi9KojkaJsQRvMTBRh9BUHA==} + '@vercel/gatsby-plugin-vercel-builder@2.0.31': + resolution: {integrity: sha512-p0ggHYNe8tMVlsBYVHwjavLpOtkxbw+VN1ywzsIcqnwJpYi9HSgbm+zRxmNqz/4autn6KZCmgEcWanhjhMaH5Q==} + '@vercel/go@3.1.1': resolution: {integrity: sha512-mrzomNYltxkjvtUmaYry5YEyvwTz6c/QQHE5Gr/pPGRIniUiP6T6OFOJ49RBN7e6pRXaNzHPVuidiuBhvHh5+Q==} @@ -6120,14 +6141,25 @@ packages: '@vercel/next@4.2.0': resolution: {integrity: sha512-2KSXdPHpfPWaf0tKTBxOWvdc8e9TPNARjmqtgYUsrl1TVaBNFsZ0GV0kWaVLEw4o7CWfREt8ZY064sNVb1BcAQ==} + '@vercel/next@4.2.13': + resolution: {integrity: sha512-DMOPezCeKb6r4hJ9WM4FO+7FGNwNgCF6RHoVZe5FmHI3C8mvzQqzPgausvXQq33l1YR5t81xDZpJRqprYEsIgg==} + '@vercel/nft@0.26.4': resolution: {integrity: sha512-j4jCOOXke2t8cHZCIxu1dzKLHLcFmYzC3yqAK6MfZznOL1QIJKd0xcFsXK3zcqzU7ScsE2zWkiMMNHGMHgp+FA==} engines: {node: '>=16'} hasBin: true + '@vercel/nft@0.27.0': + resolution: {integrity: sha512-W5pValyhToK9hbgEUAM6sLRUIl1I++RsFnXKHXtND50P1+vZ+OYPCzq1OOz0Ok6ghK6aOwae8G/rEAXkLedC+w==} + engines: {node: '>=16'} + hasBin: true + '@vercel/node@3.0.26': resolution: {integrity: sha512-PoyacnoylwpE3+7RFUVHJlbPqtneTCEJVXXx4n8g9ARgUDSRSCwFpJOhiFQon2sS2YtfCzsJa29Z9dAZQedDcQ==} + '@vercel/node@3.1.5': + resolution: {integrity: sha512-1LVqdL/HKrfuLGIWEHm7O/zA6admKRClIuJOVsasvW0PHrrwUUfcoKvgHj/sH6HUEzgE9WIelqFLe8/j/tzA4A==} + '@vercel/og@0.6.2': resolution: {integrity: sha512-OTe0KE37F5Y2eTys6eMnfopC+P4qr2ooXUTFyFPTplYSPwowmFk/HLD1FXtbKLjqsIH0SgekcJWad+C5uX4nkg==} engines: {node: '>=16'} @@ -6139,21 +6171,36 @@ packages: '@vercel/python@4.1.1': resolution: {integrity: sha512-EbAdKOZ0hPd5b59tLt7R3RQK1azNvuZTrCFRAVHNjqcIHNCmrSvjag5zBGn7Memkk8qWb3+CgBw9K/3LJKei0w==} + '@vercel/python@4.2.0': + resolution: {integrity: sha512-oubkmRRxWQJGGYFq5Q49/2c94aHKCYXB+DkdtaW55syQ9N0LVBXCnCMZ4ZatSrSI18d9mMoDSx3xi4gtByy9NA==} + '@vercel/redwood@2.0.8': resolution: {integrity: sha512-hAu7SYXDt+W7kscjtQ5NsuNflXH+QB5/xAdA6FRSS/e41lG6Xq6pqLMDobqq4BR7E2PpppVDw2DUx9KzPNoeEw==} + '@vercel/redwood@2.0.9': + resolution: {integrity: sha512-zv0uJa+XtCJ15TdfCI5ybZM1hS3OBl28idCfN3vtWR+g5HjDSW8acYOzRw2Xy7wM1f+Fje1/Nx2AdYjCM4TWTA==} + '@vercel/remix-builder@2.1.5': resolution: {integrity: sha512-VaDhsNg/1lZ7h6GJnaykActeZTRtFQz45qDNwKrHM+Nw5/ocwTun9sCJZY/ziECUNuQEJv95z3wUDhNweG+/9w==} + '@vercel/remix-builder@2.1.6': + resolution: {integrity: sha512-n2gnNW9HTWlTuEwTbtVI9GRHoQi/2kPu44l0zvFDw8GlsswW0/qJPvr8SFG83FDylQcafvW8LUWO9oXefuVrFA==} + '@vercel/routing-utils@3.1.0': resolution: {integrity: sha512-Ci5xTjVTJY/JLZXpCXpLehMft97i9fH34nu9PGav6DtwkVUF6TOPX86U0W0niQjMZ5n6/ZP0BwcJK2LOozKaGw==} '@vercel/ruby@2.0.5': resolution: {integrity: sha512-Gfm8HDech41vf+EPleRzgoJUnDTJerKgckMm4KX0JT860gV9XBMSOWYH7eMWHmMza104+HRCWL7wT6OlpftF2Q==} + '@vercel/ruby@2.1.0': + resolution: {integrity: sha512-UZYwlSEEfVnfzTmgkD+kxex9/gkZGt7unOWNyWFN7V/ZnZSsGBUgv6hXLnwejdRi3EztgRQEBd1kUKlXdIeC0Q==} + '@vercel/static-build@2.4.6': resolution: {integrity: sha512-LCmEBXRse7Bt46fo4OUzkq6RL1Q26oMWvmbFsW5uKi6bkT8asU1U5/zw9PQTeFQjGRL2vkUi22fGXF6XHuuqsA==} + '@vercel/static-build@2.5.9': + resolution: {integrity: sha512-jnFwCvRlBsSg8vDPahuSOvo3LvmTCzlNi6ES3fy+kaXxUK/xxDA8BGssDvWRLJIGSHNjfi6M92zGy15vjpG92A==} + '@vercel/static-config@3.0.0': resolution: {integrity: sha512-2qtvcBJ1bGY0dYGYh3iM7yGKkk971FujLEDXzuW5wcZsPr1GSEjO/w2iSr3qve6nDDtBImsGoDEnus5FI4+fIw==} @@ -6409,6 +6456,7 @@ packages: are-we-there-yet@1.1.7: resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==} + deprecated: This package is no longer supported. are-we-there-yet@2.0.0: resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} @@ -7086,6 +7134,9 @@ packages: resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} engines: {node: '>=0.10.0'} + collapse-white-space@2.1.0: + resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} + collect-all@1.0.4: resolution: {integrity: sha512-RKZhRwJtJEP5FWul+gkSMEnaK6H3AGPTTWOiRimCcs+rc/OmQE3Yhy1Q7A7KsdkG3ZXVdZq68Y6ONSdvkeEcKA==} engines: {node: '>=0.10.0'} @@ -8295,9 +8346,15 @@ packages: estree-util-attach-comments@2.1.1: resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==} + estree-util-attach-comments@3.0.0: + resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} + estree-util-build-jsx@2.2.2: resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==} + estree-util-build-jsx@3.0.1: + resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} + estree-util-is-identifier-name@1.1.0: resolution: {integrity: sha512-OVJZ3fGGt9By77Ix9NhaRbzfbDV/2rx9EP7YIDJTmsZSEc5kYn2vWcNccYyahJL2uAQZK2a5Or2i0wtIKTPoRQ==} @@ -8310,6 +8367,9 @@ packages: estree-util-to-js@1.2.0: resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==} + estree-util-to-js@2.0.0: + resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} + estree-util-value-to-estree@1.3.0: resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==} engines: {node: '>=12.0.0'} @@ -8606,6 +8666,7 @@ packages: gauge@2.7.4: resolution: {integrity: sha512-14x4kjc6lkD3ltw589k0NrPD6cCNTD6CWoVUNpB85+DrtONoZn+Rug6xZU5RvSC4+TZPxA5AnBibQYAvZn41Hg==} + deprecated: This package is no longer supported. gauge@3.0.2: resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} @@ -8929,9 +8990,15 @@ packages: hast-util-to-estree@2.3.3: resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==} + hast-util-to-estree@3.1.0: + resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} + hast-util-to-html@8.0.4: resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} + hast-util-to-jsx-runtime@2.3.0: + resolution: {integrity: sha512-H/y0+IWPdsLLS738P8tDnrQ8Z+dj12zQQ6WC11TIM21C8WFVoIxcqWXf2H3hiTVZjF1AWqoimGwrTWecWrnmRQ==} + hast-util-to-parse5@7.1.0: resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} @@ -8944,6 +9011,9 @@ packages: hast-util-whitespace@2.0.1: resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} + hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + hastscript@7.2.0: resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} @@ -9132,6 +9202,9 @@ packages: inline-style-parser@0.1.1: resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + inline-style-parser@0.2.3: + resolution: {integrity: sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g==} + inquirer@7.3.3: resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} engines: {node: '>=8.0.0'} @@ -9671,8 +9744,8 @@ packages: jju@1.4.0: resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} - jotai@2.8.0: - resolution: {integrity: sha512-yZNMC36FdLOksOr8qga0yLf14miCJlEThlp5DeFJNnqzm2+ZG7wLcJzoOyij5K6U6Xlc5ljQqPDlJRgqW0Y18g==} + jotai@2.8.1: + resolution: {integrity: sha512-Gmk5Y3yJL/vN5S0rQ6AaWpXH5Q+HBGHThMHXfylVzXGVuO8YxPRtZf8Y9XYvl+h7ZMQXoHNdFi37vNsJFsiszQ==} engines: {node: '>=12.20.0'} peerDependencies: '@types/react': '>=17.0.0' @@ -10048,8 +10121,8 @@ packages: resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} engines: {node: '>=12'} - lucide-react@0.378.0: - resolution: {integrity: sha512-u6EPU8juLUk9ytRcyapkWI18epAv3RU+6+TC23ivjR0e+glWKBobFeSgRwOIJihzktILQuy6E0E80P2jVTDR5g==} + lucide-react@0.379.0: + resolution: {integrity: sha512-KcdeVPqmhRldldAAgptb8FjIunM2x2Zy26ZBh1RsEUcdLIvsEmbcw7KpzFYUy5BbpGeWhPu9Z9J5YXfStiXwhg==} peerDependencies: react: ^16.5.1 || ^17.0.0 || ^18.0.0 @@ -10114,6 +10187,10 @@ packages: resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} engines: {node: '>=0.10.0'} + markdown-extensions@2.0.0: + resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} + engines: {node: '>=16'} + markdown-it-anchor@8.6.7: resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==} peerDependencies: @@ -10144,6 +10221,9 @@ packages: mdast-util-find-and-replace@2.2.2: resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} + mdast-util-find-and-replace@3.0.1: + resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} + mdast-util-from-markdown@0.8.5: resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==} @@ -10159,21 +10239,39 @@ packages: mdast-util-gfm-autolink-literal@1.0.3: resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} + mdast-util-gfm-autolink-literal@2.0.0: + resolution: {integrity: sha512-FyzMsduZZHSc3i0Px3PQcBT4WJY/X/RCtEJKuybiC6sjPqLv7h1yqAkmILZtuxMSsUyaLUWNp71+vQH2zqp5cg==} + mdast-util-gfm-footnote@1.0.2: resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} + mdast-util-gfm-footnote@2.0.0: + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} + mdast-util-gfm-strikethrough@1.0.3: resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + mdast-util-gfm-table@1.0.7: resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + mdast-util-gfm-task-list-item@1.0.2: resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + mdast-util-gfm@2.0.2: resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} + mdast-util-gfm@3.0.0: + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} + mdast-util-mdx-expression@1.3.2: resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} @@ -10293,24 +10391,45 @@ packages: micromark-extension-gfm-autolink-literal@1.0.5: resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} + micromark-extension-gfm-autolink-literal@2.0.0: + resolution: {integrity: sha512-rTHfnpt/Q7dEAK1Y5ii0W8bhfJlVJFnJMHIPisfPK3gpVNuOP0VnRl96+YJ3RYWV/P4gFeQoGKNlT3RhuvpqAg==} + micromark-extension-gfm-footnote@1.1.2: resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} + micromark-extension-gfm-footnote@2.0.0: + resolution: {integrity: sha512-6Rzu0CYRKDv3BfLAUnZsSlzx3ak6HAoI85KTiijuKIz5UxZxbUI+pD6oHgw+6UtQuiRwnGRhzMmPRv4smcz0fg==} + micromark-extension-gfm-strikethrough@1.0.7: resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} + micromark-extension-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-c3BR1ClMp5fxxmwP6AoOY2fXO9U8uFMKs4ADD66ahLTNcwzSCyRVU4k7LPV5Nxo/VJiR4TdzxRQY2v3qIUceCw==} + micromark-extension-gfm-table@1.0.7: resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} + micromark-extension-gfm-table@2.0.0: + resolution: {integrity: sha512-PoHlhypg1ItIucOaHmKE8fbin3vTLpDOUg8KAr8gRCF1MOZI9Nquq2i/44wFvviM4WuxJzc3demT8Y3dkfvYrw==} + micromark-extension-gfm-tagfilter@1.0.2: resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + micromark-extension-gfm-task-list-item@1.0.5: resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} + micromark-extension-gfm-task-list-item@2.0.1: + resolution: {integrity: sha512-cY5PzGcnULaN5O7T+cOzfMoHjBW7j+T9D2sucA5d/KbsBTPcYdebm9zUd9zzdgJGCwahV+/W78Z3nbulBYVbTw==} + micromark-extension-gfm@2.0.3: resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + micromark-extension-mdx-expression@1.0.8: resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==} @@ -10670,12 +10789,12 @@ packages: react: '*' react-dom: '*' - next-mdx-remote@4.4.1: - resolution: {integrity: sha512-1BvyXaIou6xy3XoNF4yaMZUCb6vD2GTAa5ciOa6WoO+gAUTYsb1K4rI/HSC2ogAWLrb/7VSV52skz07vOzmqIQ==} - engines: {node: '>=14', npm: '>=7'} + next-mdx-remote-client@1.0.3: + resolution: {integrity: sha512-svPnAFB4VIEZEJabcJUU8uRDCCo1aUQOR71C0yWKeIqn08KnqWdKCDVtpu4Lazy0ORZsFn/xuZWxXanryLLvmw==} + engines: {node: '>=18.17.0'} peerDependencies: - react: '>=16.x <=18.x' - react-dom: '>=16.x <=18.x' + react: ^18.2.0 + react-dom: ^18.2.0 next-themes@0.3.0: resolution: {integrity: sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==} @@ -10701,16 +10820,16 @@ packages: sass: optional: true - next@14.3.0-canary.70: - resolution: {integrity: sha512-QQ977WSvBLVRWbRyiC1vlRd+rFd5IUuWTIwJ/+2hSbczz8B9HAFgYBY8mSIWa3n8c5Q2AgkR5fiGNJvhBtk3ww==} + next@15.0.0-rc.0: + resolution: {integrity: sha512-IWcCvxUSCAuOK5gig4+9yiyt/dLKpIa+WT01Qcx4CBE4TtwJljyTDnCVVn64jDZ4qmSzsaEYXpb4DTI8qbk03A==} engines: {node: '>=18.17.0'} hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 '@playwright/test': ^1.41.2 babel-plugin-react-compiler: '*' - react: 19.0.0-beta-04b058868c-20240508 - react-dom: 19.0.0-beta-04b058868c-20240508 + react: 19.0.0-rc-f994737d14-20240522 + react-dom: 19.0.0-rc-f994737d14-20240522 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': @@ -10839,6 +10958,7 @@ packages: npmlog@4.1.2: resolution: {integrity: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==} + deprecated: This package is no longer supported. npmlog@5.0.1: resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} @@ -10974,8 +11094,8 @@ packages: overlayscrollbars: ^2.0.0 react: '>=16.8.0' - overlayscrollbars@2.8.0: - resolution: {integrity: sha512-Ja1I2hHym0Oo3hBBj6CvalY3XEYqgrIhTvQoEGJggmeh7OruHY5GTvkOmLjRFDD22FGd4Yu8fpxkdg3fY+IILA==} + overlayscrollbars@2.8.2: + resolution: {integrity: sha512-24OXYxnOacvNqGHBdtbpojbYcJUxAXMDjfQk8MTXzLcTTCQ4yqErlh4M0eCw2wwe/511qvRIE2f8fHsLDi3i5Q==} p-event@5.0.1: resolution: {integrity: sha512-dd589iCQ7m1L0bmC5NLlVYfy3TbBEsMUfWx9PyAgPeIcFZ/E2yaTZ4Rz4MiBmmJShviiftHVXOqfnfzJ6kyMrQ==} @@ -11563,14 +11683,14 @@ packages: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true - react-aria-components@1.2.0: - resolution: {integrity: sha512-Cqr1tewYe/SgNcVOptqYdm0PPAV0Xsvd2uzWX7EqJsPGHvKStl/mh2a3Ebe6dYuoOddLsqqj36DdiLC5Pb5okw==} + react-aria-components@1.2.1: + resolution: {integrity: sha512-iGIdDjbTyLLn0/tGUyBQxxu+E1bw4/H4AU89d0cRcu8yIdw6MXG29YElmRHn0ugiyrERrk/YQALihstnns5kRQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-aria@3.33.0: - resolution: {integrity: sha512-aKn9SQn5TMlmpUsIjfRMtse2v3okGcSo+gWLGrj9JVjxs4PL4FSU4mclj4Bg2JUXZTGgfLSq6PWUBzQ4gIP2zg==} + react-aria@3.33.1: + resolution: {integrity: sha512-hFC3K/UA+90Krlx2IgRTgzFbC6FSPi4pUwHT+STperPLK+cTEHkI+3Lu0YYwQSBatkgxnIv9+GtFuVbps2kROw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -11648,8 +11768,8 @@ packages: '@types/react': optional: true - react-stately@3.31.0: - resolution: {integrity: sha512-G6y7t6qpP3LU4mLM2RlRTgdW5eiZrR2yB0XZbLo8qVplazxyRzlDJRBdE8OBTpw2SO1q5Auub3NOTH3vH0qCHg==} + react-stately@3.31.1: + resolution: {integrity: sha512-wuq673NHkYSdoceGryjtMJJvB9iQgyDkQDsnTN0t2v91pXjGDsN/EcOvnUrxXSBtY9eLdIw74R54z9GX5cJNEg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -11820,10 +11940,16 @@ packages: remark-gfm@3.0.1: resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} + remark-gfm@4.0.0: + resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} + remark-mdx-frontmatter@1.1.1: resolution: {integrity: sha512-7teX9DW4tI2WZkXS4DBxneYSY7NHiXl4AKdWDO9LXVweULlCT8OPWsOjLEnMIXViN1j+QcY8mfbq3k0EK6x3uA==} engines: {node: '>=12.2.0'} + remark-mdx-remove-esm@1.1.0: + resolution: {integrity: sha512-oN3F9QRuPKSdzZi+wvEodBVjKwya63sl403pWzJvm0+c503iUjCDR+JAnP3Ho/4205IWbQ2NujPQi/B9kU6ZrA==} + remark-mdx@2.3.0: resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==} @@ -12049,6 +12175,10 @@ packages: sentence-case@2.1.1: resolution: {integrity: sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==} + serialize-error@11.0.3: + resolution: {integrity: sha512-2G2y++21dhj2R7iHAdd0FIzjGwuKZld+7Pl/bTU6YIkrC2ZMbVUjm+luj6A6V34Rv9XfKJDKpTWu9W4Gse1D9g==} + engines: {node: '>=14.16'} + serve-static@1.15.0: resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} engines: {node: '>= 0.8.0'} @@ -12423,6 +12553,9 @@ packages: style-to-object@0.4.4: resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} + style-to-object@1.0.6: + resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} + styled-jsx@5.1.1: resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} engines: {node: '>= 12.0.0'} @@ -13098,6 +13231,9 @@ packages: unist-util-remove-position@5.0.0: resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + unist-util-remove@4.0.0: + resolution: {integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==} + unist-util-stringify-position@2.0.3: resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} @@ -13279,6 +13415,11 @@ packages: engines: {node: '>= 16'} hasBin: true + vercel@34.2.2: + resolution: {integrity: sha512-8JGdsyJ7kxbmp74fqgD+lIP7/gPs51aYoISdckgvopKUsWUBkYe0HzoFvutW6L3ODHmSOoNVXaOmqUjOMtPMHQ==} + engines: {node: '>= 16'} + hasBin: true + verror@1.10.0: resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} engines: {'0': node >=0.6.0} @@ -13286,8 +13427,8 @@ packages: vfile-location@4.1.0: resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} - vfile-matter@3.0.1: - resolution: {integrity: sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==} + vfile-matter@5.0.0: + resolution: {integrity: sha512-jhPSqlj8hTSkTXOqyxbUeZAFFVq/iwu/jukcApEqc/7DOidaAth6rDc0Zgg0vWpzUnWkwFP7aK28l6nBmxMqdQ==} vfile-message@3.1.4: resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} @@ -13831,7 +13972,7 @@ snapshots: '@babel/generator@7.2.0': dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 jsesc: 2.5.2 lodash: 4.17.21 source-map: 0.5.7 @@ -16163,22 +16304,22 @@ snapshots: '@img/sharp-win32-x64@0.33.4': optional: true - '@internationalized/date@3.5.3': + '@internationalized/date@3.5.4': dependencies: - '@swc/helpers': 0.5.5 + '@swc/helpers': 0.5.11 - '@internationalized/message@3.1.3': + '@internationalized/message@3.1.4': dependencies: - '@swc/helpers': 0.5.5 + '@swc/helpers': 0.5.11 intl-messageformat: 10.5.11 - '@internationalized/number@3.5.2': + '@internationalized/number@3.5.3': dependencies: - '@swc/helpers': 0.5.5 + '@swc/helpers': 0.5.11 - '@internationalized/string@3.2.2': + '@internationalized/string@3.2.3': dependencies: - '@swc/helpers': 0.5.5 + '@swc/helpers': 0.5.11 '@ioredis/commands@1.2.0': {} @@ -16560,18 +16701,46 @@ snapshots: transitivePeerDependencies: - supports-color - '@mdx-js/react@2.3.0(react@19.0.0-rc-915b914b3a-20240515)': + '@mdx-js/mdx@3.0.1': dependencies: - '@types/mdx': 2.0.10 - '@types/react': 18.3.2 - react: 19.0.0-rc-915b914b3a-20240515 + '@types/estree': 1.0.5 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdx': 2.0.13 + collapse-white-space: 2.1.0 + devlop: 1.1.0 + estree-util-build-jsx: 3.0.1 + estree-util-is-identifier-name: 3.0.0 + estree-util-to-js: 2.0.0 + estree-walker: 3.0.3 + hast-util-to-estree: 3.1.0 + hast-util-to-jsx-runtime: 2.3.0 + markdown-extensions: 2.0.0 + periscopic: 3.1.0 + remark-mdx: 3.0.1 + remark-parse: 11.0.0 + remark-rehype: 11.1.0 + source-map: 0.7.4 + unified: 11.0.4 + unist-util-position-from-estree: 2.0.0 + unist-util-stringify-position: 4.0.0 + unist-util-visit: 5.0.0 + vfile: 6.0.1 + transitivePeerDependencies: + - supports-color - '@mdx-js/react@3.0.1(@types/react@18.3.2)(react@18.3.1)': + '@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@types/mdx': 2.0.13 - '@types/react': 18.3.2 + '@types/react': 18.3.3 react: 18.3.1 + '@mdx-js/react@3.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + dependencies: + '@types/mdx': 2.0.13 + '@types/react': 18.3.3 + react: 19.0.0-rc-915b914b3a-20240515 + '@microsoft/api-extractor-model@7.28.13(@types/node@16.18.60)': dependencies: '@microsoft/tsdoc': 0.14.2 @@ -16733,7 +16902,7 @@ snapshots: '@next/env@14.2.3': {} - '@next/env@14.3.0-canary.70': {} + '@next/env@15.0.0-rc.0': {} '@next/eslint-plugin-next@14.2.1': dependencies: @@ -16742,55 +16911,55 @@ snapshots: '@next/swc-darwin-arm64@14.2.3': optional: true - '@next/swc-darwin-arm64@14.3.0-canary.70': + '@next/swc-darwin-arm64@15.0.0-rc.0': optional: true '@next/swc-darwin-x64@14.2.3': optional: true - '@next/swc-darwin-x64@14.3.0-canary.70': + '@next/swc-darwin-x64@15.0.0-rc.0': optional: true '@next/swc-linux-arm64-gnu@14.2.3': optional: true - '@next/swc-linux-arm64-gnu@14.3.0-canary.70': + '@next/swc-linux-arm64-gnu@15.0.0-rc.0': optional: true '@next/swc-linux-arm64-musl@14.2.3': optional: true - '@next/swc-linux-arm64-musl@14.3.0-canary.70': + '@next/swc-linux-arm64-musl@15.0.0-rc.0': optional: true '@next/swc-linux-x64-gnu@14.2.3': optional: true - '@next/swc-linux-x64-gnu@14.3.0-canary.70': + '@next/swc-linux-x64-gnu@15.0.0-rc.0': optional: true '@next/swc-linux-x64-musl@14.2.3': optional: true - '@next/swc-linux-x64-musl@14.3.0-canary.70': + '@next/swc-linux-x64-musl@15.0.0-rc.0': optional: true '@next/swc-win32-arm64-msvc@14.2.3': optional: true - '@next/swc-win32-arm64-msvc@14.3.0-canary.70': + '@next/swc-win32-arm64-msvc@15.0.0-rc.0': optional: true '@next/swc-win32-ia32-msvc@14.2.3': optional: true - '@next/swc-win32-ia32-msvc@14.3.0-canary.70': + '@next/swc-win32-ia32-msvc@15.0.0-rc.0': optional: true '@next/swc-win32-x64-msvc@14.2.3': optional: true - '@next/swc-win32-x64-msvc@14.3.0-canary.70': + '@next/swc-win32-x64-msvc@15.0.0-rc.0': optional: true '@nodelib/fs.scandir@2.1.5': @@ -17010,21 +17179,21 @@ snapshots: '@types/react': 18.3.2 '@types/react-dom': 18.3.0 - '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.23.9 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': @@ -17047,12 +17216,19 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.9 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.23.9 react: 19.0.0-rc-915b914b3a-20240515 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@radix-ui/react-context@1.0.1(@types/react@18.3.2)(react@18.3.1)': dependencies: @@ -17061,57 +17237,64 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - '@radix-ui/react-context@1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.9 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.23.9 react: 19.0.0-rc-915b914b3a-20240515 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 - '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.2)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.2)(react@18.3.1) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.2)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@18.3.1) aria-hidden: 1.2.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.5.5(@types/react@18.3.2)(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.24.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-context': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-id': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) aria-hidden: 1.2.3 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - react-remove-scroll: 2.5.5(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 '@radix-ui/react-direction@1.0.1(@types/react@18.3.2)(react@18.3.1)': @@ -17135,32 +17318,32 @@ snapshots: '@types/react': 18.3.2 '@types/react-dom': 18.3.0 - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.2)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.24.0 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.2)(react@18.3.1)': @@ -17170,12 +17353,19 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.24.0 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.24.0 react: 19.0.0-rc-915b914b3a-20240515 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -17189,28 +17379,28 @@ snapshots: '@types/react': 18.3.2 '@types/react-dom': 18.3.0 - '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.24.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 '@radix-ui/react-id@1.0.1(@types/react@18.3.2)(react@18.3.1)': @@ -17221,13 +17411,21 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - '@radix-ui/react-id@1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.9 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + dependencies: + '@babel/runtime': 7.23.9 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@radix-ui/react-popper@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -17258,46 +17456,46 @@ snapshots: '@types/react': 18.3.2 '@types/react-dom': 18.3.0 - '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.0 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.24.0 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.9 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 - '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.23.9 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': @@ -17310,14 +17508,24 @@ snapshots: '@types/react': 18.3.2 '@types/react-dom': 18.3.0 - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.0 - '@radix-ui/react-slot': 1.0.2(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react-dom': 18.3.0 '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': @@ -17386,13 +17594,21 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - '@radix-ui/react-slot@1.0.2(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + dependencies: + '@babel/runtime': 7.24.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -17445,12 +17661,19 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.9 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.23.9 react: 19.0.0-rc-915b914b3a-20240515 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.2)(react@18.3.1)': dependencies: @@ -17460,13 +17683,21 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.9 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + dependencies: + '@babel/runtime': 7.23.9 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.2)(react@18.3.1)': dependencies: @@ -17476,13 +17707,21 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': + dependencies: + '@babel/runtime': 7.24.4 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.2)(react@18.3.1)': dependencies: @@ -17491,12 +17730,19 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515)': + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@18.3.1)': + dependencies: + '@babel/runtime': 7.23.9 + react: 18.3.1 + optionalDependencies: + '@types/react': 18.3.3 + + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.23.9 react: 19.0.0-rc-915b914b3a-20240515 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.2)(react@18.3.1)': dependencies: @@ -17535,541 +17781,541 @@ snapshots: dependencies: '@babel/runtime': 7.24.4 - '@react-aria/breadcrumbs@3.5.12(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/breadcrumbs@3.5.13(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/link': 3.7.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/breadcrumbs': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/link': 3.7.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/breadcrumbs': 3.7.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/button@3.9.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/button@3.9.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/toggle': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/toggle': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/calendar@3.5.7(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/calendar@3.5.8(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@internationalized/date': 3.5.3 - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/calendar': 3.5.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/calendar': 3.4.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@internationalized/date': 3.5.4 + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/live-announcer': 3.3.4 + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/calendar': 3.5.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/calendar': 3.4.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/checkbox@3.14.2(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/checkbox@3.14.3(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/form': 3.0.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/label': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/toggle': 3.10.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/checkbox': 3.6.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/toggle': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/checkbox': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/form': 3.0.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/label': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/toggle': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/checkbox': 3.6.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/toggle': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/checkbox': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/color@3.0.0-beta.32(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/color@3.0.0-beta.33(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/numberfield': 3.11.2(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/slider': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/spinbutton': 3.6.4(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/textfield': 3.14.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/visually-hidden': 3.8.11(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/color': 3.6.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/color': 3.0.0-beta.24(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/numberfield': 3.11.3(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/slider': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/spinbutton': 3.6.5(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/textfield': 3.14.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/visually-hidden': 3.8.12(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/color': 3.6.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/color': 3.0.0-beta.25(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/combobox@3.9.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/combobox@3.9.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/listbox': 3.12.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/menu': 3.14.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/overlays': 3.22.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/selection': 3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/textfield': 3.14.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/combobox': 3.8.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/combobox': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/listbox': 3.12.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/live-announcer': 3.3.4 + '@react-aria/menu': 3.14.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/textfield': 3.14.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/combobox': 3.8.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/combobox': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/datepicker@3.10.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/datepicker@3.10.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@internationalized/date': 3.5.3 - '@internationalized/number': 3.5.2 - '@internationalized/string': 3.2.2 - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/form': 3.0.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/label': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/spinbutton': 3.6.4(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/datepicker': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/calendar': 3.4.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/datepicker': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/dialog': 3.5.9(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@internationalized/date': 3.5.4 + '@internationalized/number': 3.5.3 + '@internationalized/string': 3.2.3 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/form': 3.0.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/label': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/spinbutton': 3.6.5(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/datepicker': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/calendar': 3.4.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/datepicker': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/dialog': 3.5.10(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/dialog@3.5.13(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/dialog@3.5.14(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/overlays': 3.22.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/dialog': 3.5.9(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/dialog': 3.5.10(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/dnd@3.6.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/dnd@3.6.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@internationalized/string': 3.2.2 - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/overlays': 3.22.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/dnd': 3.3.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@internationalized/string': 3.2.3 + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/live-announcer': 3.3.4 + '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/dnd': 3.3.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/focus@3.17.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/focus@3.17.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 clsx: 2.1.0 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/form@3.0.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/form@3.0.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/grid@3.9.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/grid@3.9.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/selection': 3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/grid': 3.8.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/selection': 3.15.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/virtualizer': 3.7.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/checkbox': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/grid': 3.2.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/live-announcer': 3.3.4 + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/grid': 3.8.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/selection': 3.15.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/virtualizer': 3.7.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/checkbox': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/grid': 3.2.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/gridlist@3.8.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/gridlist@3.8.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/grid': 3.9.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/selection': 3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/list': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/tree': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/grid': 3.9.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/list': 3.10.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/tree': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n@3.11.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/i18n@3.11.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@internationalized/date': 3.5.3 - '@internationalized/message': 3.1.3 - '@internationalized/number': 3.5.2 - '@internationalized/string': 3.2.2 - '@react-aria/ssr': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@internationalized/date': 3.5.4 + '@internationalized/message': 3.1.4 + '@internationalized/number': 3.5.3 + '@internationalized/string': 3.2.3 + '@react-aria/ssr': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/interactions@3.21.2(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/interactions@3.21.3(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/ssr': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/ssr': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/label@3.7.7(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/label@3.7.8(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/link@3.7.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/link@3.7.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/link': 3.5.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/link': 3.5.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/listbox@3.12.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/listbox@3.12.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/label': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/selection': 3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/list': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/listbox': 3.4.8(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/label': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/list': 3.10.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/listbox': 3.4.9(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/live-announcer@3.3.3': + '@react-aria/live-announcer@3.3.4': dependencies: - '@swc/helpers': 0.5.5 + '@swc/helpers': 0.5.11 - '@react-aria/menu@3.14.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/menu@3.14.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/overlays': 3.22.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/selection': 3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/menu': 3.7.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/tree': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/menu': 3.9.8(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/menu': 3.7.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/tree': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/menu': 3.9.9(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/meter@3.4.12(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/meter@3.4.13(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/progress': 3.4.12(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/meter': 3.4.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/progress': 3.4.13(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/meter': 3.4.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/numberfield@3.11.2(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/numberfield@3.11.3(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/spinbutton': 3.6.4(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/textfield': 3.14.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/numberfield': 3.9.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/numberfield': 3.8.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/spinbutton': 3.6.5(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/textfield': 3.14.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/numberfield': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/numberfield': 3.8.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/overlays@3.22.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/overlays@3.22.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/ssr': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/visually-hidden': 3.8.11(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/overlays': 3.6.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/overlays': 3.8.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/ssr': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/visually-hidden': 3.8.12(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/overlays': 3.6.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/overlays': 3.8.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/progress@3.4.12(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/progress@3.4.13(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/label': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/progress': 3.5.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/label': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/progress': 3.5.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/radio@3.10.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/radio@3.10.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/form': 3.0.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/label': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/radio': 3.10.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/radio': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/form': 3.0.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/label': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/radio': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/radio': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/searchfield@3.7.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/searchfield@3.7.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/textfield': 3.14.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/searchfield': 3.5.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/searchfield': 3.5.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/textfield': 3.14.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/searchfield': 3.5.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/searchfield': 3.5.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/select@3.14.4(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/select@3.14.5(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/form': 3.0.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/label': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/listbox': 3.12.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/menu': 3.14.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/selection': 3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/visually-hidden': 3.8.11(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/select': 3.6.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/select': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/form': 3.0.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/label': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/listbox': 3.12.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/menu': 3.14.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/visually-hidden': 3.8.12(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/select': 3.6.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/select': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/selection@3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/selection@3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/selection': 3.15.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/selection': 3.15.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/separator@3.3.12(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/separator@3.3.13(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/slider@3.7.7(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/slider@3.7.8(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/label': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/slider': 3.5.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/slider': 3.7.2(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/label': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/slider': 3.5.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/slider': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/spinbutton@3.6.4(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/spinbutton@3.6.5(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/live-announcer': 3.3.4 + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/ssr@3.9.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/ssr@3.9.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@swc/helpers': 0.5.5 + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/switch@3.6.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/switch@3.6.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/toggle': 3.10.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/toggle': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/switch': 3.5.2(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/toggle': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/toggle': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/switch': 3.5.3(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/table@3.14.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/table@3.14.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/grid': 3.9.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/visually-hidden': 3.8.11(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/flags': 3.0.2 - '@react-stately/table': 3.11.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/virtualizer': 3.7.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/checkbox': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/grid': 3.2.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/table': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/grid': 3.9.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/live-announcer': 3.3.4 + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/visually-hidden': 3.8.12(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/flags': 3.0.3 + '@react-stately/table': 3.11.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/virtualizer': 3.7.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/checkbox': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/grid': 3.2.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/table': 3.9.5(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/tabs@3.9.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/tabs@3.9.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/selection': 3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/tabs': 3.6.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/tabs': 3.3.6(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/tabs': 3.6.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/tabs': 3.3.7(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/tag@3.4.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/tag@3.4.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/gridlist': 3.8.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/label': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/selection': 3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/list': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/gridlist': 3.8.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/label': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/list': 3.10.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/textfield@3.14.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/textfield@3.14.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/form': 3.0.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/label': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/textfield': 3.9.2(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/form': 3.0.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/label': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/textfield': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/toggle@3.10.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/toggle@3.10.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/toggle': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/checkbox': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/toggle': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/checkbox': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/toolbar@3.0.0-beta.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/toolbar@3.0.0-beta.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/tooltip@3.7.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/tooltip@3.7.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/tooltip': 3.4.8(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/tooltip': 3.4.8(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/tooltip': 3.4.9(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/tooltip': 3.4.9(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/tree@3.0.0-alpha.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/tree@3.0.0-alpha.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/gridlist': 3.8.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/selection': 3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/tree': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/button': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/gridlist': 3.8.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/tree': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils@3.24.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/utils@3.24.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/ssr': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/ssr': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 clsx: 2.1.0 react: 19.0.0-rc-915b914b3a-20240515 - '@react-aria/visually-hidden@3.8.11(react@19.0.0-rc-915b914b3a-20240515)': + '@react-aria/visually-hidden@3.8.12(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 '@react-icons/all-files@4.1.0(react@18.3.1)': @@ -18080,375 +18326,375 @@ snapshots: dependencies: react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/calendar@3.5.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/calendar@3.5.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@internationalized/date': 3.5.3 - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/calendar': 3.4.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@internationalized/date': 3.5.4 + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/calendar': 3.4.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/checkbox@3.6.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/checkbox@3.6.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/checkbox': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/checkbox': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/collections@3.10.6(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/collections@3.10.7(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/color@3.6.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/color@3.6.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@internationalized/number': 3.5.2 - '@internationalized/string': 3.2.2 - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/numberfield': 3.9.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/slider': 3.5.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/color': 3.0.0-beta.24(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@internationalized/number': 3.5.3 + '@internationalized/string': 3.2.3 + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/numberfield': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/slider': 3.5.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/color': 3.0.0-beta.25(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/combobox@3.8.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/combobox@3.8.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/list': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/overlays': 3.6.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/select': 3.6.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/combobox': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/list': 3.10.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/overlays': 3.6.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/select': 3.6.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/combobox': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/data@3.11.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/data@3.11.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/datepicker@3.9.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/datepicker@3.9.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@internationalized/date': 3.5.3 - '@internationalized/string': 3.2.2 - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/overlays': 3.6.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/datepicker': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@internationalized/date': 3.5.4 + '@internationalized/string': 3.2.3 + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/overlays': 3.6.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/datepicker': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/dnd@3.3.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/dnd@3.3.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/selection': 3.15.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/selection': 3.15.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/flags@3.0.2': + '@react-stately/flags@3.0.3': dependencies: - '@swc/helpers': 0.4.36 + '@swc/helpers': 0.5.11 - '@react-stately/form@3.0.2(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/form@3.0.3(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/grid@3.8.6(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/grid@3.8.7(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/selection': 3.15.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/grid': 3.2.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/selection': 3.15.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/grid': 3.2.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/list@3.10.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/list@3.10.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/selection': 3.15.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/selection': 3.15.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/menu@3.7.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/menu@3.7.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/overlays': 3.6.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/menu': 3.9.8(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/overlays': 3.6.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/menu': 3.9.9(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/numberfield@3.9.2(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/numberfield@3.9.3(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@internationalized/number': 3.5.2 - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/numberfield': 3.8.2(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@internationalized/number': 3.5.3 + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/numberfield': 3.8.3(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/overlays@3.6.6(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/overlays@3.6.7(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/overlays': 3.8.6(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/overlays': 3.8.7(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/radio@3.10.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/radio@3.10.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/radio': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/radio': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/searchfield@3.5.2(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/searchfield@3.5.3(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/searchfield': 3.5.4(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/searchfield': 3.5.5(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/select@3.6.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/select@3.6.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/list': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/overlays': 3.6.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/select': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/list': 3.10.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/overlays': 3.6.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/select': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/selection@3.15.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/selection@3.15.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/slider@3.5.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/slider@3.5.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/slider': 3.7.2(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/slider': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/table@3.11.7(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/table@3.11.8(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/flags': 3.0.2 - '@react-stately/grid': 3.8.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/selection': 3.15.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/grid': 3.2.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/table': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/flags': 3.0.3 + '@react-stately/grid': 3.8.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/selection': 3.15.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/grid': 3.2.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/table': 3.9.5(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/tabs@3.6.5(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/tabs@3.6.6(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/list': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/tabs': 3.3.6(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/list': 3.10.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/tabs': 3.3.7(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/toggle@3.7.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/toggle@3.7.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/checkbox': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/checkbox': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/tooltip@3.4.8(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/tooltip@3.4.9(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/overlays': 3.6.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/tooltip': 3.4.8(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/overlays': 3.6.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/tooltip': 3.4.9(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/tree@3.8.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/tree@3.8.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/selection': 3.15.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/selection': 3.15.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/utils@3.10.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/utils@3.10.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@swc/helpers': 0.5.5 + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-stately/virtualizer@3.7.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-stately/virtualizer@3.7.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/breadcrumbs@3.7.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/breadcrumbs@3.7.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/link': 3.5.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/link': 3.5.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/button@3.9.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/button@3.9.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/calendar@3.4.5(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/calendar@3.4.6(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@internationalized/date': 3.5.3 - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@internationalized/date': 3.5.4 + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/checkbox@3.8.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/checkbox@3.8.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/color@3.0.0-beta.24(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/color@3.0.0-beta.25(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/slider': 3.7.2(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/slider': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/combobox@3.11.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/combobox@3.11.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/datepicker@3.7.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/datepicker@3.7.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@internationalized/date': 3.5.3 - '@react-types/calendar': 3.4.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/overlays': 3.8.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@internationalized/date': 3.5.4 + '@react-types/calendar': 3.4.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/overlays': 3.8.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/dialog@3.5.9(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/dialog@3.5.10(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/overlays': 3.8.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/overlays': 3.8.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/form@3.7.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/form@3.7.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/grid@3.2.5(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/grid@3.2.6(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/link@3.5.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/link@3.5.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/listbox@3.4.8(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/listbox@3.4.9(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/menu@3.9.8(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/menu@3.9.9(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/overlays': 3.8.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/overlays': 3.8.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/meter@3.4.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/meter@3.4.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/progress': 3.5.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/progress': 3.5.4(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/numberfield@3.8.2(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/numberfield@3.8.3(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/overlays@3.8.6(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/overlays@3.8.7(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/progress@3.5.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/progress@3.5.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/radio@3.8.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/radio@3.8.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/searchfield@3.5.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/searchfield@3.5.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/textfield': 3.9.2(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/textfield': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/select@3.9.3(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/select@3.9.4(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/shared@3.23.0(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/shared@3.23.1(react@19.0.0-rc-915b914b3a-20240515)': dependencies: react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/slider@3.7.2(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/slider@3.7.3(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/switch@3.5.2(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/switch@3.5.3(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/table@3.9.4(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/table@3.9.5(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/grid': 3.2.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/grid': 3.2.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/tabs@3.3.6(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/tabs@3.3.7(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/textfield@3.9.2(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/textfield@3.9.3(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 - '@react-types/tooltip@3.4.8(react@19.0.0-rc-915b914b3a-20240515)': + '@react-types/tooltip@3.4.9(react@19.0.0-rc-915b914b3a-20240515)': dependencies: - '@react-types/overlays': 3.8.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/overlays': 3.8.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 '@resvg/resvg-wasm@2.4.0': {} @@ -18815,10 +19061,10 @@ snapshots: '@storybook/addon-docs@8.0.8(encoding@0.1.13)': dependencies: '@babel/core': 7.24.4 - '@mdx-js/react': 3.0.1(@types/react@18.3.2)(react@18.3.1) - '@storybook/blocks': 8.0.8(@types/react@18.3.2)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@18.3.1) + '@storybook/blocks': 8.0.8(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 8.0.8 - '@storybook/components': 8.0.8(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 8.0.8(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/csf-plugin': 8.0.8 '@storybook/csf-tools': 8.0.8 '@storybook/global': 5.0.0 @@ -18827,7 +19073,7 @@ snapshots: '@storybook/react-dom-shim': 8.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/theming': 8.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.0.8 - '@types/react': 18.3.2 + '@types/react': 18.3.3 fs-extra: 11.2.0 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -18982,6 +19228,40 @@ snapshots: - encoding - supports-color + '@storybook/blocks@8.0.8(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@storybook/channels': 8.0.8 + '@storybook/client-logger': 8.0.8 + '@storybook/components': 8.0.8(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/core-events': 8.0.8 + '@storybook/csf': 0.1.4 + '@storybook/docs-tools': 8.0.8(encoding@0.1.13) + '@storybook/global': 5.0.0 + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/manager-api': 8.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/preview-api': 8.0.8 + '@storybook/theming': 8.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.0.8 + '@types/lodash': 4.17.0 + color-convert: 2.0.1 + dequal: 2.0.3 + lodash: 4.17.21 + markdown-to-jsx: 7.3.2(react@18.3.1) + memoizerific: 1.11.3 + polished: 4.3.1 + react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + telejson: 7.2.0 + tocbot: 4.25.0 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + optionalDependencies: + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + - encoding + - supports-color + '@storybook/builder-manager@8.0.8(encoding@0.1.13)': dependencies: '@fal-works/esbuild-plugin-global-externals': 2.1.2 @@ -19154,6 +19434,22 @@ snapshots: transitivePeerDependencies: - '@types/react' + '@storybook/components@8.0.8(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) + '@storybook/client-logger': 8.0.8 + '@storybook/csf': 0.1.4 + '@storybook/global': 5.0.0 + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 8.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/types': 8.0.8 + memoizerific: 1.11.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + util-deprecate: 1.0.2 + transitivePeerDependencies: + - '@types/react' + '@storybook/core-common@7.6.17(encoding@0.1.13)': dependencies: '@storybook/core-events': 7.6.17 @@ -19563,15 +19859,6 @@ snapshots: '@swc/counter@0.1.3': {} - '@swc/helpers@0.4.14': - dependencies: - tslib: 2.6.2 - - '@swc/helpers@0.4.36': - dependencies: - legacy-swc-helpers: '@swc/helpers@0.4.14' - tslib: 2.6.2 - '@swc/helpers@0.5.11': dependencies: tslib: 2.6.2 @@ -19638,7 +19925,7 @@ snapshots: jest: 29.7.0(@types/node@18.18.8)(ts-node@10.9.1(@types/node@20.12.7)(typescript@5.4.5)) vitest: 1.5.0(@edge-runtime/vm@3.2.0)(@types/node@18.18.8)(happy-dom@14.11.0)(terser@5.29.1) - '@testing-library/react@15.0.7(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@testing-library/react@15.0.7(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.24.4 '@testing-library/dom': 10.0.0 @@ -19646,9 +19933,9 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 - '@testing-library/react@15.0.7(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@testing-library/react@15.0.7(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: '@babel/runtime': 7.24.4 '@testing-library/dom': 10.0.0 @@ -19656,7 +19943,7 @@ snapshots: react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@testing-library/user-event@14.5.2(@testing-library/dom@10.0.0)': dependencies: @@ -19814,7 +20101,7 @@ snapshots: '@types/estree-jsx@1.0.2': dependencies: - '@types/estree': 1.0.4 + '@types/estree': 1.0.5 '@types/estree-jsx@1.0.5': dependencies: @@ -19894,8 +20181,6 @@ snapshots: expect: 29.7.0 pretty-format: 29.7.0 - '@types/js-yaml@4.0.9': {} - '@types/jsdoc-to-markdown@7.0.6': {} '@types/json-schema@7.0.15': {} @@ -19919,7 +20204,7 @@ snapshots: '@types/mdast@3.0.15': dependencies: - '@types/unist': 2.0.10 + '@types/unist': 2.0.9 '@types/mdast@4.0.3': dependencies: @@ -19950,6 +20235,8 @@ snapshots: '@types/node@14.18.33': {} + '@types/node@16.18.11': {} + '@types/node@16.18.60': {} '@types/node@18.17.9': {} @@ -19995,13 +20282,18 @@ snapshots: '@types/react-dom@18.3.0': dependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 '@types/react@18.3.2': dependencies: '@types/prop-types': 15.7.12 csstype: 3.1.3 + '@types/react@18.3.3': + dependencies: + '@types/prop-types': 15.7.12 + csstype: 3.1.3 + '@types/resolve@1.20.6': {} '@types/semver@7.5.8': {} @@ -20515,11 +20807,11 @@ snapshots: next: 14.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 - '@vercel/analytics@1.2.2(next@14.3.0-canary.70(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': + '@vercel/analytics@1.3.0(next@15.0.0-rc.0(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)': dependencies: server-only: 0.0.1 optionalDependencies: - next: 14.3.0-canary.70(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + next: 15.0.0-rc.0(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 '@vercel/blob@0.22.3': @@ -20529,7 +20821,7 @@ snapshots: is-buffer: 2.0.5 undici: 5.28.4 - '@vercel/blob@0.23.2': + '@vercel/blob@0.23.3': dependencies: async-retry: 1.3.3 bytes: 3.1.2 @@ -20538,6 +20830,8 @@ snapshots: '@vercel/build-utils@7.11.0': {} + '@vercel/build-utils@8.2.0': {} + '@vercel/edge-config-fs@0.1.0': {} '@vercel/edge-config@1.1.0(typescript@5.4.5)': @@ -20547,6 +20841,13 @@ snapshots: transitivePeerDependencies: - typescript + '@vercel/edge-config@1.1.1(typescript@5.4.5)': + dependencies: + '@vercel/edge-config-fs': 0.1.0 + ts-essentials: 9.4.1(typescript@5.4.5) + transitivePeerDependencies: + - typescript + '@vercel/error-utils@2.0.2': {} '@vercel/fun@1.1.0(encoding@0.1.13)': @@ -20588,6 +20889,15 @@ snapshots: etag: 1.8.1 fs-extra: 11.1.0 + '@vercel/gatsby-plugin-vercel-builder@2.0.31': + dependencies: + '@sinclair/typebox': 0.25.24 + '@vercel/build-utils': 8.2.0 + '@vercel/routing-utils': 3.1.0 + esbuild: 0.14.47 + etag: 1.8.1 + fs-extra: 11.1.0 + '@vercel/go@3.1.1': {} '@vercel/hydrogen@1.0.2': @@ -20602,6 +20912,13 @@ snapshots: - encoding - supports-color + '@vercel/next@4.2.13(encoding@0.1.13)': + dependencies: + '@vercel/nft': 0.27.0(encoding@0.1.13) + transitivePeerDependencies: + - encoding + - supports-color + '@vercel/nft@0.26.4(encoding@0.1.13)': dependencies: '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13) @@ -20620,6 +20937,24 @@ snapshots: - encoding - supports-color + '@vercel/nft@0.27.0(encoding@0.1.13)': + dependencies: + '@mapbox/node-pre-gyp': 1.0.11(encoding@0.1.13) + '@rollup/pluginutils': 4.2.1 + acorn: 8.11.3 + acorn-import-attributes: 1.9.5(acorn@8.11.3) + async-sema: 3.1.1 + bindings: 1.5.0 + estree-walker: 2.0.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + node-gyp-build: 4.8.0 + resolve-from: 5.0.0 + transitivePeerDependencies: + - encoding + - supports-color + '@vercel/node@3.0.26(encoding@0.1.13)': dependencies: '@edge-runtime/node-utils': 2.3.0 @@ -20648,6 +20983,34 @@ snapshots: - encoding - supports-color + '@vercel/node@3.1.5(encoding@0.1.13)': + dependencies: + '@edge-runtime/node-utils': 2.3.0 + '@edge-runtime/primitives': 4.1.0 + '@edge-runtime/vm': 3.2.0 + '@types/node': 16.18.11 + '@vercel/build-utils': 8.2.0 + '@vercel/error-utils': 2.0.2 + '@vercel/nft': 0.27.0(encoding@0.1.13) + '@vercel/static-config': 3.0.0 + async-listen: 3.0.0 + cjs-module-lexer: 1.2.3 + edge-runtime: 2.5.9 + es-module-lexer: 1.4.1 + esbuild: 0.14.47 + etag: 1.8.1 + node-fetch: 2.6.9(encoding@0.1.13) + path-to-regexp: 6.2.1 + ts-morph: 12.0.0 + ts-node: 10.9.1(@types/node@16.18.11)(typescript@4.9.5) + typescript: 4.9.5 + undici: 5.26.5 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + - encoding + - supports-color + '@vercel/og@0.6.2': dependencies: '@resvg/resvg-wasm': 2.4.0 @@ -20663,6 +21026,8 @@ snapshots: '@vercel/python@4.1.1': {} + '@vercel/python@4.2.0': {} + '@vercel/redwood@2.0.8(encoding@0.1.13)': dependencies: '@vercel/nft': 0.26.4(encoding@0.1.13) @@ -20672,6 +21037,15 @@ snapshots: - encoding - supports-color + '@vercel/redwood@2.0.9(encoding@0.1.13)': + dependencies: + '@vercel/nft': 0.27.0(encoding@0.1.13) + '@vercel/routing-utils': 3.1.0 + semver: 6.3.1 + transitivePeerDependencies: + - encoding + - supports-color + '@vercel/remix-builder@2.1.5(encoding@0.1.13)': dependencies: '@vercel/error-utils': 2.0.2 @@ -20682,6 +21056,16 @@ snapshots: - encoding - supports-color + '@vercel/remix-builder@2.1.6(encoding@0.1.13)': + dependencies: + '@vercel/error-utils': 2.0.2 + '@vercel/nft': 0.27.0(encoding@0.1.13) + '@vercel/static-config': 3.0.0 + ts-morph: 12.0.0 + transitivePeerDependencies: + - encoding + - supports-color + '@vercel/routing-utils@3.1.0': dependencies: path-to-regexp: 6.1.0 @@ -20690,6 +21074,8 @@ snapshots: '@vercel/ruby@2.0.5': {} + '@vercel/ruby@2.1.0': {} + '@vercel/static-build@2.4.6': dependencies: '@vercel/gatsby-plugin-vercel-analytics': 1.0.11 @@ -20697,6 +21083,13 @@ snapshots: '@vercel/static-config': 3.0.0 ts-morph: 12.0.0 + '@vercel/static-build@2.5.9': + dependencies: + '@vercel/gatsby-plugin-vercel-analytics': 1.0.11 + '@vercel/gatsby-plugin-vercel-builder': 2.0.31 + '@vercel/static-config': 3.0.0 + ts-morph: 12.0.0 + '@vercel/static-config@3.0.0': dependencies: ajv: 8.6.3 @@ -21105,6 +21498,12 @@ snapshots: ariakit-utils: 0.17.0-next.27 react: 18.3.1 + ariakit-react-utils@0.17.0-next.27(@types/react@18.3.3)(react@18.3.1): + dependencies: + '@types/react': 18.3.3 + ariakit-utils: 0.17.0-next.27 + react: 18.3.1 + ariakit-utils@0.17.0-next.27: {} ariakit@2.0.0-next.44(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): @@ -21117,6 +21516,16 @@ snapshots: transitivePeerDependencies: - '@types/react' + ariakit@2.0.0-next.44(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@floating-ui/dom': 1.5.3 + ariakit-react-utils: 0.17.0-next.27(@types/react@18.3.3)(react@18.3.1) + ariakit-utils: 0.17.0-next.27 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' + array-back@1.0.4: dependencies: typical: 2.6.1 @@ -21404,7 +21813,7 @@ snapshots: babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: dependencies: '@babel/generator': 7.2.0 - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 chalk: 4.1.2 invariant: 2.2.4 pretty-format: 24.9.0 @@ -21852,20 +22261,20 @@ snapshots: cluster-key-slot@1.1.2: {} - cmdk@1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + cmdk@1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - cmdk@1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): + cmdk@1.0.0(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): dependencies: - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) transitivePeerDependencies: @@ -21879,6 +22288,8 @@ snapshots: code-point-at@1.1.0: optional: true + collapse-white-space@2.1.0: {} + collect-all@1.0.4: dependencies: stream-connect: 1.0.2 @@ -23445,14 +23856,25 @@ snapshots: estree-util-attach-comments@2.1.1: dependencies: - '@types/estree': 1.0.4 + '@types/estree': 1.0.5 + + estree-util-attach-comments@3.0.0: + dependencies: + '@types/estree': 1.0.5 estree-util-build-jsx@2.2.2: dependencies: - '@types/estree-jsx': 1.0.2 + '@types/estree-jsx': 1.0.5 estree-util-is-identifier-name: 2.1.0 estree-walker: 3.0.3 + estree-util-build-jsx@3.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + estree-walker: 3.0.3 + estree-util-is-identifier-name@1.1.0: {} estree-util-is-identifier-name@2.1.0: {} @@ -23461,7 +23883,13 @@ snapshots: estree-util-to-js@1.2.0: dependencies: - '@types/estree-jsx': 1.0.2 + '@types/estree-jsx': 1.0.5 + astring: 1.8.6 + source-map: 0.7.4 + + estree-util-to-js@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 astring: 1.8.6 source-map: 0.7.4 @@ -23471,8 +23899,8 @@ snapshots: estree-util-visit@1.2.1: dependencies: - '@types/estree-jsx': 1.0.2 - '@types/unist': 2.0.9 + '@types/estree-jsx': 1.0.5 + '@types/unist': 2.0.10 estree-util-visit@2.0.0: dependencies: @@ -23869,9 +24297,9 @@ snapshots: strip-ansi: 6.0.1 wide-align: 1.1.5 - geist@1.3.0(next@14.3.0-canary.70(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)): + geist@1.3.0(next@15.0.0-rc.0(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515)): dependencies: - next: 14.3.0-canary.70(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + next: 15.0.0-rc.0(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) generic-pool@3.4.2: {} @@ -24228,10 +24656,10 @@ snapshots: hast-util-to-estree@2.3.3: dependencies: - '@types/estree': 1.0.4 - '@types/estree-jsx': 1.0.2 + '@types/estree': 1.0.5 + '@types/estree-jsx': 1.0.5 '@types/hast': 2.3.7 - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 comma-separated-tokens: 2.0.3 estree-util-attach-comments: 2.1.1 estree-util-is-identifier-name: 2.1.0 @@ -24246,6 +24674,27 @@ snapshots: transitivePeerDependencies: - supports-color + hast-util-to-estree@3.1.0: + dependencies: + '@types/estree': 1.0.5 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-attach-comments: 3.0.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.0 + mdast-util-mdx-jsx: 3.1.2 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 6.4.0 + space-separated-tokens: 2.0.2 + style-to-object: 0.4.4 + unist-util-position: 5.0.0 + zwitch: 2.0.4 + transitivePeerDependencies: + - supports-color + hast-util-to-html@8.0.4: dependencies: '@types/hast': 2.3.7 @@ -24260,6 +24709,26 @@ snapshots: stringify-entities: 4.0.3 zwitch: 2.0.4 + hast-util-to-jsx-runtime@2.3.0: + dependencies: + '@types/estree': 1.0.5 + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.0 + mdast-util-mdx-jsx: 3.1.2 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 6.4.0 + space-separated-tokens: 2.0.2 + style-to-object: 1.0.6 + unist-util-position: 5.0.0 + vfile-message: 4.0.2 + transitivePeerDependencies: + - supports-color + hast-util-to-parse5@7.1.0: dependencies: '@types/hast': 2.3.7 @@ -24279,6 +24748,10 @@ snapshots: hast-util-whitespace@2.0.1: {} + hast-util-whitespace@3.0.0: + dependencies: + '@types/hast': 3.0.4 + hastscript@7.2.0: dependencies: '@types/hast': 2.3.7 @@ -24458,6 +24931,8 @@ snapshots: inline-style-parser@0.1.1: {} + inline-style-parser@0.2.3: {} + inquirer@7.3.3: dependencies: ansi-escapes: 4.3.2 @@ -24708,7 +25183,7 @@ snapshots: is-reference@3.0.2: dependencies: - '@types/estree': 1.0.4 + '@types/estree': 1.0.5 is-regex@1.1.4: dependencies: @@ -25377,9 +25852,9 @@ snapshots: jju@1.4.0: {} - jotai@2.8.0(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515): + jotai@2.8.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 react: 19.0.0-rc-915b914b3a-20240515 joycon@3.1.1: {} @@ -25787,7 +26262,7 @@ snapshots: lru-cache@7.18.3: {} - lucide-react@0.378.0(react@19.0.0-rc-915b914b3a-20240515): + lucide-react@0.379.0(react@19.0.0-rc-915b914b3a-20240515): dependencies: react: 19.0.0-rc-915b914b3a-20240515 @@ -25862,6 +26337,8 @@ snapshots: markdown-extensions@1.1.1: {} + markdown-extensions@2.0.0: {} + markdown-it-anchor@8.6.7(@types/markdown-it@12.2.3)(markdown-it@12.3.2): dependencies: '@types/markdown-it': 12.2.3 @@ -25885,17 +26362,24 @@ snapshots: mdast-util-definitions@5.1.2: dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 '@types/unist': 2.0.10 unist-util-visit: 4.1.2 mdast-util-find-and-replace@2.2.2: dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 escape-string-regexp: 5.0.0 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 + mdast-util-find-and-replace@3.0.1: + dependencies: + '@types/mdast': 4.0.3 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + mdast-util-from-markdown@0.8.5: dependencies: '@types/mdast': 3.0.15 @@ -25942,7 +26426,7 @@ snapshots: mdast-util-frontmatter@1.0.1: dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 micromark-extension-frontmatter: 1.1.1 @@ -25953,17 +26437,43 @@ snapshots: mdast-util-find-and-replace: 2.2.2 micromark-util-character: 1.2.0 + mdast-util-gfm-autolink-literal@2.0.0: + dependencies: + '@types/mdast': 4.0.3 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.1 + micromark-util-character: 2.1.0 + mdast-util-gfm-footnote@1.0.2: dependencies: '@types/mdast': 3.0.14 mdast-util-to-markdown: 1.5.0 micromark-util-normalize-identifier: 1.1.0 + mdast-util-gfm-footnote@2.0.0: + dependencies: + '@types/mdast': 4.0.3 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.0 + mdast-util-to-markdown: 2.1.0 + micromark-util-normalize-identifier: 2.0.0 + transitivePeerDependencies: + - supports-color + mdast-util-gfm-strikethrough@1.0.3: dependencies: '@types/mdast': 3.0.14 mdast-util-to-markdown: 1.5.0 + mdast-util-gfm-strikethrough@2.0.0: + dependencies: + '@types/mdast': 4.0.3 + mdast-util-from-markdown: 2.0.0 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + mdast-util-gfm-table@1.0.7: dependencies: '@types/mdast': 3.0.14 @@ -25973,11 +26483,30 @@ snapshots: transitivePeerDependencies: - supports-color + mdast-util-gfm-table@2.0.0: + dependencies: + '@types/mdast': 4.0.3 + devlop: 1.1.0 + markdown-table: 3.0.3 + mdast-util-from-markdown: 2.0.0 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + mdast-util-gfm-task-list-item@1.0.2: dependencies: '@types/mdast': 3.0.14 mdast-util-to-markdown: 1.5.0 + mdast-util-gfm-task-list-item@2.0.0: + dependencies: + '@types/mdast': 4.0.3 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.0 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + mdast-util-gfm@2.0.2: dependencies: mdast-util-from-markdown: 1.3.1 @@ -25990,11 +26519,23 @@ snapshots: transitivePeerDependencies: - supports-color + mdast-util-gfm@3.0.0: + dependencies: + mdast-util-from-markdown: 2.0.0 + mdast-util-gfm-autolink-literal: 2.0.0 + mdast-util-gfm-footnote: 2.0.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.0 + transitivePeerDependencies: + - supports-color + mdast-util-mdx-expression@1.3.2: dependencies: - '@types/estree-jsx': 1.0.2 + '@types/estree-jsx': 1.0.5 '@types/hast': 2.3.7 - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -26013,10 +26554,10 @@ snapshots: mdast-util-mdx-jsx@2.1.4: dependencies: - '@types/estree-jsx': 1.0.2 + '@types/estree-jsx': 1.0.5 '@types/hast': 2.3.7 - '@types/mdast': 3.0.14 - '@types/unist': 2.0.9 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 ccount: 2.0.1 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 @@ -26068,9 +26609,9 @@ snapshots: mdast-util-mdxjs-esm@1.3.1: dependencies: - '@types/estree-jsx': 1.0.2 + '@types/estree-jsx': 1.0.5 '@types/hast': 2.3.7 - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -26089,7 +26630,7 @@ snapshots: mdast-util-phrasing@3.0.1: dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 unist-util-is: 5.2.1 mdast-util-phrasing@4.1.0: @@ -26100,7 +26641,7 @@ snapshots: mdast-util-to-hast@12.3.0: dependencies: '@types/hast': 2.3.7 - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-definitions: 5.1.2 micromark-util-sanitize-uri: 1.2.0 trim-lines: 3.0.1 @@ -26146,7 +26687,7 @@ snapshots: mdast-util-to-string@3.2.0: dependencies: - '@types/mdast': 3.0.14 + '@types/mdast': 3.0.15 mdast-util-to-string@4.0.0: dependencies: @@ -26276,6 +26817,13 @@ snapshots: micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 + micromark-extension-gfm-autolink-literal@2.0.0: + dependencies: + micromark-util-character: 2.1.0 + micromark-util-sanitize-uri: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + micromark-extension-gfm-footnote@1.1.2: dependencies: micromark-core-commonmark: 1.1.0 @@ -26287,6 +26835,17 @@ snapshots: micromark-util-types: 1.1.0 uvu: 0.5.6 + micromark-extension-gfm-footnote@2.0.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.0 + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-normalize-identifier: 2.0.0 + micromark-util-sanitize-uri: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + micromark-extension-gfm-strikethrough@1.0.7: dependencies: micromark-util-chunked: 1.1.0 @@ -26296,6 +26855,15 @@ snapshots: micromark-util-types: 1.1.0 uvu: 0.5.6 + micromark-extension-gfm-strikethrough@2.0.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.0 + micromark-util-classify-character: 2.0.0 + micromark-util-resolve-all: 2.0.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + micromark-extension-gfm-table@1.0.7: dependencies: micromark-factory-space: 1.1.0 @@ -26304,10 +26872,22 @@ snapshots: micromark-util-types: 1.1.0 uvu: 0.5.6 + micromark-extension-gfm-table@2.0.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + micromark-extension-gfm-tagfilter@1.0.2: dependencies: micromark-util-types: 1.1.0 + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.0 + micromark-extension-gfm-task-list-item@1.0.5: dependencies: micromark-factory-space: 1.1.0 @@ -26316,6 +26896,14 @@ snapshots: micromark-util-types: 1.1.0 uvu: 0.5.6 + micromark-extension-gfm-task-list-item@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.0 + micromark-util-character: 2.1.0 + micromark-util-symbol: 2.0.0 + micromark-util-types: 2.0.0 + micromark-extension-gfm@2.0.3: dependencies: micromark-extension-gfm-autolink-literal: 1.0.5 @@ -26327,9 +26915,20 @@ snapshots: micromark-util-combine-extensions: 1.1.0 micromark-util-types: 1.1.0 + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.0.0 + micromark-extension-gfm-footnote: 2.0.0 + micromark-extension-gfm-strikethrough: 2.0.0 + micromark-extension-gfm-table: 2.0.0 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.0.1 + micromark-util-combine-extensions: 2.0.0 + micromark-util-types: 2.0.0 + micromark-extension-mdx-expression@1.0.8: dependencies: - '@types/estree': 1.0.4 + '@types/estree': 1.0.5 micromark-factory-mdx-expression: 1.0.9 micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -26352,7 +26951,7 @@ snapshots: micromark-extension-mdx-jsx@1.0.5: dependencies: '@types/acorn': 4.0.6 - '@types/estree': 1.0.4 + '@types/estree': 1.0.5 estree-util-is-identifier-name: 2.1.0 micromark-factory-mdx-expression: 1.0.9 micromark-factory-space: 1.1.0 @@ -26385,7 +26984,7 @@ snapshots: micromark-extension-mdxjs-esm@1.0.5: dependencies: - '@types/estree': 1.0.4 + '@types/estree': 1.0.5 micromark-core-commonmark: 1.1.0 micromark-util-character: 1.2.0 micromark-util-events-to-acorn: 1.2.3 @@ -26457,7 +27056,7 @@ snapshots: micromark-factory-mdx-expression@1.0.9: dependencies: - '@types/estree': 1.0.4 + '@types/estree': 1.0.5 micromark-util-character: 1.2.0 micromark-util-events-to-acorn: 1.2.3 micromark-util-symbol: 1.1.0 @@ -26584,8 +27183,8 @@ snapshots: micromark-util-events-to-acorn@1.2.3: dependencies: '@types/acorn': 4.0.6 - '@types/estree': 1.0.4 - '@types/unist': 2.0.9 + '@types/estree': 1.0.5 + '@types/unist': 2.0.10 estree-util-visit: 1.2.1 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 @@ -26885,15 +27484,20 @@ snapshots: - markdown-wasm - supports-color - next-mdx-remote@4.4.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): + next-mdx-remote-client@1.0.3(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): dependencies: - '@mdx-js/mdx': 2.3.0 - '@mdx-js/react': 2.3.0(react@19.0.0-rc-915b914b3a-20240515) + '@babel/code-frame': 7.24.2 + '@mdx-js/mdx': 3.0.1 + '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + '@types/mdx': 2.0.13 react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - vfile: 5.3.7 - vfile-matter: 3.0.1 + remark-mdx-remove-esm: 1.1.0 + serialize-error: 11.0.3 + vfile: 6.0.1 + vfile-matter: 5.0.0 transitivePeerDependencies: + - '@types/react' - supports-color next-themes@0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): @@ -26931,9 +27535,9 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@14.3.0-canary.70(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): + next@15.0.0-rc.0(babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): dependencies: - '@next/env': 14.3.0-canary.70 + '@next/env': 15.0.0-rc.0 '@swc/helpers': 0.5.11 busboy: 1.6.0 caniuse-lite: 1.0.30001610 @@ -26943,15 +27547,15 @@ snapshots: react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) styled-jsx: 5.1.3(react@19.0.0-rc-915b914b3a-20240515) optionalDependencies: - '@next/swc-darwin-arm64': 14.3.0-canary.70 - '@next/swc-darwin-x64': 14.3.0-canary.70 - '@next/swc-linux-arm64-gnu': 14.3.0-canary.70 - '@next/swc-linux-arm64-musl': 14.3.0-canary.70 - '@next/swc-linux-x64-gnu': 14.3.0-canary.70 - '@next/swc-linux-x64-musl': 14.3.0-canary.70 - '@next/swc-win32-arm64-msvc': 14.3.0-canary.70 - '@next/swc-win32-ia32-msvc': 14.3.0-canary.70 - '@next/swc-win32-x64-msvc': 14.3.0-canary.70 + '@next/swc-darwin-arm64': 15.0.0-rc.0 + '@next/swc-darwin-x64': 15.0.0-rc.0 + '@next/swc-linux-arm64-gnu': 15.0.0-rc.0 + '@next/swc-linux-arm64-musl': 15.0.0-rc.0 + '@next/swc-linux-x64-gnu': 15.0.0-rc.0 + '@next/swc-linux-x64-musl': 15.0.0-rc.0 + '@next/swc-win32-arm64-msvc': 15.0.0-rc.0 + '@next/swc-win32-ia32-msvc': 15.0.0-rc.0 + '@next/swc-win32-x64-msvc': 15.0.0-rc.0 babel-plugin-react-compiler: 0.0.0-experimental-592953e-20240517 sharp: 0.33.4 transitivePeerDependencies: @@ -27254,12 +27858,12 @@ snapshots: os-tmpdir@1.0.2: {} - overlayscrollbars-react@0.5.6(overlayscrollbars@2.8.0)(react@19.0.0-rc-915b914b3a-20240515): + overlayscrollbars-react@0.5.6(overlayscrollbars@2.8.2)(react@19.0.0-rc-915b914b3a-20240515): dependencies: - overlayscrollbars: 2.8.0 + overlayscrollbars: 2.8.2 react: 19.0.0-rc-915b914b3a-20240515 - overlayscrollbars@2.8.0: {} + overlayscrollbars@2.8.2: {} p-event@5.0.1: dependencies: @@ -27473,7 +28077,7 @@ snapshots: periscopic@3.1.0: dependencies: - '@types/estree': 1.0.4 + '@types/estree': 1.0.5 estree-walker: 3.0.3 is-reference: 3.0.2 @@ -27827,73 +28431,73 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-aria-components@1.2.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): + react-aria-components@1.2.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): dependencies: - '@internationalized/date': 3.5.3 - '@internationalized/string': 3.2.2 - '@react-aria/color': 3.0.0-beta.32(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/menu': 3.14.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/toolbar': 3.0.0-beta.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/tree': 3.0.0-alpha.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/color': 3.6.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/menu': 3.7.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/table': 3.11.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/utils': 3.10.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/color': 3.0.0-beta.24(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/form': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/grid': 3.2.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/table': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) - '@swc/helpers': 0.5.5 + '@internationalized/date': 3.5.4 + '@internationalized/string': 3.2.3 + '@react-aria/color': 3.0.0-beta.33(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/menu': 3.14.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/toolbar': 3.0.0-beta.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/tree': 3.0.0-alpha.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/color': 3.6.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/menu': 3.7.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/table': 3.11.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/utils': 3.10.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/color': 3.0.0-beta.25(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/form': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/grid': 3.2.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/table': 3.9.5(react@19.0.0-rc-915b914b3a-20240515) + '@swc/helpers': 0.5.11 client-only: 0.0.1 react: 19.0.0-rc-915b914b3a-20240515 - react-aria: 3.33.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + react-aria: 3.33.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) - react-stately: 3.31.0(react@19.0.0-rc-915b914b3a-20240515) + react-stately: 3.31.1(react@19.0.0-rc-915b914b3a-20240515) use-sync-external-store: 1.2.0(react@19.0.0-rc-915b914b3a-20240515) - react-aria@3.33.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): + react-aria@3.33.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): dependencies: - '@internationalized/string': 3.2.2 - '@react-aria/breadcrumbs': 3.5.12(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/button': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/calendar': 3.5.7(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/checkbox': 3.14.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/combobox': 3.9.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/datepicker': 3.10.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/dialog': 3.5.13(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/dnd': 3.6.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/focus': 3.17.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/gridlist': 3.8.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/i18n': 3.11.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/interactions': 3.21.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/label': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/link': 3.7.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/listbox': 3.12.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/menu': 3.14.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/meter': 3.4.12(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/numberfield': 3.11.2(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/overlays': 3.22.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/progress': 3.4.12(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/radio': 3.10.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/searchfield': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/select': 3.14.4(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/selection': 3.18.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/separator': 3.3.12(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/slider': 3.7.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/ssr': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/switch': 3.6.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/table': 3.14.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/tabs': 3.9.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/tag': 3.4.0(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/textfield': 3.14.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/tooltip': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/utils': 3.24.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-aria/visually-hidden': 3.8.11(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@internationalized/string': 3.2.3 + '@react-aria/breadcrumbs': 3.5.13(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/button': 3.9.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/calendar': 3.5.8(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/checkbox': 3.14.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/combobox': 3.9.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/datepicker': 3.10.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/dialog': 3.5.14(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/dnd': 3.6.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/focus': 3.17.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/gridlist': 3.8.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/i18n': 3.11.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/interactions': 3.21.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/label': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/link': 3.7.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/listbox': 3.12.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/menu': 3.14.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/meter': 3.4.13(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/numberfield': 3.11.3(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/overlays': 3.22.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/progress': 3.4.13(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/radio': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/searchfield': 3.7.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/select': 3.14.5(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/selection': 3.18.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/separator': 3.3.13(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/slider': 3.7.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/ssr': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/switch': 3.6.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/table': 3.14.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/tabs': 3.9.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/tag': 3.4.1(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/textfield': 3.14.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/tooltip': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/utils': 3.24.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-aria/visually-hidden': 3.8.12(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) @@ -27966,13 +28570,21 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - react-remove-scroll-bar@2.3.5(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515): + react-remove-scroll-bar@2.3.5(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 19.0.0-rc-915b914b3a-20240515 - react-style-singleton: 2.2.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + react: 18.3.1 + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) tslib: 2.6.2 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 + + react-remove-scroll-bar@2.3.5(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): + dependencies: + react: 19.0.0-rc-915b914b3a-20240515 + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + tslib: 2.6.2 + optionalDependencies: + '@types/react': 18.3.3 react-remove-scroll@2.5.5(@types/react@18.3.2)(react@18.3.1): dependencies: @@ -27985,42 +28597,53 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - react-remove-scroll@2.5.5(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515): + react-remove-scroll@2.5.5(@types/react@18.3.3)(react@18.3.1): + dependencies: + react: 18.3.1 + react-remove-scroll-bar: 2.3.5(@types/react@18.3.3)(react@18.3.1) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) + tslib: 2.6.2 + use-callback-ref: 1.3.1(@types/react@18.3.3)(react@18.3.1) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.3 + + react-remove-scroll@2.5.5(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): dependencies: react: 19.0.0-rc-915b914b3a-20240515 - react-remove-scroll-bar: 2.3.5(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - react-style-singleton: 2.2.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + react-remove-scroll-bar: 2.3.5(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) tslib: 2.6.2 - use-callback-ref: 1.3.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) - use-sidecar: 1.1.2(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515) + use-callback-ref: 1.3.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515) optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 - react-stately@3.31.0(react@19.0.0-rc-915b914b3a-20240515): + react-stately@3.31.1(react@19.0.0-rc-915b914b3a-20240515): dependencies: - '@react-stately/calendar': 3.5.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/checkbox': 3.6.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/collections': 3.10.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/combobox': 3.8.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/data': 3.11.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/datepicker': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/dnd': 3.3.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/form': 3.0.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/list': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/menu': 3.7.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/numberfield': 3.9.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/overlays': 3.6.6(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/radio': 3.10.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/searchfield': 3.5.2(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/select': 3.6.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/selection': 3.15.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/slider': 3.5.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/table': 3.11.7(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/tabs': 3.6.5(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/toggle': 3.7.3(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/tooltip': 3.4.8(react@19.0.0-rc-915b914b3a-20240515) - '@react-stately/tree': 3.8.0(react@19.0.0-rc-915b914b3a-20240515) - '@react-types/shared': 3.23.0(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/calendar': 3.5.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/checkbox': 3.6.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/collections': 3.10.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/combobox': 3.8.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/data': 3.11.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/datepicker': 3.9.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/dnd': 3.3.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/form': 3.0.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/list': 3.10.5(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/menu': 3.7.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/numberfield': 3.9.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/overlays': 3.6.7(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/radio': 3.10.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/searchfield': 3.5.3(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/select': 3.6.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/selection': 3.15.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/slider': 3.5.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/table': 3.11.8(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/tabs': 3.6.6(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/toggle': 3.7.4(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/tooltip': 3.4.9(react@19.0.0-rc-915b914b3a-20240515) + '@react-stately/tree': 3.8.1(react@19.0.0-rc-915b914b3a-20240515) + '@react-types/shared': 3.23.1(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 react-style-singleton@2.2.1(@types/react@18.3.2)(react@18.3.1): @@ -28032,14 +28655,23 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - react-style-singleton@2.2.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515): + react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1): + dependencies: + get-nonce: 1.0.1 + invariant: 2.2.4 + react: 18.3.1 + tslib: 2.6.2 + optionalDependencies: + '@types/react': 18.3.3 + + react-style-singleton@2.2.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): dependencies: get-nonce: 1.0.1 invariant: 2.2.4 react: 19.0.0-rc-915b914b3a-20240515 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 react@18.3.1: dependencies: @@ -28265,6 +28897,17 @@ snapshots: transitivePeerDependencies: - supports-color + remark-gfm@4.0.0: + dependencies: + '@types/mdast': 4.0.3 + mdast-util-gfm: 3.0.0 + micromark-extension-gfm: 3.0.0 + remark-parse: 11.0.0 + remark-stringify: 11.0.0 + unified: 11.0.4 + transitivePeerDependencies: + - supports-color + remark-mdx-frontmatter@1.1.1: dependencies: estree-util-is-identifier-name: 1.1.0 @@ -28272,6 +28915,14 @@ snapshots: js-yaml: 4.1.0 toml: 3.0.0 + remark-mdx-remove-esm@1.1.0: + dependencies: + '@types/mdast': 4.0.3 + mdast-util-mdxjs-esm: 2.0.1 + unist-util-remove: 4.0.0 + transitivePeerDependencies: + - supports-color + remark-mdx@2.3.0: dependencies: mdast-util-mdx: 2.0.1 @@ -28581,6 +29232,10 @@ snapshots: no-case: 2.3.2 upper-case-first: 1.1.2 + serialize-error@11.0.3: + dependencies: + type-fest: 2.19.0 + serve-static@1.15.0: dependencies: encodeurl: 1.0.2 @@ -29023,6 +29678,10 @@ snapshots: dependencies: inline-style-parser: 0.1.1 + style-to-object@1.0.6: + dependencies: + inline-style-parser: 0.2.3 + styled-jsx@5.1.1(react@18.3.1): dependencies: client-only: 0.0.1 @@ -29375,6 +30034,24 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + ts-node@10.9.1(@types/node@16.18.11)(typescript@4.9.5): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 16.18.11 + acorn: 8.11.2 + acorn-walk: 8.3.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.9.5 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + ts-node@10.9.1(@types/node@16.18.60)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 @@ -29927,7 +30604,7 @@ snapshots: unist-util-position-from-estree@1.1.2: dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 unist-util-position-from-estree@2.0.0: dependencies: @@ -29951,6 +30628,12 @@ snapshots: '@types/unist': 3.0.2 unist-util-visit: 5.0.0 + unist-util-remove@4.0.0: + dependencies: + '@types/unist': 3.0.2 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + unist-util-stringify-position@2.0.3: dependencies: '@types/unist': 2.0.10 @@ -30086,12 +30769,19 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - use-callback-ref@1.3.1(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515): + use-callback-ref@1.3.1(@types/react@18.3.3)(react@18.3.1): + dependencies: + react: 18.3.1 + tslib: 2.6.2 + optionalDependencies: + '@types/react': 18.3.3 + + use-callback-ref@1.3.1(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): dependencies: react: 19.0.0-rc-915b914b3a-20240515 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 use-resize-observer@9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: @@ -30107,13 +30797,21 @@ snapshots: optionalDependencies: '@types/react': 18.3.2 - use-sidecar@1.1.2(@types/react@18.3.2)(react@19.0.0-rc-915b914b3a-20240515): + use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1): + dependencies: + detect-node-es: 1.1.0 + react: 18.3.1 + tslib: 2.6.2 + optionalDependencies: + '@types/react': 18.3.3 + + use-sidecar@1.1.2(@types/react@18.3.3)(react@19.0.0-rc-915b914b3a-20240515): dependencies: detect-node-es: 1.1.0 react: 19.0.0-rc-915b914b3a-20240515 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.3.2 + '@types/react': 18.3.3 use-sync-external-store@1.2.0(react@19.0.0-rc-915b914b3a-20240515): dependencies: @@ -30180,9 +30878,9 @@ snapshots: vary@1.1.2: {} - vaul@0.9.1(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): + vaul@0.9.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515): dependencies: - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.2)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515))(react@19.0.0-rc-915b914b3a-20240515) react: 19.0.0-rc-915b914b3a-20240515 react-dom: 19.0.0-rc-915b914b3a-20240515(react@19.0.0-rc-915b914b3a-20240515) transitivePeerDependencies: @@ -30209,6 +30907,26 @@ snapshots: - encoding - supports-color + vercel@34.2.2(encoding@0.1.13): + dependencies: + '@vercel/build-utils': 8.2.0 + '@vercel/fun': 1.1.0(encoding@0.1.13) + '@vercel/go': 3.1.1 + '@vercel/hydrogen': 1.0.2 + '@vercel/next': 4.2.13(encoding@0.1.13) + '@vercel/node': 3.1.5(encoding@0.1.13) + '@vercel/python': 4.2.0 + '@vercel/redwood': 2.0.9(encoding@0.1.13) + '@vercel/remix-builder': 2.1.6(encoding@0.1.13) + '@vercel/ruby': 2.1.0 + '@vercel/static-build': 2.5.9 + chokidar: 3.3.1 + transitivePeerDependencies: + - '@swc/core' + - '@swc/wasm' + - encoding + - supports-color + verror@1.10.0: dependencies: assert-plus: 1.0.0 @@ -30220,15 +30938,14 @@ snapshots: '@types/unist': 2.0.10 vfile: 5.3.7 - vfile-matter@3.0.1: + vfile-matter@5.0.0: dependencies: - '@types/js-yaml': 4.0.9 - is-buffer: 2.0.5 - js-yaml: 4.1.0 + vfile: 6.0.1 + yaml: 2.4.1 vfile-message@3.1.4: dependencies: - '@types/unist': 2.0.9 + '@types/unist': 2.0.10 unist-util-stringify-position: 3.0.3 vfile-message@4.0.2: