diff --git a/apps/api-reference/next-env.d.ts b/apps/api-reference/next-env.d.ts
index 4f11a03dc6..40c3d68096 100644
--- a/apps/api-reference/next-env.d.ts
+++ b/apps/api-reference/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/basic-features/typescript for more information.
+// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
diff --git a/apps/api-reference/package.json b/apps/api-reference/package.json
index 709b012809..23aefcf2d0 100644
--- a/apps/api-reference/package.json
+++ b/apps/api-reference/package.json
@@ -21,7 +21,7 @@
"@amplitude/analytics-browser": "^2.9.0",
"@amplitude/plugin-autocapture-browser": "^0.9.0",
"@floating-ui/react": "^0.26.17",
- "@headlessui/react": "^2.0.4",
+ "@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.1.4",
"@next/third-parties": "^14.2.4",
"@pythnetwork/client": "^2.22.0",
@@ -33,11 +33,11 @@
"connectkit": "^1.8.2",
"cryptocurrency-icons": "^0.18.1",
"framer-motion": "^11.3.8",
- "next": "^14.2.4",
+ "next": "catalog:",
"next-themes": "^0.3.0",
"pino": "^9.2.0",
- "react": "^18.3.1",
- "react-dom": "^18.3.1",
+ "react": "catalog:",
+ "react-dom": "catalog:",
"react-markdown": "^9.0.1",
"shiki": "^1.7.0",
"viem": "^2.21.32",
@@ -46,16 +46,16 @@
},
"devDependencies": {
"@axe-core/react": "^4.9.1",
- "@cprussin/eslint-config": "^3.0.0",
- "@cprussin/jest-config": "^1.4.1",
- "@cprussin/prettier-config": "^2.1.1",
- "@cprussin/tsconfig": "^3.0.1",
+ "@cprussin/eslint-config": "catalog:",
+ "@cprussin/jest-config": "catalog:",
+ "@cprussin/prettier-config": "catalog:",
+ "@cprussin/tsconfig": "catalog:",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.6",
- "@types/react": "^18.3.3",
- "@types/react-dom": "^18.3.0",
+ "@types/react": "catalog:",
+ "@types/react-dom": "catalog:",
"autoprefixer": "^10.4.19",
"eslint": "^9.5.0",
"jest": "^29.7.0",
diff --git a/apps/api-reference/src/app/price-feeds/[chain]/[method]/page.tsx b/apps/api-reference/src/app/price-feeds/[chain]/[method]/page.tsx
index b8fa5cecce..2653af8cb8 100644
--- a/apps/api-reference/src/app/price-feeds/[chain]/[method]/page.tsx
+++ b/apps/api-reference/src/app/price-feeds/[chain]/[method]/page.tsx
@@ -1,19 +1,20 @@
"use client";
import { notFound } from "next/navigation";
-import type { ComponentProps } from "react";
+import { type ComponentProps, use } from "react";
import * as apis from "../../../../apis";
import { EvmApi } from "../../../../components/EvmApi";
type Props = {
- params: {
+ params: Promise<{
chain: string;
method: string;
- };
+ }>;
};
-const Page = ({ params }: Props) => {
+const Page = (props: Props) => {
+ const params = use(props.params);
const chain: (typeof apis)[keyof typeof apis] | undefined = isKeyOf(
params.chain,
apis,
diff --git a/apps/api-reference/src/components/Code/use-highlighted-code.tsx b/apps/api-reference/src/components/Code/use-highlighted-code.tsx
index 9710595f13..64c325b191 100644
--- a/apps/api-reference/src/components/Code/use-highlighted-code.tsx
+++ b/apps/api-reference/src/components/Code/use-highlighted-code.tsx
@@ -2,7 +2,7 @@
import {
type ReactNode,
- type MutableRefObject,
+ type RefObject,
createContext,
useContext,
useState,
@@ -17,7 +17,7 @@ import type { SupportedLanguage } from "./supported-language";
import { getLogger } from "../../browser-logger";
const HighlighterContext = createContext<
- undefined | MutableRefObject
+ undefined | RefObject
>(undefined);
export const HighlighterProvider = ({
@@ -25,7 +25,7 @@ export const HighlighterProvider = ({
}: {
children: ReactNode | ReactNode[];
}) => {
- const highlighterRef = useRef();
+ const highlighterRef = useRef(undefined);
return (
{children}
diff --git a/apps/api-reference/src/components/EvmApi/parameter-input.tsx b/apps/api-reference/src/components/EvmApi/parameter-input.tsx
index 273cadc900..c7a6d2f7ef 100644
--- a/apps/api-reference/src/components/EvmApi/parameter-input.tsx
+++ b/apps/api-reference/src/components/EvmApi/parameter-input.tsx
@@ -137,11 +137,8 @@ const PriceFeedListOptions = ({ priceFeedList }: PriceFeedListOptionsProps) => {
) : (
- {({ option }) => {
- // The `option` parameter is typed as `unknown` and we have to
- // cast to get it to be correctly typed, see
- // https://github.com/tailwindlabs/headlessui/issues/3326
- const { feedId, name, description } = option as PriceFeed;
+ {({ option }: { option: PriceFeed }) => {
+ const { feedId, name, description } = option;
return (
{children},
+ p: ({ children }) => <>{children}>,
}}
{...props}
/>
diff --git a/apps/api-reference/src/markdown-components.tsx b/apps/api-reference/src/markdown-components.tsx
index dd9297c0ba..2bcf89a06a 100644
--- a/apps/api-reference/src/markdown-components.tsx
+++ b/apps/api-reference/src/markdown-components.tsx
@@ -31,6 +31,9 @@ export const MARKDOWN_COMPONENTS = {
);
} else {
+ // @ts-expect-error react-markdown doesn't officially support react 19
+ // yet; there's no issues here in practice but the types don't currently
+ // unify
return ;
}
},
diff --git a/apps/staking/next-env.d.ts b/apps/staking/next-env.d.ts
index 4f11a03dc6..40c3d68096 100644
--- a/apps/staking/next-env.d.ts
+++ b/apps/staking/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/basic-features/typescript for more information.
+// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
diff --git a/apps/staking/package.json b/apps/staking/package.json
index 5920e983d1..ede95aedc1 100644
--- a/apps/staking/package.json
+++ b/apps/staking/package.json
@@ -13,7 +13,7 @@
"pull:env": "[ $CI ] || VERCEL_ORG_ID=team_BKQrg3JJFLxZyTqpuYtIY0rj VERCEL_PROJECT_ID=prj_3TIYzlYYncZx7wRtfmzG2YUsNzKp vercel env pull",
"start:dev": "next dev --port 3001",
"start:prod": "next start --port 3001",
- "test:format": "jest --selectProjects format",
+ "test:format": "prettier --check .",
"test:lint": "jest --selectProjects lint",
"test:types": "tsc",
"test:unit": "jest --selectProjects unit"
@@ -34,34 +34,35 @@
"@solana/wallet-adapter-react-ui": "^0.9.35",
"@solana/wallet-adapter-wallets": "0.19.10",
"@solana/web3.js": "1.92.3",
+ "@vercel/functions": "^1.5.0",
"bcp-47": "^2.1.0",
"clsx": "^2.1.1",
"dnum": "^2.13.1",
- "framer-motion": "^11.3.8",
+ "framer-motion": "catalog:",
"ip-range-check": "^0.2.0",
- "next": "^14.2.5",
+ "next": "catalog:",
"pino": "^9.3.2",
"proxycheck-ts": "^0.0.11",
- "react": "^18.3.1",
+ "react": "catalog:",
"react-aria": "^3.34.3",
"react-aria-components": "^1.3.3",
- "react-dom": "^18.3.1",
- "recharts": "^2.12.7",
+ "react-dom": "catalog:",
+ "recharts": "^2.13.2",
"swr": "^2.2.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@axe-core/react": "^4.9.1",
- "@cprussin/eslint-config": "^3.0.0",
- "@cprussin/jest-config": "^1.4.1",
- "@cprussin/prettier-config": "^2.1.1",
- "@cprussin/tsconfig": "^3.0.1",
+ "@cprussin/eslint-config": "catalog:",
+ "@cprussin/jest-config": "catalog:",
+ "@cprussin/prettier-config": "catalog:",
+ "@cprussin/tsconfig": "catalog:",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/forms": "^0.5.7",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
- "@types/react": "^18.3.3",
- "@types/react-dom": "^18.3.0",
+ "@types/react": "catalog:",
+ "@types/react-dom": "catalog:",
"autoprefixer": "^10.4.19",
"eslint": "^9.8.0",
"jest": "^29.7.0",
diff --git a/apps/staking/src/components/ErrorMessage/index.tsx b/apps/staking/src/components/ErrorMessage/index.tsx
index 2efb1d78f9..410b4b39d5 100644
--- a/apps/staking/src/components/ErrorMessage/index.tsx
+++ b/apps/staking/src/components/ErrorMessage/index.tsx
@@ -49,6 +49,9 @@ const UnknownError = ({ error }: { error: unknown }) => {
{
{
- if (isIpAllowlisted(request)) {
+ const ip = ipAddress(request);
+ if (isIpAllowlisted(ip)) {
return isBlockedSegment(request)
? rewrite(request, "/not-found")
: undefined;
} else {
- if (await isProxyBlocked(request)) {
+ const geo = geolocation(request);
+ if (await isProxyBlocked(ip)) {
return rewrite(request, VPN_BLOCKED_PATH);
- } else if (isGovernanceOnlyRegion(request)) {
+ } else if (isGovernanceOnlyRegion(geo)) {
return rewrite(request, GOVERNANCE_ONLY_PATH);
- } else if (isRegionBlocked(request)) {
+ } else if (isRegionBlocked(geo)) {
return rewrite(request, GEO_BLOCKED_PATH);
} else if (isBlockedSegment(request)) {
return rewrite(request, "/not-found");
@@ -46,19 +49,19 @@ export const middleware = async (request: NextRequest) => {
const rewrite = (request: NextRequest, path: string) =>
NextResponse.rewrite(new URL(path, request.url));
-const isIpAllowlisted = ({ ip }: NextRequest) =>
+const isIpAllowlisted = (ip: string | undefined) =>
ip !== undefined &&
IP_ALLOWLIST.some((allowedRange) => ipRangeCheck(ip, allowedRange));
-const isGovernanceOnlyRegion = ({ geo }: NextRequest) =>
- geo?.country !== undefined &&
+const isGovernanceOnlyRegion = (geo: Geo) =>
+ geo.country !== undefined &&
GOVERNANCE_ONLY_REGIONS.includes(geo.country.toLowerCase());
-const isRegionBlocked = ({ geo }: NextRequest) =>
- geo?.country !== undefined &&
+const isRegionBlocked = (geo: Geo) =>
+ geo.country !== undefined &&
BLOCKED_REGIONS.includes(geo.country.toLowerCase());
-const isProxyBlocked = async ({ ip }: NextRequest) => {
+const isProxyBlocked = async (ip: string | undefined) => {
if (proxyCheckClient === undefined || ip === undefined) {
return false;
} else {
diff --git a/governance/xc_admin/packages/xc_admin_frontend/hooks/usePyth.ts b/governance/xc_admin/packages/xc_admin_frontend/hooks/usePyth.ts
index 97b80fcc9c..27fccaf158 100644
--- a/governance/xc_admin/packages/xc_admin_frontend/hooks/usePyth.ts
+++ b/governance/xc_admin/packages/xc_admin_frontend/hooks/usePyth.ts
@@ -45,7 +45,7 @@ export type PriceRawConfig = {
}
export const usePyth = (): PythHookData => {
- const connectionRef = useRef()
+ const connectionRef = useRef(undefined)
const { cluster } = useContext(ClusterContext)
const [isLoading, setIsLoading] = useState(true)
const [rawConfig, setRawConfig] = useState({ mappingAccounts: [] })
diff --git a/governance/xc_admin/packages/xc_admin_frontend/next-env.d.ts b/governance/xc_admin/packages/xc_admin_frontend/next-env.d.ts
index 4f11a03dc6..a4a7b3f5cf 100644
--- a/governance/xc_admin/packages/xc_admin_frontend/next-env.d.ts
+++ b/governance/xc_admin/packages/xc_admin_frontend/next-env.d.ts
@@ -2,4 +2,4 @@
///
// NOTE: This file should not be edited
-// see https://nextjs.org/docs/basic-features/typescript for more information.
+// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
diff --git a/governance/xc_admin/packages/xc_admin_frontend/package.json b/governance/xc_admin/packages/xc_admin_frontend/package.json
index b24fa278da..6afd0a5d01 100644
--- a/governance/xc_admin/packages/xc_admin_frontend/package.json
+++ b/governance/xc_admin/packages/xc_admin_frontend/package.json
@@ -14,7 +14,7 @@
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
- "@headlessui/react": "^1.7.7",
+ "@headlessui/react": "^2.2.0",
"@pythnetwork/client": "^2.22.0",
"@pythnetwork/solana-utils": "workspace:^",
"@pythnetwork/xc-admin-common": "workspace:*",
@@ -32,10 +32,10 @@
"copy-to-clipboard": "^3.3.3",
"gsap": "^3.11.4",
"message_buffer": "workspace:^",
- "next": "^14.2.3",
+ "next": "catalog:",
"next-seo": "^5.15.0",
- "react": "^18.3.1",
- "react-dom": "^18.3.1",
+ "react": "catalog:",
+ "react-dom": "catalog:",
"react-hot-toast": "^2.4.0",
"sharp": "^0.33.4",
"use-debounce": "^9.0.2",
@@ -46,8 +46,8 @@
"devDependencies": {
"@svgr/webpack": "^6.3.1",
"@types/node": "^18.11.18",
- "@types/react": "^18.3.3",
- "@types/react-dom": "^18.3.0",
+ "@types/react": "catalog:",
+ "@types/react-dom": "catalog:",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"autoprefixer": "^10.4.8",
"eslint": "8.56.0",
diff --git a/governance/xc_admin/packages/xc_admin_frontend/turbo.json b/governance/xc_admin/packages/xc_admin_frontend/turbo.json
index caccfbbd80..2b86804aa8 100644
--- a/governance/xc_admin/packages/xc_admin_frontend/turbo.json
+++ b/governance/xc_admin/packages/xc_admin_frontend/turbo.json
@@ -12,11 +12,7 @@
"cache": false
},
"start:dev": {
- "dependsOn": [
- "pull:env",
- "@pythnetwork/hermes-client#build",
- "@pythnetwork/solana-utils#build"
- ],
+ "dependsOn": ["pull:env", "^build"],
"persistent": true,
"cache": false
},
diff --git a/packages/component-library/.storybook/preview.tsx b/packages/component-library/.storybook/preview.tsx
index 6ea18c32ea..0ef31ac3b4 100644
--- a/packages/component-library/.storybook/preview.tsx
+++ b/packages/component-library/.storybook/preview.tsx
@@ -1,7 +1,7 @@
import { sans } from "@pythnetwork/fonts";
import { withThemeByClassName } from "@storybook/addon-themes";
import type { Preview, Decorator } from "@storybook/react";
-import { useEffect } from "react";
+import { useEffect, type ComponentType } from "react";
import "./tailwind.css";
@@ -14,9 +14,8 @@ const preview = {
export default preview;
-const withRootClasses =
- (...classes: string[]): Decorator =>
- (storyFn) => {
+const withRootClasses = (...classes: string[]): Decorator => {
+ const WithRootClasses = (Story: ComponentType) => {
useEffect(() => {
const root = document.querySelector("html");
const classList = classes
@@ -31,8 +30,10 @@ const withRootClasses =
return;
}
}, []);
- return storyFn();
+ return ;
};
+ return WithRootClasses;
+};
export const decorators: Decorator[] = [
withRootClasses("font-sans antialiased", sans.variable),
diff --git a/packages/component-library/package.json b/packages/component-library/package.json
index ada1341499..c39daccba4 100644
--- a/packages/component-library/package.json
+++ b/packages/component-library/package.json
@@ -13,7 +13,7 @@
"test:types": "tsc"
},
"peerDependencies": {
- "react": "^18.3.1"
+ "react": "catalog:"
},
"dependencies": {
"clsx": "^2.1.1",
@@ -21,10 +21,10 @@
"react-aria-components": "^1.4.0"
},
"devDependencies": {
- "@cprussin/eslint-config": "^3.0.0",
- "@cprussin/jest-config": "^1.4.1",
- "@cprussin/prettier-config": "^2.1.1",
- "@cprussin/tsconfig": "^3.0.1",
+ "@cprussin/eslint-config": "catalog:",
+ "@cprussin/jest-config": "catalog:",
+ "@cprussin/prettier-config": "catalog:",
+ "@cprussin/tsconfig": "catalog:",
"@phosphor-icons/react": "^2.1.7",
"@pythnetwork/fonts": "workspace:^",
"@storybook/addon-essentials": "^8.3.5",
@@ -35,7 +35,7 @@
"@storybook/react": "^8.3.5",
"@tailwindcss/forms": "^0.5.9",
"@types/jest": "^29.5.13",
- "@types/react": "^18.3.11",
+ "@types/react": "catalog:",
"autoprefixer": "^10.4.20",
"css-loader": "^7.1.2",
"eslint": "^9.12.0",
diff --git a/packages/fonts/package.json b/packages/fonts/package.json
index b0600bc6bb..5df5f37fd4 100644
--- a/packages/fonts/package.json
+++ b/packages/fonts/package.json
@@ -12,13 +12,13 @@
"test:types": "tsc"
},
"peerDependencies": {
- "next": "^14.2.15"
+ "next": "catalog:"
},
"devDependencies": {
- "@cprussin/eslint-config": "^3.0.0",
- "@cprussin/jest-config": "^1.4.1",
- "@cprussin/prettier-config": "^2.1.1",
- "@cprussin/tsconfig": "^3.0.1",
+ "@cprussin/eslint-config": "catalog:",
+ "@cprussin/jest-config": "catalog:",
+ "@cprussin/prettier-config": "catalog:",
+ "@cprussin/tsconfig": "catalog:",
"@types/jest": "^29.5.13",
"eslint": "^9.12.0",
"jest": "^29.7.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 85e440e22f..a304a1cca9 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,6 +4,39 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
+catalogs:
+ default:
+ '@cprussin/eslint-config':
+ specifier: 3.0.0
+ version: 3.0.0
+ '@cprussin/jest-config':
+ specifier: 1.4.1
+ version: 1.4.1
+ '@cprussin/prettier-config':
+ specifier: 2.1.1
+ version: 2.1.1
+ '@cprussin/tsconfig':
+ specifier: 3.0.1
+ version: 3.0.1
+ '@types/react':
+ specifier: npm:types-react@rc
+ version: 19.0.0-rc.1
+ '@types/react-dom':
+ specifier: npm:types-react-dom@rc
+ version: 19.0.0-rc.1
+ framer-motion:
+ specifier: 11.11.10
+ version: 11.11.10
+ next:
+ specifier: 15.0.2
+ version: 15.0.2
+ react:
+ specifier: 19.0.0-rc-603e6108-20241029
+ version: 19.0.0-rc-603e6108-20241029
+ react-dom:
+ specifier: 19.0.0-rc-603e6108-20241029
+ version: 19.0.0-rc-603e6108-20241029
+
overrides:
'@injectivelabs/sdk-ts@1.10.72>@injectivelabs/token-metadata': 1.10.42
eslint-config-next>@typescript-eslint/parser: ^7.0.0
@@ -42,16 +75,16 @@ importers:
version: 0.9.0
'@floating-ui/react':
specifier: ^0.26.17
- version: 0.26.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 0.26.17(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@headlessui/react':
- specifier: ^2.0.4
- version: 2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^2.2.0
+ version: 2.2.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@heroicons/react':
specifier: ^2.1.4
- version: 2.1.4(react@18.3.1)
+ version: 2.1.4(react@19.0.0-rc-603e6108-20241029)
'@next/third-parties':
specifier: ^14.2.4
- version: 14.2.4(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ version: 14.2.4(next@15.0.2(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@pythnetwork/client':
specifier: ^2.22.0
version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -63,7 +96,7 @@ importers:
version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@tanstack/react-query':
specifier: ^5.45.1
- version: 5.45.1(react@18.3.1)
+ version: 5.45.1(react@19.0.0-rc-603e6108-20241029)
bs58:
specifier: ^5.0.0
version: 5.0.0
@@ -72,31 +105,31 @@ importers:
version: 2.1.1
connectkit:
specifier: ^1.8.2
- version: 1.8.2(oy5vpqdkktocg6677w6heq4ezq)
+ version: 1.8.2(@babel/core@7.24.7)(@tanstack/react-query@5.45.1(react@19.0.0-rc-603e6108-20241029))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.10.4(slso2y5si5ebobzw4pa64fwb3i))
cryptocurrency-icons:
specifier: ^0.18.1
version: 0.18.1
framer-motion:
specifier: ^11.3.8
- version: 11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
next:
- specifier: ^14.2.4
- version: 14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 'catalog:'
+ version: 15.0.2(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
next-themes:
specifier: ^0.3.0
- version: 0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 0.3.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
pino:
specifier: ^9.2.0
version: 9.2.0
react:
- specifier: ^18.3.1
- version: 18.3.1
+ specifier: 'catalog:'
+ version: 19.0.0-rc-603e6108-20241029
react-dom:
- specifier: ^18.3.1
- version: 18.3.1(react@18.3.1)
+ specifier: 'catalog:'
+ version: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
react-markdown:
specifier: ^9.0.1
- version: 9.0.1(@types/react@18.3.3)(react@18.3.1)
+ version: 9.0.1(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
shiki:
specifier: ^1.7.0
version: 1.7.0
@@ -105,7 +138,7 @@ importers:
version: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
wagmi:
specifier: ^2.10.4
- version: 2.10.4(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ version: 2.10.4(slso2y5si5ebobzw4pa64fwb3i)
zod:
specifier: ^3.23.8
version: 3.23.8
@@ -114,16 +147,16 @@ importers:
specifier: ^4.9.1
version: 4.9.1
'@cprussin/eslint-config':
- specifier: ^3.0.0
- version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)
+ specifier: 'catalog:'
+ version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)
'@cprussin/jest-config':
- specifier: ^1.4.1
- version: 1.4.1(@babel/core@7.24.7)(@jest/globals@29.7.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/jest@29.5.12)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(eslint@9.5.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)
+ specifier: 'catalog:'
+ version: 1.4.1(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(eslint@9.5.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)
'@cprussin/prettier-config':
- specifier: ^2.1.1
+ specifier: 'catalog:'
version: 2.1.1(prettier@3.3.2)
'@cprussin/tsconfig':
- specifier: ^3.0.1
+ specifier: 'catalog:'
version: 3.0.1
'@svgr/webpack':
specifier: ^8.1.0
@@ -138,11 +171,11 @@ importers:
specifier: ^20.14.6
version: 20.14.7
'@types/react':
- specifier: ^18.3.3
- version: 18.3.3
+ specifier: 'catalog:'
+ version: types-react@19.0.0-rc.1
'@types/react-dom':
- specifier: ^18.3.0
- version: 18.3.0
+ specifier: 'catalog:'
+ version: types-react-dom@19.0.0-rc.1
autoprefixer:
specifier: ^10.4.19
version: 10.4.19(postcss@8.4.38)
@@ -339,10 +372,10 @@ importers:
version: 3.0.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)
'@heroicons/react':
specifier: ^2.1.4
- version: 2.1.4(react@18.3.1)
+ version: 2.1.4(react@19.0.0-rc-603e6108-20241029)
'@next/third-parties':
specifier: ^14.2.5
- version: 14.2.6(next@14.2.6(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ version: 14.2.6(next@15.0.2(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@pythnetwork/hermes-client':
specifier: workspace:*
version: link:../hermes/client/js
@@ -351,28 +384,31 @@ importers:
version: link:../../governance/pyth_staking_sdk
'@react-aria/toast':
specifier: 3.0.0-beta.16
- version: 3.0.0-beta.16(react@18.3.1)
+ version: 3.0.0-beta.16(react@19.0.0-rc-603e6108-20241029)
'@react-hookz/web':
specifier: ^24.0.4
- version: 24.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 24.0.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@react-stately/toast':
specifier: 3.0.0-beta.6
- version: 3.0.0-beta.6(react@18.3.1)
+ version: 3.0.0-beta.6(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base':
specifier: ^0.9.23
version: 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-react':
specifier: ^0.15.35
- version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-react-ui':
specifier: ^0.9.35
- version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-wallets':
specifier: 0.19.10
- version: 0.19.10(@babel/runtime@7.25.0)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)
+ version: 0.19.10(@babel/runtime@7.25.0)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
'@solana/web3.js':
specifier: 1.92.3
version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@vercel/functions':
+ specifier: ^1.5.0
+ version: 1.5.0
bcp-47:
specifier: ^2.1.0
version: 2.1.0
@@ -383,14 +419,14 @@ importers:
specifier: ^2.13.1
version: 2.13.1
framer-motion:
- specifier: ^11.3.8
- version: 11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 'catalog:'
+ version: 11.11.10(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
ip-range-check:
specifier: ^0.2.0
version: 0.2.0
next:
- specifier: ^14.2.5
- version: 14.2.6(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 'catalog:'
+ version: 15.0.2(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
pino:
specifier: ^9.3.2
version: 9.3.2
@@ -398,23 +434,23 @@ importers:
specifier: ^0.0.11
version: 0.0.11(encoding@0.1.13)
react:
- specifier: ^18.3.1
- version: 18.3.1
+ specifier: 'catalog:'
+ version: 19.0.0-rc-603e6108-20241029
react-aria:
specifier: ^3.34.3
- version: 3.34.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 3.34.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
react-aria-components:
specifier: ^1.3.3
- version: 1.3.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.3.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
react-dom:
- specifier: ^18.3.1
- version: 18.3.1(react@18.3.1)
+ specifier: 'catalog:'
+ version: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
recharts:
- specifier: ^2.12.7
- version: 2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^2.13.2
+ version: 2.13.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
swr:
specifier: ^2.2.5
- version: 2.2.5(react@18.3.1)
+ version: 2.2.5(react@19.0.0-rc-603e6108-20241029)
zod:
specifier: ^3.23.8
version: 3.23.8
@@ -423,16 +459,16 @@ importers:
specifier: ^4.9.1
version: 4.9.1
'@cprussin/eslint-config':
- specifier: ^3.0.0
- version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(typescript@5.5.4)
+ specifier: 'catalog:'
+ version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(typescript@5.5.4)
'@cprussin/jest-config':
- specifier: ^1.4.1
- version: 1.4.1(@babel/core@7.25.8)(@jest/globals@29.7.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/jest@29.5.12)(@types/node@22.2.0)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.9.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(utf-8-validate@5.0.10)
+ specifier: 'catalog:'
+ version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.2.0)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.9.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(utf-8-validate@5.0.10)
'@cprussin/prettier-config':
- specifier: ^2.1.1
+ specifier: 'catalog:'
version: 2.1.1(prettier@3.3.2)
'@cprussin/tsconfig':
- specifier: ^3.0.1
+ specifier: 'catalog:'
version: 3.0.1
'@svgr/webpack':
specifier: ^8.1.0
@@ -447,11 +483,11 @@ importers:
specifier: ^22.0.0
version: 22.2.0
'@types/react':
- specifier: ^18.3.3
- version: 18.3.3
+ specifier: 'catalog:'
+ version: types-react@19.0.0-rc.1
'@types/react-dom':
- specifier: ^18.3.0
- version: 18.3.0
+ specifier: 'catalog:'
+ version: types-react-dom@19.0.0-rc.1
autoprefixer:
specifier: ^10.4.19
version: 10.4.19(postcss@8.4.41)
@@ -749,10 +785,10 @@ importers:
devDependencies:
'@cprussin/eslint-config':
specifier: ^3.0.0
- version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(typescript@5.5.4)
+ version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(typescript@5.5.4)
'@cprussin/jest-config':
specifier: ^1.4.1
- version: 1.4.1(@babel/core@7.25.8)(@jest/globals@29.7.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/jest@29.5.12)(@types/node@22.2.0)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.9.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(utf-8-validate@5.0.10)
+ version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.2.0)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.9.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(utf-8-validate@5.0.10)
'@cprussin/prettier-config':
specifier: ^2.1.1
version: 2.1.1(prettier@3.3.2)
@@ -761,7 +797,7 @@ importers:
version: 3.0.1
'@solana/wallet-adapter-react':
specifier: ^0.15.28
- version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@types/jest':
specifier: ^29.5.12
version: 29.5.12
@@ -1007,8 +1043,8 @@ importers:
specifier: ^0.29.0
version: 0.29.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@headlessui/react':
- specifier: ^1.7.7
- version: 1.7.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: ^2.2.0
+ version: 2.2.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@pythnetwork/client':
specifier: ^2.22.0
version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -1020,10 +1056,10 @@ importers:
version: link:../xc_admin_common
'@radix-ui/react-label':
specifier: ^2.0.0
- version: 2.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.0.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@radix-ui/react-tooltip':
specifier: ^1.0.3
- version: 1.0.3(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.0.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
'@solana/spl-token':
specifier: ^0.3.7
version: 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -1032,13 +1068,13 @@ importers:
version: 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-react':
specifier: ^0.15.28
- version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-react-ui':
specifier: ^0.9.27
- version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-wallets':
specifier: 0.19.10
- version: 0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)
+ version: 0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
'@solana/web3.js':
specifier: 1.92.3
version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -1047,7 +1083,7 @@ importers:
version: 1.0.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@tanstack/react-table':
specifier: ^8.7.6
- version: 8.7.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 8.7.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
axios:
specifier: ^1.4.0
version: 1.6.8
@@ -1061,26 +1097,26 @@ importers:
specifier: workspace:^
version: link:../../../../pythnet/message_buffer
next:
- specifier: ^14.2.3
- version: 14.2.3(@babel/core@7.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ specifier: 'catalog:'
+ version: 15.0.2(@babel/core@7.24.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
next-seo:
specifier: ^5.15.0
- version: 5.15.0(next@14.2.3(@babel/core@7.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.15.0(next@15.0.2(@babel/core@7.24.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
react:
- specifier: ^18.3.1
- version: 18.3.1
+ specifier: 'catalog:'
+ version: 19.0.0-rc-603e6108-20241029
react-dom:
- specifier: ^18.3.1
- version: 18.3.1(react@18.3.1)
+ specifier: 'catalog:'
+ version: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
react-hot-toast:
specifier: ^2.4.0
- version: 2.4.0(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 2.4.0(csstype@3.1.3)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
sharp:
specifier: ^0.33.4
version: 0.33.4
use-debounce:
specifier: ^9.0.2
- version: 9.0.3(react@18.3.1)
+ version: 9.0.3(react@19.0.0-rc-603e6108-20241029)
web3:
specifier: ^4.8.0
version: 4.8.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)
@@ -1098,11 +1134,11 @@ importers:
specifier: ^18.11.18
version: 18.11.18
'@types/react':
- specifier: ^18.3.3
- version: 18.3.3
+ specifier: 'catalog:'
+ version: types-react@19.0.0-rc.1
'@types/react-dom':
- specifier: ^18.3.0
- version: 18.3.0
+ specifier: 'catalog:'
+ version: types-react-dom@19.0.0-rc.1
'@typescript-eslint/eslint-plugin':
specifier: ^7.7.0
version: 7.7.1(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5)
@@ -1147,16 +1183,16 @@ importers:
version: 1.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
devDependencies:
'@cprussin/eslint-config':
- specifier: ^3.0.0
- version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(typescript@5.6.3)
+ specifier: 'catalog:'
+ version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(typescript@5.6.3)
'@cprussin/jest-config':
- specifier: ^1.4.1
- version: 1.4.1(@babel/core@7.24.7)(@jest/globals@29.7.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/jest@29.5.13)(@types/node@22.7.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.12.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(utf-8-validate@6.0.4)
+ specifier: 'catalog:'
+ version: 1.4.1(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.7.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.12.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(utf-8-validate@6.0.4)
'@cprussin/prettier-config':
- specifier: ^2.1.1
+ specifier: 'catalog:'
version: 2.1.1(prettier@3.3.3)
'@cprussin/tsconfig':
- specifier: ^3.0.1
+ specifier: 'catalog:'
version: 3.0.1
'@phosphor-icons/react':
specifier: ^2.1.7
@@ -1178,7 +1214,7 @@ importers:
version: 8.3.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))
'@storybook/nextjs':
specifier: ^8.3.5
- version: 8.3.5(esbuild@0.22.0)(next@14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.22.0))
+ version: 8.3.5(esbuild@0.22.0)(next@15.0.2(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.22.0))
'@storybook/react':
specifier: ^8.3.5
version: 8.3.5(@storybook/test@8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3)
@@ -1189,8 +1225,8 @@ importers:
specifier: ^29.5.13
version: 29.5.13
'@types/react':
- specifier: ^18.3.11
- version: 18.3.11
+ specifier: 'catalog:'
+ version: types-react@19.0.0-rc.1
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.4.47)
@@ -1237,16 +1273,16 @@ importers:
packages/fonts:
devDependencies:
'@cprussin/eslint-config':
- specifier: ^3.0.0
- version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(typescript@5.6.3)
+ specifier: 'catalog:'
+ version: 3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(typescript@5.6.3)
'@cprussin/jest-config':
- specifier: ^1.4.1
- version: 1.4.1(@babel/core@7.25.8)(@jest/globals@29.7.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/jest@29.5.13)(@types/node@22.7.7)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.12.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(utf-8-validate@6.0.4)
+ specifier: 'catalog:'
+ version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.7.7)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.12.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(utf-8-validate@6.0.4)
'@cprussin/prettier-config':
- specifier: ^2.1.1
+ specifier: 'catalog:'
version: 2.1.1(prettier@3.3.3)
'@cprussin/tsconfig':
- specifier: ^3.0.1
+ specifier: 'catalog:'
version: 3.0.1
'@types/jest':
specifier: ^29.5.13
@@ -1259,7 +1295,7 @@ importers:
version: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
next:
specifier: ^14.2.15
- version: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 14.2.15(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
prettier:
specifier: ^3.3.3
version: 3.3.3
@@ -1934,7 +1970,7 @@ importers:
devDependencies:
'@solana/wallet-adapter-react':
specifier: ^0.15.28
- version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@types/jest':
specifier: ^29.4.0
version: 29.4.0
@@ -3838,10 +3874,6 @@ packages:
resolution: {integrity: sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.24.7':
- resolution: {integrity: sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==}
- engines: {node: '>=6.9.0'}
-
'@babel/runtime@7.24.8':
resolution: {integrity: sha512-5F7SDGs1T72ZczbRwbGO9lQi0NLjQxzl6i4lJxLxfW9U5UluCSyEJeniWvnhl3/euNiqQVbo8zruhsDfid0esA==}
engines: {node: '>=6.9.0'}
@@ -5056,19 +5088,12 @@ packages:
'@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
- '@headlessui/react@1.7.8':
- resolution: {integrity: sha512-zcwb0kd7L05hxmoAMIioEaOn235Dg0fUO+iGbLPgLVSjzl/l39V6DTpC2Df49PE5aG5/f5q0PZ9ZHZ78ENNV+A==}
+ '@headlessui/react@2.2.0':
+ resolution: {integrity: sha512-RzCEg+LXsuI7mHiSomsu/gBJSjpupm6A1qIZ5sWjd7JhARNlMiSA4kKfJpCKwU9tE+zMRterhhrP74PvfJrpXQ==}
engines: {node: '>=10'}
peerDependencies:
- react: ^16 || ^17 || ^18
- react-dom: ^16 || ^17 || ^18
-
- '@headlessui/react@2.0.4':
- resolution: {integrity: sha512-16d/rOLeYsFsmPlRmXGu8DCBzrWD0zV1Ccx3n73wN87yFu8Y9+X04zflv8EJEt9TAYRyLKOmQXUnOnqQl6NgpA==}
- engines: {node: '>=10'}
- peerDependencies:
- react: ^18
- react-dom: ^18
+ react: ^18 || ^19 || ^19.0.0-rc
+ react-dom: ^18 || ^19 || ^19.0.0-rc
'@heroicons/react@2.1.4':
resolution: {integrity: sha512-ju0wj0wwrUTMQ2Yceyrma7TKuI3BpSjp+qKqV81K9KGcUHdvTMdiwfRc2cwXBp3uXtKuDZkh0v03nWOQnJFv2Q==}
@@ -5114,113 +5139,218 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@img/sharp-darwin-arm64@0.33.5':
+ resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [darwin]
+
'@img/sharp-darwin-x64@0.33.4':
resolution: {integrity: sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==}
engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [darwin]
+ '@img/sharp-darwin-x64@0.33.5':
+ resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [darwin]
+
'@img/sharp-libvips-darwin-arm64@1.0.2':
resolution: {integrity: sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==}
engines: {macos: '>=11', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm64]
os: [darwin]
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
+ cpu: [arm64]
+ os: [darwin]
+
'@img/sharp-libvips-darwin-x64@1.0.2':
resolution: {integrity: sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==}
engines: {macos: '>=10.13', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [darwin]
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
+ cpu: [x64]
+ os: [darwin]
+
'@img/sharp-libvips-linux-arm64@1.0.2':
resolution: {integrity: sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==}
engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm64]
os: [linux]
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
+ cpu: [arm64]
+ os: [linux]
+
'@img/sharp-libvips-linux-arm@1.0.2':
resolution: {integrity: sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==}
engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm]
os: [linux]
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
+ cpu: [arm]
+ os: [linux]
+
'@img/sharp-libvips-linux-s390x@1.0.2':
resolution: {integrity: sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==}
engines: {glibc: '>=2.28', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [s390x]
os: [linux]
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
+ cpu: [s390x]
+ os: [linux]
+
'@img/sharp-libvips-linux-x64@1.0.2':
resolution: {integrity: sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==}
engines: {glibc: '>=2.26', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [linux]
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
+ cpu: [x64]
+ os: [linux]
+
'@img/sharp-libvips-linuxmusl-arm64@1.0.2':
resolution: {integrity: sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==}
engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm64]
os: [linux]
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
+ cpu: [arm64]
+ os: [linux]
+
'@img/sharp-libvips-linuxmusl-x64@1.0.2':
resolution: {integrity: sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==}
engines: {musl: '>=1.2.2', npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [linux]
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
+ cpu: [x64]
+ os: [linux]
+
'@img/sharp-linux-arm64@0.33.4':
resolution: {integrity: sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==}
engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm64]
os: [linux]
+ '@img/sharp-linux-arm64@0.33.5':
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
'@img/sharp-linux-arm@0.33.4':
resolution: {integrity: sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==}
engines: {glibc: '>=2.28', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm]
os: [linux]
+ '@img/sharp-linux-arm@0.33.5':
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm]
+ os: [linux]
+
'@img/sharp-linux-s390x@0.33.4':
resolution: {integrity: sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==}
engines: {glibc: '>=2.31', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [s390x]
os: [linux]
+ '@img/sharp-linux-s390x@0.33.5':
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [s390x]
+ os: [linux]
+
'@img/sharp-linux-x64@0.33.4':
resolution: {integrity: sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==}
engines: {glibc: '>=2.26', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [linux]
+ '@img/sharp-linux-x64@0.33.5':
+ resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
'@img/sharp-linuxmusl-arm64@0.33.4':
resolution: {integrity: sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==}
engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [arm64]
os: [linux]
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
'@img/sharp-linuxmusl-x64@0.33.4':
resolution: {integrity: sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==}
engines: {musl: '>=1.2.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [linux]
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
'@img/sharp-wasm32@0.33.4':
resolution: {integrity: sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [wasm32]
+ '@img/sharp-wasm32@0.33.5':
+ resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [wasm32]
+
'@img/sharp-win32-ia32@0.33.4':
resolution: {integrity: sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [ia32]
os: [win32]
+ '@img/sharp-win32-ia32@0.33.5':
+ resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ia32]
+ os: [win32]
+
'@img/sharp-win32-x64@0.33.4':
resolution: {integrity: sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0', yarn: '>=3.2.0'}
cpu: [x64]
os: [win32]
+ '@img/sharp-win32-x64@0.33.5':
+ resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [win32]
+
'@improbable-eng/grpc-web@0.14.1':
resolution: {integrity: sha512-XaIYuunepPxoiGVLLHmlnVminUGzBTnXr8Wv7khzmLWbNw4TCwJKX09GSMJlKhu/TRk6gms0ySFxewaETSBqgw==}
peerDependencies:
@@ -5861,14 +5991,8 @@ packages:
'@next/env@14.2.15':
resolution: {integrity: sha512-S1qaj25Wru2dUpcIZMjxeMVSwkt8BK4dmWHHiBuRstcIyOsMapqT4A4jSB6onvqeygkSSmOkyny9VVx8JIGamQ==}
- '@next/env@14.2.3':
- resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==}
-
- '@next/env@14.2.4':
- resolution: {integrity: sha512-3EtkY5VDkuV2+lNmKlbkibIJxcO4oIHEhBWne6PaAp+76J9KoSsGvNikp6ivzAT8dhhBMYrm6op2pS1ApG0Hzg==}
-
- '@next/env@14.2.6':
- resolution: {integrity: sha512-bs5DFKV+08EjWrl8EB+KKqev1ZTNONH1vFCaHh911aaB362NnP32UDTbE9VQhyiAgbFqJsfDkSxFERNDDb3j0g==}
+ '@next/env@15.0.2':
+ resolution: {integrity: sha512-c0Zr0ModK5OX7D4ZV8Jt/wqoXtitLNPwUfG9zElCZztdaZyNVnN40rDXVZ/+FGuR4CcNV5AEfM6N8f+Ener7Dg==}
'@next/eslint-plugin-next@14.2.3':
resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==}
@@ -5879,20 +6003,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-arm64@14.2.3':
- resolution: {integrity: sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [darwin]
-
- '@next/swc-darwin-arm64@14.2.4':
- resolution: {integrity: sha512-AH3mO4JlFUqsYcwFUHb1wAKlebHU/Hv2u2kb1pAuRanDZ7pD/A/KPD98RHZmwsJpdHQwfEc/06mgpSzwrJYnNg==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [darwin]
-
- '@next/swc-darwin-arm64@14.2.6':
- resolution: {integrity: sha512-BtJZb+hYXGaVJJivpnDoi3JFVn80SHKCiiRUW3kk1SY6UCUy5dWFFSbh+tGi5lHAughzeduMyxbLt3pspvXNSg==}
+ '@next/swc-darwin-arm64@15.0.2':
+ resolution: {integrity: sha512-GK+8w88z+AFlmt+ondytZo2xpwlfAR8U6CRwXancHImh6EdGfHMIrTSCcx5sOSBei00GyLVL0ioo1JLKTfprgg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
@@ -5903,20 +6015,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@next/swc-darwin-x64@14.2.3':
- resolution: {integrity: sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [darwin]
-
- '@next/swc-darwin-x64@14.2.4':
- resolution: {integrity: sha512-QVadW73sWIO6E2VroyUjuAxhWLZWEpiFqHdZdoQ/AMpN9YWGuHV8t2rChr0ahy+irKX5mlDU7OY68k3n4tAZTg==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [darwin]
-
- '@next/swc-darwin-x64@14.2.6':
- resolution: {integrity: sha512-ZHRbGpH6KHarzm6qEeXKSElSXh8dS2DtDPjQt3IMwY8QVk7GbdDYjvV4NgSnDA9huGpGgnyy3tH8i5yHCqVkiQ==}
+ '@next/swc-darwin-x64@15.0.2':
+ resolution: {integrity: sha512-KUpBVxIbjzFiUZhiLIpJiBoelqzQtVZbdNNsehhUn36e2YzKHphnK8eTUW1s/4aPy5kH/UTid8IuVbaOpedhpw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
@@ -5927,20 +6027,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-gnu@14.2.3':
- resolution: {integrity: sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
-
- '@next/swc-linux-arm64-gnu@14.2.4':
- resolution: {integrity: sha512-KT6GUrb3oyCfcfJ+WliXuJnD6pCpZiosx2X3k66HLR+DMoilRb76LpWPGb4tZprawTtcnyrv75ElD6VncVamUQ==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
-
- '@next/swc-linux-arm64-gnu@14.2.6':
- resolution: {integrity: sha512-O4HqUEe3ZvKshXHcDUXn1OybN4cSZg7ZdwHJMGCXSUEVUqGTJVsOh17smqilIjooP/sIJksgl+1kcf2IWMZWHg==}
+ '@next/swc-linux-arm64-gnu@15.0.2':
+ resolution: {integrity: sha512-9J7TPEcHNAZvwxXRzOtiUvwtTD+fmuY0l7RErf8Yyc7kMpE47MIQakl+3jecmkhOoIyi/Rp+ddq7j4wG6JDskQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -5951,20 +6039,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@14.2.3':
- resolution: {integrity: sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
-
- '@next/swc-linux-arm64-musl@14.2.4':
- resolution: {integrity: sha512-Alv8/XGSs/ytwQcbCHwze1HmiIkIVhDHYLjczSVrf0Wi2MvKn/blt7+S6FJitj3yTlMwMxII1gIJ9WepI4aZ/A==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
-
- '@next/swc-linux-arm64-musl@14.2.6':
- resolution: {integrity: sha512-xUcdhr2hfalG8RDDGSFxQ75yOG894UlmFS4K2M0jLrUhauRBGOtUOxoDVwiIIuZQwZ3Y5hDsazNjdYGB0cQ9yQ==}
+ '@next/swc-linux-arm64-musl@15.0.2':
+ resolution: {integrity: sha512-BjH4ZSzJIoTTZRh6rG+a/Ry4SW0HlizcPorqNBixBWc3wtQtj4Sn9FnRZe22QqrPnzoaW0ctvSz4FaH4eGKMww==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -5975,20 +6051,8 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-gnu@14.2.3':
- resolution: {integrity: sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
-
- '@next/swc-linux-x64-gnu@14.2.4':
- resolution: {integrity: sha512-ze0ShQDBPCqxLImzw4sCdfnB3lRmN3qGMB2GWDRlq5Wqy4G36pxtNOo2usu/Nm9+V2Rh/QQnrRc2l94kYFXO6Q==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
-
- '@next/swc-linux-x64-gnu@14.2.6':
- resolution: {integrity: sha512-InosKxw8UMcA/wEib5n2QttwHSKHZHNSbGcMepBM0CTcNwpxWzX32KETmwbhKod3zrS8n1vJ+DuJKbL9ZAB0Ag==}
+ '@next/swc-linux-x64-gnu@15.0.2':
+ resolution: {integrity: sha512-i3U2TcHgo26sIhcwX/Rshz6avM6nizrZPvrDVDY1bXcLH1ndjbO8zuC7RoHp0NSK7wjJMPYzm7NYL1ksSKFreA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -5999,20 +6063,8 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@14.2.3':
- resolution: {integrity: sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
-
- '@next/swc-linux-x64-musl@14.2.4':
- resolution: {integrity: sha512-8dwC0UJoc6fC7PX70csdaznVMNr16hQrTDAMPvLPloazlcaWfdPogq+UpZX6Drqb1OBlwowz8iG7WR0Tzk/diQ==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
-
- '@next/swc-linux-x64-musl@14.2.6':
- resolution: {integrity: sha512-d4QXfJmt5pGJ7cG8qwxKSBnO5AXuKAFYxV7qyDRHnUNvY/dgDh+oX292gATpB2AAHgjdHd5ks1wXxIEj6muLUQ==}
+ '@next/swc-linux-x64-musl@15.0.2':
+ resolution: {integrity: sha512-AMfZfSVOIR8fa+TXlAooByEF4OB00wqnms1sJ1v+iu8ivwvtPvnkwdzzFMpsK5jA2S9oNeeQ04egIWVb4QWmtQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -6023,20 +6075,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@next/swc-win32-arm64-msvc@14.2.3':
- resolution: {integrity: sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [win32]
-
- '@next/swc-win32-arm64-msvc@14.2.4':
- resolution: {integrity: sha512-jxyg67NbEWkDyvM+O8UDbPAyYRZqGLQDTPwvrBBeOSyVWW/jFQkQKQ70JDqDSYg1ZDdl+E3nkbFbq8xM8E9x8A==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [win32]
-
- '@next/swc-win32-arm64-msvc@14.2.6':
- resolution: {integrity: sha512-AlgIhk4/G+PzOG1qdF1b05uKTMsuRatFlFzAi5G8RZ9h67CVSSuZSbqGHbJDlcV1tZPxq/d4G0q6qcHDKWf4aQ==}
+ '@next/swc-win32-arm64-msvc@15.0.2':
+ resolution: {integrity: sha512-JkXysDT0/hEY47O+Hvs8PbZAeiCQVxKfGtr4GUpNAhlG2E0Mkjibuo8ryGD29Qb5a3IOnKYNoZlh/MyKd2Nbww==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
@@ -6047,44 +6087,14 @@ packages:
cpu: [ia32]
os: [win32]
- '@next/swc-win32-ia32-msvc@14.2.3':
- resolution: {integrity: sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw==}
- engines: {node: '>= 10'}
- cpu: [ia32]
- os: [win32]
-
- '@next/swc-win32-ia32-msvc@14.2.4':
- resolution: {integrity: sha512-twrmN753hjXRdcrZmZttb/m5xaCBFa48Dt3FbeEItpJArxriYDunWxJn+QFXdJ3hPkm4u7CKxncVvnmgQMY1ag==}
- engines: {node: '>= 10'}
- cpu: [ia32]
- os: [win32]
-
- '@next/swc-win32-ia32-msvc@14.2.6':
- resolution: {integrity: sha512-hNukAxq7hu4o5/UjPp5jqoBEtrpCbOmnUqZSKNJG8GrUVzfq0ucdhQFVrHcLRMvQcwqqDh1a5AJN9ORnNDpgBQ==}
- engines: {node: '>= 10'}
- cpu: [ia32]
- os: [win32]
-
'@next/swc-win32-x64-msvc@14.2.15':
resolution: {integrity: sha512-SzqGbsLsP9OwKNUG9nekShTwhj6JSB9ZLMWQ8g1gG6hdE5gQLncbnbymrwy2yVmH9nikSLYRYxYMFu78Ggp7/g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@next/swc-win32-x64-msvc@14.2.3':
- resolution: {integrity: sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [win32]
-
- '@next/swc-win32-x64-msvc@14.2.4':
- resolution: {integrity: sha512-tkLrjBzqFTP8DVrAAQmZelEahfR9OxWpFR++vAI9FBhCiIxtwHwBHC23SBHCTURBtwB4kc/x44imVOnkKGNVGg==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [win32]
-
- '@next/swc-win32-x64-msvc@14.2.6':
- resolution: {integrity: sha512-NANtw+ead1rSDK1jxmzq3TYkl03UNK2KHqUYf1nIhNci6NkeqBD4s1njSzYGIlSHxCK+wSaL8RXZm4v+NF/pMw==}
+ '@next/swc-win32-x64-msvc@15.0.2':
+ resolution: {integrity: sha512-foaUL0NqJY/dX0Pi/UcZm5zsmSk5MtP/gxx3xOPyREkMFN+CTjctPfu3QaqrQHinaKdPnMWPJDKt4VjDfTBe/Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -7090,11 +7100,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@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/focus@3.18.2':
resolution: {integrity: sha512-Jc/IY+StjA3uqN73o6txKQ527RFU7gnG5crEl5Xy3V+gbYp2O5L3ezAo/E0Ipi2cyMbG6T5Iit1IDs7hcGu8aw==}
peerDependencies:
@@ -7149,11 +7154,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@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/interactions@3.22.2':
resolution: {integrity: sha512-xE/77fRVSlqHp2sfkrMeNLrqf2amF/RyuAS6T5oDJemRSgYM3UoxTbWjucPhfnoW7r32pFPHHgz4lbdX8xqD/g==}
peerDependencies:
@@ -7344,12 +7344,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@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/ssr@3.9.5':
resolution: {integrity: sha512-xEwGKoysu+oXulibNUSkXf8itW0npHHTa6c4AyYeZIJyRoegeteYuFpZUBPtIDE8RfHdNsSmE1ssOkxRnwbkuQ==}
engines: {node: '>= 12'}
@@ -7465,11 +7459,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@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/utils@3.25.2':
resolution: {integrity: sha512-GdIvG8GBJJZygB4L2QJP1Gabyn2mjFsha73I2wSe+o4DYeGWoJiMZRM06PyTIxLH4S7Sn7eVDtsSBfkc2VY/NA==}
peerDependencies:
@@ -7885,11 +7874,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@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/utils@3.10.3':
resolution: {integrity: sha512-moClv7MlVSHpbYtQIkm0Cx+on8Pgt1XqtPx6fy9rQFb2DNc9u1G3AUVnqA17buOkH1vLxAtX4MedlxMWyRCYYA==}
peerDependencies:
@@ -8115,11 +8099,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
- '@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/shared@3.24.1':
resolution: {integrity: sha512-AUQeGYEm/zDTN6zLzdXolDxz3Jk5dDL7f506F07U8tBwxNNI3WRdhU84G0/AaFikOZzDXhOZDr3MhQMzyE7Ydw==}
peerDependencies:
@@ -9328,6 +9307,9 @@ packages:
'@swc/helpers@0.5.11':
resolution: {integrity: sha512-YNlnKRWF2sVojTpIyzwou9XoTNbzbzONwRhOoniEioF1AtaitTvVZblaQRrAzChWQ1bLYyYSWzM18y4WwgzJ+A==}
+ '@swc/helpers@0.5.13':
+ resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==}
+
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
@@ -9374,8 +9356,8 @@ packages:
react: '>=16'
react-dom: '>=16'
- '@tanstack/react-virtual@3.5.0':
- resolution: {integrity: sha512-rtvo7KwuIvqK9zb0VZ5IL7fiJAEnG+0EiFZz8FUOs+2mhGqdGmjKIaT1XU7Zq0eFqL0jonLlhbayJI/J2SA/Bw==}
+ '@tanstack/react-virtual@3.10.8':
+ resolution: {integrity: sha512-VbzbVGSsZlQktyLrP5nxE+vE1ZR+U0NFAWPbJLoG2+DKPwd2D7dVICTVIIaYlJqX1ZCEnYDbaOpmMwbsyhBoIA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -9384,8 +9366,8 @@ packages:
resolution: {integrity: sha512-OvKx7v0qJTyPkMhqsWzVPZnARiqdGvDvEg8tZ/GSQs7t0Vb2sdtkGg7cdzUZ67sIg9o5/gSwvvT84ouSaP8euA==}
engines: {node: '>=12'}
- '@tanstack/virtual-core@3.5.0':
- resolution: {integrity: sha512-KnPRCkQTyqhanNC0K63GBG3wA8I+D1fQuVnAvcBF8f13akOKeQp1gSbu6f77zCxhEk727iV5oQnbHLYzHrECLg==}
+ '@tanstack/virtual-core@3.10.8':
+ resolution: {integrity: sha512-PBu00mtt95jbKFi6Llk9aik8bnR3tR/oQP1o3TSi+iG//+Q2RTIzCEgKkHG8BB86kxMNW6O8wku+Lmi+QFR6jA==}
'@terra-money/terra.js@3.1.10':
resolution: {integrity: sha512-MqR16LjTUyVD4HnEavP1iBW0c1roCoRHH/E1x9P44pXzgtv2wsMeP+2un4Bnck4Nkv/46Xvy/BSKiY90ll3BKA==}
@@ -9405,27 +9387,6 @@ packages:
resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
engines: {node: '>=18'}
- '@testing-library/jest-dom@6.4.6':
- resolution: {integrity: sha512-8qpnGVincVDLEcQXWaHOf6zmlbwTKc6Us6PPu4CRnPXCzo2OGBS5cwgMMOWdxDpEz1mkbvXHpEy99M5Yvt682w==}
- engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
- peerDependencies:
- '@jest/globals': '>= 28'
- '@types/bun': latest
- '@types/jest': '>= 28'
- jest: '>= 28'
- vitest: '>= 0.32'
- peerDependenciesMeta:
- '@jest/globals':
- optional: true
- '@types/bun':
- optional: true
- '@types/jest':
- optional: true
- jest:
- optional: true
- vitest:
- optional: true
-
'@testing-library/jest-dom@6.5.0':
resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
@@ -10095,15 +10056,9 @@ packages:
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@18.3.0':
- resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
-
'@types/react@18.3.11':
resolution: {integrity: sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==}
- '@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==}
@@ -10522,6 +10477,15 @@ packages:
resolution: {integrity: sha512-SpuPAo+MlAYMtcMcC0plx7Tv4Mp7SQhJJj1iIENlOnABL24kxHpL09XLQMGzZIzIW7upR8c3edwgfpRtp+dhVw==}
engines: {node: '>= 10'}
+ '@vercel/functions@1.5.0':
+ resolution: {integrity: sha512-ub3ptVeOsx8UPgiTv9+rpQJqmF7VG8QIzguBZo0E0VRAyJliB8bt1ooB9Wrh3333dKzMNS8NMe3iFtf6OPUP3A==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ '@aws-sdk/credential-provider-web-identity': '*'
+ peerDependenciesMeta:
+ '@aws-sdk/credential-provider-web-identity':
+ optional: true
+
'@vercel/gatsby-plugin-vercel-analytics@1.0.11':
resolution: {integrity: sha512-iTEA0vY6RBPuEzkwUTVzSHDATo1aF6bdLLspI68mQ/BTbi5UQEGjpjyzdKOVcSYApDtFU6M6vypZ1t4vIEnHvw==}
@@ -13966,11 +13930,6 @@ packages:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- escodegen@2.0.0:
- resolution: {integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw==}
- engines: {node: '>=6.0'}
- hasBin: true
-
escodegen@2.1.0:
resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
engines: {node: '>=6.0'}
@@ -14827,6 +14786,20 @@ packages:
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
+ framer-motion@11.11.10:
+ resolution: {integrity: sha512-061Bt1jL/vIm+diYIiA4dP/Yld7vD47ROextS7ESBW5hr4wQFhxB5D5T5zAc3c/5me3cOa+iO5LqhA38WDln/A==}
+ peerDependencies:
+ '@emotion/is-prop-valid': '*'
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ peerDependenciesMeta:
+ '@emotion/is-prop-valid':
+ optional: true
+ react:
+ optional: true
+ react-dom:
+ optional: true
+
framer-motion@11.3.8:
resolution: {integrity: sha512-1D+RDTsIp4Rz2dq/oToqSEc9idEQwgBRQyBq4rGpFba+0Z+GCbj9z1s0+ikFbanWe3YJ0SqkNlDe08GcpFGj5A==}
peerDependencies:
@@ -16851,10 +16824,6 @@ packages:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
- levn@0.3.0:
- resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
- engines: {node: '>= 0.8.0'}
-
levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
@@ -17827,56 +17796,23 @@ packages:
sass:
optional: true
- next@14.2.3:
- resolution: {integrity: sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A==}
- engines: {node: '>=18.17.0'}
- hasBin: true
- peerDependencies:
- '@opentelemetry/api': ^1.1.0
- '@playwright/test': ^1.41.2
- react: ^18.2.0
- react-dom: ^18.2.0
- sass: ^1.3.0
- peerDependenciesMeta:
- '@opentelemetry/api':
- optional: true
- '@playwright/test':
- optional: true
- sass:
- optional: true
-
- next@14.2.4:
- resolution: {integrity: sha512-R8/V7vugY+822rsQGQCjoLhMuC9oFj9SOi4Cl4b2wjDrseD0LRZ10W7R6Czo4w9ZznVSshKjuIomsRjvm9EKJQ==}
- engines: {node: '>=18.17.0'}
+ next@15.0.2:
+ resolution: {integrity: sha512-rxIWHcAu4gGSDmwsELXacqAPUk+j8dV/A9cDF5fsiCMpkBDYkO2AEaL1dfD+nNmDiU6QMCFN8Q30VEKapT9UHQ==}
+ engines: {node: '>=18.18.0'}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
'@playwright/test': ^1.41.2
- react: ^18.2.0
- react-dom: ^18.2.0
+ babel-plugin-react-compiler: '*'
+ react: ^18.2.0 || 19.0.0-rc-02c0e824-20241028
+ react-dom: ^18.2.0 || 19.0.0-rc-02c0e824-20241028
sass: ^1.3.0
peerDependenciesMeta:
'@opentelemetry/api':
optional: true
'@playwright/test':
optional: true
- sass:
- optional: true
-
- next@14.2.6:
- resolution: {integrity: sha512-57Su7RqXs5CBKKKOagt8gPhMM3CpjgbeQhrtei2KLAA1vTNm7jfKS+uDARkSW8ZETUflDCBIsUKGSyQdRs4U4g==}
- engines: {node: '>=18.17.0'}
- hasBin: true
- peerDependencies:
- '@opentelemetry/api': ^1.1.0
- '@playwright/test': ^1.41.2
- react: ^18.2.0
- react-dom: ^18.2.0
- sass: ^1.3.0
- peerDependenciesMeta:
- '@opentelemetry/api':
- optional: true
- '@playwright/test':
+ babel-plugin-react-compiler:
optional: true
sass:
optional: true
@@ -18124,9 +18060,6 @@ packages:
nwsapi@2.2.10:
resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
- nwsapi@2.2.2:
- resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==}
-
nx@19.8.7:
resolution: {integrity: sha512-Y/QrHEzoumt1U53ihRfOpmvEIiYUUr8uca7qBz9kKN+tPwr+cfzNlJqGZswecPankY476h4GVNCsZB0MYSnrMw==}
hasBin: true
@@ -18303,10 +18236,6 @@ packages:
optimism@0.16.2:
resolution: {integrity: sha512-zWNbgWj+3vLEjZNIh/okkY2EUfX+vB9TJopzIZwT1xxaMqC5hRLLraePod4c5n4He08xuXNH+zhKFFCu390wiQ==}
- optionator@0.8.3:
- resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
- engines: {node: '>= 0.8.0'}
-
optionator@0.9.3:
resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
engines: {node: '>= 0.8.0'}
@@ -18974,10 +18903,6 @@ packages:
resolution: {integrity: sha512-QCYG84SgGyGzqJ/vlMsxeXd/pgL/I94ixdNFyh1PusWmTCyVfPJjZ1K1jvHtsbfnXQs2TSkEP2fR7QiMZAnKFQ==}
engines: {node: '>= 0.6'}
- prelude-ls@1.1.2:
- resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
- engines: {node: '>= 0.8.0'}
-
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -19430,6 +19355,11 @@ packages:
peerDependencies:
react: ^18.3.1
+ react-dom@19.0.0-rc-603e6108-20241029:
+ resolution: {integrity: sha512-1jaWZcv3V6R39ZnDU3FtGSXtEm/z/lCRFnWmvbp019wPffFGKoXDv+i5KoyQ5yUBpwumImFrKTWXYQluOnm7Jw==}
+ peerDependencies:
+ react: 19.0.0-rc-603e6108-20241029
+
react-element-to-jsx-string@15.0.0:
resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==}
peerDependencies:
@@ -19561,6 +19491,10 @@ packages:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
+ react@19.0.0-rc-603e6108-20241029:
+ resolution: {integrity: sha512-NXn7GRnAqiL12ZxUJCUjKT5T7jtqHzYp/4moEYZ4Uv0mUhBT4kFbuYQcPSAJTuP67kENUw79DgWfGbqg5qnh1w==}
+ engines: {node: '>=0.10.0'}
+
read-cache@1.0.0:
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
@@ -19665,8 +19599,8 @@ packages:
recharts-scale@0.4.5:
resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
- recharts@2.12.7:
- resolution: {integrity: sha512-hlLJMhPQfv4/3NBSAyq3gzGg4h2v69RJh6KU7b3pXYNNAELs9kEoXOjbkxdXpALqKBoVmVptGfLpxdaVYqjmXQ==}
+ recharts@2.13.2:
+ resolution: {integrity: sha512-UDLGFmnsBluDIPpQb9uty0ejb+jiVI71vkki8vVsR6ZCJdgjBfKQoQfft4re99CKlTy9qjQApxCLG6TrxJkeAg==}
engines: {node: '>=14'}
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0
@@ -20059,6 +19993,9 @@ packages:
scheduler@0.24.0-canary-efb381bbf-20230505:
resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==}
+ scheduler@0.25.0-rc-603e6108-20241029:
+ resolution: {integrity: sha512-pFwF6H1XrSdYYNLfOcGlM28/j8CGLu8IvdrxqhjWULe2bPcKiKW4CV+OWqR/9fT52mywx65l7ysNkjLKBda7eA==}
+
schema-utils@2.7.0:
resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==}
engines: {node: '>= 8.9.0'}
@@ -20225,6 +20162,10 @@ packages:
resolution: {integrity: sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==}
engines: {libvips: '>=8.15.2', node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ sharp@0.33.5:
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+
shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
@@ -21425,10 +21366,6 @@ packages:
tweetnacl@1.0.3:
resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==}
- type-check@0.3.2:
- resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
- engines: {node: '>= 0.8.0'}
-
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
@@ -21526,6 +21463,12 @@ packages:
typeforce@1.18.0:
resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==}
+ types-react-dom@19.0.0-rc.1:
+ resolution: {integrity: sha512-VSLZJl8VXCD0fAWp7DUTFUDCcZ8DVXOQmjhJMD03odgeFmu14ZQJHCXeETm3BEAhJqfgJaFkLnGkQv88sRx0fQ==}
+
+ types-react@19.0.0-rc.1:
+ resolution: {integrity: sha512-RshndUfqTW6K3STLPis8BtAYCGOkMbtvYsi90gmVNDZBXUyUc5juf2PE9LfS/JmOlUIRO8cWTS/1MTnmhjDqyQ==}
+
typescript-compare@0.0.2:
resolution: {integrity: sha512-8ja4j7pMHkfLJQO2/8tut7ub+J3Lw2S3061eJLFQcvs3tsmJKp8KG5NtpLn7KcY2w08edF74BSVN7qJS0U6oHA==}
@@ -22728,10 +22671,6 @@ packages:
engines: {node: '>= 0.10.0'}
hasBin: true
- word-wrap@1.2.5:
- resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
- engines: {node: '>=0.10.0'}
-
wordwrap@1.0.0:
resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
@@ -23513,11 +23452,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/eslint-parser@7.24.7(@babel/core@7.24.7)(eslint@9.5.0)':
+ '@babel/eslint-parser@7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))':
dependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
'@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-visitor-keys: 2.1.0
semver: 6.3.1
@@ -24751,17 +24690,17 @@ snapshots:
'@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.0)':
dependencies:
'@babel/core': 7.24.0
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.24.7)':
dependencies:
'@babel/core': 7.24.7
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.25.8)':
dependencies:
'@babel/core': 7.25.8
- '@babel/helper-plugin-utils': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.24.0)':
dependencies:
@@ -27246,10 +27185,6 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/runtime@7.24.7':
- dependencies:
- regenerator-runtime: 0.14.1
-
'@babel/runtime@7.24.8':
dependencies:
regenerator-runtime: 0.14.1
@@ -28322,34 +28257,34 @@ snapshots:
transitivePeerDependencies:
- debug
- '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)':
+ '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/eslint-parser': 7.24.7(@babel/core@7.24.7)(eslint@9.5.0)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.5.0
+ '@eslint/js': 9.12.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.5.0
- eslint-config-prettier: 9.1.0(eslint@9.5.0)
- eslint-config-turbo: 2.2.3(eslint@9.5.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.5.0)
- eslint-plugin-jsonc: 2.16.0(eslint@9.5.0)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.5.0)
- eslint-plugin-n: 17.9.0(eslint@9.5.0)
- eslint-plugin-react: 7.34.2(eslint@9.5.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@9.5.0)
- eslint-plugin-storybook: 0.8.0(eslint@9.5.0)(typescript@5.5.2)
- eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.5.0)(typescript@5.5.2)
+ eslint: 9.12.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
+ eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.5.0)
+ eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
globals: 15.6.0
- tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
- typescript-eslint: 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28357,38 +28292,39 @@ snapshots:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- jest
+ - jiti
- supports-color
- ts-node
- typescript
- '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(typescript@5.6.3)':
+ '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(typescript@5.6.3)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/eslint-parser': 7.24.7(@babel/core@7.24.7)(eslint@9.5.0)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.5.0
+ '@eslint/js': 9.12.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.5.0
- eslint-config-prettier: 9.1.0(eslint@9.5.0)
- eslint-config-turbo: 2.2.3(eslint@9.5.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.5.0)
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.5.0)(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.6.3)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.5.0)
- eslint-plugin-jsonc: 2.16.0(eslint@9.5.0)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.5.0)
- eslint-plugin-n: 17.9.0(eslint@9.5.0)
- eslint-plugin-react: 7.34.2(eslint@9.5.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@9.5.0)
- eslint-plugin-storybook: 0.8.0(eslint@9.5.0)(typescript@5.6.3)
- eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.5.0)(typescript@5.6.3)
+ eslint: 9.12.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.6.3)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))
+ eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.5.0)
+ eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
globals: 15.6.0
- tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
- typescript-eslint: 7.13.1(eslint@9.5.0)(typescript@5.6.3)
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
+ typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28396,38 +28332,39 @@ snapshots:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- jest
+ - jiti
- supports-color
- ts-node
- typescript
- '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(typescript@5.5.4)':
+ '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(typescript@5.5.4)':
dependencies:
- '@babel/core': 7.24.7
- '@babel/eslint-parser': 7.24.7(@babel/core@7.24.7)(eslint@9.5.0)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.7)
+ '@babel/core': 7.25.8
+ '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0))
+ '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8)
'@eslint/compat': 1.1.0
'@eslint/eslintrc': 3.1.0
- '@eslint/js': 9.5.0
+ '@eslint/js': 9.12.0
'@next/eslint-plugin-next': 14.2.3
- eslint: 9.5.0
- eslint-config-prettier: 9.1.0(eslint@9.5.0)
- eslint-config-turbo: 2.2.3(eslint@9.5.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.5.0)
- eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.5.0)(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4)
- eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.5.0)
- eslint-plugin-jsonc: 2.16.0(eslint@9.5.0)
- eslint-plugin-jsx-a11y: 6.8.0(eslint@9.5.0)
- eslint-plugin-n: 17.9.0(eslint@9.5.0)
- eslint-plugin-react: 7.34.2(eslint@9.5.0)
- eslint-plugin-react-hooks: 4.6.2(eslint@9.5.0)
- eslint-plugin-storybook: 0.8.0(eslint@9.5.0)(typescript@5.5.4)
- eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))
- eslint-plugin-testing-library: 6.2.2(eslint@9.5.0)(typescript@5.5.4)
+ eslint: 9.12.0(jiti@1.21.0)
+ eslint-config-prettier: 9.1.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-config-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4)
+ eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0))
+ eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))
+ eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
eslint-plugin-tsdoc: 0.3.0
- eslint-plugin-unicorn: 53.0.0(eslint@9.5.0)
+ eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0))
globals: 15.6.0
- tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
- typescript-eslint: 7.13.1(eslint@9.5.0)(typescript@5.5.4)
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
+ typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
transitivePeerDependencies:
- '@testing-library/dom'
- '@typescript-eslint/eslint-plugin'
@@ -28435,33 +28372,31 @@ snapshots:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- jest
+ - jiti
- supports-color
- ts-node
- typescript
- '@cprussin/jest-config@1.4.1(@babel/core@7.24.7)(@jest/globals@29.7.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/jest@29.5.12)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(eslint@9.5.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)':
+ '@cprussin/jest-config@1.4.1(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(eslint@9.5.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(utf-8-validate@5.0.10)':
dependencies:
- '@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(prettier@3.3.2)
- '@testing-library/jest-dom': 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
+ '@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(prettier@3.3.3)
+ '@testing-library/jest-dom': 6.5.0
jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
jest-environment-jsdom: 29.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
jest-runner-eslint: 2.2.0(eslint@9.5.0)(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
- next: 14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- prettier: 3.3.2
+ next: 14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ prettier: 3.3.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- ts-jest: 29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2)
- typescript: 5.5.2
+ ts-jest: 29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- '@babel/core'
- - '@jest/globals'
- '@jest/test-result'
- '@jest/transform'
- '@jest/types'
- '@opentelemetry/api'
- '@playwright/test'
- - '@types/bun'
- - '@types/jest'
- '@types/node'
- babel-jest
- babel-plugin-macros
@@ -28475,31 +28410,27 @@ snapshots:
- supports-color
- ts-node
- utf-8-validate
- - vitest
- '@cprussin/jest-config@1.4.1(@babel/core@7.24.7)(@jest/globals@29.7.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/jest@29.5.13)(@types/node@22.7.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.12.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(utf-8-validate@6.0.4)':
+ '@cprussin/jest-config@1.4.1(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.7.7)(babel-jest@29.7.0(@babel/core@7.24.7))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.12.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(utf-8-validate@6.0.4)':
dependencies:
- '@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(prettier@3.3.2)
- '@testing-library/jest-dom': 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.13)(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))
+ '@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(prettier@3.3.3)
+ '@testing-library/jest-dom': 6.5.0
jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
jest-environment-jsdom: 29.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
jest-runner-eslint: 2.2.0(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))
- next: 14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- prettier: 3.3.2
+ next: 14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ prettier: 3.3.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- ts-jest: 29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.5.2)
- typescript: 5.5.2
+ ts-jest: 29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- '@babel/core'
- - '@jest/globals'
- '@jest/test-result'
- '@jest/transform'
- '@jest/types'
- '@opentelemetry/api'
- '@playwright/test'
- - '@types/bun'
- - '@types/jest'
- '@types/node'
- babel-jest
- babel-plugin-macros
@@ -28513,31 +28444,27 @@ snapshots:
- supports-color
- ts-node
- utf-8-validate
- - vitest
- '@cprussin/jest-config@1.4.1(@babel/core@7.25.8)(@jest/globals@29.7.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/jest@29.5.12)(@types/node@22.2.0)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.9.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(utf-8-validate@5.0.10)':
+ '@cprussin/jest-config@1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.2.0)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.9.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))(utf-8-validate@5.0.10)':
dependencies:
- '@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(prettier@3.3.2)
- '@testing-library/jest-dom': 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))
+ '@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(prettier@3.3.3)
+ '@testing-library/jest-dom': 6.5.0
jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
jest-environment-jsdom: 29.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
jest-runner-eslint: 2.2.0(eslint@9.9.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))
- next: 14.2.4(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- prettier: 3.3.2
+ next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ prettier: 3.3.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- ts-jest: 29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.2)
- typescript: 5.5.2
+ ts-jest: 29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- '@babel/core'
- - '@jest/globals'
- '@jest/test-result'
- '@jest/transform'
- '@jest/types'
- '@opentelemetry/api'
- '@playwright/test'
- - '@types/bun'
- - '@types/jest'
- '@types/node'
- babel-jest
- babel-plugin-macros
@@ -28551,31 +28478,27 @@ snapshots:
- supports-color
- ts-node
- utf-8-validate
- - vitest
- '@cprussin/jest-config@1.4.1(@babel/core@7.25.8)(@jest/globals@29.7.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/jest@29.5.13)(@types/node@22.7.7)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.12.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(utf-8-validate@6.0.4)':
+ '@cprussin/jest-config@1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.7.7)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(eslint@9.12.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))(utf-8-validate@6.0.4)':
dependencies:
- '@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(prettier@3.3.2)
- '@testing-library/jest-dom': 6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.13)(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))
+ '@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(prettier@3.3.3)
+ '@testing-library/jest-dom': 6.5.0
jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
jest-environment-jsdom: 29.7.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
jest-runner-eslint: 2.2.0(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))
- next: 14.2.4(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- prettier: 3.3.2
+ next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ prettier: 3.3.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- ts-jest: 29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.5.2)
- typescript: 5.5.2
+ ts-jest: 29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.6.3)
+ typescript: 5.6.3
transitivePeerDependencies:
- '@babel/core'
- - '@jest/globals'
- '@jest/test-result'
- '@jest/transform'
- '@jest/types'
- '@opentelemetry/api'
- '@playwright/test'
- - '@types/bun'
- - '@types/jest'
- '@types/node'
- babel-jest
- babel-plugin-macros
@@ -28589,31 +28512,30 @@ snapshots:
- supports-color
- ts-node
- utf-8-validate
- - vitest
- '@cprussin/jest-runner-prettier@1.0.0(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(prettier@3.3.2)':
+ '@cprussin/jest-runner-prettier@1.0.0(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(prettier@3.3.3)':
dependencies:
create-lite-jest-runner: 1.1.0(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))
emphasize: 5.0.0
jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
jest-diff: 29.7.0
- prettier: 3.3.2
+ prettier: 3.3.3
- '@cprussin/jest-runner-prettier@1.0.0(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(prettier@3.3.2)':
+ '@cprussin/jest-runner-prettier@1.0.0(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(prettier@3.3.3)':
dependencies:
create-lite-jest-runner: 1.1.0(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))
emphasize: 5.0.0
jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
jest-diff: 29.7.0
- prettier: 3.3.2
+ prettier: 3.3.3
- '@cprussin/jest-runner-prettier@1.0.0(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(prettier@3.3.2)':
+ '@cprussin/jest-runner-prettier@1.0.0(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(prettier@3.3.3)':
dependencies:
create-lite-jest-runner: 1.1.0(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))
emphasize: 5.0.0
jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
jest-diff: 29.7.0
- prettier: 3.3.2
+ prettier: 3.3.3
'@cprussin/prettier-config@2.1.1(prettier@3.3.2)':
dependencies:
@@ -29386,27 +29308,27 @@ snapshots:
'@floating-ui/core': 1.6.2
'@floating-ui/utils': 0.2.2
- '@floating-ui/react-dom@0.7.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react-dom@0.7.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
dependencies:
'@floating-ui/dom': 0.5.4
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ use-isomorphic-layout-effect: 1.1.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
transitivePeerDependencies:
- '@types/react'
- '@floating-ui/react-dom@2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react-dom@2.1.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@floating-ui/dom': 1.6.5
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@floating-ui/react@0.26.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@floating-ui/react@0.26.17(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@floating-ui/react-dom': 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@floating-ui/utils': 0.2.2
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
tabbable: 6.2.0
'@floating-ui/utils@0.2.2': {}
@@ -29435,14 +29357,14 @@ snapshots:
dependencies:
tslib: 2.8.0
- '@fractalwagmi/popup-connection@1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@fractalwagmi/popup-connection@1.1.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@fractalwagmi/solana-wallet-adapter@0.1.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@fractalwagmi/solana-wallet-adapter@0.1.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@fractalwagmi/popup-connection': 1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@fractalwagmi/popup-connection': 1.1.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
bs58: 5.0.0
transitivePeerDependencies:
@@ -30120,24 +30042,18 @@ snapshots:
dependencies:
'@hapi/hoek': 9.3.0
- '@headlessui/react@1.7.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@headlessui/react@2.2.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- client-only: 0.0.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@floating-ui/react': 0.26.17(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029)
+ '@tanstack/react-virtual': 3.10.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@headlessui/react@2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@heroicons/react@2.1.4(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@floating-ui/react': 0.26.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/focus': 3.17.1(react@18.3.1)
- '@react-aria/interactions': 3.21.3(react@18.3.1)
- '@tanstack/react-virtual': 3.5.0(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)
-
- '@heroicons/react@2.1.4(react@18.3.1)':
- dependencies:
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@humanfs/core@0.19.0': {}
@@ -30169,76 +30085,151 @@ snapshots:
'@img/sharp-libvips-darwin-arm64': 1.0.2
optional: true
+ '@img/sharp-darwin-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ optional: true
+
'@img/sharp-darwin-x64@0.33.4':
optionalDependencies:
'@img/sharp-libvips-darwin-x64': 1.0.2
optional: true
+ '@img/sharp-darwin-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ optional: true
+
'@img/sharp-libvips-darwin-arm64@1.0.2':
optional: true
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ optional: true
+
'@img/sharp-libvips-darwin-x64@1.0.2':
optional: true
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ optional: true
+
'@img/sharp-libvips-linux-arm64@1.0.2':
optional: true
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ optional: true
+
'@img/sharp-libvips-linux-arm@1.0.2':
optional: true
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ optional: true
+
'@img/sharp-libvips-linux-s390x@1.0.2':
optional: true
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ optional: true
+
'@img/sharp-libvips-linux-x64@1.0.2':
optional: true
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ optional: true
+
'@img/sharp-libvips-linuxmusl-arm64@1.0.2':
optional: true
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ optional: true
+
'@img/sharp-libvips-linuxmusl-x64@1.0.2':
optional: true
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ optional: true
+
'@img/sharp-linux-arm64@0.33.4':
optionalDependencies:
'@img/sharp-libvips-linux-arm64': 1.0.2
optional: true
+ '@img/sharp-linux-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ optional: true
+
'@img/sharp-linux-arm@0.33.4':
optionalDependencies:
'@img/sharp-libvips-linux-arm': 1.0.2
optional: true
+ '@img/sharp-linux-arm@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ optional: true
+
'@img/sharp-linux-s390x@0.33.4':
optionalDependencies:
'@img/sharp-libvips-linux-s390x': 1.0.2
optional: true
+ '@img/sharp-linux-s390x@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ optional: true
+
'@img/sharp-linux-x64@0.33.4':
optionalDependencies:
'@img/sharp-libvips-linux-x64': 1.0.2
optional: true
+ '@img/sharp-linux-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ optional: true
+
'@img/sharp-linuxmusl-arm64@0.33.4':
optionalDependencies:
'@img/sharp-libvips-linuxmusl-arm64': 1.0.2
optional: true
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ optional: true
+
'@img/sharp-linuxmusl-x64@0.33.4':
optionalDependencies:
'@img/sharp-libvips-linuxmusl-x64': 1.0.2
optional: true
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ optional: true
+
'@img/sharp-wasm32@0.33.4':
dependencies:
'@emnapi/runtime': 1.2.0
optional: true
+ '@img/sharp-wasm32@0.33.5':
+ dependencies:
+ '@emnapi/runtime': 1.2.0
+ optional: true
+
'@img/sharp-win32-ia32@0.33.4':
optional: true
+ '@img/sharp-win32-ia32@0.33.5':
+ optional: true
+
'@img/sharp-win32-x64@0.33.4':
optional: true
+ '@img/sharp-win32-x64@0.33.5':
+ optional: true
+
'@improbable-eng/grpc-web@0.14.1(google-protobuf@3.21.2)':
dependencies:
browser-headers: 0.4.1
@@ -31606,12 +31597,12 @@ snapshots:
'@types/yargs': 17.0.32
chalk: 4.1.2
- '@jnwng/walletconnect-solana@0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@jnwng/walletconnect-solana@0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/qrcode-modal': 1.8.0
- '@walletconnect/sign-client': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/sign-client': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
bs58: 5.0.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -31632,12 +31623,12 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@jnwng/walletconnect-solana@0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@jnwng/walletconnect-solana@0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/qrcode-modal': 1.8.0
- '@walletconnect/sign-client': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/sign-client': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
bs58: 5.0.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -32299,22 +32290,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/sdk-install-modal-web@0.26.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@metamask/sdk-install-modal-web@0.26.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
i18next: 22.5.1
qr-code-styling: 1.6.0-rc.1
- react-i18next: 13.5.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ react-i18next: 13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
optionalDependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
- '@metamask/sdk@0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@metamask/sdk@0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)':
dependencies:
'@metamask/onboarding': 1.0.1
'@metamask/providers': 15.0.0
'@metamask/sdk-communication-layer': 0.26.0(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))
- '@metamask/sdk-install-modal-web': 0.26.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@metamask/sdk-install-modal-web': 0.26.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@types/dom-screen-wake-lock': 1.0.3
bowser: 2.11.0
cross-fetch: 4.0.0(encoding@0.1.13)
@@ -32327,15 +32318,15 @@ snapshots:
obj-multiplex: 1.0.0
pump: 3.0.0
qrcode-terminal-nooctal: 0.12.1
- react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
readable-stream: 3.6.2
rollup-plugin-visualizer: 5.12.0
socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)
util: 0.12.5
uuid: 8.3.2
optionalDependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
transitivePeerDependencies:
- bufferutil
- encoding
@@ -32394,7 +32385,7 @@ snapshots:
'@motionone/types': 10.17.1
'@motionone/utils': 10.18.0
hey-listen: 1.0.8
- tslib: 2.6.3
+ tslib: 2.8.0
'@motionone/dom@10.18.0':
dependencies:
@@ -32634,11 +32625,7 @@ snapshots:
'@next/env@14.2.15': {}
- '@next/env@14.2.3': {}
-
- '@next/env@14.2.4': {}
-
- '@next/env@14.2.6': {}
+ '@next/env@15.0.2': {}
'@next/eslint-plugin-next@14.2.3':
dependencies:
@@ -32647,121 +32634,64 @@ snapshots:
'@next/swc-darwin-arm64@14.2.15':
optional: true
- '@next/swc-darwin-arm64@14.2.3':
- optional: true
-
- '@next/swc-darwin-arm64@14.2.4':
- optional: true
-
- '@next/swc-darwin-arm64@14.2.6':
+ '@next/swc-darwin-arm64@15.0.2':
optional: true
'@next/swc-darwin-x64@14.2.15':
optional: true
- '@next/swc-darwin-x64@14.2.3':
- optional: true
-
- '@next/swc-darwin-x64@14.2.4':
- optional: true
-
- '@next/swc-darwin-x64@14.2.6':
+ '@next/swc-darwin-x64@15.0.2':
optional: true
'@next/swc-linux-arm64-gnu@14.2.15':
optional: true
- '@next/swc-linux-arm64-gnu@14.2.3':
- optional: true
-
- '@next/swc-linux-arm64-gnu@14.2.4':
- optional: true
-
- '@next/swc-linux-arm64-gnu@14.2.6':
+ '@next/swc-linux-arm64-gnu@15.0.2':
optional: true
'@next/swc-linux-arm64-musl@14.2.15':
optional: true
- '@next/swc-linux-arm64-musl@14.2.3':
- optional: true
-
- '@next/swc-linux-arm64-musl@14.2.4':
- optional: true
-
- '@next/swc-linux-arm64-musl@14.2.6':
+ '@next/swc-linux-arm64-musl@15.0.2':
optional: true
'@next/swc-linux-x64-gnu@14.2.15':
optional: true
- '@next/swc-linux-x64-gnu@14.2.3':
- optional: true
-
- '@next/swc-linux-x64-gnu@14.2.4':
- optional: true
-
- '@next/swc-linux-x64-gnu@14.2.6':
+ '@next/swc-linux-x64-gnu@15.0.2':
optional: true
'@next/swc-linux-x64-musl@14.2.15':
optional: true
- '@next/swc-linux-x64-musl@14.2.3':
- optional: true
-
- '@next/swc-linux-x64-musl@14.2.4':
- optional: true
-
- '@next/swc-linux-x64-musl@14.2.6':
+ '@next/swc-linux-x64-musl@15.0.2':
optional: true
'@next/swc-win32-arm64-msvc@14.2.15':
optional: true
- '@next/swc-win32-arm64-msvc@14.2.3':
- optional: true
-
- '@next/swc-win32-arm64-msvc@14.2.4':
- optional: true
-
- '@next/swc-win32-arm64-msvc@14.2.6':
+ '@next/swc-win32-arm64-msvc@15.0.2':
optional: true
'@next/swc-win32-ia32-msvc@14.2.15':
optional: true
- '@next/swc-win32-ia32-msvc@14.2.3':
- optional: true
-
- '@next/swc-win32-ia32-msvc@14.2.4':
- optional: true
-
- '@next/swc-win32-ia32-msvc@14.2.6':
- optional: true
-
'@next/swc-win32-x64-msvc@14.2.15':
optional: true
- '@next/swc-win32-x64-msvc@14.2.3':
+ '@next/swc-win32-x64-msvc@15.0.2':
optional: true
- '@next/swc-win32-x64-msvc@14.2.4':
- optional: true
-
- '@next/swc-win32-x64-msvc@14.2.6':
- optional: true
-
- '@next/third-parties@14.2.4(next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ '@next/third-parties@14.2.4(next@15.0.2(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- next: 14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
+ next: 15.0.2(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
third-party-capital: 1.0.20
- '@next/third-parties@14.2.6(next@14.2.6(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ '@next/third-parties@14.2.6(next@15.0.2(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- next: 14.2.6(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
+ next: 15.0.2(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
third-party-capital: 1.0.20
'@ngraveio/bc-ur@1.1.13':
@@ -33751,153 +33681,153 @@ snapshots:
dependencies:
'@babel/runtime': 7.24.8
- '@radix-ui/react-arrow@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-arrow@1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.25.0
- '@radix-ui/react-primitive': 1.0.1(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)
+ '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@radix-ui/react-compose-refs@1.0.0(react@18.3.1)':
+ '@radix-ui/react-compose-refs@1.0.0(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.24.8
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@radix-ui/react-context@1.0.0(react@18.3.1)':
+ '@radix-ui/react-context@1.0.0(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.24.8
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@radix-ui/react-dismissable-layer@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-dismissable-layer@1.0.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.24.8
'@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.0.2(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-use-escape-keydown': 1.0.2(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@radix-ui/react-id@1.0.0(react@18.3.1)':
+ '@radix-ui/react-id@1.0.0(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.24.8
- '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
- '@radix-ui/react-label@2.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-label@2.0.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-primitive': 1.0.1(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)
+ '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@radix-ui/react-popper@1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-popper@1.1.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.24.8
- '@floating-ui/react-dom': 0.7.2(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-arrow': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
- '@radix-ui/react-context': 1.0.0(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1)
- '@radix-ui/react-use-rect': 1.0.0(react@18.3.1)
- '@radix-ui/react-use-size': 1.0.0(react@18.3.1)
+ '@floating-ui/react-dom': 0.7.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
+ '@radix-ui/react-arrow': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-context': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-use-rect': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-use-size': 1.0.0(react@19.0.0-rc-603e6108-20241029)
'@radix-ui/rect': 1.0.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
transitivePeerDependencies:
- '@types/react'
- '@radix-ui/react-portal@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-portal@1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.24.8
- '@radix-ui/react-primitive': 1.0.1(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)
+ '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@radix-ui/react-presence@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-presence@1.0.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.24.8
- '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@radix-ui/react-primitive@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.24.8
- '@radix-ui/react-slot': 1.0.1(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-slot': 1.0.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@radix-ui/react-slot@1.0.1(react@18.3.1)':
+ '@radix-ui/react-slot@1.0.1(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.24.8
- '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
- '@radix-ui/react-tooltip@1.0.3(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-tooltip@1.0.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1)
- '@radix-ui/react-context': 1.0.0(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.0.0(react@18.3.1)
- '@radix-ui/react-popper': 1.1.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.0.1(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.0.0(react@18.3.1)
- '@radix-ui/react-visually-hidden': 1.0.1(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)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-context': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-dismissable-layer': 1.0.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-id': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-popper': 1.1.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
+ '@radix-ui/react-portal': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-presence': 1.0.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-slot': 1.0.1(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-use-controllable-state': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ '@radix-ui/react-visually-hidden': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
transitivePeerDependencies:
- '@types/react'
- '@radix-ui/react-use-callback-ref@1.0.0(react@18.3.1)':
+ '@radix-ui/react-use-callback-ref@1.0.0(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.25.0
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@radix-ui/react-use-controllable-state@1.0.0(react@18.3.1)':
+ '@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.24.8
- '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
- '@radix-ui/react-use-escape-keydown@1.0.2(react@18.3.1)':
+ '@radix-ui/react-use-escape-keydown@1.0.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.25.0
- '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
- '@radix-ui/react-use-layout-effect@1.0.0(react@18.3.1)':
+ '@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.25.0
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@radix-ui/react-use-rect@1.0.0(react@18.3.1)':
+ '@radix-ui/react-use-rect@1.0.0(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.25.0
'@radix-ui/rect': 1.0.0
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@radix-ui/react-use-size@1.0.0(react@18.3.1)':
+ '@radix-ui/react-use-size@1.0.0(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.25.0
- '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
- '@radix-ui/react-visually-hidden@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-visually-hidden@1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@babel/runtime': 7.24.8
- '@radix-ui/react-primitive': 1.0.1(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)
+ '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@radix-ui/rect@1.0.0':
dependencies:
@@ -33915,15 +33845,15 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/breadcrumbs@3.5.16(react@18.3.1)':
+ '@react-aria/breadcrumbs@3.5.16(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/link': 3.7.4(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/breadcrumbs': 3.7.7(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/link': 3.7.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/breadcrumbs': 3.7.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/breadcrumbs@3.5.18(react@18.3.1)':
dependencies:
@@ -33946,31 +33876,31 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/button@3.9.8(react@18.3.1)':
+ '@react-aria/button@3.9.8(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/toggle': 3.7.7(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/toggle': 3.7.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-aria/calendar@3.5.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/calendar@3.5.11(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@internationalized/date': 3.5.5
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
'@react-aria/live-announcer': 3.3.4
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/calendar': 3.5.4(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/calendar': 3.4.9(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/calendar': 3.5.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/calendar': 3.4.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/calendar@3.5.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -33987,20 +33917,20 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/checkbox@3.14.6(react@18.3.1)':
- dependencies:
- '@react-aria/form': 3.0.8(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/label': 3.7.11(react@18.3.1)
- '@react-aria/toggle': 3.10.7(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/checkbox': 3.6.8(react@18.3.1)
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/toggle': 3.7.7(react@18.3.1)
- '@react-types/checkbox': 3.8.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/checkbox@3.14.6(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/form': 3.0.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/label': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/toggle': 3.10.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/checkbox': 3.6.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/toggle': 3.7.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/checkbox': 3.8.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/checkbox@3.14.8(react@18.3.1)':
dependencies:
@@ -34017,15 +33947,15 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/collections@3.0.0-alpha.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/collections@3.0.0-alpha.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/ssr': 3.9.5(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/ssr': 3.9.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- use-sync-external-store: 1.2.0(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029)
'@react-aria/collections@3.0.0-alpha.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34037,23 +33967,23 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
use-sync-external-store: 1.2.0(react@18.3.1)
- '@react-aria/color@3.0.0-rc.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/numberfield': 3.11.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/slider': 3.7.11(react@18.3.1)
- '@react-aria/spinbutton': 3.6.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/textfield': 3.14.8(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-aria/visually-hidden': 3.8.15(react@18.3.1)
- '@react-stately/color': 3.7.2(react@18.3.1)
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-types/color': 3.0.0-rc.1(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/color@3.0.0-rc.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/numberfield': 3.11.6(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/slider': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/spinbutton': 3.6.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/textfield': 3.14.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/visually-hidden': 3.8.15(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/color': 3.7.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/color': 3.0.0-rc.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/color@3.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34073,25 +34003,25 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/combobox@3.10.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/combobox@3.10.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/listbox': 3.13.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/listbox': 3.13.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@react-aria/live-announcer': 3.3.4
- '@react-aria/menu': 3.15.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/overlays': 3.23.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/selection': 3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/textfield': 3.14.8(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/combobox': 3.9.2(react@18.3.1)
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/combobox': 3.12.1(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/menu': 3.15.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/overlays': 3.23.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/selection': 3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/textfield': 3.14.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/combobox': 3.9.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/combobox': 3.12.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/combobox@3.10.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34113,28 +34043,28 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/datepicker@3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/datepicker@3.11.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@internationalized/date': 3.5.5
'@internationalized/number': 3.5.3
'@internationalized/string': 3.2.3
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/form': 3.0.8(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/label': 3.7.11(react@18.3.1)
- '@react-aria/spinbutton': 3.6.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/datepicker': 3.10.2(react@18.3.1)
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/calendar': 3.4.9(react@18.3.1)
- '@react-types/datepicker': 3.8.2(react@18.3.1)
- '@react-types/dialog': 3.5.12(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/form': 3.0.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/label': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/spinbutton': 3.6.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/datepicker': 3.10.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/calendar': 3.4.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/datepicker': 3.8.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/dialog': 3.5.12(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/datepicker@3.11.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34159,16 +34089,16 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/dialog@3.5.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/dialog@3.5.17(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/overlays': 3.23.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/dialog': 3.5.12(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/overlays': 3.23.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/dialog': 3.5.12(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/dialog@3.5.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34196,20 +34126,20 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/dnd@3.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/dnd@3.7.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@internationalized/string': 3.2.3
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
'@react-aria/live-announcer': 3.3.4
- '@react-aria/overlays': 3.23.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/dnd': 3.4.2(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/overlays': 3.23.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/dnd': 3.4.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/dnd@3.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34226,23 +34156,14 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/focus@3.17.1(react@18.3.1)':
- dependencies:
- '@react-aria/interactions': 3.21.3(react@18.3.1)
- '@react-aria/utils': 3.24.1(react@18.3.1)
- '@react-types/shared': 3.23.1(react@18.3.1)
- '@swc/helpers': 0.5.5
- clsx: 2.1.1
- react: 18.3.1
-
- '@react-aria/focus@3.18.2(react@18.3.1)':
+ '@react-aria/focus@3.18.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
clsx: 2.1.1
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/focus@3.18.4(react@18.3.1)':
dependencies:
@@ -34253,6 +34174,15 @@ snapshots:
clsx: 2.1.1
react: 18.3.1
+ '@react-aria/focus@3.18.4(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029)
+ '@swc/helpers': 0.5.11
+ clsx: 2.1.1
+ react: 19.0.0-rc-603e6108-20241029
+
'@react-aria/form@3.0.10(react@18.3.1)':
dependencies:
'@react-aria/interactions': 3.22.4(react@18.3.1)
@@ -34262,32 +34192,32 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/form@3.0.8(react@18.3.1)':
+ '@react-aria/form@3.0.8(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-aria/grid@3.10.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/grid@3.10.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
'@react-aria/live-announcer': 3.3.4
- '@react-aria/selection': 3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/grid': 3.9.2(react@18.3.1)
- '@react-stately/selection': 3.16.2(react@18.3.1)
- '@react-types/checkbox': 3.8.3(react@18.3.1)
- '@react-types/grid': 3.2.8(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/selection': 3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/grid': 3.9.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/selection': 3.16.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/checkbox': 3.8.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/grid': 3.2.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/grid@3.10.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34307,21 +34237,21 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/gridlist@3.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/grid': 3.10.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/selection': 3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/list': 3.10.8(react@18.3.1)
- '@react-stately/tree': 3.8.4(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/gridlist@3.9.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/grid': 3.10.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/selection': 3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/list': 3.10.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/tree': 3.8.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/gridlist@3.9.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34339,17 +34269,17 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/i18n@3.12.2(react@18.3.1)':
+ '@react-aria/i18n@3.12.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@internationalized/date': 3.5.5
'@internationalized/message': 3.1.4
'@internationalized/number': 3.5.3
'@internationalized/string': 3.2.3
- '@react-aria/ssr': 3.9.5(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/ssr': 3.9.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/i18n@3.12.3(react@18.3.1)':
dependencies:
@@ -34363,29 +34293,33 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/interactions@3.21.3(react@18.3.1)':
+ '@react-aria/i18n@3.12.3(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/ssr': 3.9.4(react@18.3.1)
- '@react-aria/utils': 3.24.1(react@18.3.1)
- '@react-types/shared': 3.23.1(react@18.3.1)
- '@swc/helpers': 0.5.5
- react: 18.3.1
+ '@internationalized/date': 3.5.6
+ '@internationalized/message': 3.1.5
+ '@internationalized/number': 3.5.4
+ '@internationalized/string': 3.2.4
+ '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029)
+ '@swc/helpers': 0.5.11
+ react: 19.0.0-rc-603e6108-20241029
- '@react-aria/interactions@3.22.2(react@18.3.1)':
+ '@react-aria/interactions@3.22.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/ssr': 3.9.5(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/ssr': 3.9.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-aria/interactions@3.22.3(react@18.3.1)':
+ '@react-aria/interactions@3.22.3(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/ssr': 3.9.6(react@18.3.1)
- '@react-aria/utils': 3.25.3(react@18.3.1)
- '@react-types/shared': 3.25.0(react@18.3.1)
+ '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/interactions@3.22.4(react@18.3.1)':
dependencies:
@@ -34395,12 +34329,20 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/label@3.7.11(react@18.3.1)':
+ '@react-aria/interactions@3.22.4(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
+
+ '@react-aria/label@3.7.11(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@swc/helpers': 0.5.11
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/label@3.7.12(react@18.3.1)':
dependencies:
@@ -34409,23 +34351,23 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/landmark@3.0.0-beta.16(react@18.3.1)':
+ '@react-aria/landmark@3.0.0-beta.16(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/utils': 3.25.3(react@18.3.1)
- '@react-types/shared': 3.25.0(react@18.3.1)
+ '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- use-sync-external-store: 1.2.0(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029)
- '@react-aria/link@3.7.4(react@18.3.1)':
+ '@react-aria/link@3.7.4(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/link': 3.5.7(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/link': 3.5.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/link@3.7.6(react@18.3.1)':
dependencies:
@@ -34437,19 +34379,19 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/listbox@3.13.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/listbox@3.13.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/label': 3.7.11(react@18.3.1)
- '@react-aria/selection': 3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/list': 3.10.8(react@18.3.1)
- '@react-types/listbox': 3.5.1(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/label': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/selection': 3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/list': 3.10.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/listbox': 3.5.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/listbox@3.13.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34473,23 +34415,23 @@ snapshots:
dependencies:
'@swc/helpers': 0.5.11
- '@react-aria/menu@3.15.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/overlays': 3.23.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/selection': 3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/menu': 3.8.2(react@18.3.1)
- '@react-stately/tree': 3.8.4(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/menu': 3.9.11(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/menu@3.15.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/overlays': 3.23.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/selection': 3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/menu': 3.8.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/tree': 3.8.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/menu': 3.9.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/menu@3.15.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34509,13 +34451,13 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/meter@3.4.16(react@18.3.1)':
+ '@react-aria/meter@3.4.16(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/progress': 3.4.16(react@18.3.1)
- '@react-types/meter': 3.4.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/progress': 3.4.16(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/meter': 3.4.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/meter@3.4.17(react@18.3.1)':
dependencies:
@@ -34525,21 +34467,21 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/numberfield@3.11.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/spinbutton': 3.6.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/textfield': 3.14.8(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/numberfield': 3.9.6(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/numberfield': 3.8.5(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/numberfield@3.11.6(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/spinbutton': 3.6.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/textfield': 3.14.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/numberfield': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/numberfield': 3.8.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/numberfield@3.11.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34557,21 +34499,21 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/overlays@3.23.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/ssr': 3.9.5(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-aria/visually-hidden': 3.8.15(react@18.3.1)
- '@react-stately/overlays': 3.6.10(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/overlays': 3.8.9(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/overlays@3.23.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/ssr': 3.9.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/visually-hidden': 3.8.15(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/overlays': 3.6.10(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/overlays': 3.8.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/overlays@3.23.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34589,15 +34531,15 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/progress@3.4.16(react@18.3.1)':
+ '@react-aria/progress@3.4.16(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/label': 3.7.11(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/progress': 3.5.6(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/label': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/progress': 3.5.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/progress@3.4.17(react@18.3.1)':
dependencies:
@@ -34609,19 +34551,19 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/radio@3.10.7(react@18.3.1)':
- dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/form': 3.0.8(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/label': 3.7.11(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/radio': 3.10.7(react@18.3.1)
- '@react-types/radio': 3.8.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/radio@3.10.7(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/form': 3.0.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/label': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/radio': 3.10.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/radio': 3.8.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/radio@3.10.9(react@18.3.1)':
dependencies:
@@ -34649,17 +34591,17 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/searchfield@3.7.8(react@18.3.1)':
+ '@react-aria/searchfield@3.7.8(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/textfield': 3.14.8(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/searchfield': 3.5.6(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/searchfield': 3.5.8(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/textfield': 3.14.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/searchfield': 3.5.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/searchfield': 3.5.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/select@3.14.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34680,36 +34622,36 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/select@3.14.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@react-aria/form': 3.0.8(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/label': 3.7.11(react@18.3.1)
- '@react-aria/listbox': 3.13.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/menu': 3.15.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/selection': 3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-aria/visually-hidden': 3.8.15(react@18.3.1)
- '@react-stately/select': 3.6.7(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/select': 3.9.6(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/select@3.14.9(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/form': 3.0.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/label': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/listbox': 3.13.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/menu': 3.15.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/selection': 3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/visually-hidden': 3.8.15(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/select': 3.6.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/select': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@react-aria/selection@3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/selection@3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/selection': 3.16.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/selection': 3.16.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/selection@3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34723,12 +34665,12 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/separator@3.4.2(react@18.3.1)':
+ '@react-aria/separator@3.4.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/separator@3.4.3(react@18.3.1)':
dependencies:
@@ -34737,18 +34679,18 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/slider@3.7.11(react@18.3.1)':
+ '@react-aria/slider@3.7.11(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/label': 3.7.11(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/slider': 3.5.7(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/slider': 3.7.5(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/label': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/slider': 3.5.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/slider': 3.7.5(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/slider@3.7.13(react@18.3.1)':
dependencies:
@@ -34763,16 +34705,16 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/spinbutton@3.6.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/spinbutton@3.6.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/i18n': 3.12.2(react@18.3.1)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
'@react-aria/live-announcer': 3.3.4
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/spinbutton@3.6.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34785,29 +34727,29 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/ssr@3.9.4(react@18.3.1)':
+ '@react-aria/ssr@3.9.5(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@swc/helpers': 0.5.5
- react: 18.3.1
+ '@swc/helpers': 0.5.11
+ react: 19.0.0-rc-603e6108-20241029
- '@react-aria/ssr@3.9.5(react@18.3.1)':
+ '@react-aria/ssr@3.9.6(react@18.3.1)':
dependencies:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/ssr@3.9.6(react@18.3.1)':
+ '@react-aria/ssr@3.9.6(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-aria/switch@3.6.7(react@18.3.1)':
+ '@react-aria/switch@3.6.7(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/toggle': 3.10.7(react@18.3.1)
- '@react-stately/toggle': 3.7.7(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/switch': 3.5.5(react@18.3.1)
+ '@react-aria/toggle': 3.10.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/toggle': 3.7.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/switch': 3.5.5(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/switch@3.6.9(react@18.3.1)':
dependencies:
@@ -34818,25 +34760,25 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/table@3.15.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/table@3.15.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/grid': 3.10.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/grid': 3.10.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
'@react-aria/live-announcer': 3.3.4
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-aria/visually-hidden': 3.8.15(react@18.3.1)
- '@react-stately/collections': 3.10.9(react@18.3.1)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/visually-hidden': 3.8.15(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
'@react-stately/flags': 3.0.3
- '@react-stately/table': 3.12.2(react@18.3.1)
- '@react-types/checkbox': 3.8.3(react@18.3.1)
- '@react-types/grid': 3.2.8(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/table': 3.10.1(react@18.3.1)
+ '@react-stately/table': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/checkbox': 3.8.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/grid': 3.2.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/table': 3.10.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/table@3.15.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34858,18 +34800,18 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/tabs@3.9.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/tabs@3.9.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/selection': 3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/tabs': 3.6.9(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/tabs': 3.3.9(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/selection': 3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/tabs': 3.6.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/tabs': 3.3.9(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/tabs@3.9.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34884,20 +34826,20 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/tag@3.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
- dependencies:
- '@react-aria/gridlist': 3.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/label': 3.7.11(react@18.3.1)
- '@react-aria/selection': 3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/list': 3.10.8(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/tag@3.4.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/gridlist': 3.9.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/label': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/selection': 3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/list': 3.10.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/tag@3.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -34927,41 +34869,41 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/textfield@3.14.8(react@18.3.1)':
+ '@react-aria/textfield@3.14.8(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/form': 3.0.8(react@18.3.1)
- '@react-aria/label': 3.7.11(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/textfield': 3.9.6(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/form': 3.0.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/label': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/textfield': 3.9.6(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-aria/toast@3.0.0-beta.16(react@18.3.1)':
+ '@react-aria/toast@3.0.0-beta.16(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/i18n': 3.12.3(react@18.3.1)
- '@react-aria/interactions': 3.22.3(react@18.3.1)
- '@react-aria/landmark': 3.0.0-beta.16(react@18.3.1)
- '@react-aria/utils': 3.25.3(react@18.3.1)
- '@react-stately/toast': 3.0.0-beta.6(react@18.3.1)
- '@react-types/button': 3.10.0(react@18.3.1)
- '@react-types/shared': 3.25.0(react@18.3.1)
+ '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/landmark': 3.0.0-beta.16(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/toast': 3.0.0-beta.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-aria/toggle@3.10.7(react@18.3.1)':
+ '@react-aria/toggle@3.10.7(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/toggle': 3.7.7(react@18.3.1)
- '@react-types/checkbox': 3.8.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/toggle': 3.7.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/checkbox': 3.8.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/toggle@3.10.9(react@18.3.1)':
dependencies:
@@ -34983,25 +34925,25 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/toolbar@3.0.0-beta.8(react@18.3.1)':
+ '@react-aria/toolbar@3.0.0-beta.8(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-aria/tooltip@3.7.7(react@18.3.1)':
+ '@react-aria/tooltip@3.7.7(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/tooltip': 3.4.12(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/tooltip': 3.4.11(react@18.3.1)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/tooltip': 3.4.12(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/tooltip': 3.4.11(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/tooltip@3.7.9(react@18.3.1)':
dependencies:
@@ -35014,18 +34956,18 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-aria/tree@3.0.0-alpha.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/tree@3.0.0-alpha.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/gridlist': 3.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/selection': 3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/tree': 3.8.4(react@18.3.1)
- '@react-types/button': 3.9.6(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/gridlist': 3.9.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/selection': 3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/tree': 3.8.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/button': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/tree@3.0.0-beta.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -35040,23 +34982,14 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/utils@3.24.1(react@18.3.1)':
- dependencies:
- '@react-aria/ssr': 3.9.4(react@18.3.1)
- '@react-stately/utils': 3.10.1(react@18.3.1)
- '@react-types/shared': 3.23.1(react@18.3.1)
- '@swc/helpers': 0.5.5
- clsx: 2.1.1
- react: 18.3.1
-
- '@react-aria/utils@3.25.2(react@18.3.1)':
+ '@react-aria/utils@3.25.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/ssr': 3.9.5(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/ssr': 3.9.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
clsx: 2.1.1
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/utils@3.25.3(react@18.3.1)':
dependencies:
@@ -35067,16 +35000,25 @@ snapshots:
clsx: 2.1.1
react: 18.3.1
- '@react-aria/virtualizer@4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/utils@3.25.3(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-stately/virtualizer': 4.0.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ clsx: 2.1.1
+ react: 19.0.0-rc-603e6108-20241029
+
+ '@react-aria/virtualizer@4.0.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/virtualizer': 4.0.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@swc/helpers': 0.5.11
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@react-aria/virtualizer@4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -35089,13 +35031,13 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@react-aria/visually-hidden@3.8.15(react@18.3.1)':
+ '@react-aria/visually-hidden@3.8.15(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-aria/visually-hidden@3.8.17(react@18.3.1)':
dependencies:
@@ -35107,34 +35049,34 @@ snapshots:
'@react-hookz/deep-equal@1.0.4': {}
- '@react-hookz/web@24.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-hookz/web@24.0.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@react-hookz/deep-equal': 1.0.4
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))':
+ '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))':
dependencies:
merge-options: 3.0.4
- react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
optional: true
- '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))':
+ '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))':
dependencies:
merge-options: 3.0.4
- react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
optional: true
- '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))':
+ '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))':
dependencies:
merge-options: 3.0.4
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
optional: true
- '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))':
+ '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))':
dependencies:
merge-options: 3.0.4
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
optional: true
'@react-native-community/cli-clean@13.6.8(encoding@0.1.13)':
@@ -35618,50 +35560,50 @@ snapshots:
'@react-native/normalize-colors@0.74.84': {}
- '@react-native/virtualized-lists@0.74.84(@types/react@18.3.11)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.74.84(@types/react@18.3.11)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
- react: 18.3.1
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react: 19.0.0-rc-603e6108-20241029
+ react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
optionalDependencies:
'@types/react': 18.3.11
- '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.74.84(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
- react: 18.3.1
- react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react: 19.0.0-rc-603e6108-20241029
+ react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': types-react@19.0.0-rc.1
- '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.74.84(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
- react: 18.3.1
- react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react: 19.0.0-rc-603e6108-20241029
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': types-react@19.0.0-rc.1
- '@react-native/virtualized-lists@0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.74.84(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
- react: 18.3.1
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react: 19.0.0-rc-603e6108-20241029
+ react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': types-react@19.0.0-rc.1
- '@react-stately/calendar@3.5.4(react@18.3.1)':
+ '@react-stately/calendar@3.5.4(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@internationalized/date': 3.5.5
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/calendar': 3.4.9(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/calendar': 3.4.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/calendar@3.5.5(react@18.3.1)':
dependencies:
@@ -35672,14 +35614,14 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/checkbox@3.6.8(react@18.3.1)':
+ '@react-stately/checkbox@3.6.8(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/checkbox': 3.8.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/checkbox': 3.8.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/checkbox@3.6.9(react@18.3.1)':
dependencies:
@@ -35690,11 +35632,11 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/collections@3.10.9(react@18.3.1)':
+ '@react-stately/collections@3.10.9(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/collections@3.11.0(react@18.3.1)':
dependencies:
@@ -35702,19 +35644,19 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/color@3.7.2(react@18.3.1)':
+ '@react-stately/color@3.7.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@internationalized/number': 3.5.3
'@internationalized/string': 3.2.3
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/numberfield': 3.9.6(react@18.3.1)
- '@react-stately/slider': 3.5.7(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/color': 3.0.0-rc.1(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/numberfield': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/slider': 3.5.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/color': 3.0.0-rc.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/color@3.8.0(react@18.3.1)':
dependencies:
@@ -35743,24 +35685,24 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/combobox@3.9.2(react@18.3.1)':
+ '@react-stately/combobox@3.9.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/list': 3.10.8(react@18.3.1)
- '@react-stately/overlays': 3.6.10(react@18.3.1)
- '@react-stately/select': 3.6.7(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/combobox': 3.12.1(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/list': 3.10.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/overlays': 3.6.10(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/select': 3.6.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/combobox': 3.12.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-stately/data@3.11.6(react@18.3.1)':
+ '@react-stately/data@3.11.6(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/data@3.11.7(react@18.3.1)':
dependencies:
@@ -35768,17 +35710,17 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/datepicker@3.10.2(react@18.3.1)':
+ '@react-stately/datepicker@3.10.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@internationalized/date': 3.5.5
'@internationalized/string': 3.2.3
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/overlays': 3.6.10(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/datepicker': 3.8.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/overlays': 3.6.10(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/datepicker': 3.8.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/datepicker@3.10.3(react@18.3.1)':
dependencies:
@@ -35799,12 +35741,12 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/dnd@3.4.2(react@18.3.1)':
+ '@react-stately/dnd@3.4.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/selection': 3.16.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/selection': 3.16.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/dnd@3.4.3(react@18.3.1)':
dependencies:
@@ -35821,11 +35763,11 @@ snapshots:
dependencies:
'@swc/helpers': 0.5.11
- '@react-stately/form@3.0.5(react@18.3.1)':
+ '@react-stately/form@3.0.5(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/form@3.0.6(react@18.3.1)':
dependencies:
@@ -35833,14 +35775,14 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/grid@3.9.2(react@18.3.1)':
+ '@react-stately/grid@3.9.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/selection': 3.16.2(react@18.3.1)
- '@react-types/grid': 3.2.8(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/selection': 3.16.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/grid': 3.2.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/grid@3.9.3(react@18.3.1)':
dependencies:
@@ -35851,16 +35793,16 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/layout@4.0.2(react@18.3.1)':
+ '@react-stately/layout@4.0.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/table': 3.12.2(react@18.3.1)
- '@react-stately/virtualizer': 4.0.2(react@18.3.1)
- '@react-types/grid': 3.2.8(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/table': 3.10.1(react@18.3.1)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/table': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/virtualizer': 4.0.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/grid': 3.2.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/table': 3.10.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/layout@4.0.3(react@18.3.1)':
dependencies:
@@ -35873,14 +35815,14 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/list@3.10.8(react@18.3.1)':
+ '@react-stately/list@3.10.8(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/selection': 3.16.2(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/selection': 3.16.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/list@3.11.0(react@18.3.1)':
dependencies:
@@ -35891,13 +35833,13 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/menu@3.8.2(react@18.3.1)':
+ '@react-stately/menu@3.8.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/overlays': 3.6.10(react@18.3.1)
- '@react-types/menu': 3.9.11(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/overlays': 3.6.10(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/menu': 3.9.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/menu@3.8.3(react@18.3.1)':
dependencies:
@@ -35907,14 +35849,14 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/numberfield@3.9.6(react@18.3.1)':
+ '@react-stately/numberfield@3.9.6(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@internationalized/number': 3.5.3
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/numberfield': 3.8.5(react@18.3.1)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/numberfield': 3.8.5(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/numberfield@3.9.7(react@18.3.1)':
dependencies:
@@ -35925,12 +35867,12 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/overlays@3.6.10(react@18.3.1)':
+ '@react-stately/overlays@3.6.10(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/overlays': 3.8.9(react@18.3.1)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/overlays': 3.8.9(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/overlays@3.6.11(react@18.3.1)':
dependencies:
@@ -35939,14 +35881,14 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/radio@3.10.7(react@18.3.1)':
+ '@react-stately/radio@3.10.7(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/radio': 3.8.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/radio': 3.8.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/radio@3.10.8(react@18.3.1)':
dependencies:
@@ -35957,12 +35899,12 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/searchfield@3.5.6(react@18.3.1)':
+ '@react-stately/searchfield@3.5.6(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/searchfield': 3.5.8(react@18.3.1)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/searchfield': 3.5.8(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/searchfield@3.5.7(react@18.3.1)':
dependencies:
@@ -35971,15 +35913,15 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/select@3.6.7(react@18.3.1)':
+ '@react-stately/select@3.6.7(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/list': 3.10.8(react@18.3.1)
- '@react-stately/overlays': 3.6.10(react@18.3.1)
- '@react-types/select': 3.9.6(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/list': 3.10.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/overlays': 3.6.10(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/select': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/select@3.6.8(react@18.3.1)':
dependencies:
@@ -35991,13 +35933,13 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/selection@3.16.2(react@18.3.1)':
+ '@react-stately/selection@3.16.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/selection@3.17.0(react@18.3.1)':
dependencies:
@@ -36007,13 +35949,13 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/slider@3.5.7(react@18.3.1)':
+ '@react-stately/slider@3.5.7(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/slider': 3.7.5(react@18.3.1)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/slider': 3.7.5(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/slider@3.5.8(react@18.3.1)':
dependencies:
@@ -36023,18 +35965,18 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/table@3.12.2(react@18.3.1)':
+ '@react-stately/table@3.12.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/collections': 3.10.9(react@18.3.1)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
'@react-stately/flags': 3.0.3
- '@react-stately/grid': 3.9.2(react@18.3.1)
- '@react-stately/selection': 3.16.2(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/grid': 3.2.8(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/table': 3.10.1(react@18.3.1)
+ '@react-stately/grid': 3.9.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/selection': 3.16.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/grid': 3.2.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/table': 3.10.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/table@3.12.3(react@18.3.1)':
dependencies:
@@ -36057,26 +35999,26 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/tabs@3.6.9(react@18.3.1)':
+ '@react-stately/tabs@3.6.9(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/list': 3.10.8(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/tabs': 3.3.9(react@18.3.1)
+ '@react-stately/list': 3.10.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/tabs': 3.3.9(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-stately/toast@3.0.0-beta.6(react@18.3.1)':
+ '@react-stately/toast@3.0.0-beta.6(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@swc/helpers': 0.5.11
- react: 18.3.1
- use-sync-external-store: 1.2.0(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029)
- '@react-stately/toggle@3.7.7(react@18.3.1)':
+ '@react-stately/toggle@3.7.7(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/checkbox': 3.8.3(react@18.3.1)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/checkbox': 3.8.3(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/toggle@3.7.8(react@18.3.1)':
dependencies:
@@ -36085,12 +36027,12 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/tooltip@3.4.12(react@18.3.1)':
+ '@react-stately/tooltip@3.4.12(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/overlays': 3.6.10(react@18.3.1)
- '@react-types/tooltip': 3.4.11(react@18.3.1)
+ '@react-stately/overlays': 3.6.10(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/tooltip': 3.4.11(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/tooltip@3.4.13(react@18.3.1)':
dependencies:
@@ -36099,14 +36041,14 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/tree@3.8.4(react@18.3.1)':
+ '@react-stately/tree@3.8.4(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/selection': 3.16.2(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/selection': 3.16.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/tree@3.8.5(react@18.3.1)':
dependencies:
@@ -36117,27 +36059,27 @@ snapshots:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/utils@3.10.1(react@18.3.1)':
+ '@react-stately/utils@3.10.3(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-stately/utils@3.10.3(react@18.3.1)':
+ '@react-stately/utils@3.10.4(react@18.3.1)':
dependencies:
'@swc/helpers': 0.5.11
react: 18.3.1
- '@react-stately/utils@3.10.4(react@18.3.1)':
+ '@react-stately/utils@3.10.4(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-stately/virtualizer@4.0.2(react@18.3.1)':
+ '@react-stately/virtualizer@4.0.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
'@react-stately/virtualizer@4.1.0(react@18.3.1)':
dependencies:
@@ -36151,11 +36093,11 @@ snapshots:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/breadcrumbs@3.7.7(react@18.3.1)':
+ '@react-types/breadcrumbs@3.7.7(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/link': 3.5.7(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/link': 3.5.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/breadcrumbs@3.7.8(react@18.3.1)':
dependencies:
@@ -36168,10 +36110,15 @@ snapshots:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/button@3.9.6(react@18.3.1)':
+ '@react-types/button@3.10.0(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+
+ '@react-types/button@3.9.6(react@19.0.0-rc-603e6108-20241029)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/calendar@3.4.10(react@18.3.1)':
dependencies:
@@ -36179,16 +36126,16 @@ snapshots:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/calendar@3.4.9(react@18.3.1)':
+ '@react-types/calendar@3.4.9(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@internationalized/date': 3.5.5
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
- '@react-types/checkbox@3.8.3(react@18.3.1)':
+ '@react-types/checkbox@3.8.3(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/checkbox@3.8.4(react@18.3.1)':
dependencies:
@@ -36201,29 +36148,29 @@ snapshots:
'@react-types/slider': 3.7.6(react@18.3.1)
react: 18.3.1
- '@react-types/color@3.0.0-rc.1(react@18.3.1)':
+ '@react-types/color@3.0.0-rc.1(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/slider': 3.7.5(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/slider': 3.7.5(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
- '@react-types/combobox@3.12.1(react@18.3.1)':
+ '@react-types/combobox@3.12.1(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/combobox@3.13.0(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/datepicker@3.8.2(react@18.3.1)':
+ '@react-types/datepicker@3.8.2(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@internationalized/date': 3.5.5
- '@react-types/calendar': 3.4.9(react@18.3.1)
- '@react-types/overlays': 3.8.9(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/calendar': 3.4.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/overlays': 3.8.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/datepicker@3.8.3(react@18.3.1)':
dependencies:
@@ -36233,11 +36180,11 @@ snapshots:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/dialog@3.5.12(react@18.3.1)':
+ '@react-types/dialog@3.5.12(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/overlays': 3.8.9(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/overlays': 3.8.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/dialog@3.5.13(react@18.3.1)':
dependencies:
@@ -36245,51 +36192,51 @@ snapshots:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/form@3.7.6(react@18.3.1)':
+ '@react-types/form@3.7.6(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/form@3.7.7(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/grid@3.2.8(react@18.3.1)':
+ '@react-types/grid@3.2.8(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/grid@3.2.9(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/link@3.5.7(react@18.3.1)':
+ '@react-types/link@3.5.7(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/link@3.5.8(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/listbox@3.5.1(react@18.3.1)':
+ '@react-types/listbox@3.5.1(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/listbox@3.5.2(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/menu@3.9.11(react@18.3.1)':
+ '@react-types/menu@3.9.11(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/overlays': 3.8.9(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/overlays': 3.8.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/menu@3.9.12(react@18.3.1)':
dependencies:
@@ -36297,20 +36244,20 @@ snapshots:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/meter@3.4.3(react@18.3.1)':
+ '@react-types/meter@3.4.3(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/progress': 3.5.6(react@18.3.1)
- react: 18.3.1
+ '@react-types/progress': 3.5.6(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/meter@3.4.4(react@18.3.1)':
dependencies:
'@react-types/progress': 3.5.7(react@18.3.1)
react: 18.3.1
- '@react-types/numberfield@3.8.5(react@18.3.1)':
+ '@react-types/numberfield@3.8.5(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/numberfield@3.8.6(react@18.3.1)':
dependencies:
@@ -36322,36 +36269,36 @@ snapshots:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/overlays@3.8.9(react@18.3.1)':
+ '@react-types/overlays@3.8.9(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
- '@react-types/progress@3.5.6(react@18.3.1)':
+ '@react-types/progress@3.5.6(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/progress@3.5.7(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/radio@3.8.3(react@18.3.1)':
+ '@react-types/radio@3.8.3(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/radio@3.8.4(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/searchfield@3.5.8(react@18.3.1)':
+ '@react-types/searchfield@3.5.8(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/textfield': 3.9.6(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/textfield': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/searchfield@3.5.9(react@18.3.1)':
dependencies:
@@ -36359,53 +36306,53 @@ snapshots:
'@react-types/textfield': 3.9.7(react@18.3.1)
react: 18.3.1
- '@react-types/select@3.9.6(react@18.3.1)':
+ '@react-types/select@3.9.6(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/select@3.9.7(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/shared@3.23.1(react@18.3.1)':
+ '@react-types/shared@3.24.1(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-types/shared@3.24.1(react@18.3.1)':
+ '@react-types/shared@3.25.0(react@18.3.1)':
dependencies:
react: 18.3.1
- '@react-types/shared@3.25.0(react@18.3.1)':
+ '@react-types/shared@3.25.0(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@react-types/slider@3.7.5(react@18.3.1)':
+ '@react-types/slider@3.7.5(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/slider@3.7.6(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/switch@3.5.5(react@18.3.1)':
+ '@react-types/switch@3.5.5(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/switch@3.5.6(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/table@3.10.1(react@18.3.1)':
+ '@react-types/table@3.10.1(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/grid': 3.2.8(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/grid': 3.2.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/table@3.10.2(react@18.3.1)':
dependencies:
@@ -36418,26 +36365,26 @@ snapshots:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/tabs@3.3.9(react@18.3.1)':
+ '@react-types/tabs@3.3.9(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
- '@react-types/textfield@3.9.6(react@18.3.1)':
+ '@react-types/textfield@3.9.6(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/textfield@3.9.7(react@18.3.1)':
dependencies:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- '@react-types/tooltip@3.4.11(react@18.3.1)':
+ '@react-types/tooltip@3.4.11(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@react-types/overlays': 3.8.9(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ '@react-types/overlays': 3.8.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
'@react-types/tooltip@3.4.12(react@18.3.1)':
dependencies:
@@ -36740,9 +36687,9 @@ snapshots:
'@socket.io/component-emitter@3.1.1': {}
- '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
bs58: 5.0.0
js-base64: 3.7.5
@@ -36751,9 +36698,9 @@ snapshots:
- react
- react-native
- '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
bs58: 5.0.0
js-base64: 3.7.5
@@ -36762,9 +36709,9 @@ snapshots:
- react
- react-native
- '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
bs58: 5.0.0
js-base64: 3.7.5
@@ -36773,80 +36720,80 @@ snapshots:
- react
- react-native
- '@solana-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)
+ '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-standard-util': 1.1.1
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@wallet-standard/core': 1.0.3
js-base64: 3.7.5
- react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- '@solana/wallet-adapter-base'
- bs58
- react
- '@solana-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)
+ '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-standard-util': 1.1.1
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@wallet-standard/core': 1.0.3
js-base64: 3.7.5
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- '@solana/wallet-adapter-base'
- bs58
- react
- '@solana-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)
+ '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-standard-util': 1.1.1
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@wallet-standard/core': 1.0.3
js-base64: 3.7.5
- react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- '@solana/wallet-adapter-base'
- bs58
- react
- '@solana-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-features': 1.2.0
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
js-base64: 3.7.5
optionalDependencies:
- '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))
+ '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))
transitivePeerDependencies:
- react
- react-native
- '@solana-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-features': 1.2.0
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
js-base64: 3.7.5
optionalDependencies:
- '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))
+ '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))
transitivePeerDependencies:
- react
- react-native
- '@solana-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-features': 1.2.0
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
js-base64: 3.7.5
optionalDependencies:
- '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))
+ '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))
transitivePeerDependencies:
- react
- react-native
@@ -37125,20 +37072,20 @@ snapshots:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
transitivePeerDependencies:
- bs58
- react-native
- '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
transitivePeerDependencies:
- bs58
- react-native
@@ -37212,9 +37159,9 @@ snapshots:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/wallet-adapter-fractal@0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@solana/wallet-adapter-fractal@0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@fractalwagmi/solana-wallet-adapter': 0.1.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@fractalwagmi/solana-wallet-adapter': 0.1.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
transitivePeerDependencies:
@@ -37311,70 +37258,70 @@ snapshots:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
transitivePeerDependencies:
- bs58
- react-native
- '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
- '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
+ '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
transitivePeerDependencies:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)
+ '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
transitivePeerDependencies:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)
+ '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
transitivePeerDependencies:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@18.3.1)
+ '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
transitivePeerDependencies:
- bs58
- react-native
- '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@18.3.1)
+ '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0-rc-603e6108-20241029)
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
transitivePeerDependencies:
- bs58
- react-native
@@ -37498,9 +37445,9 @@ snapshots:
'@solana/wallet-standard-util': 1.1.1
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@solana/wallet-adapter-walletconnect@0.1.16(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@solana/wallet-adapter-walletconnect@0.1.16(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@jnwng/walletconnect-solana': 0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@jnwng/walletconnect-solana': 0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
transitivePeerDependencies:
@@ -37522,9 +37469,9 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@solana/wallet-adapter-walletconnect@0.1.16(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@solana/wallet-adapter-walletconnect@0.1.16(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@jnwng/walletconnect-solana': 0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@jnwng/walletconnect-solana': 0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
transitivePeerDependencies:
@@ -37546,7 +37493,7 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@solana/wallet-adapter-wallets@0.19.10(@babel/runtime@7.25.0)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@solana/wallet-adapter-wallets@0.19.10(@babel/runtime@7.25.0)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)':
dependencies:
'@solana/wallet-adapter-alpha': 0.1.10(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-avana': 0.1.13(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -37561,7 +37508,7 @@ snapshots:
'@solana/wallet-adapter-coinbase': 0.1.19(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-coinhub': 0.3.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-exodus': 0.1.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-fractal': 0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@solana/wallet-adapter-fractal': 0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-glow': 0.1.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-huobi': 0.1.15(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-hyperpay': 0.1.14(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -37591,7 +37538,7 @@ snapshots:
'@solana/wallet-adapter-torus': 0.11.28(@babel/runtime@7.25.0)(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@solana/wallet-adapter-trust': 0.1.13(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-unsafe-burner': 0.1.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-walletconnect': 0.1.16(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@solana/wallet-adapter-walletconnect': 0.1.16(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@solana/wallet-adapter-xdefi': 0.1.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
transitivePeerDependencies:
@@ -37620,7 +37567,7 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@solana/wallet-adapter-wallets@0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@solana/wallet-adapter-wallets@0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)':
dependencies:
'@solana/wallet-adapter-alpha': 0.1.10(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-avana': 0.1.13(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -37635,7 +37582,7 @@ snapshots:
'@solana/wallet-adapter-coinbase': 0.1.19(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-coinhub': 0.3.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-exodus': 0.1.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-fractal': 0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@solana/wallet-adapter-fractal': 0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
'@solana/wallet-adapter-glow': 0.1.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-huobi': 0.1.15(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-hyperpay': 0.1.14(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
@@ -37665,7 +37612,7 @@ snapshots:
'@solana/wallet-adapter-torus': 0.11.28(@babel/runtime@7.25.7)(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@solana/wallet-adapter-trust': 0.1.13(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-adapter-unsafe-burner': 0.1.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
- '@solana/wallet-adapter-walletconnect': 0.1.16(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@solana/wallet-adapter-walletconnect': 0.1.16(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@solana/wallet-adapter-xdefi': 0.1.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
transitivePeerDependencies:
@@ -37746,42 +37693,42 @@ snapshots:
'@wallet-standard/wallet': 1.0.1
bs58: 6.0.0
- '@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)':
+ '@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)
'@wallet-standard/app': 1.0.1
'@wallet-standard/base': 1.0.1
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
transitivePeerDependencies:
- '@solana/web3.js'
- bs58
- '@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@18.3.1)':
+ '@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))
'@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)
'@wallet-standard/app': 1.0.1
'@wallet-standard/base': 1.0.1
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
transitivePeerDependencies:
- '@solana/web3.js'
- bs58
- '@solana/wallet-standard-wallet-adapter@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)':
+ '@solana/wallet-standard-wallet-adapter@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)
- '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)
+ '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)
transitivePeerDependencies:
- '@solana/wallet-adapter-base'
- '@solana/web3.js'
- bs58
- react
- '@solana/wallet-standard@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)':
+ '@solana/wallet-standard@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@solana/wallet-standard-core': 1.1.1
- '@solana/wallet-standard-wallet-adapter': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.3.1)
+ '@solana/wallet-standard-wallet-adapter': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)
transitivePeerDependencies:
- '@solana/wallet-adapter-base'
- '@solana/web3.js'
@@ -38243,7 +38190,7 @@ snapshots:
dependencies:
storybook: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)
- '@storybook/nextjs@8.3.5(esbuild@0.22.0)(next@14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.22.0))':
+ '@storybook/nextjs@8.3.5(esbuild@0.22.0)(next@15.0.2(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.22.0))':
dependencies:
'@babel/core': 7.24.7
'@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.7)
@@ -38271,7 +38218,7 @@ snapshots:
fs-extra: 11.2.0
image-size: 1.1.1
loader-utils: 3.2.1
- next: 14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 15.0.2(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
node-polyfill-webpack-plugin: 2.0.1(webpack@5.91.0(esbuild@0.22.0))
pnp-webpack-plugin: 1.7.0(typescript@5.6.3)
postcss: 8.4.47
@@ -38658,10 +38605,14 @@ snapshots:
dependencies:
tslib: 2.6.3
+ '@swc/helpers@0.5.13':
+ dependencies:
+ tslib: 2.8.0
+
'@swc/helpers@0.5.5':
dependencies:
'@swc/counter': 0.1.3
- tslib: 2.6.3
+ tslib: 2.8.0
'@szmarczak/http-timer@4.0.6':
dependencies:
@@ -38711,26 +38662,26 @@ snapshots:
'@tanstack/query-core@5.45.0': {}
- '@tanstack/react-query@5.45.1(react@18.3.1)':
+ '@tanstack/react-query@5.45.1(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@tanstack/query-core': 5.45.0
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- '@tanstack/react-table@8.7.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-table@8.7.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
'@tanstack/table-core': 8.7.8
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- '@tanstack/react-virtual@3.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-virtual@3.10.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)':
dependencies:
- '@tanstack/virtual-core': 3.5.0
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@tanstack/virtual-core': 3.10.8
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
'@tanstack/table-core@8.7.8': {}
- '@tanstack/virtual-core@3.5.0': {}
+ '@tanstack/virtual-core@3.10.8': {}
'@terra-money/terra.js@3.1.10':
dependencies:
@@ -38794,55 +38745,10 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))':
- dependencies:
- '@adobe/css-tools': 4.4.0
- '@babel/runtime': 7.24.7
- aria-query: 5.3.0
- chalk: 3.0.0
- css.escape: 1.5.1
- dom-accessibility-api: 0.6.3
- lodash: 4.17.21
- redent: 3.0.0
- optionalDependencies:
- '@jest/globals': 29.7.0
- '@types/jest': 29.5.12
- jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
-
- '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))':
- dependencies:
- '@adobe/css-tools': 4.4.0
- '@babel/runtime': 7.24.7
- aria-query: 5.3.0
- chalk: 3.0.0
- css.escape: 1.5.1
- dom-accessibility-api: 0.6.3
- lodash: 4.17.21
- redent: 3.0.0
- optionalDependencies:
- '@jest/globals': 29.7.0
- '@types/jest': 29.5.12
- jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
-
- '@testing-library/jest-dom@6.4.6(@jest/globals@29.7.0)(@types/jest@29.5.13)(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))':
- dependencies:
- '@adobe/css-tools': 4.4.0
- '@babel/runtime': 7.24.7
- aria-query: 5.3.0
- chalk: 3.0.0
- css.escape: 1.5.1
- dom-accessibility-api: 0.6.3
- lodash: 4.17.21
- redent: 3.0.0
- optionalDependencies:
- '@jest/globals': 29.7.0
- '@types/jest': 29.5.13
- jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
-
'@testing-library/jest-dom@6.5.0':
dependencies:
'@adobe/css-tools': 4.4.0
- aria-query: 5.3.0
+ aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
dom-accessibility-api: 0.6.3
@@ -39946,20 +39852,11 @@ snapshots:
'@types/range-parser@1.2.7':
optional: true
- '@types/react-dom@18.3.0':
- dependencies:
- '@types/react': 18.3.3
-
'@types/react@18.3.11':
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/responselike@1.0.0':
@@ -40132,15 +40029,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)':
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
'@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
'@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -40150,15 +40047,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.4))(eslint@9.5.0)(typescript@5.5.4)':
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.5.0)(typescript@5.5.4)
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
'@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.4)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.4)
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -40168,15 +40065,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.6.3))(eslint@9.5.0)(typescript@5.6.3)':
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.13.1(eslint@9.5.0)(typescript@5.6.3)
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
'@typescript-eslint/scope-manager': 7.13.1
- '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.6.3)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.6.3)
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
'@typescript-eslint/visitor-keys': 7.13.1
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -40186,9 +40083,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)':
+ dependencies:
+ '@eslint-community/regexpp': 4.11.0
+ '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/scope-manager': 7.13.1
+ '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/visitor-keys': 7.13.1
+ eslint: 9.5.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 1.3.0(typescript@5.5.2)
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
+ '@eslint-community/regexpp': 4.11.0
'@typescript-eslint/parser': 8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/type-utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
@@ -40207,7 +40123,7 @@ snapshots:
'@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- '@eslint-community/regexpp': 4.10.0
+ '@eslint-community/regexpp': 4.11.0
'@typescript-eslint/parser': 8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/type-utils': 7.13.1(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
@@ -40340,40 +40256,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2)':
+ '@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
'@typescript-eslint/visitor-keys': 7.13.1
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.4)':
+ '@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.13.1
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.6.3)':
+ '@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
'@typescript-eslint/visitor-keys': 7.13.1
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
@@ -40502,55 +40418,55 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
- dependencies:
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
- '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.12.0(jiti@1.21.0)
- ts-api-utils: 1.3.0(typescript@5.6.3)
- optionalDependencies:
- typescript: 5.6.3
- transitivePeerDependencies:
- - supports-color
- optional: true
-
- '@typescript-eslint/type-utils@7.13.1(eslint@9.5.0)(typescript@5.5.2)':
+ '@typescript-eslint/type-utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
ts-api-utils: 1.3.0(typescript@5.5.2)
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.13.1(eslint@9.5.0)(typescript@5.5.4)':
+ '@typescript-eslint/type-utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.13.1(eslint@9.5.0)(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
debug: 4.3.7(supports-color@8.1.1)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
ts-api-utils: 1.3.0(typescript@5.6.3)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/type-utils@7.13.1(eslint@9.5.0)(typescript@5.5.2)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ debug: 4.3.7(supports-color@8.1.1)
+ eslint: 9.5.0
+ ts-api-utils: 1.3.0(typescript@5.5.2)
+ optionalDependencies:
+ typescript: 5.5.2
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
'@typescript-eslint/type-utils@7.13.1(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
'@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
@@ -40766,51 +40682,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@7.7.1(typescript@5.5.2)':
- dependencies:
- '@typescript-eslint/types': 7.7.1
- '@typescript-eslint/visitor-keys': 7.7.1
- debug: 4.3.7(supports-color@8.1.1)
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.2)
- optionalDependencies:
- typescript: 5.5.2
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/typescript-estree@7.7.1(typescript@5.5.4)':
- dependencies:
- '@typescript-eslint/types': 7.7.1
- '@typescript-eslint/visitor-keys': 7.7.1
- debug: 4.3.7(supports-color@8.1.1)
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/typescript-estree@7.7.1(typescript@5.6.3)':
- dependencies:
- '@typescript-eslint/types': 7.7.1
- '@typescript-eslint/visitor-keys': 7.7.1
- debug: 4.3.7(supports-color@8.1.1)
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.3)
- optionalDependencies:
- typescript: 5.6.3
- transitivePeerDependencies:
- - supports-color
-
'@typescript-eslint/typescript-estree@8.3.0(typescript@5.4.5)':
dependencies:
'@typescript-eslint/types': 8.3.0
@@ -40887,45 +40758,45 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@9.5.0)(typescript@5.5.2)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.2)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-scope: 5.1.1
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@9.5.0)(typescript@5.5.4)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-scope: 5.1.1
semver: 7.6.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@5.62.0(eslint@9.5.0)(typescript@5.6.3)':
+ '@typescript-eslint/utils@5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.3)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-scope: 5.1.1
semver: 7.6.3
transitivePeerDependencies:
@@ -40960,50 +40831,50 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
+ '@typescript-eslint/utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
eslint: 9.12.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- optional: true
- '@typescript-eslint/utils@7.13.1(eslint@9.5.0)(typescript@5.5.2)':
+ '@typescript-eslint/utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
- eslint: 9.5.0
+ '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
+ eslint: 9.12.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@7.13.1(eslint@9.5.0)(typescript@5.5.4)':
+ '@typescript-eslint/utils@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.4)
- eslint: 9.5.0
+ '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
+ eslint: 9.12.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@7.13.1(eslint@9.5.0)(typescript@5.6.3)':
+ '@typescript-eslint/utils@7.13.1(eslint@9.5.0)(typescript@5.5.2)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
'@typescript-eslint/scope-manager': 7.13.1
'@typescript-eslint/types': 7.13.1
- '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2)
eslint: 9.5.0
transitivePeerDependencies:
- supports-color
- typescript
+ optional: true
'@typescript-eslint/utils@7.13.1(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)':
dependencies:
@@ -41031,48 +40902,6 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@7.7.1(eslint@9.5.0)(typescript@5.5.2)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.7.1
- '@typescript-eslint/types': 7.7.1
- '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.5.2)
- eslint: 9.5.0
- semver: 7.6.3
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@7.7.1(eslint@9.5.0)(typescript@5.5.4)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.7.1
- '@typescript-eslint/types': 7.7.1
- '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.5.4)
- eslint: 9.5.0
- semver: 7.6.3
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@7.7.1(eslint@9.5.0)(typescript@5.6.3)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.7.1
- '@typescript-eslint/types': 7.7.1
- '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.6.3)
- eslint: 9.5.0
- semver: 7.6.3
- transitivePeerDependencies:
- - supports-color
- - typescript
-
'@typescript-eslint/visitor-keys@5.49.0':
dependencies:
'@typescript-eslint/types': 5.49.0
@@ -41146,6 +40975,8 @@ snapshots:
- encoding
- supports-color
+ '@vercel/functions@1.5.0': {}
+
'@vercel/gatsby-plugin-vercel-analytics@1.0.11':
dependencies:
web-vitals: 0.2.4
@@ -41508,15 +41339,15 @@ snapshots:
'@vue/shared@3.4.34': {}
- '@wagmi/connectors@5.0.16(slt54gisc6cfabln7mulxutcvi)':
+ '@wagmi/connectors@5.0.16(276lu6ucw5vl7m53grscpa4fqq)':
dependencies:
'@coinbase/wallet-sdk': 4.0.3
- '@metamask/sdk': 0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)
+ '@metamask/sdk': 0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)
'@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
'@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
- '@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@9.0.21)(react@18.3.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
- '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
- '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1)
+ '@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
+ '@walletconnect/modal': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
optionalDependencies:
@@ -41548,12 +41379,12 @@ snapshots:
- utf-8-validate
- zod
- '@wagmi/core@2.11.4(@tanstack/query-core@5.45.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@9.0.21)(react@18.3.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)':
+ '@wagmi/core@2.11.4(@tanstack/query-core@5.45.0)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)':
dependencies:
eventemitter3: 5.0.1
mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
- zustand: 4.4.1(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ zustand: 4.4.1(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
optionalDependencies:
'@tanstack/query-core': 5.45.0
typescript: 5.5.2
@@ -41594,21 +41425,21 @@ snapshots:
'@walletconnect/window-metadata': 1.0.0
detect-browser: 5.2.0
- '@walletconnect/core@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/core@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/heartbeat': 1.2.1
'@walletconnect/jsonrpc-provider': 1.0.13
'@walletconnect/jsonrpc-types': 1.0.3
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/logger': 2.1.2
'@walletconnect/relay-api': 1.0.10
'@walletconnect/relay-auth': 1.0.4
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
isomorphic-unfetch: 3.1.0(encoding@0.1.13)
lodash.isequal: 4.5.0
@@ -41632,21 +41463,21 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/core@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/core@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/heartbeat': 1.2.1
'@walletconnect/jsonrpc-provider': 1.0.13
'@walletconnect/jsonrpc-types': 1.0.3
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/logger': 2.1.2
'@walletconnect/relay-api': 1.0.10
'@walletconnect/relay-auth': 1.0.4
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
isomorphic-unfetch: 3.1.0(encoding@0.1.13)
lodash.isequal: 4.5.0
@@ -41670,21 +41501,21 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/logger': 2.1.2
'@walletconnect/relay-api': 1.0.10
'@walletconnect/relay-auth': 1.0.4
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
isomorphic-unfetch: 3.1.0(encoding@0.1.13)
lodash.isequal: 4.5.0
@@ -41712,17 +41543,17 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1)
- '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
- '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/modal': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
+ '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -41809,13 +41640,13 @@ snapshots:
- bufferutil
- utf-8-validate
- '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@walletconnect/safe-json': 1.0.2
idb-keyval: 6.2.1
unstorage: 1.10.2(idb-keyval@6.2.1)
optionalDependencies:
- '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))
+ '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -41831,13 +41662,13 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@walletconnect/safe-json': 1.0.2
idb-keyval: 6.2.1
unstorage: 1.10.2(idb-keyval@6.2.1)
optionalDependencies:
- '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))
+ '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -41853,13 +41684,13 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@walletconnect/safe-json': 1.0.2
idb-keyval: 6.2.1
unstorage: 1.10.2(idb-keyval@6.2.1)
optionalDependencies:
- '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))
+ '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -41882,16 +41713,16 @@ snapshots:
'@walletconnect/mobile-registry@1.4.0': {}
- '@walletconnect/modal-core@2.6.2(@types/react@18.3.3)(react@18.3.1)':
+ '@walletconnect/modal-core@2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
dependencies:
- valtio: 1.11.2(@types/react@18.3.3)(react@18.3.1)
+ valtio: 1.11.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
transitivePeerDependencies:
- '@types/react'
- react
- '@walletconnect/modal-ui@2.6.2(@types/react@18.3.3)(react@18.3.1)':
+ '@walletconnect/modal-ui@2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
dependencies:
- '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@18.3.1)
+ '@walletconnect/modal-core': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
lit: 2.8.0
motion: 10.16.2
qrcode: 1.5.3
@@ -41899,10 +41730,10 @@ snapshots:
- '@types/react'
- react
- '@walletconnect/modal@2.6.2(@types/react@18.3.3)(react@18.3.1)':
+ '@walletconnect/modal@2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)':
dependencies:
- '@walletconnect/modal-core': 2.6.2(@types/react@18.3.3)(react@18.3.1)
- '@walletconnect/modal-ui': 2.6.2(@types/react@18.3.3)(react@18.3.1)
+ '@walletconnect/modal-core': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
+ '@walletconnect/modal-ui': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
transitivePeerDependencies:
- '@types/react'
- react
@@ -41935,16 +41766,16 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/sign-client@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/sign-client@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/core': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/core': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.1
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -41965,16 +41796,16 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/sign-client@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/sign-client@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/core': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/core': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.1
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -41995,16 +41826,16 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -42031,12 +41862,12 @@ snapshots:
'@walletconnect/types@1.8.0': {}
- '@walletconnect/types@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/types@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.1
'@walletconnect/jsonrpc-types': 1.0.3
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/logger': 2.1.2
events: 3.3.0
transitivePeerDependencies:
@@ -42055,12 +41886,12 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/types@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/types@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.1
'@walletconnect/jsonrpc-types': 1.0.3
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/logger': 2.1.2
events: 3.3.0
transitivePeerDependencies:
@@ -42079,12 +41910,12 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/logger': 2.1.2
events: 3.3.0
transitivePeerDependencies:
@@ -42103,16 +41934,16 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
- '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
- '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
events: 3.3.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -42133,7 +41964,7 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/utils@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/utils@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@stablelib/chacha20poly1305': 1.0.1
'@stablelib/hkdf': 1.0.1
@@ -42143,7 +41974,7 @@ snapshots:
'@walletconnect/relay-api': 1.0.10
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/window-getters': 1.0.1
'@walletconnect/window-metadata': 1.0.1
detect-browser: 5.3.0
@@ -42165,7 +41996,7 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/utils@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/utils@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@stablelib/chacha20poly1305': 1.0.1
'@stablelib/hkdf': 1.0.1
@@ -42175,7 +42006,7 @@ snapshots:
'@walletconnect/relay-api': 1.0.10
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/window-getters': 1.0.1
'@walletconnect/window-metadata': 1.0.1
detect-browser: 5.3.0
@@ -42197,7 +42028,7 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))':
+ '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))':
dependencies:
'@stablelib/chacha20poly1305': 1.0.1
'@stablelib/hkdf': 1.0.1
@@ -42207,7 +42038,7 @@ snapshots:
'@walletconnect/relay-api': 1.0.10
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))
+ '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))
'@walletconnect/window-getters': 1.0.1
'@walletconnect/window-metadata': 1.0.1
detect-browser: 5.3.0
@@ -42332,15 +42163,15 @@ snapshots:
'@wry/context@0.7.0':
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.0
'@wry/equality@0.5.3':
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.0
'@wry/trie@0.3.2':
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.0
'@xpla/xpla.js@0.2.3':
dependencies:
@@ -43478,14 +43309,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(supports-color@5.5.0):
+ babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029))(supports-color@5.5.0):
dependencies:
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
'@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7)
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
+ styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -44631,21 +44462,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- connectkit@1.8.2(oy5vpqdkktocg6677w6heq4ezq):
+ connectkit@1.8.2(@babel/core@7.24.7)(@tanstack/react-query@5.45.1(react@19.0.0-rc-603e6108-20241029))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.10.4(slso2y5si5ebobzw4pa64fwb3i)):
dependencies:
- '@tanstack/react-query': 5.45.1(react@18.3.1)
+ '@tanstack/react-query': 5.45.1(react@19.0.0-rc-603e6108-20241029)
buffer: 6.0.3
detect-browser: 5.3.0
- framer-motion: 6.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ framer-motion: 6.5.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
qrcode: 1.5.3
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-transition-state: 1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-use-measure: 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ react-transition-state: 1.1.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react-use-measure: 2.1.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
resize-observer-polyfill: 1.5.1
- styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
+ styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)
viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
- wagmi: 2.10.4(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ wagmi: 2.10.4(slso2y5si5ebobzw4pa64fwb3i)
transitivePeerDependencies:
- '@babel/core'
- react-is
@@ -45690,7 +45521,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.7
csstype: 3.1.3
dom-serializer@1.4.1:
@@ -46296,15 +46127,6 @@ snapshots:
escape-string-regexp@4.0.0: {}
- escodegen@2.0.0:
- dependencies:
- esprima: 4.0.1
- estraverse: 5.3.0
- esutils: 2.0.3
- optionator: 0.8.3
- optionalDependencies:
- source-map: 0.6.1
-
escodegen@2.1.0:
dependencies:
esprima: 4.0.1
@@ -46313,9 +46135,9 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-compat-utils@0.5.1(eslint@9.5.0):
+ eslint-compat-utils@0.5.1(eslint@9.12.0(jiti@1.21.0)):
dependencies:
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
semver: 7.6.3
eslint-config-next@14.2.3(eslint@8.56.0)(typescript@5.4.5):
@@ -46340,14 +46162,14 @@ snapshots:
dependencies:
eslint: 8.57.0
- eslint-config-prettier@9.1.0(eslint@9.5.0):
+ eslint-config-prettier@9.1.0(eslint@9.12.0(jiti@1.21.0)):
dependencies:
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
- eslint-config-turbo@2.2.3(eslint@9.5.0):
+ eslint-config-turbo@2.2.3(eslint@9.12.0(jiti@1.21.0)):
dependencies:
- eslint: 9.5.0
- eslint-plugin-turbo: 2.2.3(eslint@9.5.0)
+ eslint: 9.12.0(jiti@1.21.0)
+ eslint-plugin-turbo: 2.2.3(eslint@9.12.0(jiti@1.21.0))
eslint-import-resolver-node@0.3.9:
dependencies:
@@ -46385,44 +46207,44 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.5.0):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
- eslint: 9.5.0
+ '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.5.0):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.5.0):
+ eslint-module-utils@2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
transitivePeerDependencies:
- supports-color
- eslint-plugin-es-x@7.7.0(eslint@9.5.0):
+ eslint-plugin-es-x@7.7.0(eslint@9.12.0(jiti@1.21.0)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
- '@eslint-community/regexpp': 4.10.0
- eslint: 9.5.0
- eslint-compat-utils: 0.5.1(eslint@9.5.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ '@eslint-community/regexpp': 4.11.0
+ eslint: 9.12.0(jiti@1.21.0)
+ eslint-compat-utils: 0.5.1(eslint@9.12.0(jiti@1.21.0))
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -46430,11 +46252,11 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.5.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
hasown: 2.0.2
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
@@ -46443,7 +46265,7 @@ snapshots:
semver: 6.3.1
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
@@ -46461,7 +46283,7 @@ snapshots:
eslint-import-resolver-node: 0.3.9
eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)
hasown: 2.0.2
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
@@ -46476,7 +46298,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.5.0):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -46484,11 +46306,11 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.5.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
hasown: 2.0.2
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
@@ -46503,7 +46325,7 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.5.0):
+ eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5
@@ -46511,11 +46333,11 @@ snapshots:
array.prototype.flatmap: 1.3.2
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.5.0)
+ eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0))
hasown: 2.0.2
- is-core-module: 2.13.1
+ is-core-module: 2.15.1
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: 2.0.8
@@ -46530,18 +46352,18 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest-dom@5.4.0(@testing-library/dom@10.4.0)(eslint@9.5.0):
+ eslint-plugin-jest-dom@5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0)):
dependencies:
- '@babel/runtime': 7.24.7
- eslint: 9.5.0
+ '@babel/runtime': 7.25.7
+ eslint: 9.12.0(jiti@1.21.0)
requireindex: 1.2.0
optionalDependencies:
'@testing-library/dom': 10.4.0
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2):
dependencies:
- '@typescript-eslint/utils': 7.7.1(eslint@9.5.0)(typescript@5.5.2)
- eslint: 9.5.0
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.12.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)
jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
@@ -46549,10 +46371,10 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.5.0)(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.6.3):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 7.7.1(eslint@9.5.0)(typescript@5.6.3)
- eslint: 9.5.0
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.12.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
@@ -46560,10 +46382,10 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.5.0)(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
+ eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/utils': 7.7.1(eslint@9.5.0)(typescript@5.5.4)
- eslint: 9.5.0
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.12.0(jiti@1.21.0)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)
jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
@@ -46571,11 +46393,11 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-jsonc@2.16.0(eslint@9.5.0):
+ eslint-plugin-jsonc@2.16.0(eslint@9.12.0(jiti@1.21.0)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
- eslint: 9.5.0
- eslint-compat-utils: 0.5.1(eslint@9.5.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ eslint: 9.12.0(jiti@1.21.0)
+ eslint-compat-utils: 0.5.1(eslint@9.12.0(jiti@1.21.0))
espree: 9.6.1
graphemer: 1.4.0
jsonc-eslint-parser: 2.4.0
@@ -46584,8 +46406,8 @@ snapshots:
eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0):
dependencies:
- '@babel/runtime': 7.24.7
- aria-query: 5.3.0
+ '@babel/runtime': 7.25.7
+ aria-query: 5.3.2
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
@@ -46602,10 +46424,10 @@ snapshots:
object.entries: 1.1.8
object.fromentries: 2.0.8
- eslint-plugin-jsx-a11y@6.8.0(eslint@9.5.0):
+ eslint-plugin-jsx-a11y@6.8.0(eslint@9.12.0(jiti@1.21.0)):
dependencies:
- '@babel/runtime': 7.24.7
- aria-query: 5.3.0
+ '@babel/runtime': 7.25.7
+ aria-query: 5.3.2
array-includes: 3.1.8
array.prototype.flatmap: 1.3.2
ast-types-flow: 0.0.8
@@ -46614,7 +46436,7 @@ snapshots:
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
es-iterator-helpers: 1.0.19
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
hasown: 2.0.2
jsx-ast-utils: 3.3.5
language-tags: 1.0.9
@@ -46622,25 +46444,25 @@ snapshots:
object.entries: 1.1.8
object.fromentries: 2.0.8
- eslint-plugin-n@17.9.0(eslint@9.5.0):
+ eslint-plugin-n@17.9.0(eslint@9.12.0(jiti@1.21.0)):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
- enhanced-resolve: 5.17.0
- eslint: 9.5.0
- eslint-plugin-es-x: 7.7.0(eslint@9.5.0)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
+ enhanced-resolve: 5.17.1
+ eslint: 9.12.0(jiti@1.21.0)
+ eslint-plugin-es-x: 7.7.0(eslint@9.12.0(jiti@1.21.0))
get-tsconfig: 4.7.5
globals: 15.6.0
- ignore: 5.3.1
- minimatch: 9.0.4
- semver: 7.6.2
+ ignore: 5.3.2
+ minimatch: 9.0.5
+ semver: 7.6.3
eslint-plugin-react-hooks@4.6.2(eslint@8.56.0):
dependencies:
eslint: 8.56.0
- eslint-plugin-react-hooks@4.6.2(eslint@9.5.0):
+ eslint-plugin-react-hooks@4.6.2(eslint@9.12.0(jiti@1.21.0)):
dependencies:
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
eslint-plugin-react@7.34.2(eslint@8.56.0):
dependencies:
@@ -46664,7 +46486,7 @@ snapshots:
semver: 6.3.1
string.prototype.matchall: 4.0.11
- eslint-plugin-react@7.34.2(eslint@9.5.0):
+ eslint-plugin-react@7.34.2(eslint@9.12.0(jiti@1.21.0)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -46673,7 +46495,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.0.19
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
estraverse: 5.3.0
jsx-ast-utils: 3.3.5
minimatch: 3.1.2
@@ -46686,77 +46508,77 @@ snapshots:
semver: 6.3.1
string.prototype.matchall: 4.0.11
- eslint-plugin-storybook@0.8.0(eslint@9.5.0)(typescript@5.5.2):
+ eslint-plugin-storybook@0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@9.5.0)(typescript@5.5.2)
- eslint: 9.5.0
+ '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.12.0(jiti@1.21.0)
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-storybook@0.8.0(eslint@9.5.0)(typescript@5.5.4):
+ eslint-plugin-storybook@0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@9.5.0)(typescript@5.5.4)
- eslint: 9.5.0
+ '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.12.0(jiti@1.21.0)
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-storybook@0.8.0(eslint@9.5.0)(typescript@5.6.3):
+ eslint-plugin-storybook@0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3):
dependencies:
'@storybook/csf': 0.0.1
- '@typescript-eslint/utils': 5.62.0(eslint@9.5.0)(typescript@5.6.3)
- eslint: 9.5.0
+ '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.12.0(jiti@1.21.0)
requireindex: 1.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-tailwindcss@3.17.3(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))):
+ eslint-plugin-tailwindcss@3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))):
dependencies:
fast-glob: 3.3.2
postcss: 8.4.47
- tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
- eslint-plugin-tailwindcss@3.17.3(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))):
+ eslint-plugin-tailwindcss@3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))):
dependencies:
fast-glob: 3.3.2
postcss: 8.4.47
- tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
- eslint-plugin-tailwindcss@3.17.3(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))):
+ eslint-plugin-tailwindcss@3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))):
dependencies:
fast-glob: 3.3.2
postcss: 8.4.47
- tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
+ tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
- eslint-plugin-testing-library@6.2.2(eslint@9.5.0)(typescript@5.5.2):
+ eslint-plugin-testing-library@6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.5.0)(typescript@5.5.2)
- eslint: 9.5.0
+ '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.12.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-testing-library@6.2.2(eslint@9.5.0)(typescript@5.5.4):
+ eslint-plugin-testing-library@6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.5.0)(typescript@5.5.4)
- eslint: 9.5.0
+ '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.12.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-testing-library@6.2.2(eslint@9.5.0)(typescript@5.6.3):
+ eslint-plugin-testing-library@6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@9.5.0)(typescript@5.6.3)
- eslint: 9.5.0
+ '@typescript-eslint/utils': 5.62.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.12.0(jiti@1.21.0)
transitivePeerDependencies:
- supports-color
- typescript
@@ -46766,20 +46588,20 @@ snapshots:
'@microsoft/tsdoc': 0.15.0
'@microsoft/tsdoc-config': 0.17.0
- eslint-plugin-turbo@2.2.3(eslint@9.5.0):
+ eslint-plugin-turbo@2.2.3(eslint@9.12.0(jiti@1.21.0)):
dependencies:
dotenv: 16.0.3
- eslint: 9.5.0
+ eslint: 9.12.0(jiti@1.21.0)
- eslint-plugin-unicorn@53.0.0(eslint@9.5.0):
+ eslint-plugin-unicorn@53.0.0(eslint@9.12.0(jiti@1.21.0)):
dependencies:
- '@babel/helper-validator-identifier': 7.24.7
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0)
+ '@babel/helper-validator-identifier': 7.25.7
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0(jiti@1.21.0))
'@eslint/eslintrc': 3.1.0
ci-info: 4.0.0
clean-regexp: 1.0.0
- core-js-compat: 3.37.1
- eslint: 9.5.0
+ core-js-compat: 3.38.0
+ eslint: 9.12.0(jiti@1.21.0)
esquery: 1.5.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
@@ -46788,7 +46610,7 @@ snapshots:
read-pkg-up: 7.0.1
regexp-tree: 0.1.27
regjsparser: 0.10.0
- semver: 7.6.2
+ semver: 7.6.3
strip-indent: 3.0.0
transitivePeerDependencies:
- supports-color
@@ -48115,22 +47937,30 @@ snapshots:
fraction.js@4.3.7: {}
- framer-motion@11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ framer-motion@11.11.10(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
+ dependencies:
+ tslib: 2.8.0
+ optionalDependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+
+ framer-motion@11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
tslib: 2.6.3
optionalDependencies:
'@emotion/is-prop-valid': 1.2.2
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- framer-motion@6.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ framer-motion@6.5.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
'@motionone/dom': 10.12.0
framesync: 6.0.1
hey-listen: 1.0.8
popmotion: 11.0.3
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
style-value-types: 5.0.0
tslib: 2.6.3
optionalDependencies:
@@ -48138,7 +47968,7 @@ snapshots:
framesync@6.0.1:
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.0
fresh@0.5.2: {}
@@ -48698,23 +48528,23 @@ snapshots:
graphql-tag@2.12.6(graphql@15.9.0):
dependencies:
graphql: 15.9.0
- tslib: 2.6.3
+ tslib: 2.8.0
optional: true
graphql-tag@2.12.6(graphql@16.6.0):
dependencies:
graphql: 16.6.0
- tslib: 2.6.3
+ tslib: 2.8.0
graphql-tag@2.12.6(graphql@16.8.2):
dependencies:
graphql: 16.8.2
- tslib: 2.6.3
+ tslib: 2.8.0
graphql-tag@2.12.6(graphql@16.9.0):
dependencies:
graphql: 16.9.0
- tslib: 2.6.3
+ tslib: 2.8.0
graphql@0.11.7:
dependencies:
@@ -52045,23 +51875,23 @@ snapshots:
data-urls: 3.0.2
decimal.js: 10.4.3
domexception: 4.0.0
- escodegen: 2.0.0
- form-data: 4.0.0
+ escodegen: 2.1.0
+ form-data: 4.0.1
html-encoding-sniffer: 3.0.0
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.2
+ nwsapi: 2.2.10
parse5: 7.1.2
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 4.1.2
+ tough-cookie: 4.1.4
w3c-xmlserializer: 4.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -52078,23 +51908,23 @@ snapshots:
data-urls: 3.0.2
decimal.js: 10.4.3
domexception: 4.0.0
- escodegen: 2.0.0
- form-data: 4.0.0
+ escodegen: 2.1.0
+ form-data: 4.0.1
html-encoding-sniffer: 3.0.0
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.2
+ nwsapi: 2.2.10
parse5: 7.1.2
saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 4.1.2
+ tough-cookie: 4.1.4
w3c-xmlserializer: 4.0.0
webidl-conversions: 7.0.0
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.4)
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4)
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -52484,11 +52314,6 @@ snapshots:
leven@3.1.0: {}
- levn@0.3.0:
- dependencies:
- prelude-ls: 1.1.2
- type-check: 0.3.2
-
levn@0.4.1:
dependencies:
prelude-ls: 1.2.1
@@ -53778,16 +53603,16 @@ snapshots:
dependencies:
ansi-regex: 2.1.1
- next-seo@5.15.0(next@14.2.3(@babel/core@7.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next-seo@5.15.0(next@15.0.2(@babel/core@7.24.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
- next: 14.2.3(@babel/core@7.24.0)(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)
+ next: 15.0.2(@babel/core@7.24.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- next-themes@0.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next-themes@0.3.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
next-tick@1.1.0: {}
@@ -53841,102 +53666,127 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- next@14.2.3(@babel/core@7.24.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@14.2.15(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
- '@next/env': 14.2.3
+ '@next/env': 14.2.15
'@swc/helpers': 0.5.5
busboy: 1.6.0
- caniuse-lite: 1.0.30001632
+ caniuse-lite: 1.0.30001651
graceful-fs: 4.2.11
postcss: 8.4.31
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(@babel/core@7.24.0)(react@18.3.1)
- optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.3
- '@next/swc-darwin-x64': 14.2.3
- '@next/swc-linux-arm64-gnu': 14.2.3
- '@next/swc-linux-arm64-musl': 14.2.3
- '@next/swc-linux-x64-gnu': 14.2.3
- '@next/swc-linux-x64-musl': 14.2.3
- '@next/swc-win32-arm64-msvc': 14.2.3
- '@next/swc-win32-ia32-msvc': 14.2.3
- '@next/swc-win32-x64-msvc': 14.2.3
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ styled-jsx: 5.1.1(@babel/core@7.25.8)(react@19.0.0-rc-603e6108-20241029)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 14.2.15
+ '@next/swc-darwin-x64': 14.2.15
+ '@next/swc-linux-arm64-gnu': 14.2.15
+ '@next/swc-linux-arm64-musl': 14.2.15
+ '@next/swc-linux-x64-gnu': 14.2.15
+ '@next/swc-linux-x64-musl': 14.2.15
+ '@next/swc-win32-arm64-msvc': 14.2.15
+ '@next/swc-win32-ia32-msvc': 14.2.15
+ '@next/swc-win32-x64-msvc': 14.2.15
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- next@14.2.4(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@15.0.2(@babel/core@7.24.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
- '@next/env': 14.2.4
- '@swc/helpers': 0.5.5
+ '@next/env': 15.0.2
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.13
busboy: 1.6.0
- caniuse-lite: 1.0.30001632
- graceful-fs: 4.2.11
+ caniuse-lite: 1.0.30001669
postcss: 8.4.31
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(@babel/core@7.24.7)(react@18.3.1)
- optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.4
- '@next/swc-darwin-x64': 14.2.4
- '@next/swc-linux-arm64-gnu': 14.2.4
- '@next/swc-linux-arm64-musl': 14.2.4
- '@next/swc-linux-x64-gnu': 14.2.4
- '@next/swc-linux-x64-musl': 14.2.4
- '@next/swc-win32-arm64-msvc': 14.2.4
- '@next/swc-win32-ia32-msvc': 14.2.4
- '@next/swc-win32-x64-msvc': 14.2.4
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ styled-jsx: 5.1.6(@babel/core@7.24.0)(react@19.0.0-rc-603e6108-20241029)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.0.2
+ '@next/swc-darwin-x64': 15.0.2
+ '@next/swc-linux-arm64-gnu': 15.0.2
+ '@next/swc-linux-arm64-musl': 15.0.2
+ '@next/swc-linux-x64-gnu': 15.0.2
+ '@next/swc-linux-x64-musl': 15.0.2
+ '@next/swc-win32-arm64-msvc': 15.0.2
+ '@next/swc-win32-x64-msvc': 15.0.2
+ sharp: 0.33.5
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- next@14.2.4(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@15.0.2(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@next/env': 14.2.4
- '@swc/helpers': 0.5.5
+ '@next/env': 15.0.2
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.13
busboy: 1.6.0
- caniuse-lite: 1.0.30001632
- graceful-fs: 4.2.11
+ caniuse-lite: 1.0.30001669
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(@babel/core@7.25.8)(react@18.3.1)
+ styled-jsx: 5.1.6(@babel/core@7.24.7)(react@18.3.1)
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.4
- '@next/swc-darwin-x64': 14.2.4
- '@next/swc-linux-arm64-gnu': 14.2.4
- '@next/swc-linux-arm64-musl': 14.2.4
- '@next/swc-linux-x64-gnu': 14.2.4
- '@next/swc-linux-x64-musl': 14.2.4
- '@next/swc-win32-arm64-msvc': 14.2.4
- '@next/swc-win32-ia32-msvc': 14.2.4
- '@next/swc-win32-x64-msvc': 14.2.4
+ '@next/swc-darwin-arm64': 15.0.2
+ '@next/swc-darwin-x64': 15.0.2
+ '@next/swc-linux-arm64-gnu': 15.0.2
+ '@next/swc-linux-arm64-musl': 15.0.2
+ '@next/swc-linux-x64-gnu': 15.0.2
+ '@next/swc-linux-x64-musl': 15.0.2
+ '@next/swc-win32-arm64-msvc': 15.0.2
+ '@next/swc-win32-x64-msvc': 15.0.2
+ sharp: 0.33.5
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- next@14.2.6(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@15.0.2(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
- '@next/env': 14.2.6
- '@swc/helpers': 0.5.5
+ '@next/env': 15.0.2
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.13
busboy: 1.6.0
- caniuse-lite: 1.0.30001651
- graceful-fs: 4.2.11
+ caniuse-lite: 1.0.30001669
postcss: 8.4.31
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(@babel/core@7.25.8)(react@18.3.1)
- optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.6
- '@next/swc-darwin-x64': 14.2.6
- '@next/swc-linux-arm64-gnu': 14.2.6
- '@next/swc-linux-arm64-musl': 14.2.6
- '@next/swc-linux-x64-gnu': 14.2.6
- '@next/swc-linux-x64-musl': 14.2.6
- '@next/swc-win32-arm64-msvc': 14.2.6
- '@next/swc-win32-ia32-msvc': 14.2.6
- '@next/swc-win32-x64-msvc': 14.2.6
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ styled-jsx: 5.1.6(@babel/core@7.24.7)(react@19.0.0-rc-603e6108-20241029)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.0.2
+ '@next/swc-darwin-x64': 15.0.2
+ '@next/swc-linux-arm64-gnu': 15.0.2
+ '@next/swc-linux-arm64-musl': 15.0.2
+ '@next/swc-linux-x64-gnu': 15.0.2
+ '@next/swc-linux-x64-musl': 15.0.2
+ '@next/swc-win32-arm64-msvc': 15.0.2
+ '@next/swc-win32-x64-msvc': 15.0.2
+ sharp: 0.33.5
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
+ next@15.0.2(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
+ dependencies:
+ '@next/env': 15.0.2
+ '@swc/counter': 0.1.3
+ '@swc/helpers': 0.5.13
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001669
+ postcss: 8.4.31
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ styled-jsx: 5.1.6(@babel/core@7.25.8)(react@19.0.0-rc-603e6108-20241029)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 15.0.2
+ '@next/swc-darwin-x64': 15.0.2
+ '@next/swc-linux-arm64-gnu': 15.0.2
+ '@next/swc-linux-arm64-musl': 15.0.2
+ '@next/swc-linux-x64-gnu': 15.0.2
+ '@next/swc-linux-x64-musl': 15.0.2
+ '@next/swc-win32-arm64-msvc': 15.0.2
+ '@next/swc-win32-x64-msvc': 15.0.2
+ sharp: 0.33.5
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
@@ -54206,8 +54056,6 @@ snapshots:
nwsapi@2.2.10: {}
- nwsapi@2.2.2: {}
-
nx@19.8.7:
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
@@ -54486,15 +54334,6 @@ snapshots:
'@wry/context': 0.7.0
'@wry/trie': 0.3.2
- optionator@0.8.3:
- dependencies:
- deep-is: 0.1.4
- fast-levenshtein: 2.0.6
- levn: 0.3.0
- prelude-ls: 1.1.2
- type-check: 0.3.2
- word-wrap: 1.2.5
-
optionator@0.9.3:
dependencies:
'@aashutoshrathi/word-wrap': 1.2.6
@@ -55009,7 +54848,7 @@ snapshots:
framesync: 6.0.1
hey-listen: 1.0.8
style-value-types: 5.0.0
- tslib: 2.6.3
+ tslib: 2.8.0
portfinder@1.0.32:
dependencies:
@@ -55085,28 +54924,28 @@ snapshots:
postcss: 8.4.38
ts-node: 10.9.2(@types/node@20.14.7)(typescript@5.5.2)
- postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)):
+ postcss-load-config@4.0.2(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)):
dependencies:
lilconfig: 3.1.2
yaml: 2.4.5
optionalDependencies:
- postcss: 8.4.38
+ postcss: 8.4.41
ts-node: 10.9.2(@types/node@22.2.0)(typescript@5.5.4)
- postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)):
+ postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)):
dependencies:
lilconfig: 3.1.2
yaml: 2.4.5
optionalDependencies:
- postcss: 8.4.38
- ts-node: 10.9.2(@types/node@22.7.7)(typescript@5.6.3)
+ postcss: 8.4.47
+ ts-node: 10.9.2(@types/node@20.14.7)(typescript@5.5.2)
- postcss-load-config@4.0.2(postcss@8.4.41)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)):
+ postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)):
dependencies:
lilconfig: 3.1.2
yaml: 2.4.5
optionalDependencies:
- postcss: 8.4.41
+ postcss: 8.4.47
ts-node: 10.9.2(@types/node@22.2.0)(typescript@5.5.4)
postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)):
@@ -55396,8 +55235,6 @@ snapshots:
precond@0.2.3: {}
- prelude-ls@1.1.2: {}
-
prelude-ls@1.2.1: {}
prettier-plugin-solidity@1.1.3(prettier@2.8.8):
@@ -55814,38 +55651,38 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-aria-components@1.3.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-aria-components@1.3.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
'@internationalized/date': 3.5.5
'@internationalized/string': 3.2.3
- '@react-aria/collections': 3.0.0-alpha.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/color': 3.0.0-rc.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/dnd': 3.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/menu': 3.15.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/toolbar': 3.0.0-beta.8(react@18.3.1)
- '@react-aria/tree': 3.0.0-alpha.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-aria/virtualizer': 4.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-stately/color': 3.7.2(react@18.3.1)
- '@react-stately/layout': 4.0.2(react@18.3.1)
- '@react-stately/menu': 3.8.2(react@18.3.1)
- '@react-stately/table': 3.12.2(react@18.3.1)
- '@react-stately/utils': 3.10.3(react@18.3.1)
- '@react-stately/virtualizer': 4.0.2(react@18.3.1)
- '@react-types/color': 3.0.0-rc.1(react@18.3.1)
- '@react-types/form': 3.7.6(react@18.3.1)
- '@react-types/grid': 3.2.8(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- '@react-types/table': 3.10.1(react@18.3.1)
+ '@react-aria/collections': 3.0.0-alpha.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/color': 3.0.0-rc.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/dnd': 3.7.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/menu': 3.15.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/toolbar': 3.0.0-beta.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/tree': 3.0.0-alpha.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/virtualizer': 4.0.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/color': 3.7.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/layout': 4.0.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/menu': 3.8.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/table': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/utils': 3.10.3(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/virtualizer': 4.0.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/color': 3.0.0-rc.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/form': 3.7.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/grid': 3.2.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/table': 3.10.1(react@19.0.0-rc-603e6108-20241029)
'@swc/helpers': 0.5.11
client-only: 0.0.1
- react: 18.3.1
- react-aria: 3.34.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-dom: 18.3.1(react@18.3.1)
- react-stately: 3.32.2(react@18.3.1)
- use-sync-external-store: 1.2.0(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-aria: 3.34.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ react-stately: 3.32.2(react@19.0.0-rc-603e6108-20241029)
+ use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029)
react-aria-components@1.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
@@ -55884,47 +55721,47 @@ snapshots:
react-stately: 3.33.0(react@18.3.1)
use-sync-external-store: 1.2.0(react@18.3.1)
- react-aria@3.34.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-aria@3.34.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
'@internationalized/string': 3.2.3
- '@react-aria/breadcrumbs': 3.5.16(react@18.3.1)
- '@react-aria/button': 3.9.8(react@18.3.1)
- '@react-aria/calendar': 3.5.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/checkbox': 3.14.6(react@18.3.1)
- '@react-aria/combobox': 3.10.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/datepicker': 3.11.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/dialog': 3.5.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/dnd': 3.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/focus': 3.18.2(react@18.3.1)
- '@react-aria/gridlist': 3.9.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/i18n': 3.12.2(react@18.3.1)
- '@react-aria/interactions': 3.22.2(react@18.3.1)
- '@react-aria/label': 3.7.11(react@18.3.1)
- '@react-aria/link': 3.7.4(react@18.3.1)
- '@react-aria/listbox': 3.13.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/menu': 3.15.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/meter': 3.4.16(react@18.3.1)
- '@react-aria/numberfield': 3.11.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/overlays': 3.23.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/progress': 3.4.16(react@18.3.1)
- '@react-aria/radio': 3.10.7(react@18.3.1)
- '@react-aria/searchfield': 3.7.8(react@18.3.1)
- '@react-aria/select': 3.14.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/selection': 3.19.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/separator': 3.4.2(react@18.3.1)
- '@react-aria/slider': 3.7.11(react@18.3.1)
- '@react-aria/ssr': 3.9.5(react@18.3.1)
- '@react-aria/switch': 3.6.7(react@18.3.1)
- '@react-aria/table': 3.15.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/tabs': 3.9.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/tag': 3.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@react-aria/textfield': 3.14.8(react@18.3.1)
- '@react-aria/tooltip': 3.7.7(react@18.3.1)
- '@react-aria/utils': 3.25.2(react@18.3.1)
- '@react-aria/visually-hidden': 3.8.15(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@react-aria/breadcrumbs': 3.5.16(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/button': 3.9.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/calendar': 3.5.11(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/checkbox': 3.14.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/combobox': 3.10.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/datepicker': 3.11.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/dialog': 3.5.17(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/dnd': 3.7.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/gridlist': 3.9.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/label': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/link': 3.7.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/listbox': 3.13.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/menu': 3.15.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/meter': 3.4.16(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/numberfield': 3.11.6(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/overlays': 3.23.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/progress': 3.4.16(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/radio': 3.10.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/searchfield': 3.7.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/select': 3.14.9(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/selection': 3.19.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/separator': 3.4.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/slider': 3.7.11(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/ssr': 3.9.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/switch': 3.6.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/table': 3.15.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/tabs': 3.9.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/tag': 3.4.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/textfield': 3.14.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/tooltip': 3.7.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-aria/visually-hidden': 3.8.15(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
react-aria@3.35.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
@@ -56049,6 +55886,11 @@ snapshots:
react: 18.3.1
scheduler: 0.23.2
+ react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029):
+ dependencies:
+ react: 19.0.0-rc-603e6108-20241029
+ scheduler: 0.25.0-rc-603e6108-20241029
+
react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@base2/pretty-print-object': 1.0.1
@@ -56059,23 +55901,23 @@ snapshots:
react-error-overlay@6.0.11: {}
- react-hot-toast@2.4.0(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-hot-toast@2.4.0(csstype@3.1.3)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
goober: 2.1.11(csstype@3.1.3)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
transitivePeerDependencies:
- csstype
- react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029):
dependencies:
'@babel/runtime': 7.25.7
html-parse-stringify: 3.0.1
i18next: 22.5.1
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
optionalDependencies:
- react-dom: 18.3.1(react@18.3.1)
- react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
react-is@16.13.1: {}
@@ -56087,15 +55929,15 @@ snapshots:
react-lifecycles-compat@3.0.4: {}
- react-markdown@9.0.1(@types/react@18.3.3)(react@18.3.1):
+ react-markdown@9.0.1(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1):
dependencies:
'@types/hast': 3.0.4
- '@types/react': 18.3.3
+ '@types/react': types-react@19.0.0-rc.1
devlop: 1.1.0
hast-util-to-jsx-runtime: 2.3.0
html-url-attributes: 3.0.0
mdast-util-to-hast: 13.2.0
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
remark-parse: 11.0.0
remark-rehype: 11.1.0
unified: 11.0.5
@@ -56113,14 +55955,14 @@ snapshots:
react-lifecycles-compat: 3.0.4
warning: 4.0.3
- react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029):
dependencies:
escape-string-regexp: 2.0.0
invariant: 2.2.4
- react: 18.3.1
- react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react: 19.0.0-rc-603e6108-20241029
+ react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)
- react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10):
+ react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -56132,7 +55974,7 @@ snapshots:
'@react-native/gradle-plugin': 0.74.84
'@react-native/js-polyfills': 0.74.84
'@react-native/normalize-colors': 0.74.84
- '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@react-native/virtualized-lists': 0.74.84(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -56150,10 +55992,10 @@ snapshots:
nullthrows: 1.1.1
pretty-format: 26.6.2
promise: 8.3.0
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
react-devtools-core: 5.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
react-refresh: 0.14.2
- react-shallow-renderer: 16.15.0(react@18.3.1)
+ react-shallow-renderer: 16.15.0(react@19.0.0-rc-603e6108-20241029)
regenerator-runtime: 0.13.11
scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: 0.1.10
@@ -56161,7 +56003,7 @@ snapshots:
ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
yargs: 17.7.2
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': types-react@19.0.0-rc.1
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
@@ -56170,7 +56012,7 @@ snapshots:
- supports-color
- utf-8-validate
- react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10):
+ react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -56182,7 +56024,7 @@ snapshots:
'@react-native/gradle-plugin': 0.74.84
'@react-native/js-polyfills': 0.74.84
'@react-native/normalize-colors': 0.74.84
- '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@react-native/virtualized-lists': 0.74.84(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -56200,10 +56042,10 @@ snapshots:
nullthrows: 1.1.1
pretty-format: 26.6.2
promise: 8.3.0
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
react-devtools-core: 5.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
react-refresh: 0.14.2
- react-shallow-renderer: 16.15.0(react@18.3.1)
+ react-shallow-renderer: 16.15.0(react@19.0.0-rc-603e6108-20241029)
regenerator-runtime: 0.13.11
scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: 0.1.10
@@ -56211,7 +56053,7 @@ snapshots:
ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
yargs: 17.7.2
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': types-react@19.0.0-rc.1
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
@@ -56220,7 +56062,7 @@ snapshots:
- supports-color
- utf-8-validate
- react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10):
+ react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -56232,7 +56074,7 @@ snapshots:
'@react-native/gradle-plugin': 0.74.84
'@react-native/js-polyfills': 0.74.84
'@react-native/normalize-colors': 0.74.84
- '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.11)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.11)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -56250,10 +56092,10 @@ snapshots:
nullthrows: 1.1.1
pretty-format: 26.6.2
promise: 8.3.0
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
react-devtools-core: 5.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
react-refresh: 0.14.2
- react-shallow-renderer: 16.15.0(react@18.3.1)
+ react-shallow-renderer: 16.15.0(react@19.0.0-rc-603e6108-20241029)
regenerator-runtime: 0.13.11
scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: 0.1.10
@@ -56270,7 +56112,7 @@ snapshots:
- supports-color
- utf-8-validate
- react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10):
+ react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
@@ -56282,7 +56124,7 @@ snapshots:
'@react-native/gradle-plugin': 0.74.84
'@react-native/js-polyfills': 0.74.84
'@react-native/normalize-colors': 0.74.84
- '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.3)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@react-native/virtualized-lists': 0.74.84(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -56300,10 +56142,10 @@ snapshots:
nullthrows: 1.1.1
pretty-format: 26.6.2
promise: 8.3.0
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
react-devtools-core: 5.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
react-refresh: 0.14.2
- react-shallow-renderer: 16.15.0(react@18.3.1)
+ react-shallow-renderer: 16.15.0(react@19.0.0-rc-603e6108-20241029)
regenerator-runtime: 0.13.11
scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: 0.1.10
@@ -56311,7 +56153,7 @@ snapshots:
ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
yargs: 17.7.2
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': types-react@19.0.0-rc.1
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
@@ -56330,46 +56172,46 @@ snapshots:
react-refresh@0.14.2: {}
- react-shallow-renderer@16.15.0(react@18.3.1):
+ react-shallow-renderer@16.15.0(react@19.0.0-rc-603e6108-20241029):
dependencies:
object-assign: 4.1.1
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
react-is: 18.3.1
- react-smooth@4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-smooth@4.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
fast-equals: 5.0.1
prop-types: 15.8.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
-
- react-stately@3.32.2(react@18.3.1):
- dependencies:
- '@react-stately/calendar': 3.5.4(react@18.3.1)
- '@react-stately/checkbox': 3.6.8(react@18.3.1)
- '@react-stately/collections': 3.10.9(react@18.3.1)
- '@react-stately/combobox': 3.9.2(react@18.3.1)
- '@react-stately/data': 3.11.6(react@18.3.1)
- '@react-stately/datepicker': 3.10.2(react@18.3.1)
- '@react-stately/dnd': 3.4.2(react@18.3.1)
- '@react-stately/form': 3.0.5(react@18.3.1)
- '@react-stately/list': 3.10.8(react@18.3.1)
- '@react-stately/menu': 3.8.2(react@18.3.1)
- '@react-stately/numberfield': 3.9.6(react@18.3.1)
- '@react-stately/overlays': 3.6.10(react@18.3.1)
- '@react-stately/radio': 3.10.7(react@18.3.1)
- '@react-stately/searchfield': 3.5.6(react@18.3.1)
- '@react-stately/select': 3.6.7(react@18.3.1)
- '@react-stately/selection': 3.16.2(react@18.3.1)
- '@react-stately/slider': 3.5.7(react@18.3.1)
- '@react-stately/table': 3.12.2(react@18.3.1)
- '@react-stately/tabs': 3.6.9(react@18.3.1)
- '@react-stately/toggle': 3.7.7(react@18.3.1)
- '@react-stately/tooltip': 3.4.12(react@18.3.1)
- '@react-stately/tree': 3.8.4(react@18.3.1)
- '@react-types/shared': 3.24.1(react@18.3.1)
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ react-transition-group: 4.4.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
+
+ react-stately@3.32.2(react@19.0.0-rc-603e6108-20241029):
+ dependencies:
+ '@react-stately/calendar': 3.5.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/checkbox': 3.6.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/collections': 3.10.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/combobox': 3.9.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/data': 3.11.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/datepicker': 3.10.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/dnd': 3.4.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/form': 3.0.5(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/list': 3.10.8(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/menu': 3.8.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/numberfield': 3.9.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/overlays': 3.6.10(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/radio': 3.10.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/searchfield': 3.5.6(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/select': 3.6.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/selection': 3.16.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/slider': 3.5.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/table': 3.12.2(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/tabs': 3.6.9(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/toggle': 3.7.7(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/tooltip': 3.4.12(react@19.0.0-rc-603e6108-20241029)
+ '@react-stately/tree': 3.8.4(react@19.0.0-rc-603e6108-20241029)
+ '@react-types/shared': 3.24.1(react@19.0.0-rc-603e6108-20241029)
+ react: 19.0.0-rc-603e6108-20241029
react-stately@3.33.0(react@18.3.1):
dependencies:
@@ -56399,25 +56241,25 @@ snapshots:
'@react-types/shared': 3.25.0(react@18.3.1)
react: 18.3.1
- react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-transition-group@4.4.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.25.7
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- react-transition-state@1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-transition-state@1.1.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
- react-use-measure@2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-use-measure@2.1.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
debounce: 1.2.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
react@16.13.1:
dependencies:
@@ -56429,6 +56271,8 @@ snapshots:
dependencies:
loose-envify: 1.4.0
+ react@19.0.0-rc-603e6108-20241029: {}
+
read-cache@1.0.0:
dependencies:
pify: 2.3.0
@@ -56569,15 +56413,15 @@ snapshots:
dependencies:
decimal.js-light: 2.5.1
- recharts@2.12.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ recharts@2.13.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029):
dependencies:
clsx: 2.1.1
eventemitter3: 4.0.7
lodash: 4.17.21
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-is: 16.13.1
- react-smooth: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
+ react-is: 18.3.1
+ react-smooth: 4.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)
recharts-scale: 0.4.5
tiny-invariant: 1.3.3
victory-vendor: 36.9.2
@@ -57015,6 +56859,8 @@ snapshots:
dependencies:
loose-envify: 1.4.0
+ scheduler@0.25.0-rc-603e6108-20241029: {}
+
schema-utils@2.7.0:
dependencies:
'@types/json-schema': 7.0.15
@@ -57253,6 +57099,33 @@ snapshots:
'@img/sharp-win32-ia32': 0.33.4
'@img/sharp-win32-x64': 0.33.4
+ sharp@0.33.5:
+ dependencies:
+ color: 4.2.3
+ detect-libc: 2.0.3
+ semver: 7.6.3
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.33.5
+ '@img/sharp-darwin-x64': 0.33.5
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ '@img/sharp-linux-arm': 0.33.5
+ '@img/sharp-linux-arm64': 0.33.5
+ '@img/sharp-linux-s390x': 0.33.5
+ '@img/sharp-linux-x64': 0.33.5
+ '@img/sharp-linuxmusl-arm64': 0.33.5
+ '@img/sharp-linuxmusl-x64': 0.33.5
+ '@img/sharp-wasm32': 0.33.5
+ '@img/sharp-win32-ia32': 0.33.5
+ '@img/sharp-win32-x64': 0.33.5
+ optional: true
+
shebang-command@1.2.0:
dependencies:
shebang-regex: 1.0.0
@@ -57871,47 +57744,54 @@ snapshots:
style-value-types@5.0.0:
dependencies:
hey-listen: 1.0.8
- tslib: 2.6.3
+ tslib: 2.8.0
- styled-components@5.3.11(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1):
+ styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029):
dependencies:
'@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
'@babel/traverse': 7.24.7(supports-color@5.5.0)
'@emotion/is-prop-valid': 1.2.2
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))(supports-color@5.5.0)
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029))(supports-color@5.5.0)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029)
react-is: 18.3.1
shallowequal: 1.1.0
supports-color: 5.5.0
transitivePeerDependencies:
- '@babel/core'
- styled-jsx@5.1.1(@babel/core@7.24.0)(react@18.3.1):
+ styled-jsx@5.1.1(@babel/core@7.24.7)(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
optionalDependencies:
- '@babel/core': 7.24.0
+ '@babel/core': 7.24.7
- styled-jsx@5.1.1(@babel/core@7.24.7)(react@18.3.1):
+ styled-jsx@5.1.1(@babel/core@7.25.8)(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
optionalDependencies:
- '@babel/core': 7.24.7
+ '@babel/core': 7.25.8
- styled-jsx@5.1.1(@babel/core@7.25.8)(react@18.3.1):
+ styled-jsx@5.1.1(@babel/core@7.25.8)(react@19.0.0-rc-603e6108-20241029):
dependencies:
client-only: 0.0.1
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
optionalDependencies:
'@babel/core': 7.25.8
+ styled-jsx@5.1.6(@babel/core@7.24.0)(react@19.0.0-rc-603e6108-20241029):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.0.0-rc-603e6108-20241029
+ optionalDependencies:
+ '@babel/core': 7.24.0
+
styled-jsx@5.1.6(@babel/core@7.24.7)(react@18.3.1):
dependencies:
client-only: 0.0.1
@@ -57919,6 +57799,20 @@ snapshots:
optionalDependencies:
'@babel/core': 7.24.7
+ styled-jsx@5.1.6(@babel/core@7.24.7)(react@19.0.0-rc-603e6108-20241029):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.0.0-rc-603e6108-20241029
+ optionalDependencies:
+ '@babel/core': 7.24.7
+
+ styled-jsx@5.1.6(@babel/core@7.25.8)(react@19.0.0-rc-603e6108-20241029):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.0.0-rc-603e6108-20241029
+ optionalDependencies:
+ '@babel/core': 7.25.8
+
sublevel-pouchdb@7.3.1:
dependencies:
inherits: 2.0.4
@@ -58071,11 +57965,11 @@ snapshots:
- supports-color
- utf-8-validate
- swr@2.2.5(react@18.3.1):
+ swr@2.2.5(react@19.0.0-rc-603e6108-20241029):
dependencies:
client-only: 0.0.1
- react: 18.3.1
- use-sync-external-store: 1.2.0(react@18.3.1)
+ react: 19.0.0-rc-603e6108-20241029
+ use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029)
symbol-observable@1.2.0: {}
@@ -58089,7 +57983,7 @@ snapshots:
synckit@0.6.2:
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.0
system-architecture@0.1.0: {}
@@ -58184,7 +58078,7 @@ snapshots:
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)):
+ tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -58203,7 +58097,7 @@ snapshots:
postcss: 8.4.47
postcss-import: 15.1.0(postcss@8.4.47)
postcss-js: 4.0.1(postcss@8.4.47)
- postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
+ postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
postcss-nested: 6.0.1(postcss@8.4.47)
postcss-selector-parser: 6.0.11
resolve: 1.22.8
@@ -58211,7 +58105,7 @@ snapshots:
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)):
+ tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -58227,18 +58121,18 @@ snapshots:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.1
- postcss: 8.4.38
- postcss-import: 15.1.0(postcss@8.4.38)
- postcss-js: 4.0.1(postcss@8.4.38)
- postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
- postcss-nested: 6.0.1(postcss@8.4.38)
+ postcss: 8.4.47
+ postcss-import: 15.1.0(postcss@8.4.47)
+ postcss-js: 4.0.1(postcss@8.4.47)
+ postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
+ postcss-nested: 6.0.1(postcss@8.4.47)
postcss-selector-parser: 6.0.11
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.4(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)):
+ tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -58254,18 +58148,18 @@ snapshots:
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.1
- postcss: 8.4.38
- postcss-import: 15.1.0(postcss@8.4.38)
- postcss-js: 4.0.1(postcss@8.4.38)
- postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))
- postcss-nested: 6.0.1(postcss@8.4.38)
+ postcss: 8.4.47
+ postcss-import: 15.1.0(postcss@8.4.47)
+ postcss-js: 4.0.1(postcss@8.4.47)
+ postcss-load-config: 4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
+ postcss-nested: 6.0.1(postcss@8.4.47)
postcss-selector-parser: 6.0.11
resolve: 1.22.8
sucrase: 3.35.0
transitivePeerDependencies:
- ts-node
- tailwindcss@3.4.4(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)):
+ tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)):
dependencies:
'@alloc/quick-lru': 5.2.0
arg: 5.0.2
@@ -58284,7 +58178,7 @@ snapshots:
postcss: 8.4.38
postcss-import: 15.1.0(postcss@8.4.38)
postcss-js: 4.0.1(postcss@8.4.38)
- postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))
+ postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))
postcss-nested: 6.0.1(postcss@8.4.38)
postcss-selector-parser: 6.0.11
resolve: 1.22.8
@@ -58678,7 +58572,7 @@ snapshots:
ts-invariant@0.10.3:
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.0
ts-jest@29.1.2(@babel/core@7.25.8)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)))(typescript@5.4.5):
dependencies:
@@ -58817,7 +58711,7 @@ snapshots:
'@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.25.8)
- ts-jest@29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.5.2):
+ ts-jest@29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.6.3):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
@@ -58828,7 +58722,7 @@ snapshots:
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 5.5.2
+ typescript: 5.6.3
yargs-parser: 21.1.1
optionalDependencies:
'@babel/core': 7.24.7
@@ -58837,7 +58731,7 @@ snapshots:
babel-jest: 29.7.0(@babel/core@7.24.7)
esbuild: 0.22.0
- ts-jest@29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2):
+ ts-jest@29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.6.3):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
@@ -58848,7 +58742,7 @@ snapshots:
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 5.5.2
+ typescript: 5.6.3
yargs-parser: 21.1.1
optionalDependencies:
'@babel/core': 7.24.7
@@ -58894,7 +58788,7 @@ snapshots:
'@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.25.8)
- ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.2):
+ ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.6.3):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
@@ -58905,7 +58799,7 @@ snapshots:
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 5.5.2
+ typescript: 5.6.3
yargs-parser: 21.1.1
optionalDependencies:
'@babel/core': 7.25.8
@@ -58913,7 +58807,7 @@ snapshots:
'@jest/types': 29.6.3
babel-jest: 29.7.0(@babel/core@7.25.8)
- ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.5.2):
+ ts-jest@29.2.4(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))(typescript@5.6.3):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
@@ -58924,7 +58818,7 @@ snapshots:
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 5.5.2
+ typescript: 5.6.3
yargs-parser: 21.1.1
optionalDependencies:
'@babel/core': 7.25.8
@@ -59421,10 +59315,6 @@ snapshots:
tweetnacl@1.0.3: {}
- type-check@0.3.2:
- dependencies:
- prelude-ls: 1.1.2
-
type-check@0.4.0:
dependencies:
prelude-ls: 1.2.1
@@ -59512,38 +59402,46 @@ snapshots:
typeforce@1.18.0: {}
+ types-react-dom@19.0.0-rc.1:
+ dependencies:
+ '@types/react': 18.3.11
+
+ types-react@19.0.0-rc.1:
+ dependencies:
+ csstype: 3.1.3
+
typescript-compare@0.0.2:
dependencies:
typescript-logic: 0.0.0
- typescript-eslint@7.13.1(eslint@9.5.0)(typescript@5.5.2):
+ typescript-eslint@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2):
dependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)
- '@typescript-eslint/parser': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2)
- eslint: 9.5.0
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2)
+ eslint: 9.12.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.2
transitivePeerDependencies:
- supports-color
- typescript-eslint@7.13.1(eslint@9.5.0)(typescript@5.5.4):
+ typescript-eslint@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4):
dependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.4))(eslint@9.5.0)(typescript@5.5.4)
- '@typescript-eslint/parser': 7.13.1(eslint@9.5.0)(typescript@5.5.4)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.4)
- eslint: 9.5.0
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4)
+ eslint: 9.12.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
- typescript-eslint@7.13.1(eslint@9.5.0)(typescript@5.6.3):
+ typescript-eslint@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.6.3))(eslint@9.5.0)(typescript@5.6.3)
- '@typescript-eslint/parser': 7.13.1(eslint@9.5.0)(typescript@5.6.3)
- '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.6.3)
- eslint: 9.5.0
+ '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)
+ eslint: 9.12.0(jiti@1.21.0)
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
@@ -59811,20 +59709,24 @@ snapshots:
node-addon-api: 6.1.0
node-gyp-build: 4.8.2
- use-debounce@9.0.3(react@18.3.1):
+ use-debounce@9.0.3(react@19.0.0-rc-603e6108-20241029):
dependencies:
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
- use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@18.3.1):
+ use-isomorphic-layout-effect@1.1.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1):
dependencies:
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': types-react@19.0.0-rc.1
use-sync-external-store@1.2.0(react@18.3.1):
dependencies:
react: 18.3.1
+ use-sync-external-store@1.2.0(react@19.0.0-rc-603e6108-20241029):
+ dependencies:
+ react: 19.0.0-rc-603e6108-20241029
+
utf-8-validate@5.0.10:
dependencies:
node-gyp-build: 4.8.2
@@ -59899,13 +59801,13 @@ snapshots:
validate-npm-package-name@5.0.1: {}
- valtio@1.11.2(@types/react@18.3.3)(react@18.3.1):
+ valtio@1.11.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1):
dependencies:
proxy-compare: 2.5.1
- use-sync-external-store: 1.2.0(react@18.3.1)
+ use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029)
optionalDependencies:
- '@types/react': 18.3.3
- react: 18.3.1
+ '@types/react': types-react@19.0.0-rc.1
+ react: 19.0.0-rc-603e6108-20241029
value-or-promise@1.0.11:
optional: true
@@ -60125,13 +60027,13 @@ snapshots:
dependencies:
xml-name-validator: 4.0.0
- wagmi@2.10.4(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8):
+ wagmi@2.10.4(slso2y5si5ebobzw4pa64fwb3i):
dependencies:
- '@tanstack/react-query': 5.45.1(react@18.3.1)
- '@wagmi/connectors': 5.0.16(slt54gisc6cfabln7mulxutcvi)
- '@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(@types/react@18.3.3)(bufferutil@4.0.8)(immer@9.0.21)(react@18.3.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
- react: 18.3.1
- use-sync-external-store: 1.2.0(react@18.3.1)
+ '@tanstack/react-query': 5.45.1(react@19.0.0-rc-603e6108-20241029)
+ '@wagmi/connectors': 5.0.16(276lu6ucw5vl7m53grscpa4fqq)
+ '@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ react: 19.0.0-rc-603e6108-20241029
+ use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029)
viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8)
optionalDependencies:
typescript: 5.5.2
@@ -61646,8 +61548,6 @@ snapshots:
window-size@0.2.0: {}
- word-wrap@1.2.5: {}
-
wordwrap@1.0.0: {}
wordwrapjs@5.1.0: {}
@@ -61868,6 +61768,11 @@ snapshots:
bufferutil: 4.0.8
utf-8-validate: 5.0.10
+ ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.4):
+ optionalDependencies:
+ bufferutil: 4.0.8
+ utf-8-validate: 6.0.4
+
xdg-app-paths@5.1.0:
dependencies:
xdg-portable: 7.3.0
@@ -62091,12 +61996,12 @@ snapshots:
zod@3.23.8: {}
- zustand@4.4.1(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1):
+ zustand@4.4.1(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1):
dependencies:
- use-sync-external-store: 1.2.0(react@18.3.1)
+ use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029)
optionalDependencies:
- '@types/react': 18.3.3
+ '@types/react': types-react@19.0.0-rc.1
immer: 9.0.21
- react: 18.3.1
+ react: 19.0.0-rc-603e6108-20241029
zwitch@2.0.4: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 3fdf867185..2589c7f941 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -29,3 +29,15 @@ packages:
- "target_chains/ton/contracts"
- "target_chains/ton/sdk/js"
- "contract_manager"
+
+catalog:
+ "@cprussin/eslint-config": 3.0.0
+ "@cprussin/jest-config": 1.4.1
+ "@cprussin/prettier-config": 2.1.1
+ "@cprussin/tsconfig": 3.0.1
+ "@types/react-dom": npm:types-react-dom@rc
+ "@types/react": npm:types-react@rc
+ next: 15.0.2
+ react-dom: 19.0.0-rc-603e6108-20241029
+ react: 19.0.0-rc-603e6108-20241029
+ framer-motion: 11.11.10