diff --git a/.prettierignore b/.prettierignore index ff976a89b9..c047e85b76 100644 --- a/.prettierignore +++ b/.prettierignore @@ -19,6 +19,6 @@ patches/ # build graph config. apps/api-reference apps/staking +apps/insights governance/pyth_staking_sdk -packages/component-library -packages/fonts +packages/* diff --git a/apps/insights/.gitignore b/apps/insights/.gitignore new file mode 100644 index 0000000000..9d2ee2a739 --- /dev/null +++ b/apps/insights/.gitignore @@ -0,0 +1 @@ +.env*.local diff --git a/apps/insights/.prettierignore b/apps/insights/.prettierignore new file mode 100644 index 0000000000..5f66a649b5 --- /dev/null +++ b/apps/insights/.prettierignore @@ -0,0 +1,7 @@ +.next/ +coverage/ +node_modules/ +*.tsbuildinfo +.env*.local +.env +.DS_Store diff --git a/apps/insights/eslint.config.js b/apps/insights/eslint.config.js new file mode 100644 index 0000000000..36c71dc889 --- /dev/null +++ b/apps/insights/eslint.config.js @@ -0,0 +1,9 @@ +import { fileURLToPath } from "node:url"; + +import { nextjs, tailwind, storybook } from "@cprussin/eslint-config"; + +const tailwindConfig = fileURLToPath( + import.meta.resolve(`./tailwind.config.ts`), +); + +export default [...nextjs, ...tailwind(tailwindConfig), ...storybook]; diff --git a/apps/insights/jest.config.js b/apps/insights/jest.config.js new file mode 100644 index 0000000000..b7edcf4c8a --- /dev/null +++ b/apps/insights/jest.config.js @@ -0,0 +1 @@ +export { nextjs as default } from "@cprussin/jest-config"; diff --git a/apps/insights/next-env.d.ts b/apps/insights/next-env.d.ts new file mode 100644 index 0000000000..40c3d68096 --- /dev/null +++ b/apps/insights/next-env.d.ts @@ -0,0 +1,5 @@ +/// +/// + +// NOTE: This file should not be edited +// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. diff --git a/apps/insights/next.config.js b/apps/insights/next.config.js new file mode 100644 index 0000000000..f21dc69488 --- /dev/null +++ b/apps/insights/next.config.js @@ -0,0 +1,56 @@ +const config = { + reactStrictMode: true, + + pageExtensions: ["ts", "tsx", "mdx"], + + logging: { + fetches: { + fullUrl: true, + }, + }, + + webpack(config) { + config.module.rules.push({ + test: /\.svg$/i, + use: ["@svgr/webpack"], + }); + + config.resolve.extensionAlias = { + ".js": [".js", ".ts", ".tsx"], + }; + + return config; + }, + + transpilePackages: ["@pythnetwork/*"], + + headers: async () => [ + { + source: "/:path*", + headers: [ + { + key: "X-XSS-Protection", + value: "1; mode=block", + }, + { + key: "Referrer-Policy", + value: "strict-origin-when-cross-origin", + }, + { + key: "Strict-Transport-Security", + value: "max-age=2592000", + }, + { + key: "X-Content-Type-Options", + value: "nosniff", + }, + { + key: "Permissions-Policy", + value: + "vibrate=(), geolocation=(), midi=(), notifications=(), push=(), sync-xhr=(), microphone=(), camera=(), magnetometer=(), gyroscope=(), speaker=(), vibrate=(), fullscreen=self", + }, + ], + }, + ], +}; +export default config; diff --git a/apps/insights/package.json b/apps/insights/package.json new file mode 100644 index 0000000000..d95137983b --- /dev/null +++ b/apps/insights/package.json @@ -0,0 +1,48 @@ +{ + "name": "@pythnetwork/insights", + "version": "0.0.0", + "private": true, + "type": "module", + "engines": { + "node": "20" + }, + "scripts": { + "build": "next build", + "fix:format": "prettier --write .", + "fix:lint": "eslint --fix .", + "start:dev": "next dev --port 3003", + "start:prod": "next start --port 3003", + "test:format": "prettier --check .", + "test:lint": "jest --selectProjects lint", + "test:types": "tsc" + }, + "dependencies": { + "@pythnetwork/app-logger": "workspace:*", + "@pythnetwork/component-library": "workspace:*", + "@pythnetwork/fonts": "workspace:*", + "@pythnetwork/next-root": "workspace:*", + "clsx": "catalog:", + "next": "catalog:", + "react": "catalog:", + "react-dom": "catalog:" + }, + "devDependencies": { + "@cprussin/eslint-config": "catalog:", + "@cprussin/jest-config": "catalog:", + "@cprussin/prettier-config": "catalog:", + "@cprussin/tsconfig": "catalog:", + "@svgr/webpack": "catalog:", + "@types/jest": "catalog:", + "@types/node": "catalog:", + "@types/react": "catalog:", + "@types/react-dom": "catalog:", + "autoprefixer": "catalog:", + "eslint": "catalog:", + "jest": "catalog:", + "postcss": "catalog:", + "prettier": "catalog:", + "tailwindcss": "catalog:", + "typescript": "catalog:", + "vercel": "catalog:" + } +} diff --git a/apps/insights/postcss.config.js b/apps/insights/postcss.config.js new file mode 100644 index 0000000000..9eef821c48 --- /dev/null +++ b/apps/insights/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + autoprefixer: {}, + tailwindcss: {}, + }, +}; diff --git a/apps/insights/prettier.config.js b/apps/insights/prettier.config.js new file mode 100644 index 0000000000..e4097b4f72 --- /dev/null +++ b/apps/insights/prettier.config.js @@ -0,0 +1,9 @@ +import { fileURLToPath } from "node:url"; + +import { base, tailwind, mergeConfigs } from "@cprussin/prettier-config"; + +const tailwindConfig = fileURLToPath( + import.meta.resolve(`./tailwind.config.ts`), +); + +export default mergeConfigs([base, tailwind(tailwindConfig)]); diff --git a/apps/insights/public/android-chrome-192x192.png b/apps/insights/public/android-chrome-192x192.png new file mode 100644 index 0000000000..596667cefb Binary files /dev/null and b/apps/insights/public/android-chrome-192x192.png differ diff --git a/apps/insights/public/android-chrome-512x512.png b/apps/insights/public/android-chrome-512x512.png new file mode 100644 index 0000000000..cf0ba050d8 Binary files /dev/null and b/apps/insights/public/android-chrome-512x512.png differ diff --git a/apps/insights/public/apple-touch-icon.png b/apps/insights/public/apple-touch-icon.png new file mode 100644 index 0000000000..1f9a443c8a Binary files /dev/null and b/apps/insights/public/apple-touch-icon.png differ diff --git a/apps/insights/public/favicon-16x16.png b/apps/insights/public/favicon-16x16.png new file mode 100644 index 0000000000..85b3a417a7 Binary files /dev/null and b/apps/insights/public/favicon-16x16.png differ diff --git a/apps/insights/public/favicon-32x32.png b/apps/insights/public/favicon-32x32.png new file mode 100644 index 0000000000..034afe45c1 Binary files /dev/null and b/apps/insights/public/favicon-32x32.png differ diff --git a/apps/insights/public/favicon-light.ico b/apps/insights/public/favicon-light.ico new file mode 100644 index 0000000000..9c0d28fbda Binary files /dev/null and b/apps/insights/public/favicon-light.ico differ diff --git a/apps/insights/public/favicon.ico b/apps/insights/public/favicon.ico new file mode 100644 index 0000000000..56072a4860 Binary files /dev/null and b/apps/insights/public/favicon.ico differ diff --git a/apps/insights/src/app/error.ts b/apps/insights/src/app/error.ts new file mode 100644 index 0000000000..8143974ca0 --- /dev/null +++ b/apps/insights/src/app/error.ts @@ -0,0 +1,3 @@ +"use client"; + +export { Error as default } from "../components/Error"; diff --git a/apps/insights/src/app/global-error.tsx b/apps/insights/src/app/global-error.tsx new file mode 100644 index 0000000000..09ce61b639 --- /dev/null +++ b/apps/insights/src/app/global-error.tsx @@ -0,0 +1,14 @@ +"use client"; + +import type { ComponentProps } from "react"; + +import { Error } from "../components/Error"; + +const GlobalError = (props: ComponentProps) => ( + + + + + +); +export default GlobalError; diff --git a/apps/insights/src/app/layout.ts b/apps/insights/src/app/layout.ts new file mode 100644 index 0000000000..431d489421 --- /dev/null +++ b/apps/insights/src/app/layout.ts @@ -0,0 +1,4 @@ +import "../tailwind.css"; + +export { Root as default } from "../components/Root"; +export { metadata, viewport } from "../metadata"; diff --git a/apps/insights/src/app/manifest.ts b/apps/insights/src/app/manifest.ts new file mode 100644 index 0000000000..fa9e6f5ab9 --- /dev/null +++ b/apps/insights/src/app/manifest.ts @@ -0,0 +1,25 @@ +import type { MetadataRoute } from "next"; + +import { metadata, viewport } from "../metadata"; + +const manifest = (): MetadataRoute.Manifest => ({ + name: metadata.applicationName, + short_name: metadata.applicationName, + description: metadata.description, + theme_color: viewport.themeColor, + background_color: viewport.themeColor, + icons: [ + { + src: "/android-chrome-192x192.png", + sizes: "192x192", + type: "image/png", + }, + { + src: "/android-chrome-512x512.png", + sizes: "512x512", + type: "image/png", + }, + ], + display: "standalone", +}); +export default manifest; diff --git a/apps/insights/src/app/not-found.ts b/apps/insights/src/app/not-found.ts new file mode 100644 index 0000000000..aacfcb28d4 --- /dev/null +++ b/apps/insights/src/app/not-found.ts @@ -0,0 +1 @@ +export { NotFound as default } from "../components/NotFound"; diff --git a/apps/insights/src/app/page.ts b/apps/insights/src/app/page.ts new file mode 100644 index 0000000000..b84f5687c5 --- /dev/null +++ b/apps/insights/src/app/page.ts @@ -0,0 +1 @@ +export { Home as default } from "../components/Home"; diff --git a/apps/insights/src/app/robots.ts b/apps/insights/src/app/robots.ts new file mode 100644 index 0000000000..28eaa31c59 --- /dev/null +++ b/apps/insights/src/app/robots.ts @@ -0,0 +1,11 @@ +import type { MetadataRoute } from "next"; + +import { IS_PRODUCTION_SERVER } from "../config/server"; + +const robots = (): MetadataRoute.Robots => ({ + rules: { + userAgent: "*", + ...(IS_PRODUCTION_SERVER ? { allow: "/" } : { disallow: "/" }), + }, +}); +export default robots; diff --git a/apps/insights/src/components/Error/index.tsx b/apps/insights/src/components/Error/index.tsx new file mode 100644 index 0000000000..90d887663d --- /dev/null +++ b/apps/insights/src/components/Error/index.tsx @@ -0,0 +1,27 @@ +import { useLogger } from "@pythnetwork/app-logger"; +import { Button } from "@pythnetwork/component-library/Button"; +import { useEffect } from "react"; + +type Props = { + error: Error & { digest?: string }; + reset?: () => void; +}; + +export const Error = ({ error, reset }: Props) => { + const logger = useLogger(); + + useEffect(() => { + logger.error(error); + }, [error, logger]); + + return ( +
+

Uh oh!

+

Something went wrong

+

+ Error Details: {error.digest ?? error.message} +

+ {reset && } +
+ ); +}; diff --git a/apps/insights/src/components/Home/index.tsx b/apps/insights/src/components/Home/index.tsx new file mode 100644 index 0000000000..b434c3df43 --- /dev/null +++ b/apps/insights/src/components/Home/index.tsx @@ -0,0 +1,5 @@ +export const Home = () => ( +
+

Hello world!

+
+); diff --git a/apps/insights/src/components/NotFound/index.tsx b/apps/insights/src/components/NotFound/index.tsx new file mode 100644 index 0000000000..0487db9b41 --- /dev/null +++ b/apps/insights/src/components/NotFound/index.tsx @@ -0,0 +1,9 @@ +import { ButtonLink } from "@pythnetwork/component-library/Button"; + +export const NotFound = () => ( +
+

Not Found

+

{"The page you're looking for isn't here"}

+ Go Home +
+); diff --git a/apps/insights/src/components/Root/index.tsx b/apps/insights/src/components/Root/index.tsx new file mode 100644 index 0000000000..435a269de3 --- /dev/null +++ b/apps/insights/src/components/Root/index.tsx @@ -0,0 +1,31 @@ +import { sans } from "@pythnetwork/fonts"; +import { Root as BaseRoot } from "@pythnetwork/next-root"; +import clsx from "clsx"; +import type { ReactNode } from "react"; + +import { + IS_PRODUCTION_SERVER, + GOOGLE_ANALYTICS_ID, + AMPLITUDE_API_KEY, +} from "../../config/server"; + +type Props = { + children: ReactNode; +}; + +export const Root = ({ children }: Props) => ( + + + {children} + + +); diff --git a/apps/insights/src/config/isomorphic.ts b/apps/insights/src/config/isomorphic.ts new file mode 100644 index 0000000000..db2626f0dc --- /dev/null +++ b/apps/insights/src/config/isomorphic.ts @@ -0,0 +1,13 @@ +/* eslint-disable n/no-process-env */ + +/** + * Indicates this is a production-optimized build. Note this does NOT + * necessarily indicate that we're running on a cloud machine or the live build + * -- use `RUNNING_IN_CLOUD` or `IS_PRODUCTION_SERVER` out of `config/server.ts` + * for that (if you need that on the client you'll need to write a client + * component that receives that value as a prop). + * + * Basically this indicates if we're minified, excluding source maps, running + * with the optimized React build, etc. + */ +export const IS_PRODUCTION_BUILD = process.env.NODE_ENV === "production"; diff --git a/apps/insights/src/config/server.ts b/apps/insights/src/config/server.ts new file mode 100644 index 0000000000..7310eed56c --- /dev/null +++ b/apps/insights/src/config/server.ts @@ -0,0 +1,45 @@ +// Disable the following rule because this file is the intended place to declare +// and load all env variables. +/* eslint-disable n/no-process-env */ + +// Disable the following rule because variables in this file are only loaded at +// runtime and do not influence the build outputs, thus they need not be +// declared to turbo for it to be able to cache build outputs correctly. +/* eslint-disable turbo/no-undeclared-env-vars */ + +import "server-only"; + +/** + * Throw if the env var `key` is not set (at either runtime or build time). + */ +const demand = (key: string): string => { + const value = process.env[key]; + if (value === undefined || value === "") { + throw new MissingEnvironmentError(key); + } else { + return value; + } +}; + +/** + * Indicates that this server is the live customer-facing production server. + */ +export const IS_PRODUCTION_SERVER = process.env.VERCEL_ENV === "production"; + +/** + * Throw if the env var `key` is not set in the live customer-facing production + * server, but allow it to be unset in any other environment. + */ +const demandInProduction = IS_PRODUCTION_SERVER + ? demand + : (key: string) => process.env[key]; + +export const GOOGLE_ANALYTICS_ID = demandInProduction("GOOGLE_ANALYTICS_ID"); +export const AMPLITUDE_API_KEY = demandInProduction("AMPLITUDE_API_KEY"); + +class MissingEnvironmentError extends Error { + constructor(name: string) { + super(`Missing environment variable: ${name}!`); + this.name = "MissingEnvironmentError"; + } +} diff --git a/apps/insights/src/metadata.ts b/apps/insights/src/metadata.ts new file mode 100644 index 0000000000..8869ef37ec --- /dev/null +++ b/apps/insights/src/metadata.ts @@ -0,0 +1,52 @@ +import type { Metadata, Viewport } from "next"; + +export const metadata = { + metadataBase: new URL("https://insights.pyth.network"), + title: { + default: "Pyth Network Insights", + template: "%s | Pyth Network Insights", + }, + applicationName: "Pyth Network Insights", + description: + "Learn more about the Pyth network and explore data about the network's publishers and price feeds.", + referrer: "strict-origin-when-cross-origin", + openGraph: { + type: "website", + }, + twitter: { + creator: "@PythNetwork", + card: "summary_large_image", + }, + icons: { + icon: [ + { + media: "(prefers-color-scheme: light)", + type: "image/x-icon", + url: "/favicon.ico", + }, + { + media: "(prefers-color-scheme: dark)", + type: "image/x-icon", + url: "/favicon-light.ico", + }, + { + type: "image/png", + sizes: "32x32", + url: "/favicon-32x32.png", + }, + { + type: "image/png", + sizes: "16x16", + url: "/favicon-16x16.png", + }, + ], + apple: { + url: "/apple-touch-icon.png", + sizes: "180x180", + }, + }, +} satisfies Metadata; + +export const viewport = { + themeColor: "#242235", +} satisfies Viewport; diff --git a/apps/insights/src/tailwind.css b/apps/insights/src/tailwind.css new file mode 100644 index 0000000000..b5c61c9567 --- /dev/null +++ b/apps/insights/src/tailwind.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/apps/insights/svg.d.ts b/apps/insights/svg.d.ts new file mode 100644 index 0000000000..41a3172a52 --- /dev/null +++ b/apps/insights/svg.d.ts @@ -0,0 +1,6 @@ +declare module "*.svg" { + import type { ReactElement, SVGProps } from "react"; + + const content: (props: SVGProps) => ReactElement; + export default content; +} diff --git a/apps/insights/tailwind.config.ts b/apps/insights/tailwind.config.ts new file mode 100644 index 0000000000..c6dbb26e74 --- /dev/null +++ b/apps/insights/tailwind.config.ts @@ -0,0 +1,10 @@ +import { tailwindGlob } from "@pythnetwork/component-library"; +import componentLibraryConfig from "@pythnetwork/component-library/tailwind-config"; +import type { Config } from "tailwindcss"; + +const tailwindConfig = { + content: [tailwindGlob, "src/components/**/*.{ts,tsx}"], + presets: [componentLibraryConfig], +} satisfies Config; + +export default tailwindConfig; diff --git a/apps/insights/tsconfig.json b/apps/insights/tsconfig.json new file mode 100644 index 0000000000..dfd9bf96d0 --- /dev/null +++ b/apps/insights/tsconfig.json @@ -0,0 +1,5 @@ +{ + "extends": "@cprussin/tsconfig/nextjs.json", + "include": ["svg.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "exclude": ["node_modules"] +} diff --git a/apps/insights/turbo.json b/apps/insights/turbo.json new file mode 100644 index 0000000000..224c4ff937 --- /dev/null +++ b/apps/insights/turbo.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://turbo.build/schema.json", + "extends": ["//"], + "tasks": { + "build": { + "dependsOn": ["^build"], + "outputs": [".next/**", "!.next/cache/**"], + "env": ["GOOGLE_ANALYTICS_ID", "AMPLITUDE_API_KEY"] + }, + "start:dev": { + "persistent": true, + "cache": false + }, + "start:prod": { + "dependsOn": ["build"], + "persistent": true, + "cache": false + } + } +} diff --git a/apps/insights/vercel.json b/apps/insights/vercel.json new file mode 100644 index 0000000000..fc8b38fe1e --- /dev/null +++ b/apps/insights/vercel.json @@ -0,0 +1,3 @@ +{ + "ignoreCommand": "pnpm dlx turbo-ignore --fallback=HEAD^" +} diff --git a/packages/app-logger/.prettierignore b/packages/app-logger/.prettierignore new file mode 100644 index 0000000000..b509c88b36 --- /dev/null +++ b/packages/app-logger/.prettierignore @@ -0,0 +1,2 @@ +coverage/ +node_modules/ diff --git a/packages/app-logger/README.md b/packages/app-logger/README.md new file mode 100644 index 0000000000..f92292a54a --- /dev/null +++ b/packages/app-logger/README.md @@ -0,0 +1 @@ +# @pythnetwork/app-logger diff --git a/packages/app-logger/eslint.config.js b/packages/app-logger/eslint.config.js new file mode 100644 index 0000000000..6e702316f0 --- /dev/null +++ b/packages/app-logger/eslint.config.js @@ -0,0 +1 @@ +export { react as default } from "@cprussin/eslint-config"; diff --git a/packages/app-logger/jest.config.js b/packages/app-logger/jest.config.js new file mode 100644 index 0000000000..b34e11aeae --- /dev/null +++ b/packages/app-logger/jest.config.js @@ -0,0 +1 @@ +export { base as default } from "@cprussin/jest-config"; diff --git a/packages/app-logger/package.json b/packages/app-logger/package.json new file mode 100644 index 0000000000..272bf72d6a --- /dev/null +++ b/packages/app-logger/package.json @@ -0,0 +1,36 @@ +{ + "name": "@pythnetwork/app-logger", + "version": "0.0.0", + "private": true, + "type": "module", + "exports": { + ".": "./src/index.tsx", + "./provider": "./src/provider.tsx" + }, + "scripts": { + "fix:format": "prettier --write .", + "fix:lint": "eslint --fix .", + "test:format": "jest --selectProjects format", + "test:lint": "jest --selectProjects lint", + "test:types": "tsc" + }, + "peerDependencies": { + "react": "catalog:" + }, + "dependencies": { + "pino": "catalog:" + }, + "devDependencies": { + "@cprussin/eslint-config": "catalog:", + "@cprussin/jest-config": "catalog:", + "@cprussin/prettier-config": "catalog:", + "@cprussin/tsconfig": "catalog:", + "@types/jest": "catalog:", + "@types/react": "catalog:", + "eslint": "catalog:", + "jest": "catalog:", + "prettier": "catalog:", + "react": "catalog:", + "typescript": "catalog:" + } +} diff --git a/packages/app-logger/prettier.config.js b/packages/app-logger/prettier.config.js new file mode 100644 index 0000000000..1e43aeeddb --- /dev/null +++ b/packages/app-logger/prettier.config.js @@ -0,0 +1 @@ +export { base as default } from "@cprussin/prettier-config"; diff --git a/packages/app-logger/src/context.ts b/packages/app-logger/src/context.ts new file mode 100644 index 0000000000..a7830ed6fa --- /dev/null +++ b/packages/app-logger/src/context.ts @@ -0,0 +1,8 @@ +"use client"; + +import type { Logger } from "pino"; +import { createContext } from "react"; + +export const LoggerContext = createContext>( + undefined, +); diff --git a/packages/app-logger/src/index.tsx b/packages/app-logger/src/index.tsx new file mode 100644 index 0000000000..105df6c18f --- /dev/null +++ b/packages/app-logger/src/index.tsx @@ -0,0 +1,17 @@ +import { useContext } from "react"; + +import { LoggerContext } from "./context.js"; + +export const useLogger = () => { + const logger = useContext(LoggerContext); + if (logger) { + return logger; + } else { + throw new NotInitializedError(); + } +}; + +class NotInitializedError extends Error { + override message = + "This component must be contained within a `LoggerProvider`!"; +} diff --git a/packages/app-logger/src/provider.tsx b/packages/app-logger/src/provider.tsx new file mode 100644 index 0000000000..1593b3eac0 --- /dev/null +++ b/packages/app-logger/src/provider.tsx @@ -0,0 +1,25 @@ +"use client"; + +import { pino } from "pino"; +import { type ComponentProps, useMemo } from "react"; + +import { LoggerContext } from "./context.js"; + +type LoggerProviderProps = Omit< + ComponentProps, + "config" | "value" +> & { + config?: Parameters[0] | undefined; +}; + +export const LoggerProvider = ({ config, ...props }: LoggerProviderProps) => { + const logger = useMemo( + () => + pino({ + ...config, + browser: { ...config?.browser }, + }), + [config], + ); + return ; +}; diff --git a/packages/app-logger/tsconfig.json b/packages/app-logger/tsconfig.json new file mode 100644 index 0000000000..54cd46c719 --- /dev/null +++ b/packages/app-logger/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "@cprussin/tsconfig/react.json" +} diff --git a/packages/component-library/package.json b/packages/component-library/package.json index c39daccba4..4cb529610f 100644 --- a/packages/component-library/package.json +++ b/packages/component-library/package.json @@ -3,6 +3,11 @@ "version": "0.0.0", "private": true, "type": "module", + "exports": { + ".": "./src/index.ts", + "./tailwind-config": "./tailwind.config.ts", + "./*": "./src/*/index.tsx" + }, "scripts": { "build:storybook": "storybook build", "fix:format": "prettier --write .", @@ -16,39 +21,39 @@ "react": "catalog:" }, "dependencies": { - "clsx": "^2.1.1", - "react-aria": "^3.35.0", - "react-aria-components": "^1.4.0" + "clsx": "catalog:", + "react-aria": "catalog:", + "react-aria-components": "catalog:" }, "devDependencies": { "@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", - "@storybook/addon-styling-webpack": "^1.0.0", - "@storybook/addon-themes": "^8.3.5", - "@storybook/blocks": "^8.3.5", - "@storybook/nextjs": "^8.3.5", - "@storybook/react": "^8.3.5", - "@tailwindcss/forms": "^0.5.9", - "@types/jest": "^29.5.13", + "@phosphor-icons/react": "catalog:", + "@pythnetwork/fonts": "workspace:*", + "@storybook/addon-essentials": "catalog:", + "@storybook/addon-styling-webpack": "catalog:", + "@storybook/addon-themes": "catalog:", + "@storybook/blocks": "catalog:", + "@storybook/nextjs": "catalog:", + "@storybook/react": "catalog:", + "@tailwindcss/forms": "catalog:", + "@types/jest": "catalog:", "@types/react": "catalog:", - "autoprefixer": "^10.4.20", - "css-loader": "^7.1.2", - "eslint": "^9.12.0", - "jest": "^29.7.0", - "postcss": "^8.4.47", - "postcss-loader": "^8.1.1", - "prettier": "^3.3.3", - "react": "^18.3.1", - "storybook": "^8.3.5", - "style-loader": "^4.0.0", - "tailwindcss": "^3.4.13", - "tailwindcss-animate": "^1.0.7", - "tailwindcss-react-aria-components": "^1.1.6", - "typescript": "^5.6.3" + "autoprefixer": "catalog:", + "css-loader": "catalog:", + "eslint": "catalog:", + "jest": "catalog:", + "postcss": "catalog:", + "postcss-loader": "catalog:", + "prettier": "catalog:", + "react": "catalog:", + "storybook": "catalog:", + "style-loader": "catalog:", + "tailwindcss": "catalog:", + "tailwindcss-animate": "catalog:", + "tailwindcss-react-aria-components": "catalog:", + "typescript": "catalog:" } } diff --git a/packages/component-library/src/Button/index.tsx b/packages/component-library/src/Button/index.tsx index 87363beebb..66da8f716f 100644 --- a/packages/component-library/src/Button/index.tsx +++ b/packages/component-library/src/Button/index.tsx @@ -1,8 +1,11 @@ import clsx from "clsx"; -import type { ComponentType, ReactNode } from "react"; -import { Button as BaseButton, Link } from "react-aria-components"; +import type { ComponentType, ReactNode, SVGProps } from "react"; +import { + type ButtonProps as BaseButtonProps, + type LinkProps as BaseLinkProps, +} from "react-aria-components"; -import type { Icon, ExtendComponentProps } from "../type-utils.js"; +import { Button as BaseButton, Link } from "./react-aria-buttons.js"; export const VARIANTS = [ "primary", @@ -24,7 +27,7 @@ type OwnProps = { afterIcon?: Icon | undefined; }; -export type ButtonProps = ExtendComponentProps; +export type ButtonProps = Omit & OwnProps; export const Button = ({ className, ...props }: ButtonProps) => ( ( /> ); -export type ButtonLinkProps = ExtendComponentProps; +export type ButtonLinkProps = Omit & OwnProps; export const ButtonLink = (props: ButtonLinkProps) => ( @@ -103,10 +106,10 @@ const baseClasses = clsx( "data-[size=lg]:h-14 data-[size=lg]:rounded-2xl data-[size=lg]:px-4 data-[size=lg]:text-xl data-[size=lg]:leading-[3.5rem]", // Primary (default) - "data-[variant=primary]:bg-violet-500 data-[variant=primary]:data-[hovered]:bg-violet-700 data-[variant=primary]:data-[pressed]:bg-violet-800 data-[variant=primary]:text-violet-50 data-[variant=primary]:outline-violet-500", + "data-[variant=primary]:bg-violet-700 data-[variant=primary]:data-[hovered]:bg-violet-800 data-[variant=primary]:data-[pressed]:bg-violet-900 data-[variant=primary]:text-white data-[variant=primary]:outline-violet-700", // Dark Mode Primary (default) - "dark:data-[variant=primary]:bg-violet-600 dark:data-[variant=primary]:data-[hovered]:bg-violet-700 dark:data-[variant=primary]:data-[pressed]:bg-violet-800 dark:data-[variant=primary]:text-violet-50 dark:data-[variant=primary]:outline-violet-600", + "dark:data-[variant=primary]:bg-violet-600 dark:data-[variant=primary]:data-[hovered]:bg-violet-700 dark:data-[variant=primary]:data-[pressed]:bg-violet-800 dark:data-[variant=primary]:text-white dark:data-[variant=primary]:outline-violet-600", // Secondary "data-[variant=secondary]:bg-purple-200 data-[variant=secondary]:data-[hovered]:bg-purple-300 data-[variant=secondary]:data-[pressed]:bg-purple-400 data-[variant=secondary]:text-steel-900 data-[variant=secondary]:outline-purple-300", @@ -147,3 +150,5 @@ const baseClasses = clsx( // Disabled "data-[disabled]:data-[variant]:cursor-not-allowed data-[disabled]:data-[variant]:border-transparent data-[disabled]:data-[variant]:bg-stone-200 data-[disabled]:data-[variant]:text-stone-400 dark:data-[disabled]:data-[variant]:bg-steel-600 dark:data-[disabled]:data-[variant]:text-steel-400", ); + +type Icon = ComponentType>; diff --git a/packages/component-library/src/Button/react-aria-buttons.tsx b/packages/component-library/src/Button/react-aria-buttons.tsx new file mode 100644 index 0000000000..a1cd49ca7c --- /dev/null +++ b/packages/component-library/src/Button/react-aria-buttons.tsx @@ -0,0 +1,9 @@ +/** + * The react-aria components aren't marked as "use client" so it's a bit + * obnoxious to use them; this file just adds a client boundary and re-exports + * the react-aria components to avoid that problem. + */ + +"use client"; + +export { Button, Link } from "react-aria-components"; diff --git a/packages/component-library/src/Checkbox/index.tsx b/packages/component-library/src/Checkbox/index.tsx index 083d9a44f1..a49cb91867 100644 --- a/packages/component-library/src/Checkbox/index.tsx +++ b/packages/component-library/src/Checkbox/index.tsx @@ -1,12 +1,10 @@ import clsx from "clsx"; -import type { ComponentProps } from "react"; -import { Checkbox as BaseCheckbox } from "react-aria-components"; +import { + Checkbox as BaseCheckbox, + type CheckboxProps, +} from "react-aria-components"; -export const Checkbox = ({ - children, - className, - ...props -}: ComponentProps) => ( +export const Checkbox = ({ children, className, ...props }: CheckboxProps) => ( & { - label: ComponentProps["children"]; - description?: ComponentProps["children"] | undefined; +type CheckboxGroupProps = BaseCheckboxGroupProps & { + label: LabelProps["children"]; + description?: TextProps["children"] | undefined; orientation?: (typeof ORIENTATIONS)[number] | undefined; }; diff --git a/packages/component-library/src/Link/index.tsx b/packages/component-library/src/Link/index.tsx index 3fd21345e2..16bdc4d915 100644 --- a/packages/component-library/src/Link/index.tsx +++ b/packages/component-library/src/Link/index.tsx @@ -1,11 +1,7 @@ import clsx from "clsx"; -import type { ComponentProps } from "react"; -import { Link as BaseLink } from "react-aria-components"; +import { Link as BaseLink, type LinkProps } from "react-aria-components"; -export const Link = ({ - className, - ...props -}: ComponentProps) => ( +export const Link = ({ className, ...props }: LinkProps) => ( ) => ( +export const Radio = ({ children, className, ...props }: RadioProps) => ( & { - label: ComponentProps["children"]; - description?: ComponentProps["children"] | undefined; +type CheckboxGroupProps = BaseRadioGroupProps & { + label: LabelProps["children"]; + description?: TextProps["children"] | undefined; }; export const RadioGroup = ({ diff --git a/packages/component-library/src/index.ts b/packages/component-library/src/index.ts new file mode 100644 index 0000000000..1cd130ed24 --- /dev/null +++ b/packages/component-library/src/index.ts @@ -0,0 +1,4 @@ +import path from "node:path"; +import { fileURLToPath } from "node:url"; + +export const tailwindGlob = `${path.dirname(fileURLToPath(import.meta.url))}/**/*.{ts,tsx}`; diff --git a/packages/component-library/src/type-utils.ts b/packages/component-library/src/type-utils.ts deleted file mode 100644 index 24f6082df8..0000000000 --- a/packages/component-library/src/type-utils.ts +++ /dev/null @@ -1,12 +0,0 @@ -import type { - ComponentProps, - ComponentType, - SVGProps, - JSXElementConstructor, -} from "react"; - -export type Icon = ComponentType>; -export type ExtendComponentProps< - Component extends JSXElementConstructor, - NewProps, -> = Omit, keyof NewProps> & NewProps; diff --git a/packages/component-library/tailwind.config.ts b/packages/component-library/tailwind.config.ts index 739d51a581..0a74a17536 100644 --- a/packages/component-library/tailwind.config.ts +++ b/packages/component-library/tailwind.config.ts @@ -4,8 +4,10 @@ import plugin from "tailwindcss/plugin.js"; import animate from "tailwindcss-animate"; import reactAria from "tailwindcss-react-aria-components"; +import { tailwindGlob } from "./src/index.js"; + const tailwindConfig = { - content: ["src/**/*.tsx", ".storybook/**/*.tsx"], + content: [tailwindGlob, ".storybook/**/*.tsx"], darkMode: "class", theme: { extend: { diff --git a/packages/fonts/package.json b/packages/fonts/package.json index 5df5f37fd4..a7a89d3335 100644 --- a/packages/fonts/package.json +++ b/packages/fonts/package.json @@ -19,11 +19,11 @@ "@cprussin/jest-config": "catalog:", "@cprussin/prettier-config": "catalog:", "@cprussin/tsconfig": "catalog:", - "@types/jest": "^29.5.13", - "eslint": "^9.12.0", - "jest": "^29.7.0", - "next": "^14.2.15", - "prettier": "^3.3.3", - "typescript": "^5.6.3" + "@types/jest": "catalog:", + "eslint": "catalog:", + "jest": "catalog:", + "next": "catalog:", + "prettier": "catalog:", + "typescript": "catalog:" } } diff --git a/packages/next-root/.prettierignore b/packages/next-root/.prettierignore new file mode 100644 index 0000000000..b509c88b36 --- /dev/null +++ b/packages/next-root/.prettierignore @@ -0,0 +1,2 @@ +coverage/ +node_modules/ diff --git a/packages/next-root/README.md b/packages/next-root/README.md new file mode 100644 index 0000000000..d2f8478fc9 --- /dev/null +++ b/packages/next-root/README.md @@ -0,0 +1 @@ +# @pythnetwork/next-root diff --git a/packages/next-root/eslint.config.js b/packages/next-root/eslint.config.js new file mode 100644 index 0000000000..6e702316f0 --- /dev/null +++ b/packages/next-root/eslint.config.js @@ -0,0 +1 @@ +export { react as default } from "@cprussin/eslint-config"; diff --git a/packages/next-root/jest.config.js b/packages/next-root/jest.config.js new file mode 100644 index 0000000000..b34e11aeae --- /dev/null +++ b/packages/next-root/jest.config.js @@ -0,0 +1 @@ +export { base as default } from "@cprussin/jest-config"; diff --git a/packages/next-root/package.json b/packages/next-root/package.json new file mode 100644 index 0000000000..fc6f5ef062 --- /dev/null +++ b/packages/next-root/package.json @@ -0,0 +1,47 @@ +{ + "name": "@pythnetwork/next-root", + "version": "0.0.0", + "private": true, + "type": "module", + "exports": { + ".": "./src/index.tsx" + }, + "scripts": { + "fix:format": "prettier --write .", + "fix:lint": "eslint --fix .", + "test:format": "prettier --check .", + "test:lint": "jest --selectProjects lint", + "test:types": "tsc" + }, + "peerDependencies": { + "next": "catalog:", + "react": "catalog:", + "react-aria": "catalog:", + "react-dom": "catalog:" + }, + "dependencies": { + "@amplitude/analytics-browser": "catalog:", + "@amplitude/plugin-autocapture-browser": "catalog:", + "@axe-core/react": "catalog:", + "@next/third-parties": "catalog:", + "@pythnetwork/app-logger": "workspace:*", + "bcp-47": "catalog:" + }, + "devDependencies": { + "@cprussin/eslint-config": "catalog:", + "@cprussin/jest-config": "catalog:", + "@cprussin/prettier-config": "catalog:", + "@cprussin/tsconfig": "catalog:", + "@types/jest": "catalog:", + "@types/react": "catalog:", + "@types/react-dom": "catalog:", + "eslint": "catalog:", + "jest": "catalog:", + "next": "catalog:", + "prettier": "catalog:", + "react": "catalog:", + "react-aria": "catalog:", + "react-dom": "catalog:", + "typescript": "catalog:" + } +} diff --git a/packages/next-root/prettier.config.js b/packages/next-root/prettier.config.js new file mode 100644 index 0000000000..1e43aeeddb --- /dev/null +++ b/packages/next-root/prettier.config.js @@ -0,0 +1 @@ +export { base as default } from "@cprussin/prettier-config"; diff --git a/packages/next-root/src/amplitude.tsx b/packages/next-root/src/amplitude.tsx new file mode 100644 index 0000000000..665ab190b5 --- /dev/null +++ b/packages/next-root/src/amplitude.tsx @@ -0,0 +1,30 @@ +"use client"; + +import * as amplitude from "@amplitude/analytics-browser"; +import { autocapturePlugin } from "@amplitude/plugin-autocapture-browser"; +import { useEffect, useRef } from "react"; + +type Props = { + apiKey: string; +}; + +export const Amplitude = ({ apiKey }: Props) => { + useAmplitude(apiKey); + + // eslint-disable-next-line unicorn/no-null + return null; +}; + +const useAmplitude = (apiKey: string) => { + const amplitudeInitialized = useRef(false); + + useEffect(() => { + if (!amplitudeInitialized.current) { + amplitude.add(autocapturePlugin()); + amplitude.init(apiKey, { + defaultTracking: true, + }); + amplitudeInitialized.current = true; + } + }, [apiKey]); +}; diff --git a/packages/next-root/src/compose-providers.tsx b/packages/next-root/src/compose-providers.tsx new file mode 100644 index 0000000000..235d07e1df --- /dev/null +++ b/packages/next-root/src/compose-providers.tsx @@ -0,0 +1,17 @@ +import type { ComponentType, ReactNode } from "react"; + +type ComposeProvidersProps = { + providers: ComponentType<{ children: ReactNode }>[]; + children?: ReactNode | ReactNode[]; +}; + +export const ComposeProviders = ({ + providers, + children, +}: ComposeProvidersProps) => { + let node = children; + for (const Provider of providers) { + node = {node}; + } + return node; +}; diff --git a/packages/next-root/src/html-with-lang.tsx b/packages/next-root/src/html-with-lang.tsx new file mode 100644 index 0000000000..e32056d176 --- /dev/null +++ b/packages/next-root/src/html-with-lang.tsx @@ -0,0 +1,11 @@ +"use client"; + +import type { ComponentProps } from "react"; +import { useLocale } from "react-aria"; + +type HtmlWithLangProps = Omit, "lang">; + +export const HtmlWithLang = (props: HtmlWithLangProps) => { + const locale = useLocale(); + return ; +}; diff --git a/packages/next-root/src/i18n-provider.tsx b/packages/next-root/src/i18n-provider.tsx new file mode 100644 index 0000000000..1a9c88513f --- /dev/null +++ b/packages/next-root/src/i18n-provider.tsx @@ -0,0 +1,30 @@ +"use client"; + +import { parse } from "bcp-47"; +import { useMemo, type ComponentProps } from "react"; +import { I18nProvider as I18nProviderBase, useIsSSR } from "react-aria"; + +const SUPPORTED_LANGUAGES = new Set(["en"]); +const DEFAULT_LOCALE = "en-US"; + +export const I18nProvider = ( + props: Omit, "locale">, +) => { + const isSSR = useIsSSR(); + const locale = useMemo( + () => + isSSR + ? DEFAULT_LOCALE + : (window.navigator.languages.find((locale) => { + const language = parse(locale).language; + return ( + language !== undefined && + language !== null && + SUPPORTED_LANGUAGES.has(language) + ); + }) ?? DEFAULT_LOCALE), + [isSSR], + ); + + return ; +}; diff --git a/packages/next-root/src/index.tsx b/packages/next-root/src/index.tsx new file mode 100644 index 0000000000..9d7e1aeb31 --- /dev/null +++ b/packages/next-root/src/index.tsx @@ -0,0 +1,47 @@ +import { GoogleAnalytics } from "@next/third-parties/google"; +import { LoggerProvider } from "@pythnetwork/app-logger/provider"; +import dynamic from "next/dynamic"; +import type { ComponentProps, ReactNode } from "react"; + +import { Amplitude } from "./amplitude"; +import { ComposeProviders } from "./compose-providers"; +import { HtmlWithLang } from "./html-with-lang"; +import { I18nProvider } from "./i18n-provider"; +import { RouterProvider } from "./router-provider"; + +const ReportAccessibility = dynamic(() => + import("./report-accessibility.js").then((mod) => mod.ReportAccessibility), +); + +type Props = Omit, "children"> & { + children: ReactNode; + enableAccessibilityReporting: boolean; + amplitudeApiKey?: string | undefined; + googleAnalyticsId?: string | undefined; + providers?: ComponentProps["providers"] | undefined; +}; + +export const Root = ({ + children, + providers, + amplitudeApiKey, + googleAnalyticsId, + enableAccessibilityReporting, + ...props +}: Props) => ( + + + {children} + {googleAnalyticsId && } + {amplitudeApiKey && } + {enableAccessibilityReporting && } + + +); diff --git a/packages/next-root/src/report-accessibility.tsx b/packages/next-root/src/report-accessibility.tsx new file mode 100644 index 0000000000..6d8fc09d10 --- /dev/null +++ b/packages/next-root/src/report-accessibility.tsx @@ -0,0 +1,27 @@ +"use client"; + +import { useLogger } from "@pythnetwork/app-logger"; +import { useEffect } from "react"; +import * as React from "react"; +import * as ReactDOM from "react-dom"; + +const AXE_TIMEOUT = 1000; + +export const ReportAccessibility = () => { + useReportAccessibility(); + + // eslint-disable-next-line unicorn/no-null + return null; +}; + +const useReportAccessibility = () => { + const logger = useLogger(); + + useEffect(() => { + import("@axe-core/react") + .then((axe) => axe.default(React, ReactDOM, AXE_TIMEOUT)) + .catch((error: unknown) => { + logger.error("Error setting up axe for accessibility testing", error); + }); + }, [logger]); +}; diff --git a/packages/next-root/src/router-provider.tsx b/packages/next-root/src/router-provider.tsx new file mode 100644 index 0000000000..b65837c903 --- /dev/null +++ b/packages/next-root/src/router-provider.tsx @@ -0,0 +1,27 @@ +"use client"; + +import { useRouter } from "next/navigation"; +import { type ComponentProps, useCallback } from "react"; +import { RouterProvider as ReactAriaRouterProvider } from "react-aria"; + +declare module "react-aria" { + type RouterConfig = { + routerOptions: NonNullable< + Parameters["push"]>[1] + >; + }; +} + +export const RouterProvider = ( + props: Omit, "navigate">, +) => { + const router = useRouter(); + const navigate = useCallback( + (...params: Parameters) => { + router.push(...params); + }, + [router], + ); + + return ; +}; diff --git a/packages/next-root/tsconfig.json b/packages/next-root/tsconfig.json new file mode 100644 index 0000000000..a07c9a98ac --- /dev/null +++ b/packages/next-root/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "@cprussin/tsconfig/nextjs.json" +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a304a1cca9..5ef1f6aba0 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -6,6 +6,15 @@ settings: catalogs: default: + '@amplitude/analytics-browser': + specifier: 2.11.8 + version: 2.11.8 + '@amplitude/plugin-autocapture-browser': + specifier: 1.0.0 + version: 1.0.0 + '@axe-core/react': + specifier: 4.9.1 + version: 4.9.1 '@cprussin/eslint-config': specifier: 3.0.0 version: 3.0.0 @@ -18,24 +27,117 @@ catalogs: '@cprussin/tsconfig': specifier: 3.0.1 version: 3.0.1 + '@next/third-parties': + specifier: 15.0.2 + version: 15.0.2 + '@phosphor-icons/react': + specifier: 2.1.7 + version: 2.1.7 + '@storybook/addon-essentials': + specifier: 8.3.5 + version: 8.3.5 + '@storybook/addon-styling-webpack': + specifier: 1.0.0 + version: 1.0.0 + '@storybook/addon-themes': + specifier: 8.3.5 + version: 8.3.5 + '@storybook/blocks': + specifier: 8.3.5 + version: 8.3.5 + '@storybook/nextjs': + specifier: 8.3.5 + version: 8.3.5 + '@storybook/react': + specifier: 8.3.5 + version: 8.3.5 + '@svgr/webpack': + specifier: 8.1.0 + version: 8.1.0 + '@tailwindcss/forms': + specifier: 0.5.9 + version: 0.5.9 + '@types/jest': + specifier: 29.5.14 + version: 29.5.14 + '@types/node': + specifier: 22.8.2 + version: 22.8.2 '@types/react': - specifier: npm:types-react@rc + specifier: npm:types-react@19.0.0-rc.1 version: 19.0.0-rc.1 '@types/react-dom': - specifier: npm:types-react-dom@rc + specifier: npm:types-react-dom@19.0.0-rc.1 version: 19.0.0-rc.1 + autoprefixer: + specifier: 10.4.20 + version: 10.4.20 + bcp-47: + specifier: 2.1.0 + version: 2.1.0 + clsx: + specifier: 2.1.1 + version: 2.1.1 + css-loader: + specifier: 7.1.2 + version: 7.1.2 + eslint: + specifier: 9.13.0 + version: 9.13.0 framer-motion: specifier: 11.11.10 version: 11.11.10 + jest: + specifier: 29.7.0 + version: 29.7.0 next: specifier: 15.0.2 version: 15.0.2 + pino: + specifier: 9.5.0 + version: 9.5.0 + postcss: + specifier: 8.4.47 + version: 8.4.47 + postcss-loader: + specifier: 8.1.1 + version: 8.1.1 + prettier: + specifier: 3.3.3 + version: 3.3.3 react: specifier: 19.0.0-rc-603e6108-20241029 version: 19.0.0-rc-603e6108-20241029 + react-aria: + specifier: 3.35.0 + version: 3.35.0 + react-aria-components: + specifier: 1.4.0 + version: 1.4.0 react-dom: specifier: 19.0.0-rc-603e6108-20241029 version: 19.0.0-rc-603e6108-20241029 + storybook: + specifier: 8.3.5 + version: 8.3.5 + style-loader: + specifier: 4.0.0 + version: 4.0.0 + tailwindcss: + specifier: 3.4.14 + version: 3.4.14 + tailwindcss-animate: + specifier: 1.0.7 + version: 1.0.7 + tailwindcss-react-aria-components: + specifier: 1.1.6 + version: 1.1.6 + typescript: + specifier: 5.6.3 + version: 5.6.3 + vercel: + specifier: 37.12.1 + version: 37.12.1 overrides: '@injectivelabs/sdk-ts@1.10.72>@injectivelabs/token-metadata': 1.10.42 @@ -84,7 +186,7 @@ importers: version: 2.1.4(react@19.0.0-rc-603e6108-20241029) '@next/third-parties': specifier: ^14.2.4 - 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) + version: 14.2.4(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/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) @@ -105,7 +207,7 @@ importers: version: 2.1.1 connectkit: specifier: ^1.8.2 - 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)) + version: 1.8.2(@babel/core@7.25.8)(@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(2zybmpkgivtkk3e4xdbpxyo3aq)) cryptocurrency-icons: specifier: ^0.18.1 version: 0.18.1 @@ -114,7 +216,7 @@ importers: 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: '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) + 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) next-themes: specifier: ^0.3.0 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) @@ -138,7 +240,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(slso2y5si5ebobzw4pa64fwb3i) + version: 2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq) zod: specifier: ^3.23.8 version: 3.23.8 @@ -151,7 +253,7 @@ importers: 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: '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) + version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.25.8))(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: 'catalog:' version: 2.1.1(prettier@3.3.2) @@ -253,6 +355,85 @@ importers: specifier: ^17.4.1 version: 17.7.2 + apps/insights: + dependencies: + '@pythnetwork/app-logger': + specifier: workspace:* + version: link:../../packages/app-logger + '@pythnetwork/component-library': + specifier: workspace:* + version: link:../../packages/component-library + '@pythnetwork/fonts': + specifier: workspace:* + version: link:../../packages/fonts + '@pythnetwork/next-root': + specifier: workspace:* + version: link:../../packages/next-root + clsx: + specifier: 'catalog:' + version: 2.1.1 + next: + 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) + react: + specifier: 'catalog:' + version: 19.0.0-rc-603e6108-20241029 + react-dom: + specifier: 'catalog:' + version: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + devDependencies: + '@cprussin/eslint-config': + 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.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3) + '@cprussin/jest-config': + specifier: 'catalog:' + version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.8.2)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.13.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(utf-8-validate@6.0.4) + '@cprussin/prettier-config': + specifier: 'catalog:' + version: 2.1.1(prettier@3.3.3) + '@cprussin/tsconfig': + specifier: 'catalog:' + version: 3.0.1 + '@svgr/webpack': + specifier: 'catalog:' + version: 8.1.0(typescript@5.6.3) + '@types/jest': + specifier: 'catalog:' + version: 29.5.14 + '@types/node': + specifier: 'catalog:' + version: 22.8.2 + '@types/react': + specifier: 'catalog:' + version: types-react@19.0.0-rc.1 + '@types/react-dom': + specifier: 'catalog:' + version: types-react-dom@19.0.0-rc.1 + autoprefixer: + specifier: 'catalog:' + version: 10.4.20(postcss@8.4.47) + eslint: + specifier: 'catalog:' + version: 9.13.0(jiti@1.21.0) + jest: + specifier: 'catalog:' + version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) + postcss: + specifier: 'catalog:' + version: 8.4.47 + prettier: + specifier: 'catalog:' + version: 3.3.3 + tailwindcss: + specifier: 'catalog:' + version: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) + typescript: + specifier: 'catalog:' + version: 5.6.3 + vercel: + specifier: 'catalog:' + version: 37.12.1(encoding@0.1.13) + apps/price_pusher: dependencies: '@coral-xyz/anchor': @@ -342,7 +523,7 @@ importers: version: 8.57.0 jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)) + version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)) pino-pretty: specifier: ^11.2.1 version: 11.2.1 @@ -351,10 +532,10 @@ importers: version: 2.8.8 ts-jest: specifier: ^29.1.1 - version: 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) + version: 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.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)))(typescript@5.4.5) ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@22.7.7)(typescript@5.4.5) + version: 10.9.1(@types/node@22.8.2)(typescript@5.4.5) typescript: specifier: ^5.3.3 version: 5.4.5 @@ -402,7 +583,7 @@ importers: 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))(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) + 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.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) @@ -613,7 +794,7 @@ importers: version: 6.10.0(encoding@0.1.13) ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@22.7.7)(typescript@5.4.5) + version: 10.9.1(@types/node@22.8.2)(typescript@5.4.5) typescript: specifier: ^5.3.3 version: 5.4.5 @@ -662,7 +843,7 @@ importers: version: link:../../../target_chains/ethereum/sdk/solidity ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@22.7.7)(typescript@5.4.5) + version: 10.9.1(@types/node@22.8.2)(typescript@5.4.5) typescript: specifier: ^5.3.3 version: 5.4.5 @@ -848,7 +1029,7 @@ importers: version: 1.0.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@22.7.7)(typescript@5.4.5) + version: 10.9.1(@types/node@22.8.2)(typescript@5.4.5) devDependencies: typescript: specifier: ^5.4.5 @@ -879,7 +1060,7 @@ importers: version: 1.0.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@22.7.7)(typescript@5.4.5) + version: 10.9.1(@types/node@22.8.2)(typescript@5.4.5) devDependencies: typescript: specifier: ^5.4.5 @@ -916,7 +1097,7 @@ importers: version: 4.19.2 ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@22.7.7)(typescript@5.4.5) + version: 10.9.1(@types/node@22.8.2)(typescript@5.4.5) devDependencies: '@types/express': specifier: ^4.17.21 @@ -1029,13 +1210,13 @@ importers: version: 3.10.0 jest: specifier: ^29.3.1 - version: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) prettier: specifier: ^2.8.1 version: 2.8.8 ts-jest: specifier: ^29.0.3 - version: 29.1.2(@babel/core@7.25.8)(@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@4.9.5)))(typescript@4.9.5) + version: 29.1.2(@babel/core@7.25.8)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)))(typescript@4.9.5) governance/xc_admin/packages/xc_admin_frontend: dependencies: @@ -1170,24 +1351,64 @@ importers: specifier: ^37.12.1 version: 37.12.1(encoding@0.1.13) + packages/app-logger: + dependencies: + pino: + specifier: 'catalog:' + version: 9.5.0 + devDependencies: + '@cprussin/eslint-config': + 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.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3) + '@cprussin/jest-config': + specifier: 'catalog:' + version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.8.2)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.13.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(utf-8-validate@6.0.4) + '@cprussin/prettier-config': + specifier: 'catalog:' + version: 2.1.1(prettier@3.3.3) + '@cprussin/tsconfig': + specifier: 'catalog:' + version: 3.0.1 + '@types/jest': + specifier: 'catalog:' + version: 29.5.14 + '@types/react': + specifier: 'catalog:' + version: types-react@19.0.0-rc.1 + eslint: + specifier: 'catalog:' + version: 9.13.0(jiti@1.21.0) + jest: + specifier: 'catalog:' + version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) + prettier: + specifier: 'catalog:' + version: 3.3.3 + react: + specifier: 'catalog:' + version: 19.0.0-rc-603e6108-20241029 + typescript: + specifier: 'catalog:' + version: 5.6.3 + packages/component-library: dependencies: clsx: - specifier: ^2.1.1 + specifier: 'catalog:' version: 2.1.1 react-aria: - specifier: ^3.35.0 - version: 3.35.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 'catalog:' + version: 3.35.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) react-aria-components: - specifier: ^1.4.0 - version: 1.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 'catalog:' + version: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) devDependencies: '@cprussin/eslint-config': 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) + 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.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3) '@cprussin/jest-config': 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) + version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.8.2)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.13.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(utf-8-validate@6.0.4) '@cprussin/prettier-config': specifier: 'catalog:' version: 2.1.1(prettier@3.3.3) @@ -1195,89 +1416,89 @@ importers: specifier: 'catalog:' version: 3.0.1 '@phosphor-icons/react': - specifier: ^2.1.7 - version: 2.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: 'catalog:' + version: 2.1.7(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) '@pythnetwork/fonts': - specifier: workspace:^ + specifier: workspace:* version: link:../fonts '@storybook/addon-essentials': - specifier: ^8.3.5 + specifier: 'catalog:' version: 8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(webpack-sources@3.2.3) '@storybook/addon-styling-webpack': - specifier: ^1.0.0 + specifier: 'catalog:' version: 1.0.0(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(webpack@5.91.0(esbuild@0.22.0)) '@storybook/addon-themes': - specifier: ^8.3.5 + specifier: 'catalog:' version: 8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) '@storybook/blocks': - specifier: ^8.3.5 - 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)) + specifier: 'catalog:' + version: 8.3.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)(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@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)) + specifier: 'catalog:' + version: 8.3.5(esbuild@0.22.0)(next@15.0.2(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029))(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)(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) + specifier: 'catalog:' + 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@19.0.0-rc-603e6108-20241029)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3) '@tailwindcss/forms': - specifier: ^0.5.9 - version: 0.5.9(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))) + specifier: 'catalog:' + version: 0.5.9(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))) '@types/jest': - specifier: ^29.5.13 - version: 29.5.13 + specifier: 'catalog:' + version: 29.5.14 '@types/react': specifier: 'catalog:' version: types-react@19.0.0-rc.1 autoprefixer: - specifier: ^10.4.20 + specifier: 'catalog:' version: 10.4.20(postcss@8.4.47) css-loader: - specifier: ^7.1.2 + specifier: 'catalog:' version: 7.1.2(webpack@5.91.0(esbuild@0.22.0)) eslint: - specifier: ^9.12.0 - version: 9.12.0(jiti@1.21.0) + specifier: 'catalog:' + version: 9.13.0(jiti@1.21.0) jest: - specifier: ^29.7.0 - version: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + specifier: 'catalog:' + version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) postcss: - specifier: ^8.4.47 + specifier: 'catalog:' version: 8.4.47 postcss-loader: - specifier: ^8.1.1 + specifier: 'catalog:' version: 8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.91.0(esbuild@0.22.0)) prettier: - specifier: ^3.3.3 + specifier: 'catalog:' version: 3.3.3 react: - specifier: ^18.3.1 - version: 18.3.1 + specifier: 'catalog:' + version: 19.0.0-rc-603e6108-20241029 storybook: - specifier: ^8.3.5 + specifier: 'catalog:' version: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4) style-loader: - specifier: ^4.0.0 + specifier: 'catalog:' version: 4.0.0(webpack@5.91.0(esbuild@0.22.0)) tailwindcss: - specifier: ^3.4.13 - version: 3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + specifier: 'catalog:' + version: 3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) tailwindcss-animate: - specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))) + specifier: 'catalog:' + version: 1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))) tailwindcss-react-aria-components: - specifier: ^1.1.6 - version: 1.1.6(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))) + specifier: 'catalog:' + version: 1.1.6(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))) typescript: - specifier: ^5.6.3 + specifier: 'catalog:' version: 5.6.3 packages/fonts: devDependencies: '@cprussin/eslint-config': 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) + 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.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3) '@cprussin/jest-config': 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) + version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.8.2)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.13.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(utf-8-validate@6.0.4) '@cprussin/prettier-config': specifier: 'catalog:' version: 2.1.1(prettier@3.3.3) @@ -1285,22 +1506,89 @@ importers: specifier: 'catalog:' version: 3.0.1 '@types/jest': - specifier: ^29.5.13 - version: 29.5.13 + specifier: 'catalog:' + version: 29.5.14 eslint: - specifier: ^9.12.0 - version: 9.12.0(jiti@1.21.0) + specifier: 'catalog:' + version: 9.13.0(jiti@1.21.0) jest: - specifier: ^29.7.0 - version: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + specifier: 'catalog:' + version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) next: - specifier: ^14.2.15 - 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) + 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) prettier: - specifier: ^3.3.3 + specifier: 'catalog:' version: 3.3.3 typescript: - specifier: ^5.6.3 + specifier: 'catalog:' + version: 5.6.3 + + packages/next-root: + dependencies: + '@amplitude/analytics-browser': + specifier: 'catalog:' + version: 2.11.8 + '@amplitude/plugin-autocapture-browser': + specifier: 'catalog:' + version: 1.0.0 + '@axe-core/react': + specifier: 'catalog:' + version: 4.9.1 + '@next/third-parties': + specifier: 'catalog:' + version: 15.0.2(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/app-logger': + specifier: workspace:* + version: link:../app-logger + bcp-47: + specifier: 'catalog:' + version: 2.1.0 + devDependencies: + '@cprussin/eslint-config': + 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.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3) + '@cprussin/jest-config': + specifier: 'catalog:' + version: 1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.8.2)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.13.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(utf-8-validate@6.0.4) + '@cprussin/prettier-config': + specifier: 'catalog:' + version: 2.1.1(prettier@3.3.3) + '@cprussin/tsconfig': + specifier: 'catalog:' + version: 3.0.1 + '@types/jest': + specifier: 'catalog:' + version: 29.5.14 + '@types/react': + specifier: 'catalog:' + version: types-react@19.0.0-rc.1 + '@types/react-dom': + specifier: 'catalog:' + version: types-react-dom@19.0.0-rc.1 + eslint: + specifier: 'catalog:' + version: 9.13.0(jiti@1.21.0) + jest: + specifier: 'catalog:' + version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) + next: + 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) + prettier: + specifier: 'catalog:' + version: 3.3.3 + react: + specifier: 'catalog:' + version: 19.0.0-rc-603e6108-20241029 + react-aria: + specifier: 'catalog:' + version: 3.35.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: + specifier: 'catalog:' + version: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + typescript: + specifier: 'catalog:' version: 5.6.3 price_service/client/js: @@ -1344,13 +1632,13 @@ importers: version: 8.57.0 jest: specifier: ^29.4.0 - version: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) prettier: specifier: ^2.6.2 version: 2.8.8 ts-jest: specifier: ^29.0.5 - version: 29.1.2(@babel/core@7.25.8)(@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@4.9.5)))(typescript@4.9.5) + version: 29.1.2(@babel/core@7.25.8)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)))(typescript@4.9.5) typescript: specifier: ^4.6.3 version: 4.9.5 @@ -1402,7 +1690,7 @@ importers: version: 0.27.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@lumina-dev/test': specifier: ^0.0.12 - version: 0.0.12(eslint@9.12.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0) + version: 0.0.12(eslint@9.13.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0) '@pythnetwork/client': specifier: ^2.17.0 version: 2.21.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) @@ -1653,7 +1941,7 @@ importers: version: 8.8.0(eslint@8.57.0) ts-node: specifier: ^10.9.1 - version: 10.9.1(@types/node@22.7.7)(typescript@4.9.5) + version: 10.9.1(@types/node@22.8.2)(typescript@4.9.5) typescript: specifier: ^4.9.3 version: 4.9.5 @@ -1674,16 +1962,16 @@ importers: version: 0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@6.0.3) '@matterlabs/hardhat-zksync': specifier: ^1.1.0 - version: 1.1.0(vgsagjmwxx4la7h7zaeoqnlaa4) + version: 1.1.0(dv3sjdbdk3siwm7eppr4smsrqe) '@matterlabs/hardhat-zksync-deploy': specifier: ^0.6.6 - version: 0.6.6(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-web3@0.13.4(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))) + version: 0.6.6(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-web3@0.13.4(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))) '@matterlabs/hardhat-zksync-solc': specifier: ^0.3.14 - version: 0.3.17(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + version: 0.3.17(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) '@nomiclabs/hardhat-etherscan': specifier: ^3.1.7 - version: 3.1.8(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + version: 3.1.8(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) '@openzeppelin/contracts': specifier: '=4.8.1' version: 4.8.1 @@ -1692,7 +1980,7 @@ importers: version: 4.8.1 '@openzeppelin/hardhat-upgrades': specifier: ^1.22.1 - version: 1.28.0(@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(@nomiclabs/hardhat-etherscan@3.1.8(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + version: 1.28.0(@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(@nomiclabs/hardhat-etherscan@3.1.8(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) '@pythnetwork/contract-manager': specifier: workspace:* version: link:../../../contract_manager @@ -1719,7 +2007,7 @@ importers: version: 7.9.2 hardhat: specifier: ^2.12.5 - version: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + version: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) jsonfile: specifier: ^4.0.0 version: 4.0.0 @@ -1734,7 +2022,7 @@ importers: version: 2.0.1 ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@22.7.7)(typescript@4.9.5) + version: 10.9.2(@types/node@22.8.2)(typescript@4.9.5) typescript: specifier: ^4.9.4 version: 4.9.5 @@ -1896,7 +2184,7 @@ importers: version: 2.8.8 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@22.7.7)(typescript@5.4.5) + version: 10.9.2(@types/node@22.8.2)(typescript@5.4.5) typescript: specifier: ^5.4.5 version: 5.4.5 @@ -1936,7 +2224,7 @@ importers: version: 8.57.0 jest: specifier: ^29.4.0 - version: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + version: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) prettier: specifier: ^2.6.2 version: 2.8.8 @@ -1945,10 +2233,10 @@ importers: version: 23.0.76(encoding@0.1.13) ts-jest: specifier: ^29.0.5 - version: 29.1.2(@babel/core@7.25.8)(@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@4.9.5)))(typescript@4.9.5) + version: 29.1.2(@babel/core@7.25.8)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.8))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)))(typescript@4.9.5) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@22.7.7)(typescript@4.9.5) + version: 10.9.2(@types/node@22.8.2)(typescript@4.9.5) typescript: specifier: ^4.6.3 version: 4.9.5 @@ -2057,7 +2345,7 @@ importers: version: 2.8.8 ts-node: specifier: ^10.9.1 - version: 10.9.2(@types/node@22.7.7)(typescript@5.4.5) + version: 10.9.2(@types/node@22.8.2)(typescript@5.4.5) typescript: specifier: ^5.0.4 version: 5.4.5 @@ -2266,6 +2554,9 @@ packages: '@amplitude/analytics-browser@2.11.1': resolution: {integrity: sha512-dLej5BZLbnlOw40lQJs5KnJx6EQRwcUJJlnZsFH72LyBq8WvxnDb40yHqSxOl/b7tCJWRozBw75B3Fzkz5OOLw==} + '@amplitude/analytics-browser@2.11.8': + resolution: {integrity: sha512-lFv8deROLwBfSlg92+r1NitWJ6BN45IKwpPLoixA0fZytScXEJqc0Gl5O+BY4qScbFECYt9PFKblhB+jC+IvPg==} + '@amplitude/analytics-browser@2.9.0': resolution: {integrity: sha512-Y5JP7taJ9MxjboCv4gz6bRlhdunGncPvI82UqWXJTpTjaayS56owhBrxEHmtzXNcij2J0eJOHQEs4RT4Sj56iA==} @@ -2275,6 +2566,9 @@ packages: '@amplitude/analytics-client-common@2.3.1': resolution: {integrity: sha512-HR5kdLkyz2niUqTA+9fP3MQgqixk5ToY0ohxNrsiqExFDftyKMplQenlFxjh/w5vb72lLf5gI3T2ssIUCkGuvw==} + '@amplitude/analytics-client-common@2.3.4': + resolution: {integrity: sha512-3oqdvca5W4BPblTaxf60YRtlh2uC+N3rA99wowDAhTBJoMJJaauOBoXu5BbiQO1u8Zw/c8ymyr8E20+glyptUg==} + '@amplitude/analytics-connector@1.5.0': resolution: {integrity: sha512-T8mOYzB9RRxckzhL0NTHwdge9xuFxXEOplC8B1Y3UX3NHa3BLh7DlBUZlCOwQgMc2nxDfnSweDL5S3bhC+W90g==} @@ -2284,6 +2578,9 @@ packages: '@amplitude/analytics-core@2.5.0': resolution: {integrity: sha512-WQSF6u2k+c+EvC0nVd1kVWvUV/dGyyU2fVBHlcqWtEadCFFZRgty94K5JDC3E+W41+PQeNnTbiH8Wkf98rPYdg==} + '@amplitude/analytics-core@2.5.3': + resolution: {integrity: sha512-dvx3PS0adnHRS22VbuP9YtWg//bQGF2c61Pj5IYXVsemtRRHqiS7XJ860brk3WeQgOkqf3Gyc023DoYcsWGoNQ==} + '@amplitude/analytics-remote-config@0.4.0': resolution: {integrity: sha512-ilp9Dz8Z92V9Wilmz8XIbvEbtuVaN65+jM06JP8I7wL8eNOHVIi4HcI151BzIyekjbprbS1w18Ps3dj2sHlFXA==} @@ -2293,18 +2590,27 @@ packages: '@amplitude/analytics-types@2.8.0': resolution: {integrity: sha512-LQ9XWtmv8n0qMGE/JfB0xOvwAc0swy63Xqz7fPhVinz/SUm2buUEKzUNAiq55tZJhEvGs/AsJRmJqu0G563Mgg==} + '@amplitude/analytics-types@2.8.3': + resolution: {integrity: sha512-HNmKVd0ACoi3xTi86xi+is7WgqKT78JA4fYLcM25/ckFkZ1zVCqD1AubaADEh26m34nJ3qDLK5Pob4QptQNPAg==} + '@amplitude/plugin-autocapture-browser@0.9.0': resolution: {integrity: sha512-iLae95j9tkfZtHCrfFLOsMzqmjO3NRqB+Eslf1txFfEsbZ/2MlDQqtxklvxv46JD2IH4q/vDamyJ0gGRsse16w==} '@amplitude/plugin-autocapture-browser@1.0.0': resolution: {integrity: sha512-qPlR5e1XMPvus32dJTsd8dgFyentR3ugiPv8obwe/bSqpD0Kem31DQic+JadPwG+L3e4UE4QO08hz2lEl9GHMg==} + '@amplitude/plugin-autocapture-browser@1.0.3': + resolution: {integrity: sha512-XUQWUAw9VqtJPlmOyWjnhsEspyVakd9LuSjVNtLjhwlWv+f/yZM1AAQVUdq/Os1+b5OptSgJQ2pPfRJJHZDXTw==} + '@amplitude/plugin-page-view-tracking-browser@2.2.14': resolution: {integrity: sha512-3Rh8P0pK3QOd94uVeOgjc2UommeHucCvasAIdjf1QQ59wVmNua2gY3IwR8+Pyg0PJ3plmwY/La8YukeXB6A2aA==} '@amplitude/plugin-page-view-tracking-browser@2.2.20': resolution: {integrity: sha512-/X2OAdqyGe4kEZGUFX6AcuBLEb2g3KcPIdHDXzGHRk7nxsJKv9pH1dqt3Z4RxHi0Ylhrh25ysr2NzZz4HOA/GQ==} + '@amplitude/plugin-page-view-tracking-browser@2.3.4': + resolution: {integrity: sha512-l7RS5gssG0BPYlgirV0NQ94EPzTOdDkp0z2jqU45D3DQAJXkoloUyw5lw/cbUXYwNulHZTG/BExcERfdvVWkLA==} + '@ampproject/remapping@2.2.0': resolution: {integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==} engines: {node: '>=6.0.0'} @@ -3655,12 +3961,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-runtime@7.24.7': - resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-runtime@7.25.7': resolution: {integrity: sha512-Y9p487tyTzB0yDYQOtWnC+9HGOuogtP3/wNpun1xJXEEvI6vip59BSBTsHnekZLqxmPcgsrAKt46HAAb//xGhg==} engines: {node: '>=6.9.0'} @@ -4549,6 +4849,10 @@ packages: resolution: {integrity: sha512-8I2Q8ykA4J0x0o7cg67FPVnehcqWTBehu/lmY+bolPFHGjh49YzGBMXTvpqVgEbBdvNCSxj6iFgiIyHzf03lzg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/core@0.7.0': + resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/eslintrc@2.1.4': resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -4569,6 +4873,10 @@ packages: resolution: {integrity: sha512-eohesHH8WFRUprDNyEREgqP6beG6htMeUYeCpkEgBCieCMme5r9zFWjzAJp//9S+Kub4rqE+jXe9Cp1a7IYIIA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/js@9.13.0': + resolution: {integrity: sha512-IFLyoY4d72Z5y/6o/BazFBezupzI/taV8sGumxTAVw3lXG9A6md1Dc34T9s1FoD/an9pJH8RHbAxsaEbBed9lA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/js@9.5.0': resolution: {integrity: sha512-A7+AOT2ICkodvtsWnxZP4Xxk3NbZ3VMHd8oihydLRGrJgqqdEz1qSeEgXYyT/Cu8h1TWWsQRejIx48mtjZ5y1w==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -6111,6 +6419,12 @@ packages: next: ^13.0.0 || ^14.0.0 react: ^18.2.0 + '@next/third-parties@15.0.2': + resolution: {integrity: sha512-Ohlh0KKfag3Vrx+yuSMJ/fSoCVvRoVG9wRiz8jvYelmg+l0970d41VoGzF2UeKwh9s5qXVRDVqiN/mIeiJ4iLg==} + peerDependencies: + next: ^13.0.0 || ^14.0.0 || ^15.0.0 + react: ^18.2.0 || 19.0.0-rc-02c0e824-20241028 + '@ngraveio/bc-ur@1.1.13': resolution: {integrity: sha512-j73akJMV4+vLR2yQ4AphPIT5HZmxVjn/LxpL7YHoINnXoH6ccc90Zzck6/n6a3bCXOVZwBxq+YHwbAKRV+P8Zg==} @@ -6974,8 +7288,8 @@ packages: '@radix-ui/rect@1.0.0': resolution: {integrity: sha512-d0O68AYy/9oeEy1DdC07bz1/ZXX+DqCskRd3i4JzLSTXwefzaepQrKjXC7aNM8lTHjFLDO0pDgaEiQ7jEk+HVg==} - '@react-aria/accordion@3.0.0-alpha.35': - resolution: {integrity: sha512-eZcsHJDVDNIZ2XUmJynHScRv1YAF/+fj5T0zoGdyEPImIIxJLROupQ75uwarAI5btGSR2TFeqYRmRXJrVuxgoA==} + '@react-aria/accordion@3.0.0-alpha.34': + resolution: {integrity: sha512-3Qoj3StyQbdTYvAXVIbAIk11WtRyo3cdgn6OgwPAvN6c1r8R7X/J9DHTykZRrlF6TOGcdE0H0yrmPrlG92ObmA==} peerDependencies: 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 @@ -7082,8 +7396,8 @@ 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/disclosure@3.0.0-alpha.1': - resolution: {integrity: sha512-AsYRk4NOfo5f3QGIoQwGtOCvEk/a1yztobaDIgMCfycfyQbzJROUPbSusUURK7f1KZ0s3/HPlWT9p6ulR4mDcA==} + '@react-aria/disclosure@3.0.0-alpha.0': + resolution: {integrity: sha512-/tleriRORdkRJf2JXjiRfhLfXA5WY0nPT3DoodZJgD5Fj/aCjrWXarVGUQuEk9vsH5pwinQiQB5So+cA+xF+UQ==} peerDependencies: 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 @@ -7427,13 +7741,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/toolbar@3.0.0-beta.10': - resolution: {integrity: sha512-YsQwTCS2FO8FjDgu1aHskTk1bIo1xisY01u+gNXxGLv6B115Lnevfi+RJdZ4AmLIRAmq9OVMii9JuKrXL9dBXw==} + '@react-aria/toolbar@3.0.0-beta.8': + resolution: {integrity: sha512-nMlA1KK54/Kohb3HlHAzobg69PVIEr8Q1j5P3tLd9apY8FgGvnz7yLpcj6kO1GA872gseEzgiO0Rzk+yRHQRCA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/toolbar@3.0.0-beta.8': - resolution: {integrity: sha512-nMlA1KK54/Kohb3HlHAzobg69PVIEr8Q1j5P3tLd9apY8FgGvnz7yLpcj6kO1GA872gseEzgiO0Rzk+yRHQRCA==} + '@react-aria/toolbar@3.0.0-beta.9': + resolution: {integrity: sha512-P80zgbPb0aIg22fHlgHRXXUSpNSAOnh1ljsLiSHAGdXPrC5nRijYwwKi7DNRsXqD+ljEJwF6ekZPo95dXXeYAA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 @@ -7453,8 +7767,8 @@ 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/tree@3.0.0-beta.1': - resolution: {integrity: sha512-mlnV9VU1m/MGpH4WoOJc63yWAn9E+q/nHE3pM0dgjMyh+YCEq94tK/8eQFt4uko0/cANU/tHZ72Ayo2g8rJIWg==} + '@react-aria/tree@3.0.0-beta.0': + resolution: {integrity: sha512-bF9sp7x+Ciy0N2KJwy8epmDoNblyVmeB4vR/KWLVIKMjANCpzTbvhWZUBpQxkpO0eupInU2uN+FMNr0WKMyd7Q==} peerDependencies: 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 @@ -9908,8 +10222,8 @@ packages: '@types/jest@29.5.12': resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} - '@types/jest@29.5.13': - resolution: {integrity: sha512-wd+MVEZCHt23V0/L642O5APvspWply/rGY5BcW4SUETo2UzPU3Z26qr8jC2qxpimI2jjx9h7+2cj2FwIr01bXg==} + '@types/jest@29.5.14': + resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==} '@types/jsdom@20.0.1': resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} @@ -10022,6 +10336,9 @@ packages: '@types/node@22.7.7': resolution: {integrity: sha512-SRxCrrg9CL/y54aiMCG3edPKdprgMVGDXjA3gB8UmmBW5TcXzRUYAh8EWzTnSJFAd1rgImPELza+A3bJ+qxz8Q==} + '@types/node@22.8.2': + resolution: {integrity: sha512-NzaRNFV+FZkvK/KLCsNdTvID0SThyrs5SHB6tsD/lajr22FGC73N2QeDPM2wHtVde8mgcXuSsHQkH5cX1pbPLw==} + '@types/normalize-package-data@2.4.1': resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -14163,6 +14480,16 @@ packages: jiti: optional: true + eslint@9.13.0: + resolution: {integrity: sha512-EYZK6SX6zjFHST/HRytOdA/zE72Cq/bfw45LSyuwrdvcclb/gqV8RRQxywOBEWO2+WDpva6UZa4CcDeJKzUCFA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + eslint@9.5.0: resolution: {integrity: sha512-+NAOZFrW/jFTS3dASCGBxX1pkFD0/fsO+hfAkJ4TyYKwgsXZbqzrw+seCYFCcPCYXvnD67tAnglU7GQTz6kcVw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} @@ -17092,9 +17419,6 @@ packages: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true - magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} - magic-string@0.30.12: resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} @@ -18621,6 +18945,9 @@ packages: pino-abstract-transport@1.2.0: resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} + pino-abstract-transport@2.0.0: + resolution: {integrity: sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==} + pino-pretty@11.2.1: resolution: {integrity: sha512-O05NuD9tkRasFRWVaF/uHLOvoRDFD7tb5VMertr78rbsYFjYp48Vg3477EshVAF5eZaEw+OpDl/tu+B0R5o+7g==} hasBin: true @@ -18643,6 +18970,10 @@ packages: resolution: {integrity: sha512-WtARBjgZ7LNEkrGWxMBN/jvlFiE17LTbBoH0konmBU684Kd0uIiDwBXlcTCW7iJnA6HfIKwUssS/2AC6cDEanw==} hasBin: true + pino@9.5.0: + resolution: {integrity: sha512-xSEmD4pLnV54t0NOUN16yCl7RIB1c5UUOse5HSyEXtBp+FgFQyPeDutc+Q2ZO7/22vImV7VfEjH/1zV2QuqvYw==} + hasBin: true + pirates@4.0.6: resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} engines: {node: '>= 6'} @@ -19299,8 +19630,8 @@ 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-components@1.4.1: - resolution: {integrity: sha512-pDRcIByLJi4M2VxZuXrlqi7wyjCKwqAxkPPdKvf4HPupUES56FpbW72yS3syu6fxw16CSx62/3zpuNJX1UotTA==} + react-aria-components@1.4.0: + resolution: {integrity: sha512-CpeSeGI2FVT3hOzA28fhIGkrPPQPtz3gVHBfMWkXSuLUBaKFZQhdCLBXlpO5MoZV1RrC+e7mhOVREkw6DvlxKw==} peerDependencies: 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 @@ -19311,8 +19642,8 @@ 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@3.35.1: - resolution: {integrity: sha512-MQTvt0xbcKpnceKkYUtPMbaD9IQj2BXTrwk2vP/V7ph3EVhcyJTUdy1LXCqf8oR8bXE2BERUqp7rzJ+vYy5C+w==} + react-aria@3.35.0: + resolution: {integrity: sha512-cbbd3iIveLDRnpVrpc1iuz8OMlDdH6u8EjncW3MQuYOiEGaho9xcDtWMKiSEIZASEnd7LK4Rgm5iVPr2O+cssw==} peerDependencies: 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 @@ -20916,11 +21247,6 @@ packages: uglify-js: optional: true - terser@5.31.5: - resolution: {integrity: sha512-YPmas0L0rE1UyLL/llTWA0SiDOqIcAQYLeUj7cJYzXHlRTAnMSg9pPe4VJ5PlKvTrPQsdVFuiRiwyeNlYgwh2Q==} - engines: {node: '>=10'} - hasBin: true - terser@5.36.0: resolution: {integrity: sha512-IYV9eNMuFAV4THUspIRXkLakHnV6XO7FEdtKjf/mDyrnqUg9LnlOn6/RwRvM9SZjR4GUq8Nk8zj67FzVARr74w==} engines: {node: '>=10'} @@ -21274,10 +21600,6 @@ packages: tsconfig-paths@3.15.0: resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} - tsconfig-paths@4.1.2: - resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==} - engines: {node: '>=6'} - tsconfig-paths@4.2.0: resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==} engines: {node: '>=6'} @@ -23106,6 +23428,16 @@ snapshots: '@amplitude/plugin-page-view-tracking-browser': 2.2.20 tslib: 2.6.3 + '@amplitude/analytics-browser@2.11.8': + dependencies: + '@amplitude/analytics-client-common': 2.3.4 + '@amplitude/analytics-core': 2.5.3 + '@amplitude/analytics-remote-config': 0.4.0 + '@amplitude/analytics-types': 2.8.3 + '@amplitude/plugin-autocapture-browser': 1.0.3 + '@amplitude/plugin-page-view-tracking-browser': 2.3.4 + tslib: 2.8.0 + '@amplitude/analytics-browser@2.9.0': dependencies: '@amplitude/analytics-client-common': 2.2.2 @@ -23128,6 +23460,13 @@ snapshots: '@amplitude/analytics-types': 2.8.0 tslib: 2.6.3 + '@amplitude/analytics-client-common@2.3.4': + dependencies: + '@amplitude/analytics-connector': 1.5.0 + '@amplitude/analytics-core': 2.5.3 + '@amplitude/analytics-types': 2.8.3 + tslib: 2.8.0 + '@amplitude/analytics-connector@1.5.0': {} '@amplitude/analytics-core@2.3.0': @@ -23140,6 +23479,11 @@ snapshots: '@amplitude/analytics-types': 2.8.0 tslib: 2.6.3 + '@amplitude/analytics-core@2.5.3': + dependencies: + '@amplitude/analytics-types': 2.8.3 + tslib: 2.8.0 + '@amplitude/analytics-remote-config@0.4.0': dependencies: '@amplitude/analytics-client-common': 2.3.1 @@ -23151,6 +23495,8 @@ snapshots: '@amplitude/analytics-types@2.8.0': {} + '@amplitude/analytics-types@2.8.3': {} + '@amplitude/plugin-autocapture-browser@0.9.0': dependencies: '@amplitude/analytics-client-common': 2.2.2 @@ -23162,7 +23508,14 @@ snapshots: '@amplitude/analytics-client-common': 2.3.1 '@amplitude/analytics-types': 2.8.0 rxjs: 7.8.1 - tslib: 2.6.3 + tslib: 2.8.0 + + '@amplitude/plugin-autocapture-browser@1.0.3': + dependencies: + '@amplitude/analytics-client-common': 2.3.4 + '@amplitude/analytics-types': 2.8.3 + rxjs: 7.8.1 + tslib: 2.8.0 '@amplitude/plugin-page-view-tracking-browser@2.2.14': dependencies: @@ -23176,6 +23529,12 @@ snapshots: '@amplitude/analytics-types': 2.8.0 tslib: 2.6.3 + '@amplitude/plugin-page-view-tracking-browser@2.3.4': + dependencies: + '@amplitude/analytics-client-common': 2.3.4 + '@amplitude/analytics-types': 2.8.3 + tslib: 2.8.0 + '@ampproject/remapping@2.2.0': dependencies: '@jridgewell/gen-mapping': 0.1.1 @@ -23516,7 +23875,7 @@ snapshots: dependencies: '@babel/compat-data': 7.24.7 '@babel/helper-validator-option': 7.24.7 - browserslist: 4.23.1 + browserslist: 4.24.0 lru-cache: 5.1.1 semver: 6.3.1 @@ -23557,19 +23916,6 @@ snapshots: '@babel/helper-split-export-declaration': 7.24.7 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-function-name': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.24.7 - semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -23641,19 +23987,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-member-expression-to-functions': 7.25.7 - '@babel/helper-optimise-call-expression': 7.25.7 - '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.7) - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 - '@babel/traverse': 7.25.7 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/helper-create-class-features-plugin@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -23701,13 +24034,6 @@ snapshots: regexpu-core: 6.1.1 semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.25.7 - regexpu-core: 6.1.1 - semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -23896,16 +24222,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-module-transforms@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-module-imports': 7.25.7 - '@babel/helper-simple-access': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -23946,16 +24262,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.24.7 - transitivePeerDependencies: - - supports-color - '@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24002,15 +24308,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-wrap-function': 7.25.7 - '@babel/traverse': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/helper-remap-async-to-generator@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24027,13 +24324,6 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.24.1(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24077,15 +24367,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-replace-supers@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-member-expression-to-functions': 7.25.7 - '@babel/helper-optimise-call-expression': 7.25.7 - '@babel/traverse': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/helper-replace-supers@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24323,16 +24604,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-environment-visitor': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/helper-remap-async-to-generator': 7.18.9(@babel/core@7.24.7) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24349,12 +24620,6 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24379,11 +24644,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-proposal-export-default-from@7.25.8(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-proposal-export-default-from@7.25.8(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24407,12 +24667,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.0) - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24425,12 +24679,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24443,12 +24691,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.0) - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.7) - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24464,15 +24706,6 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.0) '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.0) - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.7)': - dependencies: - '@babel/compat-data': 7.24.7 - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.7) - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.25.8)': dependencies: '@babel/compat-data': 7.24.7 @@ -24488,12 +24721,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.7 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.0) - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24516,15 +24743,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24584,13 +24802,12 @@ snapshots: '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 - '@babel/helper-plugin-utils': 7.24.8 - optional: true + '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.0)': dependencies: @@ -24642,11 +24859,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-export-default-from@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24672,11 +24884,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-flow@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -24757,19 +24964,24 @@ snapshots: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.25.8)': + dependencies: + '@babel/core': 7.25.8 + '@babel/helper-plugin-utils': 7.24.7 + '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.7)': dependencies: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.24.0)': + '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.8)': dependencies: - '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.25.7 + '@babel/core': 7.25.8 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.24.7)': + '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.24.0)': dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.8)': @@ -24907,14 +25119,14 @@ snapshots: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.24.0)': + '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.25.8)': dependencies: - '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.25.7 + '@babel/core': 7.25.8 + '@babel/helper-plugin-utils': 7.24.8 - '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.24.7)': + '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.24.0)': dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.8)': @@ -24965,11 +25177,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-arrow-functions@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25050,15 +25257,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-module-imports': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-remap-async-to-generator': 7.25.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-async-to-generator@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25113,11 +25311,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-block-scoping@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25241,18 +25434,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-classes@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-compilation-targets': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-replace-supers': 7.25.7(@babel/core@7.24.7) - '@babel/traverse': 7.25.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-classes@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25295,12 +25476,6 @@ snapshots: '@babel/helper-plugin-utils': 7.25.7 '@babel/template': 7.25.7 - '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/template': 7.25.7 - '@babel/plugin-transform-computed-properties@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25332,11 +25507,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-destructuring@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25458,12 +25628,6 @@ snapshots: '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.0) - '@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-flow-strip-types@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25536,15 +25700,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-compilation-targets': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/traverse': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-function-name@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25597,11 +25752,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-literals@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-literals@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25722,15 +25872,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-simple-access': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-modules-commonjs@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25842,12 +25983,6 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-named-capturing-groups-regex@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26014,11 +26149,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.24.7 - '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26044,11 +26174,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-parameters@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26086,14 +26211,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-private-methods@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26141,15 +26258,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-private-property-in-object@7.25.8(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-private-property-in-object@7.25.8(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26199,14 +26307,14 @@ snapshots: '@babel/core': 7.24.7 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.24.0)': + '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.25.8)': dependencies: - '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.25.7 + '@babel/core': 7.25.8 + '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.24.7)': + '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.24.0)': dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-react-display-name@7.25.7(@babel/core@7.25.8)': @@ -26224,14 +26332,14 @@ snapshots: '@babel/core': 7.24.7 '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.7) - '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.24.0)': + '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.25.8)': dependencies: - '@babel/core': 7.24.0 - '@babel/helper-plugin-utils': 7.25.7 + '@babel/core': 7.25.8 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.25.8) - '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.24.7)': + '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.24.0)': dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.25.8)': @@ -26244,11 +26352,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26272,6 +26375,15 @@ snapshots: '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.7) '@babel/types': 7.24.0 + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.25.8)': + dependencies: + '@babel/core': 7.25.8 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.22.15 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.25.8) + '@babel/types': 7.24.0 + '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -26283,17 +26395,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-module-imports': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.24.7) - '@babel/types': 7.25.8 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26317,6 +26418,12 @@ snapshots: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.25.8)': + dependencies: + '@babel/core': 7.25.8 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -26373,18 +26480,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-module-imports': 7.24.7 - '@babel/helper-plugin-utils': 7.24.8 - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7) - babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.24.7) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -26397,18 +26492,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-module-imports': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.7) - babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.24.7) - babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.7) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-runtime@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26446,11 +26529,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-shorthand-properties@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26494,14 +26572,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-spread@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-spread@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26535,11 +26605,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-sticky-regex@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26614,17 +26679,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-create-class-features-plugin': 7.25.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/helper-skip-transparent-expression-wrappers': 7.25.7 - '@babel/plugin-syntax-typescript': 7.25.7(@babel/core@7.24.7) - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-typescript@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26704,12 +26758,6 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.0) '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-create-regexp-features-plugin': 7.25.7(@babel/core@7.24.7) - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-unicode-regex@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -27133,6 +27181,16 @@ snapshots: '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.7) '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.7) + '@babel/preset-react@7.24.1(@babel/core@7.25.8)': + dependencies: + '@babel/core': 7.25.8 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.25.8) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.25.8) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.25.8) + '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.25.8) + '@babel/preset-typescript@7.24.1(@babel/core@7.24.0)': dependencies: '@babel/core': 7.24.0 @@ -28297,7 +28355,7 @@ snapshots: - 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)))(jiti@1.21.0)(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.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(@typescript-eslint/parser@8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))(typescript@5.6.3)': dependencies: '@babel/core': 7.25.8 '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0)) @@ -28309,8 +28367,8 @@ snapshots: 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-import: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.13.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.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(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)) @@ -28318,12 +28376,12 @@ snapshots: 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-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(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.12.0(jiti@1.21.0)) globals: 15.6.0 - 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@22.8.2)(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' @@ -28377,52 +28435,18 @@ snapshots: - ts-node - typescript - '@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)': + '@cprussin/jest-config@1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@20.14.7)(babel-jest@29.7.0(@babel/core@7.25.8))(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.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.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(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.6.3) - typescript: 5.6.3 - transitivePeerDependencies: - - '@babel/core' - - '@jest/test-result' - - '@jest/transform' - - '@jest/types' - - '@opentelemetry/api' - - '@playwright/test' - - '@types/node' - - babel-jest - - babel-plugin-macros - - bufferutil - - canvas - - esbuild - - eslint - - jest-runner - - node-notifier - - sass - - supports-color - - ts-node - - utf-8-validate - - '@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.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.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.6.3) + 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@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' @@ -28452,7 +28476,7 @@ snapshots: 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.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@18.3.1) prettier: 3.3.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -28479,18 +28503,18 @@ snapshots: - ts-node - utf-8-validate - '@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)': + '@cprussin/jest-config@1.4.1(@babel/core@7.25.8)(@jest/transform@29.7.0)(@jest/types@29.6.3)(@types/node@22.8.2)(babel-jest@29.7.0(@babel/core@7.25.8))(bufferutil@4.0.8)(esbuild@0.22.0)(eslint@9.13.0(jiti@1.21.0))(ts-node@10.9.2(@types/node@22.8.2)(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.3) + '@cprussin/jest-runner-prettier': 1.0.0(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(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: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(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.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + jest-runner-eslint: 2.2.0(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))) + next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(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.6.3) + 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))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3) typescript: 5.6.3 transitivePeerDependencies: - '@babel/core' @@ -28529,11 +28553,11 @@ snapshots: jest-diff: 29.7.0 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.3)': + '@cprussin/jest-runner-prettier@1.0.0(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(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))) + create-lite-jest-runner: 1.1.0(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(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: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) jest-diff: 29.7.0 prettier: 3.3.3 @@ -28825,6 +28849,11 @@ snapshots: eslint: 9.12.0(jiti@1.21.0) eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.4.0(eslint@9.13.0(jiti@1.21.0))': + dependencies: + eslint: 9.13.0(jiti@1.21.0) + eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.4.0(eslint@9.5.0)': dependencies: eslint: 9.5.0 @@ -28867,6 +28896,8 @@ snapshots: '@eslint/core@0.6.0': {} + '@eslint/core@0.7.0': {} + '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 @@ -28901,6 +28932,8 @@ snapshots: '@eslint/js@9.12.0': {} + '@eslint/js@9.13.0': {} + '@eslint/js@9.5.0': {} '@eslint/js@9.9.0': {} @@ -30910,7 +30943,7 @@ snapshots: - ts-node - utf-8-validate - '@jest/core@29.7.0(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5))': + '@jest/core@29.7.0(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -30924,7 +30957,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -31295,7 +31328,7 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))': + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -31309,7 +31342,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -31330,7 +31363,7 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))': + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 @@ -31344,7 +31377,7 @@ snapshots: exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -31534,7 +31567,7 @@ snapshots: '@jest/transform@27.5.1': dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -31554,7 +31587,7 @@ snapshots: '@jest/transform@29.7.0': dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 @@ -31929,13 +31962,13 @@ snapshots: '@ltd/j-toml@1.38.0': {} - '@lumina-dev/test@0.0.12(eslint@9.12.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0)': + '@lumina-dev/test@0.0.12(eslint@9.13.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0)': dependencies: bs58: 5.0.0 cors: 2.8.5 express: 4.19.2 nanoid: 3.3.7 - react-dev-utils: 12.0.1(eslint@9.12.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0) + react-dev-utils: 12.0.1(eslint@9.13.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0) zod: 3.23.8 transitivePeerDependencies: - eslint @@ -31973,27 +32006,27 @@ snapshots: - '@swc/core' - '@swc/wasm' - '@matterlabs/hardhat-zksync-deploy@0.6.6(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-web3@0.13.4(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)))': + '@matterlabs/hardhat-zksync-deploy@0.6.6(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-web3@0.13.4(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)))': dependencies: - '@matterlabs/hardhat-zksync-solc': 0.4.2(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@matterlabs/hardhat-zksync-solc': 0.4.2(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) chalk: 4.1.2 ethers: 5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3) - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) ts-morph: 19.0.0 zksync-web3: 0.13.4(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)) transitivePeerDependencies: - encoding - supports-color - '@matterlabs/hardhat-zksync-deploy@1.5.0(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-ethers@6.11.2(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)))': + '@matterlabs/hardhat-zksync-deploy@1.5.0(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-ethers@6.11.2(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)))': dependencies: - '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) chai: 4.5.0 chalk: 4.1.2 ethers: 5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3) fs-extra: 11.2.0 glob: 10.4.5 - hardhat: 2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) lodash: 4.17.21 sinon: 18.0.1 sinon-chai: 3.7.0(chai@4.5.0)(sinon@18.0.1) @@ -32003,15 +32036,15 @@ snapshots: - encoding - supports-color - '@matterlabs/hardhat-zksync-deploy@1.5.0(encoding@0.1.13)(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-ethers@6.14.0(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3)))': + '@matterlabs/hardhat-zksync-deploy@1.5.0(encoding@0.1.13)(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-ethers@6.14.0(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3)))': dependencies: - '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) chai: 4.5.0 chalk: 4.1.2 ethers: 6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3) fs-extra: 11.2.0 glob: 10.4.5 - hardhat: 2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) lodash: 4.17.21 sinon: 18.0.1 sinon-chai: 3.7.0(chai@4.5.0)(sinon@18.0.1) @@ -32021,14 +32054,14 @@ snapshots: - encoding - supports-color - '@matterlabs/hardhat-zksync-ethers@1.1.0(bufferutil@4.0.7)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)(zksync-ethers@6.11.2(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)))': + '@matterlabs/hardhat-zksync-ethers@1.1.0(bufferutil@4.0.7)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)(zksync-ethers@6.11.2(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)))': dependencies: - '@matterlabs/hardhat-zksync-deploy': 1.5.0(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-ethers@6.11.2(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))) - '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@matterlabs/hardhat-zksync-deploy': 1.5.0(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-ethers@6.11.2(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))) + '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) chai: 4.5.0 chalk: 4.1.2 ethers: 5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3) - hardhat: 2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) zksync-ethers: 6.11.2(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)) transitivePeerDependencies: - bufferutil @@ -32039,14 +32072,14 @@ snapshots: - typescript - utf-8-validate - '@matterlabs/hardhat-zksync-node@1.1.1(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@matterlabs/hardhat-zksync-node@1.1.1(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: - '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) axios: 1.7.7(debug@4.3.7) chai: 4.5.0 chalk: 4.1.2 fs-extra: 11.2.0 - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) proxyquire: 2.1.3 sinon: 18.0.1 sinon-chai: 3.7.0(chai@4.5.0)(sinon@18.0.1) @@ -32056,30 +32089,30 @@ snapshots: - encoding - supports-color - '@matterlabs/hardhat-zksync-solc@0.3.17(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@matterlabs/hardhat-zksync-solc@0.3.17(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: '@nomiclabs/hardhat-docker': 2.0.2(encoding@0.1.13) chalk: 4.1.2 dockerode: 3.3.5 - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) transitivePeerDependencies: - encoding - supports-color - '@matterlabs/hardhat-zksync-solc@0.4.2(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@matterlabs/hardhat-zksync-solc@0.4.2(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: '@nomiclabs/hardhat-docker': 2.0.2(encoding@0.1.13) chalk: 4.1.2 dockerode: 3.3.5 fs-extra: 11.2.0 - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) proper-lockfile: 4.1.2 semver: 7.6.3 transitivePeerDependencies: - encoding - supports-color - '@matterlabs/hardhat-zksync-solc@1.2.5(encoding@0.1.13)(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@matterlabs/hardhat-zksync-solc@1.2.5(encoding@0.1.13)(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: '@nomiclabs/hardhat-docker': 2.0.2(encoding@0.1.13) chai: 4.5.0 @@ -32087,7 +32120,7 @@ snapshots: debug: 4.3.7(supports-color@8.1.1) dockerode: 4.0.2 fs-extra: 11.2.0 - hardhat: 2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) proper-lockfile: 4.1.2 semver: 7.6.3 sinon: 18.0.1 @@ -32097,7 +32130,7 @@ snapshots: - encoding - supports-color - '@matterlabs/hardhat-zksync-solc@1.2.5(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@matterlabs/hardhat-zksync-solc@1.2.5(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: '@nomiclabs/hardhat-docker': 2.0.2(encoding@0.1.13) chai: 4.5.0 @@ -32105,7 +32138,7 @@ snapshots: debug: 4.3.7(supports-color@8.1.1) dockerode: 4.0.2 fs-extra: 11.2.0 - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) proper-lockfile: 4.1.2 semver: 7.6.3 sinon: 18.0.1 @@ -32115,10 +32148,10 @@ snapshots: - encoding - supports-color - '@matterlabs/hardhat-zksync-upgradable@1.5.2(bufferutil@4.0.7)(encoding@0.1.13)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)': + '@matterlabs/hardhat-zksync-upgradable@1.5.2(bufferutil@4.0.7)(encoding@0.1.13)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)': dependencies: - '@matterlabs/hardhat-zksync-deploy': 1.5.0(encoding@0.1.13)(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-ethers@6.14.0(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3))) - '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@matterlabs/hardhat-zksync-deploy': 1.5.0(encoding@0.1.13)(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-ethers@6.14.0(ethers@6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3))) + '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) '@openzeppelin/contracts-hardhat-zksync-upgradable': '@openzeppelin/contracts@4.9.6' '@openzeppelin/upgrades-core': 1.40.0 chalk: 4.1.2 @@ -32126,7 +32159,7 @@ snapshots: ethereumjs-util: 7.1.5 ethers: 6.13.4(bufferutil@4.0.7)(utf-8-validate@6.0.3) fs-extra: 11.2.0 - hardhat: 2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) proper-lockfile: 4.1.2 semver: 7.6.3 solidity-ast: 0.4.59 @@ -32140,18 +32173,18 @@ snapshots: - typescript - utf-8-validate - '@matterlabs/hardhat-zksync-verify@1.6.0(@nomicfoundation/hardhat-verify@2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@matterlabs/hardhat-zksync-verify@1.6.0(@nomicfoundation/hardhat-verify@2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/address': 5.7.0 - '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) - '@nomicfoundation/hardhat-verify': 2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@matterlabs/hardhat-zksync-solc': 1.2.5(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@nomicfoundation/hardhat-verify': 2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) axios: 1.7.7(debug@4.3.7) cbor: 9.0.2 chai: 4.5.0 chalk: 4.1.2 debug: 4.3.7(supports-color@8.1.1) - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) semver: 7.6.3 sinon: 18.0.1 sinon-chai: 3.7.0(chai@4.5.0)(sinon@18.0.1) @@ -32159,23 +32192,23 @@ snapshots: - encoding - supports-color - '@matterlabs/hardhat-zksync@1.1.0(vgsagjmwxx4la7h7zaeoqnlaa4)': + '@matterlabs/hardhat-zksync@1.1.0(dv3sjdbdk3siwm7eppr4smsrqe)': dependencies: - '@matterlabs/hardhat-zksync-deploy': 0.6.6(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-web3@0.13.4(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))) - '@matterlabs/hardhat-zksync-ethers': 1.1.0(bufferutil@4.0.7)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)(zksync-ethers@6.11.2(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))) - '@matterlabs/hardhat-zksync-node': 1.1.1(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) - '@matterlabs/hardhat-zksync-solc': 0.3.17(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) - '@matterlabs/hardhat-zksync-upgradable': 1.5.2(bufferutil@4.0.7)(encoding@0.1.13)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) - '@matterlabs/hardhat-zksync-verify': 1.6.0(@nomicfoundation/hardhat-verify@2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@matterlabs/hardhat-zksync-deploy': 0.6.6(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))(zksync-web3@0.13.4(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))) + '@matterlabs/hardhat-zksync-ethers': 1.1.0(bufferutil@4.0.7)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)(zksync-ethers@6.11.2(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))) + '@matterlabs/hardhat-zksync-node': 1.1.1(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@matterlabs/hardhat-zksync-solc': 0.3.17(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@matterlabs/hardhat-zksync-upgradable': 1.5.2(bufferutil@4.0.7)(encoding@0.1.13)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + '@matterlabs/hardhat-zksync-verify': 1.6.0(@nomicfoundation/hardhat-verify@2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(encoding@0.1.13)(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) '@matterlabs/zksync-contracts': 0.6.1(@openzeppelin/contracts-upgradeable@4.9.6)(@openzeppelin/contracts@4.9.6) - '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) - '@nomicfoundation/hardhat-verify': 2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@nomicfoundation/hardhat-ethers': 3.0.6(ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@nomicfoundation/hardhat-verify': 2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) '@openzeppelin/contracts': 4.9.6 '@openzeppelin/contracts-upgradeable': 4.9.6 '@openzeppelin/upgrades-core': 1.35.0 chai: 4.5.0 ethers: 6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3) - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) sinon: 18.0.0 sinon-chai: 3.7.0(chai@4.5.0)(sinon@18.0.0) zksync-ethers: 6.11.2(ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3)) @@ -32290,22 +32323,22 @@ snapshots: transitivePeerDependencies: - supports-color - '@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)': + '@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.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))(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: i18next: 22.5.1 qr-code-styling: 1.6.0-rc.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) + 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.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) optionalDependencies: 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) + 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) - '@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)': + '@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.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))(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)(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@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) + '@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.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))(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/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 cross-fetch: 4.0.0(encoding@0.1.13) @@ -32318,7 +32351,7 @@ 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))(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-webview: 11.26.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))(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) @@ -32682,9 +32715,9 @@ snapshots: '@next/swc-win32-x64-msvc@15.0.2': optional: true - '@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)': + '@next/third-parties@14.2.4(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: 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: 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 @@ -32694,6 +32727,12 @@ snapshots: react: 19.0.0-rc-603e6108-20241029 third-party-capital: 1.0.20 + '@next/third-parties@15.0.2(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: 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': dependencies: '@keystonehq/alias-sampling': 0.1.2 @@ -32830,23 +32869,23 @@ snapshots: '@nomicfoundation/ethereumjs-rlp': 5.0.4 ethereum-cryptography: 0.1.3 - '@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@nomicfoundation/hardhat-ethers@3.0.6(ethers@6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: debug: 4.3.7(supports-color@8.1.1) ethers: 6.13.2(bufferutil@4.0.7)(utf-8-validate@6.0.3) - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) lodash.isequal: 4.5.0 transitivePeerDependencies: - supports-color - '@nomicfoundation/hardhat-verify@2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@nomicfoundation/hardhat-verify@2.0.9(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/address': 5.7.0 cbor: 8.1.0 chalk: 2.4.2 debug: 4.3.7(supports-color@8.1.1) - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) lodash.clonedeep: 4.5.0 semver: 6.3.1 table: 6.8.2 @@ -32954,12 +32993,12 @@ snapshots: - encoding - supports-color - '@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: ethers: 5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3) - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) - '@nomiclabs/hardhat-etherscan@3.1.8(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@nomiclabs/hardhat-etherscan@3.1.8(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/address': 5.7.0 @@ -32967,7 +33006,7 @@ snapshots: chalk: 2.4.2 debug: 4.3.6 fs-extra: 7.0.1 - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) lodash: 4.17.21 semver: 6.3.1 table: 6.8.2 @@ -33270,17 +33309,17 @@ snapshots: - debug - encoding - '@openzeppelin/hardhat-upgrades@1.28.0(@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(@nomiclabs/hardhat-etherscan@3.1.8(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': + '@openzeppelin/hardhat-upgrades@1.28.0(@nomiclabs/hardhat-ethers@2.2.3(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(@nomiclabs/hardhat-etherscan@3.1.8(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)))(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3))': dependencies: - '@nomiclabs/hardhat-ethers': 2.2.3(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) - '@nomiclabs/hardhat-etherscan': 3.1.8(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@nomiclabs/hardhat-ethers': 2.2.3(ethers@5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3))(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) + '@nomiclabs/hardhat-etherscan': 3.1.8(hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3)) '@openzeppelin/defender-base-client': 1.54.6(debug@4.3.6)(encoding@0.1.13) '@openzeppelin/platform-deploy-client': 0.8.0(debug@4.3.6)(encoding@0.1.13) '@openzeppelin/upgrades-core': 1.35.0 chalk: 4.1.2 debug: 4.3.6 ethers: 5.7.2(bufferutil@4.0.7)(utf-8-validate@6.0.3) - hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) + hardhat: 2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3) proper-lockfile: 4.1.2 transitivePeerDependencies: - encoding @@ -33460,9 +33499,9 @@ snapshots: '@pedrouid/environment@1.0.1': {} - '@phosphor-icons/react@2.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@phosphor-icons/react@2.1.7(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': dependencies: - react: 18.3.1 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) '@pkgjs/parseargs@0.11.0': @@ -33833,16 +33872,16 @@ snapshots: dependencies: '@babel/runtime': 7.25.0 - '@react-aria/accordion@3.0.0-alpha.35(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@react-aria/accordion@3.0.0-alpha.34(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/button': 3.10.1(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/tree': 3.8.5(react@18.3.1) - '@react-types/accordion': 3.0.0-alpha.24(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) + '@react-types/accordion': 3.0.0-alpha.24(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) '@react-aria/breadcrumbs@3.5.16(react@19.0.0-rc-603e6108-20241029)': @@ -33855,26 +33894,26 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/breadcrumbs@3.5.18(react@18.3.1)': + '@react-aria/breadcrumbs@3.5.18(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/link': 3.7.6(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-types/breadcrumbs': 3.7.8(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/link': 3.7.6(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-types/breadcrumbs': 3.7.8(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 - '@react-aria/button@3.10.1(react@18.3.1)': + '@react-aria/button@3.10.1(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/toggle': 3.7.8(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@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) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/toggle': 3.7.8(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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-aria/button@3.9.8(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -33902,21 +33941,36 @@ snapshots: 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)': + '@react-aria/calendar@3.5.13(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: '@internationalized/date': 3.5.6 - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) '@react-aria/live-announcer': 3.4.0 - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/calendar': 3.5.5(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/calendar': 3.4.10(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/calendar': 3.5.5(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/calendar@3.5.13(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.6 + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/calendar': 3.5.5(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 + react-dom: 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)': dependencies: '@react-aria/form': 3.0.8(react@19.0.0-rc-603e6108-20241029) @@ -33932,20 +33986,20 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/checkbox@3.14.8(react@18.3.1)': + '@react-aria/checkbox@3.14.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/form': 3.0.10(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/label': 3.7.12(react@18.3.1) - '@react-aria/toggle': 3.10.9(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/checkbox': 3.6.9(react@18.3.1) - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/toggle': 3.7.8(react@18.3.1) - '@react-types/checkbox': 3.8.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/toggle': 3.10.9(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/checkbox': 3.6.9(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) + '@react-types/checkbox': 3.8.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.13 + react: 19.0.0-rc-603e6108-20241029 '@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: @@ -33957,15 +34011,15 @@ snapshots: 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)': + '@react-aria/collections@3.0.0-alpha.5(react-dom@18.3.1(react@18.3.1))(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) - '@swc/helpers': 0.5.11 - 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.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.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) '@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: @@ -33985,24 +34039,42 @@ snapshots: 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: - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/numberfield': 3.11.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/slider': 3.7.13(react@18.3.1) - '@react-aria/spinbutton': 3.6.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/textfield': 3.14.10(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-aria/visually-hidden': 3.8.17(react@18.3.1) - '@react-stately/color': 3.8.0(react@18.3.1) - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-types/color': 3.0.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/color@3.0.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + dependencies: + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/numberfield': 3.11.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/slider': 3.7.13(react@19.0.0-rc-603e6108-20241029) + '@react-aria/spinbutton': 3.6.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) + '@react-stately/color': 3.8.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-types/color': 3.0.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.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/color@3.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: + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/numberfield': 3.11.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/slider': 3.7.13(react@19.0.0-rc-603e6108-20241029) + '@react-aria/spinbutton': 3.6.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/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) + '@react-stately/color': 3.8.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-types/color': 3.0.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.13 + 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.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@19.0.0-rc-603e6108-20241029) @@ -34023,26 +34095,46 @@ snapshots: 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)': + '@react-aria/combobox@3.10.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/listbox': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/listbox': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) '@react-aria/live-announcer': 3.4.0 - '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/textfield': 3.14.10(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/combobox': 3.10.0(react@18.3.1) - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/combobox': 3.13.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/combobox': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/combobox': 3.13.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.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/combobox@3.10.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/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/listbox': 3.13.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/live-announcer': 3.4.0 + '@react-aria/menu': 3.15.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/overlays': 3.23.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/selection': 3.20.1(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.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/combobox': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/combobox': 3.13.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.13 + 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.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 @@ -34066,29 +34158,52 @@ snapshots: 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)': + '@react-aria/datepicker@3.11.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: '@internationalized/date': 3.5.6 '@internationalized/number': 3.5.4 '@internationalized/string': 3.2.4 - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/form': 3.0.10(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/label': 3.7.12(react@18.3.1) - '@react-aria/spinbutton': 3.6.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/datepicker': 3.10.3(react@18.3.1) - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/calendar': 3.4.10(react@18.3.1) - '@react-types/datepicker': 3.8.3(react@18.3.1) - '@react-types/dialog': 3.5.13(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/spinbutton': 3.6.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/datepicker': 3.10.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/datepicker': 3.8.3(react@19.0.0-rc-603e6108-20241029) + '@react-types/dialog': 3.5.13(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/datepicker@3.11.4(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.6 + '@internationalized/number': 3.5.4 + '@internationalized/string': 3.2.4 + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/spinbutton': 3.6.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/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/datepicker': 3.10.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/datepicker': 3.8.3(react@19.0.0-rc-603e6108-20241029) + '@react-types/dialog': 3.5.13(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + 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.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@19.0.0-rc-603e6108-20241029) @@ -34100,30 +34215,41 @@ snapshots: 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)': + '@react-aria/dialog@3.5.19(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-types/dialog': 3.5.13(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-types/dialog': 3.5.13(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/disclosure@3.0.0-alpha.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': - dependencies: - '@react-aria/button': 3.10.1(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/ssr': 3.9.6(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/disclosure': 3.0.0-alpha.0(react@18.3.1) - '@react-stately/toggle': 3.7.8(react@18.3.1) - '@react-stately/tree': 3.8.5(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/dialog@3.5.19(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.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/overlays': 3.23.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/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-types/dialog': 3.5.13(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 + react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + + '@react-aria/disclosure@3.0.0-alpha.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + dependencies: + '@react-aria/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@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-stately/disclosure': 3.0.0-alpha.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tree': 3.8.5(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.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 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)': @@ -34141,21 +34267,36 @@ snapshots: 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)': + '@react-aria/dnd@3.7.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: '@internationalized/string': 3.2.4 - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) '@react-aria/live-announcer': 3.4.0 - '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/dnd': 3.4.3(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/dnd': 3.4.3(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.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/dnd@3.7.4(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.4 + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/overlays': 3.23.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/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/dnd': 3.4.3(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.13 + react: 19.0.0-rc-603e6108-20241029 + react-dom: 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)': dependencies: '@react-aria/interactions': 3.22.2(react@19.0.0-rc-603e6108-20241029) @@ -34165,15 +34306,6 @@ snapshots: clsx: 2.1.1 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/focus@3.18.4(react@18.3.1)': - dependencies: - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - 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) @@ -34183,14 +34315,14 @@ snapshots: clsx: 2.1.1 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/form@3.0.10(react@18.3.1)': + '@react-aria/form@3.0.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@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-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-aria/form@3.0.8(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -34219,24 +34351,42 @@ snapshots: 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)': + '@react-aria/grid@3.10.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) '@react-aria/live-announcer': 3.4.0 - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/grid': 3.9.3(react@18.3.1) - '@react-stately/selection': 3.17.0(react@18.3.1) - '@react-types/checkbox': 3.8.4(react@18.3.1) - '@react-types/grid': 3.2.9(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/grid': 3.9.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/grid@3.10.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.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/selection': 3.20.1(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.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/grid': 3.9.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + 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.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) @@ -34253,22 +34403,38 @@ snapshots: 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: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/grid': 3.10.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/list': 3.11.0(react@18.3.1) - '@react-stately/tree': 3.8.5(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/gridlist@3.9.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + dependencies: + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/grid': 3.10.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/gridlist@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.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/grid': 3.10.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/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(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.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 + react-dom: 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)': dependencies: '@internationalized/date': 3.5.5 @@ -34281,18 +34447,6 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/i18n@3.12.3(react@18.3.1)': - dependencies: - '@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@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 - '@react-aria/i18n@3.12.3(react@19.0.0-rc-603e6108-20241029)': dependencies: '@internationalized/date': 3.5.6 @@ -34321,14 +34475,6 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/interactions@3.22.4(react@18.3.1)': - 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) - '@swc/helpers': 0.5.11 - react: 18.3.1 - '@react-aria/interactions@3.22.4(react@19.0.0-rc-603e6108-20241029)': dependencies: '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) @@ -34344,12 +34490,12 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/label@3.7.12(react@18.3.1)': + '@react-aria/label@3.7.12(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) - '@swc/helpers': 0.5.11 - 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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-aria/landmark@3.0.0-beta.16(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -34369,15 +34515,15 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/link@3.7.6(react@18.3.1)': + '@react-aria/link@3.7.6(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-types/link': 3.5.8(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@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) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-types/link': 3.5.8(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + 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)': dependencies: @@ -34393,27 +34539,41 @@ snapshots: 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)': + '@react-aria/listbox@3.13.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/label': 3.7.12(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/list': 3.11.0(react@18.3.1) - '@react-types/listbox': 3.5.2(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/listbox': 3.5.2(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/listbox@3.13.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/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(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.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/listbox': 3.5.2(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 + react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + '@react-aria/live-announcer@3.3.4': dependencies: '@swc/helpers': 0.5.11 '@react-aria/live-announcer@3.4.0': dependencies: - '@swc/helpers': 0.5.11 + '@swc/helpers': 0.5.13 '@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: @@ -34433,24 +34593,42 @@ snapshots: 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: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/menu': 3.8.3(react@18.3.1) - '@react-stately/tree': 3.8.5(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/menu': 3.9.12(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/menu@3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + dependencies: + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/menu': 3.8.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/menu': 3.9.12(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/menu@3.15.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.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/overlays': 3.23.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/selection': 3.20.1(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.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/menu': 3.8.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/menu': 3.9.12(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 + react-dom: 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)': dependencies: '@react-aria/progress': 3.4.16(react@19.0.0-rc-603e6108-20241029) @@ -34459,13 +34637,13 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/meter@3.4.17(react@18.3.1)': + '@react-aria/meter@3.4.17(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/progress': 3.4.17(react@18.3.1) - '@react-types/meter': 3.4.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/progress': 3.4.17(react@19.0.0-rc-603e6108-20241029) + '@react-types/meter': 3.4.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.13 + 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)': dependencies: @@ -34483,22 +34661,38 @@ snapshots: 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: - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/spinbutton': 3.6.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/textfield': 3.14.10(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/numberfield': 3.9.7(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/numberfield': 3.8.6(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/numberfield@3.11.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + dependencies: + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/spinbutton': 3.6.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/numberfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/numberfield': 3.8.6(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/numberfield@3.11.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.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/spinbutton': 3.6.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/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/numberfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/numberfield': 3.8.6(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + 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.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) @@ -34515,22 +34709,38 @@ snapshots: 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: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/ssr': 3.9.6(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-aria/visually-hidden': 3.8.17(react@18.3.1) - '@react-stately/overlays': 3.6.11(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/overlays': 3.8.10(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/overlays@3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + dependencies: + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@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-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) + '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/overlays@3.23.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/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@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-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) + '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 + react-dom: 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)': dependencies: '@react-aria/i18n': 3.12.2(react@19.0.0-rc-603e6108-20241029) @@ -34541,15 +34751,15 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/progress@3.4.17(react@18.3.1)': + '@react-aria/progress@3.4.17(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/label': 3.7.12(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-types/progress': 3.5.7(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-types/progress': 3.5.7(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-aria/radio@3.10.7(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -34565,31 +34775,31 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/radio@3.10.9(react@18.3.1)': + '@react-aria/radio@3.10.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/form': 3.0.10(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/label': 3.7.12(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/radio': 3.10.8(react@18.3.1) - '@react-types/radio': 3.8.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/radio': 3.10.8(react@19.0.0-rc-603e6108-20241029) + '@react-types/radio': 3.8.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.13 + react: 19.0.0-rc-603e6108-20241029 - '@react-aria/searchfield@3.7.10(react@18.3.1)': + '@react-aria/searchfield@3.7.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/textfield': 3.14.10(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/searchfield': 3.5.7(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/searchfield': 3.5.9(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/searchfield': 3.5.7(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/searchfield': 3.5.9(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-aria/searchfield@3.7.8(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -34603,25 +34813,44 @@ snapshots: '@swc/helpers': 0.5.11 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: - '@react-aria/form': 3.0.10(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/label': 3.7.12(react@18.3.1) - '@react-aria/listbox': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-aria/visually-hidden': 3.8.17(react@18.3.1) - '@react-stately/select': 3.6.8(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/select': 3.9.7(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/select@3.14.11(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + dependencies: + '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/listbox': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) + '@react-stately/select': 3.6.8(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/select': 3.9.7(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/select@3.14.11(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.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/listbox': 3.13.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/menu': 3.15.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/selection': 3.20.1(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.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) + '@react-stately/select': 3.6.8(react@19.0.0-rc-603e6108-20241029) + '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/select': 3.9.7(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 + react-dom: 19.0.0-rc-603e6108-20241029(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)': dependencies: '@react-aria/form': 3.0.8(react@19.0.0-rc-603e6108-20241029) @@ -34653,18 +34882,30 @@ snapshots: 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)': + '@react-aria/selection@3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/selection': 3.17.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@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-stately/selection': 3.17.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.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/selection@3.20.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-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@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-stately/selection': 3.17.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.13 + react: 19.0.0-rc-603e6108-20241029 + react-dom: 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)': dependencies: '@react-aria/utils': 3.25.2(react@19.0.0-rc-603e6108-20241029) @@ -34672,12 +34913,12 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/separator@3.4.3(react@18.3.1)': + '@react-aria/separator@3.4.3(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) - '@swc/helpers': 0.5.11 - 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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-aria/slider@3.7.11(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -34692,18 +34933,18 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/slider@3.7.13(react@18.3.1)': + '@react-aria/slider@3.7.13(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/label': 3.7.12(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/slider': 3.5.8(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/slider': 3.7.6(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/slider': 3.5.8(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/slider': 3.7.6(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + 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)': dependencies: @@ -34716,26 +34957,32 @@ snapshots: 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)': + '@react-aria/spinbutton@3.6.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.3.1) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) '@react-aria/live-announcer': 3.4.0 - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/utils': 3.25.3(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.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/ssr@3.9.5(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/spinbutton@3.6.9(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@swc/helpers': 0.5.11 + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/utils': 3.25.3(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.13 react: 19.0.0-rc-603e6108-20241029 + react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr@3.9.6(react@18.3.1)': + '@react-aria/ssr@3.9.5(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/ssr@3.9.6(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -34751,14 +34998,14 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/switch@3.6.9(react@18.3.1)': + '@react-aria/switch@3.6.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/toggle': 3.10.9(react@18.3.1) - '@react-stately/toggle': 3.7.8(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/switch': 3.5.6(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/toggle': 3.10.9(react@19.0.0-rc-603e6108-20241029) + '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/switch': 3.5.6(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + 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)': dependencies: @@ -34780,26 +35027,46 @@ snapshots: 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)': + '@react-aria/table@3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/grid': 3.10.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/grid': 3.10.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) '@react-aria/live-announcer': 3.4.0 - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-aria/visually-hidden': 3.8.17(react@18.3.1) - '@react-stately/collections': 3.11.0(react@18.3.1) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) '@react-stately/flags': 3.0.4 - '@react-stately/table': 3.12.3(react@18.3.1) - '@react-types/checkbox': 3.8.4(react@18.3.1) - '@react-types/grid': 3.2.9(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/table': 3.10.2(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/table@3.15.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.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/grid': 3.10.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/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/flags': 3.0.4 + '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + 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.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@19.0.0-rc-603e6108-20241029) @@ -34813,19 +35080,32 @@ snapshots: 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)': + '@react-aria/tabs@3.9.7(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/tabs': 3.6.10(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/tabs': 3.3.10(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tabs': 3.6.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/tabs': 3.3.10(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + '@react-aria/tabs@3.9.7(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.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(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.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tabs': 3.6.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/tabs': 3.3.10(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + 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.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) @@ -34841,33 +35121,48 @@ snapshots: 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: - '@react-aria/gridlist': 3.9.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/label': 3.7.12(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/list': 3.11.0(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/tag@3.4.7(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + dependencies: + '@react-aria/gridlist': 3.9.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/list': 3.11.0(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.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/textfield@3.14.10(react@18.3.1)': + '@react-aria/tag@3.4.7(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.4(react@18.3.1) - '@react-aria/form': 3.0.10(react@18.3.1) - '@react-aria/label': 3.7.12(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/textfield': 3.9.7(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/gridlist': 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/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(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.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/list': 3.11.0(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.13 + react: 19.0.0-rc-603e6108-20241029 + react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + + '@react-aria/textfield@3.14.10(react@19.0.0-rc-603e6108-20241029)': + dependencies: + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.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) + '@react-types/textfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-aria/textfield@3.14.8(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -34905,25 +35200,16 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/toggle@3.10.9(react@18.3.1)': + '@react-aria/toggle@3.10.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/toggle': 3.7.8(react@18.3.1) - '@react-types/checkbox': 3.8.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 - - '@react-aria/toolbar@3.0.0-beta.10(react@18.3.1)': - dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@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) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) + '@react-types/checkbox': 3.8.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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-aria/toolbar@3.0.0-beta.8(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -34934,6 +35220,15 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 + '@react-aria/toolbar@3.0.0-beta.9(react@19.0.0-rc-603e6108-20241029)': + dependencies: + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(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.13 + react: 19.0.0-rc-603e6108-20241029 + '@react-aria/tooltip@3.7.7(react@19.0.0-rc-603e6108-20241029)': dependencies: '@react-aria/focus': 3.18.2(react@19.0.0-rc-603e6108-20241029) @@ -34945,16 +35240,16 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/tooltip@3.7.9(react@18.3.1)': + '@react-aria/tooltip@3.7.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/tooltip': 3.4.13(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/tooltip': 3.4.12(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@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) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tooltip': 3.4.13(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/tooltip': 3.4.12(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + 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)': dependencies: @@ -34969,17 +35264,17 @@ snapshots: 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)': + '@react-aria/tree@3.0.0-beta.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/gridlist': 3.9.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/tree': 3.8.5(react@18.3.1) - '@react-types/button': 3.10.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/gridlist': 3.9.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tree': 3.8.5(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.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) '@react-aria/utils@3.25.2(react@19.0.0-rc-603e6108-20241029)': @@ -34991,15 +35286,6 @@ snapshots: clsx: 2.1.1 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/utils@3.25.3(react@18.3.1)': - dependencies: - '@react-aria/ssr': 3.9.6(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - clsx: 2.1.1 - react: 18.3.1 - '@react-aria/utils@3.25.3(react@19.0.0-rc-603e6108-20241029)': dependencies: '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) @@ -35020,15 +35306,15 @@ snapshots: 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)': + '@react-aria/virtualizer@4.0.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-stately/virtualizer': 4.1.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@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-stately/virtualizer': 4.1.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.13 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) '@react-aria/visually-hidden@3.8.15(react@19.0.0-rc-603e6108-20241029)': @@ -35039,13 +35325,13 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/visually-hidden@3.8.17(react@18.3.1)': + '@react-aria/visually-hidden@3.8.17(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-hookz/deep-equal@1.0.4': {} @@ -35061,12 +35347,6 @@ snapshots: 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))(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))(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@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))': dependencies: merge-options: 3.0.4 @@ -35235,13 +35515,6 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))': - dependencies: - '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7)) - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - '@react-native/babel-plugin-codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.25.8))': dependencies: '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.25.8)) @@ -35298,55 +35571,6 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/babel-preset@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))': - dependencies: - '@babel/core': 7.24.7 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.7) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.7) - '@babel/plugin-proposal-export-default-from': 7.25.8(@babel/core@7.24.7) - '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.7) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.7) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.7) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.7) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.7) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.7) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-syntax-export-default-from': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-transform-arrow-functions': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-async-to-generator': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-block-scoping': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-classes': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-computed-properties': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-destructuring': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-flow-strip-types': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-function-name': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-literals': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-named-capturing-groups-regex': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-parameters': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-private-methods': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-private-property-in-object': 7.25.8(@babel/core@7.24.7) - '@babel/plugin-transform-react-display-name': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-shorthand-properties': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-spread': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-sticky-regex': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.24.7) - '@babel/plugin-transform-unicode-regex': 7.25.7(@babel/core@7.24.7) - '@babel/template': 7.25.7 - '@react-native/babel-plugin-codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7)) - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.7) - react-refresh: 0.14.2 - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - '@react-native/babel-preset@0.74.84(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))': dependencies: '@babel/core': 7.25.8 @@ -35409,19 +35633,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@react-native/codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7))': - dependencies: - '@babel/parser': 7.25.8 - '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - glob: 7.2.3 - hermes-parser: 0.19.1 - invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.7)) - mkdirp: 0.5.6 - nullthrows: 1.1.1 - transitivePeerDependencies: - - supports-color - '@react-native/codegen@0.74.84(@babel/preset-env@7.24.7(@babel/core@7.25.8))': dependencies: '@babel/parser': 7.25.8 @@ -35457,28 +35668,6 @@ snapshots: - supports-color - utf-8-validate - '@react-native/community-cli-plugin@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': - dependencies: - '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@react-native-community/cli-tools': 13.6.8(encoding@0.1.13) - '@react-native/dev-middleware': 0.74.84(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@react-native/metro-babel-transformer': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7)) - chalk: 4.1.2 - execa: 5.1.1 - metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) - metro-config: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) - metro-core: 0.80.12 - node-fetch: 2.7.0(encoding@0.1.13) - querystring: 0.2.1 - readline: 1.3.0 - transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@react-native/community-cli-plugin@0.74.84(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@react-native-community/cli-server-api': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -35538,16 +35727,6 @@ snapshots: - '@babel/preset-env' - supports-color - '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))': - dependencies: - '@babel/core': 7.24.7 - '@react-native/babel-preset': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7)) - hermes-parser: 0.19.1 - nullthrows: 1.1.1 - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - '@react-native/metro-babel-transformer@0.74.84(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))': dependencies: '@babel/core': 7.25.8 @@ -35578,15 +35757,6 @@ snapshots: optionalDependencies: '@types/react': types-react@19.0.0-rc.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: 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': types-react@19.0.0-rc.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 @@ -35605,14 +35775,14 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/calendar@3.5.5(react@18.3.1)': + '@react-stately/calendar@3.5.5(react@19.0.0-rc-603e6108-20241029)': dependencies: '@internationalized/date': 3.5.6 - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/calendar': 3.4.10(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/checkbox@3.6.8(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35623,14 +35793,14 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/checkbox@3.6.9(react@18.3.1)': + '@react-stately/checkbox@3.6.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/checkbox': 3.8.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/checkbox': 3.8.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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/collections@3.10.9(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35638,11 +35808,11 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/collections@3.11.0(react@18.3.1)': + '@react-stately/collections@3.11.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/color@3.7.2(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35658,32 +35828,32 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/color@3.8.0(react@18.3.1)': + '@react-stately/color@3.8.0(react@19.0.0-rc-603e6108-20241029)': dependencies: '@internationalized/number': 3.5.4 '@internationalized/string': 3.2.4 - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/numberfield': 3.9.7(react@18.3.1) - '@react-stately/slider': 3.5.8(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/color': 3.0.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/numberfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) + '@react-stately/slider': 3.5.8(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/color': 3.0.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.13 + react: 19.0.0-rc-603e6108-20241029 - '@react-stately/combobox@3.10.0(react@18.3.1)': + '@react-stately/combobox@3.10.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/list': 3.11.0(react@18.3.1) - '@react-stately/overlays': 3.6.11(react@18.3.1) - '@react-stately/select': 3.6.8(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/combobox': 3.13.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) + '@react-stately/select': 3.6.8(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/combobox': 3.13.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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/combobox@3.9.2(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35704,11 +35874,11 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/data@3.11.7(react@18.3.1)': + '@react-stately/data@3.11.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/datepicker@3.10.2(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35722,24 +35892,24 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/datepicker@3.10.3(react@18.3.1)': + '@react-stately/datepicker@3.10.3(react@19.0.0-rc-603e6108-20241029)': dependencies: '@internationalized/date': 3.5.6 '@internationalized/string': 3.2.4 - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/overlays': 3.6.11(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/datepicker': 3.8.3(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/datepicker': 3.8.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.13 + react: 19.0.0-rc-603e6108-20241029 - '@react-stately/disclosure@3.0.0-alpha.0(react@18.3.1)': + '@react-stately/disclosure@3.0.0-alpha.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/dnd@3.4.2(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35748,12 +35918,12 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/dnd@3.4.3(react@18.3.1)': + '@react-stately/dnd@3.4.3(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/selection': 3.17.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/selection': 3.17.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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/flags@3.0.3': dependencies: @@ -35761,7 +35931,7 @@ snapshots: '@react-stately/flags@3.0.4': dependencies: - '@swc/helpers': 0.5.11 + '@swc/helpers': 0.5.13 '@react-stately/form@3.0.5(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35769,11 +35939,11 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/form@3.0.6(react@18.3.1)': + '@react-stately/form@3.0.6(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/grid@3.9.2(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35784,14 +35954,14 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/grid@3.9.3(react@18.3.1)': + '@react-stately/grid@3.9.3(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/selection': 3.17.0(react@18.3.1) - '@react-types/grid': 3.2.9(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/layout@4.0.2(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35804,16 +35974,16 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/layout@4.0.3(react@18.3.1)': + '@react-stately/layout@4.0.3(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/table': 3.12.3(react@18.3.1) - '@react-stately/virtualizer': 4.1.0(react@18.3.1) - '@react-types/grid': 3.2.9(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/table': 3.10.2(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/virtualizer': 4.1.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/list@3.10.8(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35824,14 +35994,14 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/list@3.11.0(react@18.3.1)': + '@react-stately/list@3.11.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/selection': 3.17.0(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/selection': 3.17.0(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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/menu@3.8.2(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35841,13 +36011,13 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/menu@3.8.3(react@18.3.1)': + '@react-stately/menu@3.8.3(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/overlays': 3.6.11(react@18.3.1) - '@react-types/menu': 3.9.12(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) + '@react-types/menu': 3.9.12(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/numberfield@3.9.6(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35858,14 +36028,14 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/numberfield@3.9.7(react@18.3.1)': + '@react-stately/numberfield@3.9.7(react@19.0.0-rc-603e6108-20241029)': dependencies: '@internationalized/number': 3.5.4 - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/numberfield': 3.8.6(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/numberfield': 3.8.6(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/overlays@3.6.10(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35874,12 +36044,12 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/overlays@3.6.11(react@18.3.1)': + '@react-stately/overlays@3.6.11(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/overlays': 3.8.10(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/radio@3.10.7(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35890,14 +36060,14 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/radio@3.10.8(react@18.3.1)': + '@react-stately/radio@3.10.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/radio': 3.8.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/radio': 3.8.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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/searchfield@3.5.6(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35906,12 +36076,12 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/searchfield@3.5.7(react@18.3.1)': + '@react-stately/searchfield@3.5.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/searchfield': 3.5.9(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/searchfield': 3.5.9(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/select@3.6.7(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35923,15 +36093,15 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/select@3.6.8(react@18.3.1)': + '@react-stately/select@3.6.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/list': 3.11.0(react@18.3.1) - '@react-stately/overlays': 3.6.11(react@18.3.1) - '@react-types/select': 3.9.7(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) + '@react-types/select': 3.9.7(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/selection@3.16.2(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35941,13 +36111,13 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/selection@3.17.0(react@18.3.1)': + '@react-stately/selection@3.17.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/collections': 3.11.0(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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/slider@3.5.7(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35957,13 +36127,13 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/slider@3.5.8(react@18.3.1)': + '@react-stately/slider@3.5.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/slider': 3.7.6(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@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) + '@react-types/slider': 3.7.6(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/table@3.12.2(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -35978,26 +36148,26 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/table@3.12.3(react@18.3.1)': + '@react-stately/table@3.12.3(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@18.3.1) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) '@react-stately/flags': 3.0.4 - '@react-stately/grid': 3.9.3(react@18.3.1) - '@react-stately/selection': 3.17.0(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/grid': 3.2.9(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/table': 3.10.2(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/grid': 3.9.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 - '@react-stately/tabs@3.6.10(react@18.3.1)': + '@react-stately/tabs@3.6.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/list': 3.11.0(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/tabs': 3.3.10(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/tabs': 3.3.10(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/tabs@3.6.9(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36020,12 +36190,12 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/toggle@3.7.8(react@18.3.1)': + '@react-stately/toggle@3.7.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/checkbox': 3.8.4(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/tooltip@3.4.12(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36034,12 +36204,12 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/tooltip@3.4.13(react@18.3.1)': + '@react-stately/tooltip@3.4.13(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/overlays': 3.6.11(react@18.3.1) - '@react-types/tooltip': 3.4.12(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) + '@react-types/tooltip': 3.4.12(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/tree@3.8.4(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36050,25 +36220,20 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/tree@3.8.5(react@18.3.1)': + '@react-stately/tree@3.8.5(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/selection': 3.17.0(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@swc/helpers': 0.5.11 - react: 18.3.1 + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/selection': 3.17.0(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.13 + react: 19.0.0-rc-603e6108-20241029 '@react-stately/utils@3.10.3(react@19.0.0-rc-603e6108-20241029)': dependencies: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@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@19.0.0-rc-603e6108-20241029)': dependencies: '@swc/helpers': 0.5.11 @@ -36081,17 +36246,17 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/virtualizer@4.1.0(react@18.3.1)': + '@react-stately/virtualizer@4.1.0(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) - '@swc/helpers': 0.5.11 - 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.13 + react: 19.0.0-rc-603e6108-20241029 - '@react-types/accordion@3.0.0-alpha.24(react@18.3.1)': + '@react-types/accordion@3.0.0-alpha.24(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/breadcrumbs@3.7.7(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36099,16 +36264,11 @@ snapshots: '@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)': + '@react-types/breadcrumbs@3.7.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/link': 3.5.8(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - react: 18.3.1 - - '@react-types/button@3.10.0(react@18.3.1)': - dependencies: - '@react-types/shared': 3.25.0(react@18.3.1) - react: 18.3.1 + '@react-types/link': 3.5.8(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 '@react-types/button@3.10.0(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36120,11 +36280,11 @@ snapshots: '@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)': + '@react-types/calendar@3.4.10(react@19.0.0-rc-603e6108-20241029)': dependencies: '@internationalized/date': 3.5.6 - '@react-types/shared': 3.25.0(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/calendar@3.4.9(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36137,16 +36297,16 @@ snapshots: '@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)': + '@react-types/checkbox@3.8.4(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/color@3.0.0(react@18.3.1)': + '@react-types/color@3.0.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/slider': 3.7.6(react@18.3.1) - react: 18.3.1 + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/slider': 3.7.6(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 '@react-types/color@3.0.0-rc.1(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36159,10 +36319,10 @@ snapshots: '@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)': + '@react-types/combobox@3.13.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/datepicker@3.8.2(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36172,13 +36332,13 @@ snapshots: '@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)': + '@react-types/datepicker@3.8.3(react@19.0.0-rc-603e6108-20241029)': dependencies: '@internationalized/date': 3.5.6 - '@react-types/calendar': 3.4.10(react@18.3.1) - '@react-types/overlays': 3.8.10(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - react: 18.3.1 + '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 '@react-types/dialog@3.5.12(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36186,51 +36346,51 @@ snapshots: '@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)': + '@react-types/dialog@3.5.13(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/overlays': 3.8.10(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - react: 18.3.1 + '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 '@react-types/form@3.7.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/form@3.7.7(react@18.3.1)': + '@react-types/form@3.7.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/grid@3.2.8(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/grid@3.2.9(react@18.3.1)': + '@react-types/grid@3.2.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/link@3.5.7(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/link@3.5.8(react@18.3.1)': + '@react-types/link@3.5.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/listbox@3.5.1(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/listbox@3.5.2(react@18.3.1)': + '@react-types/listbox@3.5.2(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/menu@3.9.11(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36238,36 +36398,36 @@ snapshots: '@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)': + '@react-types/menu@3.9.12(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/overlays': 3.8.10(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - react: 18.3.1 + '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 '@react-types/meter@3.4.3(react@19.0.0-rc-603e6108-20241029)': dependencies: '@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)': + '@react-types/meter@3.4.4(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/progress': 3.5.7(react@18.3.1) - react: 18.3.1 + '@react-types/progress': 3.5.7(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 '@react-types/numberfield@3.8.5(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/numberfield@3.8.6(react@18.3.1)': + '@react-types/numberfield@3.8.6(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/overlays@3.8.10(react@18.3.1)': + '@react-types/overlays@3.8.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/overlays@3.8.9(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36279,20 +36439,20 @@ snapshots: '@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)': + '@react-types/progress@3.5.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/radio@3.8.3(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/radio@3.8.4(react@18.3.1)': + '@react-types/radio@3.8.4(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/searchfield@3.5.8(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36300,30 +36460,26 @@ snapshots: '@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)': + '@react-types/searchfield@3.5.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/textfield': 3.9.7(react@18.3.1) - react: 18.3.1 + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/textfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 '@react-types/select@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/select@3.9.7(react@18.3.1)': + '@react-types/select@3.9.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/shared@3.24.1(react@19.0.0-rc-603e6108-20241029)': dependencies: react: 19.0.0-rc-603e6108-20241029 - '@react-types/shared@3.25.0(react@18.3.1)': - dependencies: - react: 18.3.1 - '@react-types/shared@3.25.0(react@19.0.0-rc-603e6108-20241029)': dependencies: react: 19.0.0-rc-603e6108-20241029 @@ -36333,20 +36489,20 @@ snapshots: '@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)': + '@react-types/slider@3.7.6(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/switch@3.5.5(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/switch@3.5.6(react@18.3.1)': + '@react-types/switch@3.5.6(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/table@3.10.1(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36354,16 +36510,16 @@ snapshots: '@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)': + '@react-types/table@3.10.2(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/grid': 3.2.9(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - react: 18.3.1 + '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 - '@react-types/tabs@3.3.10(react@18.3.1)': + '@react-types/tabs@3.3.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/tabs@3.3.9(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36375,10 +36531,10 @@ snapshots: '@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)': + '@react-types/textfield@3.9.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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/tooltip@3.4.11(react@19.0.0-rc-603e6108-20241029)': dependencies: @@ -36386,15 +36542,15 @@ snapshots: '@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)': + '@react-types/tooltip@3.4.12(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/overlays': 3.8.10(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - react: 18.3.1 + '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 '@redux-saga/core@1.3.0': dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.25.7 '@redux-saga/deferred': 1.2.1 '@redux-saga/delay-p': 1.2.1 '@redux-saga/is': 1.1.3 @@ -37398,23 +37554,6 @@ 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-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)': - 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/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@toruslabs/solana-embed': 0.3.4(@babel/runtime@7.25.0)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - assert: 2.1.0 - crypto-browserify: 3.12.0 - process: 0.11.10 - stream-browserify: 3.0.0 - transitivePeerDependencies: - - '@babel/runtime' - - '@sentry/types' - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@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)': 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)) @@ -37493,7 +37632,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))(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/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)) @@ -37521,7 +37660,7 @@ snapshots: '@solana/wallet-adapter-nightly': 0.1.16(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-nufi': 0.1.17(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-onto': 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-particle': 0.1.12(@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-adapter-particle': 0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0) '@solana/wallet-adapter-phantom': 0.9.24(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-safepal': 0.5.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-saifu': 0.1.15(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) @@ -37535,10 +37674,10 @@ snapshots: '@solana/wallet-adapter-strike': 0.1.13(@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-tokenary': 0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-tokenpocket': 0.4.19(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@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-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.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-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: @@ -37567,7 +37706,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))(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/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.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)) @@ -37595,7 +37734,7 @@ snapshots: '@solana/wallet-adapter-nightly': 0.1.16(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-nufi': 0.1.17(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-onto': 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-particle': 0.1.12(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0) + '@solana/wallet-adapter-particle': 0.1.12(@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-adapter-phantom': 0.9.24(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-safepal': 0.5.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-saifu': 0.1.15(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) @@ -37612,7 +37751,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))(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-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: @@ -38087,6 +38226,27 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + '@storybook/blocks@8.3.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))': + dependencies: + '@storybook/csf': 0.1.11 + '@storybook/global': 5.0.0 + '@storybook/icons': 1.2.12(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@types/lodash': 4.14.191 + color-convert: 2.0.1 + dequal: 2.0.3 + lodash: 4.17.21 + markdown-to-jsx: 7.5.0(react@19.0.0-rc-603e6108-20241029) + memoizerific: 1.11.3 + polished: 4.3.1 + react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + storybook: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4) + telejson: 7.2.0 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + optionalDependencies: + react: 19.0.0-rc-603e6108-20241029 + react-dom: 18.3.1(react@18.3.1) + '@storybook/builder-webpack5@8.3.5(esbuild@0.22.0)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3)': dependencies: '@storybook/core-webpack': 8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) @@ -38102,7 +38262,7 @@ snapshots: fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.6.3)(webpack@5.91.0(esbuild@0.22.0)) fs-extra: 11.2.0 html-webpack-plugin: 5.6.0(webpack@5.91.0(esbuild@0.22.0)) - magic-string: 0.30.11 + magic-string: 0.30.12 path-browserify: 1.0.1 process: 0.11.10 semver: 7.6.3 @@ -38151,7 +38311,7 @@ snapshots: recast: 0.23.9 semver: 7.6.3 util: 0.12.5 - 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) transitivePeerDependencies: - bufferutil - supports-color @@ -38179,6 +38339,11 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) + '@storybook/icons@1.2.12(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + dependencies: + react: 19.0.0-rc-603e6108-20241029 + react-dom: 18.3.1(react@18.3.1) + '@storybook/instrumenter@8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))': dependencies: '@storybook/global': 5.0.0 @@ -38190,40 +38355,40 @@ 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@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/nextjs@8.3.5(esbuild@0.22.0)(next@15.0.2(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029))(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)(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) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.7) - '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.24.7) - '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - '@babel/preset-react': 7.24.1(@babel/core@7.24.7) - '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) - '@babel/runtime': 7.25.0 + '@babel/core': 7.25.8 + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.8) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.8) + '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.8) + '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.25.8) + '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.8) + '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.8) + '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.8) + '@babel/plugin-transform-runtime': 7.25.7(@babel/core@7.25.8) + '@babel/preset-env': 7.24.7(@babel/core@7.25.8) + '@babel/preset-react': 7.24.1(@babel/core@7.25.8) + '@babel/preset-typescript': 7.25.7(@babel/core@7.25.8) + '@babel/runtime': 7.25.7 '@pmmmwh/react-refresh-webpack-plugin': 0.5.15(react-refresh@0.14.2)(type-fest@4.26.1)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.22.0)) '@storybook/builder-webpack5': 8.3.5(esbuild@0.22.0)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3) - '@storybook/preset-react-webpack': 8.3.5(@storybook/test@8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)))(esbuild@0.22.0)(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) - '@storybook/react': 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) + '@storybook/preset-react-webpack': 8.3.5(@storybook/test@8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)))(esbuild@0.22.0)(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3) + '@storybook/react': 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@19.0.0-rc-603e6108-20241029)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3) '@storybook/test': 8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) - '@types/node': 22.5.1 + '@types/node': 22.7.7 '@types/semver': 7.5.8 - babel-loader: 9.2.1(@babel/core@7.24.7)(webpack@5.91.0(esbuild@0.22.0)) + babel-loader: 9.2.1(@babel/core@7.25.8)(webpack@5.91.0(esbuild@0.22.0)) css-loader: 6.11.0(webpack@5.91.0(esbuild@0.22.0)) find-up: 5.0.0 fs-extra: 11.2.0 image-size: 1.1.1 loader-utils: 3.2.1 - next: 15.0.2(@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.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) 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 postcss-loader: 8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.91.0(esbuild@0.22.0)) - react: 18.3.1 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) react-refresh: 0.14.2 resolve-url-loader: 5.0.0 @@ -38231,12 +38396,12 @@ snapshots: semver: 7.6.3 storybook: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4) style-loader: 3.3.4(webpack@5.91.0(esbuild@0.22.0)) - styled-jsx: 5.1.6(@babel/core@7.24.7)(react@18.3.1) + styled-jsx: 5.1.6(@babel/core@7.25.8)(react@19.0.0-rc-603e6108-20241029) ts-dedent: 2.2.0 - tsconfig-paths: 4.1.2 + tsconfig-paths: 4.2.0 tsconfig-paths-webpack-plugin: 4.1.0 optionalDependencies: - sharp: 0.33.4 + sharp: 0.33.5 typescript: 5.6.3 webpack: 5.91.0(esbuild@0.22.0) transitivePeerDependencies: @@ -38262,17 +38427,17 @@ snapshots: dependencies: storybook: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@storybook/preset-react-webpack@8.3.5(@storybook/test@8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)))(esbuild@0.22.0)(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)': + '@storybook/preset-react-webpack@8.3.5(@storybook/test@8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)))(esbuild@0.22.0)(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3)': dependencies: '@storybook/core-webpack': 8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) - '@storybook/react': 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) + '@storybook/react': 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@19.0.0-rc-603e6108-20241029)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3) '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.6.3)(webpack@5.91.0(esbuild@0.22.0)) '@types/node': 22.7.7 '@types/semver': 7.5.8 find-up: 5.0.0 fs-extra: 11.2.0 - magic-string: 0.30.11 - react: 18.3.1 + magic-string: 0.30.12 + react: 19.0.0-rc-603e6108-20241029 react-docgen: 7.0.3 react-dom: 18.3.1(react@18.3.1) resolve: 1.22.8 @@ -38314,26 +38479,32 @@ snapshots: react-dom: 18.3.1(react@18.3.1) storybook: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@storybook/react@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)': + '@storybook/react-dom-shim@8.3.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))': + dependencies: + react: 19.0.0-rc-603e6108-20241029 + react-dom: 18.3.1(react@18.3.1) + storybook: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4) + + '@storybook/react@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@19.0.0-rc-603e6108-20241029)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3)': dependencies: '@storybook/components': 8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) '@storybook/global': 5.0.0 '@storybook/manager-api': 8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) '@storybook/preview-api': 8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) - '@storybook/react-dom-shim': 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/react-dom-shim': 8.3.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) '@storybook/theming': 8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 - '@types/node': 22.5.1 + '@types/node': 22.7.7 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 escodegen: 2.1.0 html-tags: 3.3.1 prop-types: 15.8.1 - react: 18.3.1 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - react-element-to-jsx-string: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-element-to-jsx-string: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) semver: 7.6.3 storybook: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4) ts-dedent: 2.2.0 @@ -38493,6 +38664,17 @@ snapshots: - supports-color - typescript + '@svgr/core@8.1.0(typescript@5.6.3)': + dependencies: + '@babel/core': 7.24.7 + '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7) + camelcase: 6.3.0 + cosmiconfig: 8.3.6(typescript@5.6.3) + snake-case: 3.0.4 + transitivePeerDependencies: + - supports-color + - typescript + '@svgr/hast-util-to-babel-ast@6.5.1': dependencies: '@babel/types': 7.24.0 @@ -38533,6 +38715,16 @@ snapshots: transitivePeerDependencies: - supports-color + '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.6.3))': + dependencies: + '@babel/core': 7.24.7 + '@svgr/babel-preset': 8.1.0(@babel/core@7.24.7) + '@svgr/core': 8.1.0(typescript@5.6.3) + '@svgr/hast-util-to-babel-ast': 8.0.0 + svg-parser: 2.0.4 + transitivePeerDependencies: + - supports-color + '@svgr/plugin-svgo@6.5.1(@svgr/core@6.5.1)': dependencies: '@svgr/core': 6.5.1 @@ -38558,6 +38750,15 @@ snapshots: transitivePeerDependencies: - typescript + '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.6.3))(typescript@5.6.3)': + dependencies: + '@svgr/core': 8.1.0(typescript@5.6.3) + cosmiconfig: 8.3.6(typescript@5.6.3) + deepmerge: 4.3.1 + svgo: 3.3.2 + transitivePeerDependencies: + - typescript + '@svgr/webpack@6.5.1': dependencies: '@babel/core': 7.24.0 @@ -38599,6 +38800,20 @@ snapshots: - supports-color - typescript + '@svgr/webpack@8.1.0(typescript@5.6.3)': + dependencies: + '@babel/core': 7.24.7 + '@babel/plugin-transform-react-constant-elements': 7.24.7(@babel/core@7.24.7) + '@babel/preset-env': 7.24.7(@babel/core@7.24.7) + '@babel/preset-react': 7.24.1(@babel/core@7.24.7) + '@babel/preset-typescript': 7.24.7(@babel/core@7.24.7) + '@svgr/core': 8.1.0(typescript@5.6.3) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.6.3)) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.6.3))(typescript@5.6.3) + transitivePeerDependencies: + - supports-color + - typescript + '@swc/counter@0.1.3': {} '@swc/helpers@0.5.11': @@ -38655,10 +38870,10 @@ snapshots: mini-svg-data-uri: 1.4.4 tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)) - '@tailwindcss/forms@0.5.9(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)))': + '@tailwindcss/forms@0.5.9(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))': dependencies: mini-svg-data-uri: 1.4.4 - 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@22.8.2)(typescript@5.6.3)) '@tanstack/query-core@5.45.0': {} @@ -38736,8 +38951,8 @@ snapshots: '@testing-library/dom@10.4.0': dependencies: - '@babel/code-frame': 7.24.7 - '@babel/runtime': 7.25.0 + '@babel/code-frame': 7.25.7 + '@babel/runtime': 7.25.7 '@types/aria-query': 5.0.4 aria-query: 5.3.0 chalk: 4.1.2 @@ -38863,26 +39078,6 @@ snapshots: '@tootallnate/once@2.0.0': {} - '@toruslabs/base-controllers@2.9.0(@babel/runtime@7.25.0)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@babel/runtime': 7.25.0 - '@ethereumjs/util': 8.1.0 - '@toruslabs/broadcast-channel': 6.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/http-helpers': 3.4.0(@babel/runtime@7.25.0) - '@toruslabs/openlogin-jrpc': 4.7.2(@babel/runtime@7.25.0) - async-mutex: 0.4.1 - bignumber.js: 9.1.2 - bowser: 2.11.0 - eth-rpc-errors: 4.0.3 - json-rpc-random-id: 1.0.1 - lodash: 4.17.21 - loglevel: 1.8.1 - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - supports-color - - utf-8-validate - '@toruslabs/base-controllers@2.9.0(@babel/runtime@7.25.7)(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@babel/runtime': 7.25.7 @@ -38905,9 +39100,9 @@ snapshots: '@toruslabs/broadcast-channel@6.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.25.7 '@toruslabs/eccrypto': 2.2.1 - '@toruslabs/metadata-helpers': 3.2.0(@babel/runtime@7.25.0) + '@toruslabs/metadata-helpers': 3.2.0(@babel/runtime@7.25.7) bowser: 2.11.0 loglevel: 1.8.1 oblivious-set: 1.1.1 @@ -38923,41 +39118,23 @@ snapshots: dependencies: elliptic: 6.5.6 - '@toruslabs/http-helpers@3.4.0(@babel/runtime@7.25.0)': - dependencies: - '@babel/runtime': 7.25.0 - lodash.merge: 4.6.2 - loglevel: 1.8.1 - '@toruslabs/http-helpers@3.4.0(@babel/runtime@7.25.7)': dependencies: '@babel/runtime': 7.25.7 lodash.merge: 4.6.2 loglevel: 1.8.1 - '@toruslabs/metadata-helpers@3.2.0(@babel/runtime@7.25.0)': + '@toruslabs/metadata-helpers@3.2.0(@babel/runtime@7.25.7)': dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.25.7 '@toruslabs/eccrypto': 2.2.1 - '@toruslabs/http-helpers': 3.4.0(@babel/runtime@7.25.0) + '@toruslabs/http-helpers': 3.4.0(@babel/runtime@7.25.7) elliptic: 6.5.6 ethereum-cryptography: 2.2.1 json-stable-stringify: 1.1.1 transitivePeerDependencies: - '@sentry/types' - '@toruslabs/openlogin-jrpc@3.2.0(@babel/runtime@7.25.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@toruslabs/openlogin-utils': 3.0.0(@babel/runtime@7.25.0) - end-of-stream: 1.4.4 - eth-rpc-errors: 4.0.3 - events: 3.3.0 - fast-safe-stringify: 2.1.1 - once: 1.4.0 - pump: 3.0.0 - readable-stream: 3.6.2 - '@toruslabs/openlogin-jrpc@3.2.0(@babel/runtime@7.25.7)': dependencies: '@babel/runtime': 7.25.7 @@ -38970,20 +39147,6 @@ snapshots: pump: 3.0.0 readable-stream: 3.6.2 - '@toruslabs/openlogin-jrpc@4.7.2(@babel/runtime@7.25.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@metamask/rpc-errors': 5.1.1 - '@toruslabs/openlogin-utils': 4.7.0(@babel/runtime@7.25.0) - end-of-stream: 1.4.4 - events: 3.3.0 - fast-safe-stringify: 2.1.1 - once: 1.4.0 - pump: 3.0.0 - readable-stream: 4.5.2 - transitivePeerDependencies: - - supports-color - '@toruslabs/openlogin-jrpc@4.7.2(@babel/runtime@7.25.7)': dependencies: '@babel/runtime': 7.25.7 @@ -38998,13 +39161,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@toruslabs/openlogin-utils@3.0.0(@babel/runtime@7.25.0)': - dependencies: - '@babel/runtime': 7.25.0 - base64url: 3.0.1 - keccak: 3.0.4 - randombytes: 2.1.0 - '@toruslabs/openlogin-utils@3.0.0(@babel/runtime@7.25.7)': dependencies: '@babel/runtime': 7.25.7 @@ -39012,36 +39168,11 @@ snapshots: keccak: 3.0.4 randombytes: 2.1.0 - '@toruslabs/openlogin-utils@4.7.0(@babel/runtime@7.25.0)': - dependencies: - '@babel/runtime': 7.25.0 - base64url: 3.0.1 - '@toruslabs/openlogin-utils@4.7.0(@babel/runtime@7.25.7)': dependencies: '@babel/runtime': 7.25.7 base64url: 3.0.1 - '@toruslabs/solana-embed@0.3.4(@babel/runtime@7.25.0)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': - dependencies: - '@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) - '@toruslabs/base-controllers': 2.9.0(@babel/runtime@7.25.0)(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@toruslabs/http-helpers': 3.4.0(@babel/runtime@7.25.0) - '@toruslabs/openlogin-jrpc': 3.2.0(@babel/runtime@7.25.0) - eth-rpc-errors: 4.0.3 - fast-deep-equal: 3.1.3 - is-stream: 2.0.1 - lodash-es: 4.17.21 - loglevel: 1.8.1 - pump: 3.0.0 - transitivePeerDependencies: - - '@sentry/types' - - bufferutil - - encoding - - supports-color - - utf-8-validate - '@toruslabs/solana-embed@0.3.4(@babel/runtime@7.25.7)(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@babel/runtime': 7.25.7 @@ -39600,16 +39731,16 @@ snapshots: '@types/eslint-scope@3.7.7': dependencies: '@types/eslint': 9.6.0 - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 '@types/eslint@9.6.0': dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 '@types/json-schema': 7.0.15 '@types/estree-jsx@1.0.5': dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 '@types/estree@0.0.51': {} @@ -39707,7 +39838,7 @@ snapshots: expect: 29.7.0 pretty-format: 29.7.0 - '@types/jest@29.5.13': + '@types/jest@29.5.14': dependencies: expect: 29.7.0 pretty-format: 29.7.0 @@ -39824,6 +39955,10 @@ snapshots: dependencies: undici-types: 6.19.8 + '@types/node@22.8.2': + dependencies: + undici-types: 6.19.8 + '@types/normalize-package-data@2.4.1': {} '@types/parse-json@4.0.0': {} @@ -40102,15 +40237,15 @@ snapshots: - 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)': + '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)': dependencies: '@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/parser': 8.3.0(eslint@9.13.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) - '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3) + '@typescript-eslint/type-utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3) + '@typescript-eslint/utils': 7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3) '@typescript-eslint/visitor-keys': 7.13.1 - eslint: 9.12.0(jiti@1.21.0) + eslint: 9.13.0(jiti@1.21.0) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 @@ -40308,14 +40443,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3)': + '@typescript-eslint/parser@8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)': dependencies: '@typescript-eslint/scope-manager': 8.3.0 '@typescript-eslint/types': 8.3.0 '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.6.3) '@typescript-eslint/visitor-keys': 8.3.0 debug: 4.3.6 - eslint: 9.12.0(jiti@1.21.0) + eslint: 9.13.0(jiti@1.21.0) optionalDependencies: typescript: 5.6.3 transitivePeerDependencies: @@ -40454,6 +40589,19 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/type-utils@7.13.1(eslint@9.13.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.13.0(jiti@1.21.0))(typescript@5.6.3) + debug: 4.3.7(supports-color@8.1.1) + eslint: 9.13.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)': dependencies: '@typescript-eslint/typescript-estree': 7.13.1(typescript@5.5.2) @@ -40864,6 +41012,18 @@ snapshots: - supports-color - typescript + '@typescript-eslint/utils@7.13.1(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.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) + eslint: 9.13.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)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0) @@ -41312,7 +41472,7 @@ snapshots: '@vue/shared': 3.4.34 entities: 4.5.0 estree-walker: 2.0.2 - source-map-js: 1.2.0 + source-map-js: 1.2.1 '@vue/compiler-dom@3.4.34': dependencies: @@ -41339,14 +41499,14 @@ snapshots: '@vue/shared@3.4.34': {} - '@wagmi/connectors@5.0.16(276lu6ucw5vl7m53grscpa4fqq)': + '@wagmi/connectors@5.0.16(c6fifzb677vjk75d7sjyei2p2e)': dependencies: '@coinbase/wallet-sdk': 4.0.3 - '@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) + '@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.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))(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)(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)(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/ethereum-provider': 2.13.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)))(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) @@ -41501,21 +41661,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))(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/core@2.13.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)))(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))(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/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.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))) + '@walletconnect/types': 2.13.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))) + '@walletconnect/utils': 2.13.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))) events: 3.3.0 isomorphic-unfetch: 3.1.0(encoding@0.1.13) lodash.isequal: 4.5.0 @@ -41543,17 +41703,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))(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/ethereum-provider@2.13.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)))(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(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))) + '@walletconnect/sign-client': 2.13.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)))(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.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/universal-provider': 2.13.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)))(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.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' @@ -41662,28 +41822,6 @@ 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))(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))(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' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@upstash/redis' - - '@vercel/kv' - - 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))(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 @@ -41826,16 +41964,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))(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/sign-client@2.13.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)))(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))(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/core': 2.13.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)))(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))(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))) + '@walletconnect/types': 2.13.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))) + '@walletconnect/utils': 2.13.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))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -41910,12 +42048,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))(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/types@2.13.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)))': 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))(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/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: @@ -41934,16 +42072,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))(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/universal-provider@2.13.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)))(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))(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))) + '@walletconnect/sign-client': 2.13.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)))(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.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.13.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))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -42028,7 +42166,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))(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.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 @@ -42038,7 +42176,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))(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/types': 2.13.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))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -42952,11 +43090,11 @@ snapshots: autoprefixer@10.4.20(postcss@8.4.47): dependencies: - browserslist: 4.23.3 - caniuse-lite: 1.0.30001651 + browserslist: 4.24.0 + caniuse-lite: 1.0.30001669 fraction.js: 4.3.7 normalize-range: 0.1.2 - picocolors: 1.0.1 + picocolors: 1.1.1 postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -43107,19 +43245,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-jest@29.7.0(@babel/core@7.24.7): - dependencies: - '@babel/core': 7.24.7 - '@jest/transform': 29.7.0 - '@types/babel__core': 7.20.5 - babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.24.7) - chalk: 4.1.2 - graceful-fs: 4.2.11 - slash: 3.0.0 - transitivePeerDependencies: - - supports-color - babel-jest@29.7.0(@babel/core@7.25.8): dependencies: '@babel/core': 7.25.8 @@ -43132,18 +43257,17 @@ snapshots: slash: 3.0.0 transitivePeerDependencies: - supports-color - optional: true - babel-loader@9.2.1(@babel/core@7.24.7)(webpack@5.91.0(esbuild@0.22.0)): + babel-loader@9.2.1(@babel/core@7.25.8)(webpack@5.91.0(esbuild@0.22.0)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 find-cache-dir: 4.0.0 schema-utils: 4.2.0 webpack: 5.91.0(esbuild@0.22.0) babel-plugin-istanbul@6.1.1: dependencies: - '@babel/helper-plugin-utils': 7.24.8 + '@babel/helper-plugin-utils': 7.25.7 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.1 @@ -43242,14 +43366,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.24.7): - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.7) - core-js-compat: 3.38.0 - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.8): dependencies: '@babel/core': 7.25.8 @@ -43309,14 +43425,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@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): + babel-plugin-styled-components@2.1.4(@babel/core@7.25.8)(styled-components@5.3.11(@babel/core@7.25.8)(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) + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.8) lodash: 4.17.21 picomatch: 2.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) + styled-components: 5.3.11(@babel/core@7.25.8)(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 @@ -43327,12 +43443,6 @@ snapshots: transitivePeerDependencies: - '@babel/core' - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.7): - dependencies: - '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.24.7) - transitivePeerDependencies: - - '@babel/core' - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.25.8): dependencies: '@babel/plugin-syntax-flow': 7.25.7(@babel/core@7.25.8) @@ -43370,7 +43480,6 @@ snapshots: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.8) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.8) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.8) - optional: true babel-preset-jest@27.5.1(@babel/core@7.24.7): dependencies: @@ -43378,18 +43487,11 @@ snapshots: babel-plugin-jest-hoist: 27.5.1 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - babel-preset-jest@29.6.3(@babel/core@7.24.7): - dependencies: - '@babel/core': 7.24.7 - babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) - babel-preset-jest@29.6.3(@babel/core@7.25.8): dependencies: '@babel/core': 7.25.8 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.8) - optional: true backoff@2.5.0: dependencies: @@ -43438,7 +43540,7 @@ snapshots: better-ajv-errors@0.8.2(ajv@6.12.6): dependencies: '@babel/code-frame': 7.25.7 - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.25.7 ajv: 6.12.6 chalk: 2.4.2 core-js: 3.38.0 @@ -43691,7 +43793,7 @@ snapshots: browserslist@4.23.3: dependencies: - caniuse-lite: 1.0.30001651 + caniuse-lite: 1.0.30001669 electron-to-chromium: 1.5.6 node-releases: 2.0.18 update-browserslist-db: 1.1.0(browserslist@4.23.3) @@ -44462,7 +44564,7 @@ snapshots: transitivePeerDependencies: - supports-color - 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)): + connectkit@1.8.2(@babel/core@7.25.8)(@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(2zybmpkgivtkk3e4xdbpxyo3aq)): dependencies: '@tanstack/react-query': 5.45.1(react@19.0.0-rc-603e6108-20241029) buffer: 6.0.3 @@ -44474,9 +44576,9 @@ snapshots: 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@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) + styled-components: 5.3.11(@babel/core@7.25.8)(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) + wagmi: 2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq) transitivePeerDependencies: - '@babel/core' - react-is @@ -44596,7 +44698,7 @@ snapshots: core-js-compat@3.27.2: dependencies: - browserslist: 4.23.1 + browserslist: 4.24.0 core-js-compat@3.37.1: dependencies: @@ -44875,13 +44977,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)): + create-jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@22.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -44890,13 +44992,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)): + create-jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + jest-config: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -44905,13 +45007,13 @@ snapshots: - supports-color - ts-node - create-jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)): + create-jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -44930,9 +45032,9 @@ snapshots: jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)) p-limit: 4.0.0 - 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))): + create-lite-jest-runner@1.1.0(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))): dependencies: - jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) p-limit: 4.0.0 create-require@1.1.1: {} @@ -45074,12 +45176,12 @@ snapshots: css-tree@2.2.1: dependencies: mdn-data: 2.0.28 - source-map-js: 1.2.0 + source-map-js: 1.2.1 css-tree@2.3.1: dependencies: mdn-data: 2.0.30 - source-map-js: 1.2.0 + source-map-js: 1.2.1 css-what@6.1.0: {} @@ -45200,7 +45302,7 @@ snapshots: date-fns@2.30.0: dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.25.7 dateformat@3.0.3: {} @@ -46217,11 +46319,11 @@ snapshots: 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.12.0(jiti@1.21.0)): + eslint-module-utils@2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.13.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) + '@typescript-eslint/parser': 8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3) eslint: 9.12.0(jiti@1.21.0) eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: @@ -46298,7 +46400,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.12.0(jiti@1.21.0)): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.3.0(eslint@9.13.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 @@ -46308,7 +46410,7 @@ snapshots: doctrine: 2.1.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.12.0(jiti@1.21.0)) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.3.0(eslint@9.13.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.15.1 is-glob: 4.0.3 @@ -46319,7 +46421,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.3.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.6.3) + '@typescript-eslint/parser': 8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -46371,13 +46473,13 @@ 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.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@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3): dependencies: '@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)) + '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.3.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3))(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3) + jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) transitivePeerDependencies: - supports-color - typescript @@ -46553,11 +46655,11 @@ snapshots: postcss: 8.4.47 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.14(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.8.2)(typescript@5.6.3))): dependencies: fast-glob: 3.3.2 postcss: 8.4.47 - 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@22.8.2)(typescript@5.6.3)) eslint-plugin-testing-library@6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2): dependencies: @@ -46786,6 +46888,48 @@ snapshots: transitivePeerDependencies: - supports-color + eslint@9.13.0(jiti@1.21.0): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.13.0(jiti@1.21.0)) + '@eslint-community/regexpp': 4.11.0 + '@eslint/config-array': 0.18.0 + '@eslint/core': 0.7.0 + '@eslint/eslintrc': 3.1.0 + '@eslint/js': 9.13.0 + '@eslint/plugin-kit': 0.2.0 + '@humanfs/node': 0.16.5 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.3.1 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.7(supports-color@8.1.1) + escape-string-regexp: 4.0.0 + eslint-scope: 8.1.0 + eslint-visitor-keys: 4.1.0 + espree: 10.2.0 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + text-table: 0.2.0 + optionalDependencies: + jiti: 1.21.0 + transitivePeerDependencies: + - supports-color + eslint@9.5.0: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.5.0) @@ -46911,7 +47055,7 @@ snapshots: estree-walker@3.0.3: dependencies: - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 esutils@2.0.3: {} @@ -47856,7 +48000,7 @@ snapshots: forever-agent@0.6.1: {} - fork-ts-checker-webpack-plugin@6.5.3(eslint@9.12.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0): + fork-ts-checker-webpack-plugin@6.5.3(eslint@9.13.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0): dependencies: '@babel/code-frame': 7.24.7 '@types/json-schema': 7.0.15 @@ -47874,11 +48018,11 @@ snapshots: typescript: 4.9.5 webpack: 5.91.0 optionalDependencies: - eslint: 9.12.0(jiti@1.21.0) + eslint: 9.13.0(jiti@1.21.0) fork-ts-checker-webpack-plugin@8.0.0(typescript@5.6.3)(webpack@5.91.0(esbuild@0.22.0)): dependencies: - '@babel/code-frame': 7.24.7 + '@babel/code-frame': 7.25.7 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 7.1.0 @@ -48614,7 +48758,7 @@ snapshots: hard-rejection@2.1.0: {} - hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3): + hardhat@2.22.13(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3): dependencies: '@ethersproject/abi': 5.7.0 '@metamask/eth-sig-util': 4.0.1 @@ -48661,7 +48805,7 @@ snapshots: uuid: 8.3.2 ws: 7.5.10(bufferutil@4.0.7)(utf-8-validate@6.0.3) optionalDependencies: - ts-node: 10.9.2(@types/node@22.7.7)(typescript@4.9.5) + ts-node: 10.9.2(@types/node@22.8.2)(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - bufferutil @@ -48669,7 +48813,7 @@ snapshots: - supports-color - utf-8-validate - hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3): + hardhat@2.22.8(bufferutil@4.0.7)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@6.0.3): dependencies: '@ethersproject/abi': 5.7.0 '@metamask/eth-sig-util': 4.0.1 @@ -48715,7 +48859,7 @@ snapshots: uuid: 8.3.2 ws: 7.5.10(bufferutil@4.0.7)(utf-8-validate@6.0.3) optionalDependencies: - ts-node: 10.9.2(@types/node@22.7.7)(typescript@4.9.5) + ts-node: 10.9.2(@types/node@22.8.2)(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - bufferutil @@ -48888,7 +49032,7 @@ snapshots: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.31.5 + terser: 5.36.0 html-parse-stringify@3.0.1: dependencies: @@ -49034,11 +49178,11 @@ snapshots: i18next-browser-languagedetector@7.1.0: dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.25.7 i18next@22.5.1: dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.25.7 iconv-lite@0.4.24: dependencies: @@ -49540,6 +49684,10 @@ snapshots: dependencies: ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + isomorphic-ws@5.0.0(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): + dependencies: + ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + isows@1.0.3(ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)): dependencies: ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -49575,7 +49723,7 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@babel/parser': 7.25.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 @@ -49585,7 +49733,7 @@ snapshots: istanbul-lib-instrument@6.0.2: dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@babel/parser': 7.25.3 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 @@ -49639,7 +49787,7 @@ snapshots: iter-tools@7.5.3: dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.25.7 iterall@1.1.3: {} @@ -50093,16 +50241,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)): + jest-cli@29.7.0(@types/node@22.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)) + '@jest/core': 29.7.0(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)) + create-jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)) + jest-config: 29.7.0(@types/node@22.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -50112,16 +50260,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)): + jest-cli@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + create-jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + jest-config: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -50131,16 +50279,16 @@ snapshots: - supports-color - ts-node - jest-cli@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)): + jest-cli@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + create-jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + jest-config: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -50186,10 +50334,10 @@ snapshots: jest-config@29.7.0(@types/node@16.18.101)(ts-node@10.9.2(@types/node@16.18.101)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50217,10 +50365,10 @@ snapshots: jest-config@29.7.0(@types/node@18.11.18)(ts-node@10.9.2(@types/node@18.11.18)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50248,10 +50396,10 @@ snapshots: jest-config@29.7.0(@types/node@18.11.18)(ts-node@10.9.2(@types/node@18.11.18)(typescript@5.4.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50279,10 +50427,10 @@ snapshots: jest-config@29.7.0(@types/node@18.19.34)(ts-node@10.9.2(@types/node@18.19.34)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50310,10 +50458,10 @@ snapshots: jest-config@29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50339,12 +50487,12 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)): + jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50365,17 +50513,17 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.14.15 - ts-node: 10.9.1(@types/node@22.7.7)(typescript@5.4.5) + ts-node: 10.9.1(@types/node@22.8.2)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@16.18.101)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50403,10 +50551,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.11.18)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50434,10 +50582,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.11.18)(typescript@5.4.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50465,10 +50613,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.19.34)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50496,10 +50644,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50527,10 +50675,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50558,10 +50706,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.2)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50589,10 +50737,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50620,10 +50768,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50651,10 +50799,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.5.1)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50680,12 +50828,12 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)): + jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50706,17 +50854,17 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.14.15 - ts-node: 10.9.2(@types/node@22.7.7)(typescript@4.9.5) + ts-node: 10.9.2(@types/node@22.8.2)(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)): + jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50737,17 +50885,17 @@ snapshots: strip-json-comments: 3.1.1 optionalDependencies: '@types/node': 20.14.15 - ts-node: 10.9.2(@types/node@22.7.7)(typescript@5.6.3) + ts-node: 10.9.2(@types/node@22.8.2)(typescript@5.6.3) transitivePeerDependencies: - babel-plugin-macros - supports-color jest-config@29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50775,10 +50923,10 @@ snapshots: jest-config@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50806,10 +50954,10 @@ snapshots: jest-config@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50837,10 +50985,10 @@ snapshots: jest-config@29.7.0(@types/node@22.5.1)(ts-node@10.9.2(@types/node@22.5.1)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50866,12 +51014,12 @@ snapshots: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)): + jest-config@29.7.0(@types/node@22.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50891,18 +51039,18 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.7.7 - ts-node: 10.9.1(@types/node@22.7.7)(typescript@5.4.5) + '@types/node': 22.8.2 + ts-node: 10.9.1(@types/node@22.8.2)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)): + jest-config@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50922,18 +51070,18 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.7.7 - ts-node: 10.9.2(@types/node@22.7.7)(typescript@4.9.5) + '@types/node': 22.8.2 + ts-node: 10.9.2(@types/node@22.8.2)(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros - supports-color - jest-config@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)): + jest-config@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)): dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) chalk: 4.1.2 ci-info: 3.9.0 deepmerge: 4.3.1 @@ -50953,8 +51101,8 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 22.7.7 - ts-node: 10.9.2(@types/node@22.7.7)(typescript@5.6.3) + '@types/node': 22.8.2 + ts-node: 10.9.2(@types/node@22.8.2)(typescript@5.6.3) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -51230,14 +51378,14 @@ snapshots: resolve.exports: 2.0.2 slash: 3.0.0 - 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))): + jest-runner-eslint@2.2.0(eslint@9.13.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))): dependencies: chalk: 4.1.2 cosmiconfig: 7.1.0 create-jest-runner: 0.11.2 dot-prop: 6.0.1 - 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)) + eslint: 9.13.0(jiti@1.21.0) + jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) transitivePeerDependencies: - '@jest/test-result' - jest-runner @@ -51382,16 +51530,16 @@ snapshots: jest-snapshot@27.5.1: dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@babel/generator': 7.24.7 - '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.8) '@babel/traverse': 7.24.7 '@babel/types': 7.24.7 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.20.6 '@types/prettier': 2.7.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.8) chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.11 @@ -51409,15 +51557,15 @@ snapshots: jest-snapshot@29.7.0: dependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@babel/generator': 7.25.0 - '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7) - '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.8) + '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.8) '@babel/types': 7.25.2 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.7) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.8) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -51640,36 +51788,36 @@ snapshots: - supports-color - ts-node - jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)): + jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)) + '@jest/core': 29.7.0(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)) + jest-cli: 29.7.0(@types/node@22.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)): + jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + jest-cli: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros - supports-color - ts-node - jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)): + jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3)) + jest-cli: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -51777,31 +51925,6 @@ snapshots: transitivePeerDependencies: - supports-color - jscodeshift@0.14.0(@babel/preset-env@7.24.7(@babel/core@7.24.7)): - dependencies: - '@babel/core': 7.25.8 - '@babel/parser': 7.25.8 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.8) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.8) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.8) - '@babel/plugin-transform-modules-commonjs': 7.25.7(@babel/core@7.25.8) - '@babel/preset-env': 7.24.7(@babel/core@7.24.7) - '@babel/preset-flow': 7.25.7(@babel/core@7.25.8) - '@babel/preset-typescript': 7.25.7(@babel/core@7.25.8) - '@babel/register': 7.25.7(@babel/core@7.25.8) - babel-core: 7.0.0-bridge.0(@babel/core@7.25.8) - chalk: 4.1.2 - flow-parser: 0.250.0 - graceful-fs: 4.2.11 - micromatch: 4.0.8 - neo-async: 2.6.2 - node-dir: 0.1.17 - recast: 0.21.5 - temp: 0.8.4 - write-file-atomic: 2.4.3 - transitivePeerDependencies: - - supports-color - jscodeshift@0.14.0(@babel/preset-env@7.24.7(@babel/core@7.25.8)): dependencies: '@babel/core': 7.25.8 @@ -52596,10 +52719,6 @@ snapshots: lz-string@1.5.0: {} - magic-string@0.30.11: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - magic-string@0.30.12: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -52650,6 +52769,10 @@ snapshots: dependencies: react: 18.3.1 + markdown-to-jsx@7.5.0(react@19.0.0-rc-603e6108-20241029): + dependencies: + react: 19.0.0-rc-603e6108-20241029 + marked@4.3.0: {} marky@1.2.5: {} @@ -53616,32 +53739,7 @@ snapshots: next-tick@1.1.0: {} - next@14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - '@next/env': 14.2.15 - '@swc/helpers': 0.5.5 - busboy: 1.6.0 - 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.7)(react@18.3.1) - 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.15(@babel/core@7.25.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next@14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@18.3.1): dependencies: '@next/env': 14.2.15 '@swc/helpers': 0.5.5 @@ -53666,31 +53764,6 @@ snapshots: - '@babel/core' - babel-plugin-macros - 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.15 - '@swc/helpers': 0.5.5 - busboy: 1.6.0 - caniuse-lite: 1.0.30001651 - graceful-fs: 4.2.11 - 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.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@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': 15.0.2 @@ -53716,32 +53789,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - 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': 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: 18.3.1 - react-dom: 18.3.1(react@18.3.1) - styled-jsx: 5.1.6(@babel/core@7.24.7)(react@18.3.1) - 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.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@15.0.2(@babel/core@7.25.8)(react-dom@18.3.1(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 @@ -53750,8 +53798,8 @@ snapshots: 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.24.7)(react@19.0.0-rc-603e6108-20241029) + react-dom: 18.3.1(react@18.3.1) + 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 @@ -54738,6 +54786,10 @@ snapshots: readable-stream: 4.5.2 split2: 4.2.0 + pino-abstract-transport@2.0.0: + dependencies: + split2: 4.2.0 + pino-pretty@11.2.1: dependencies: colorette: 2.0.20 @@ -54801,6 +54853,20 @@ snapshots: sonic-boom: 4.0.1 thread-stream: 3.1.0 + pino@9.5.0: + dependencies: + atomic-sleep: 1.0.0 + fast-redact: 3.5.0 + on-exit-leak-free: 2.1.2 + pino-abstract-transport: 2.0.0 + pino-std-serializers: 7.0.0 + process-warning: 4.0.0 + quick-format-unescaped: 4.0.4 + real-require: 0.2.0 + safe-stable-stringify: 2.4.2 + sonic-boom: 4.0.1 + thread-stream: 3.1.0 + pirates@4.0.6: {} pkg-dir@3.0.0: @@ -54839,7 +54905,7 @@ snapshots: polished@4.3.1: dependencies: - '@babel/runtime': 7.25.0 + '@babel/runtime': 7.25.7 pony-cause@2.1.11: {} @@ -54874,13 +54940,6 @@ snapshots: read-cache: 1.0.0 resolve: 1.22.8 - postcss-import@15.1.0(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.8 - postcss-import@15.1.0(postcss@8.4.47): dependencies: postcss: 8.4.47 @@ -54898,11 +54957,6 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.4.38 - postcss-js@4.0.1(postcss@8.4.41): - dependencies: - camelcase-css: 2.0.1 - postcss: 8.4.41 - postcss-js@4.0.1(postcss@8.4.47): dependencies: camelcase-css: 2.0.1 @@ -54924,14 +54978,6 @@ 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.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.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@20.14.7)(typescript@5.5.2)): dependencies: lilconfig: 3.1.2 @@ -54948,13 +54994,13 @@ snapshots: 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)): + postcss-load-config@4.0.2(postcss@8.4.47)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)): dependencies: lilconfig: 3.1.2 yaml: 2.4.5 optionalDependencies: postcss: 8.4.47 - ts-node: 10.9.2(@types/node@22.7.7)(typescript@5.6.3) + ts-node: 10.9.2(@types/node@22.8.2)(typescript@5.6.3) postcss-loader@8.1.1(postcss@8.4.47)(typescript@5.6.3)(webpack@5.91.0(esbuild@0.22.0)): dependencies: @@ -54975,13 +55021,13 @@ snapshots: dependencies: icss-utils: 5.1.0(postcss@8.4.47) postcss: 8.4.47 - postcss-selector-parser: 6.0.11 + postcss-selector-parser: 6.1.2 postcss-value-parser: 4.2.0 postcss-modules-scope@3.2.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.0.11 + postcss-selector-parser: 6.1.2 postcss-modules-values@4.0.0(postcss@8.4.47): dependencies: @@ -54998,11 +55044,6 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.0.11 - postcss-nested@6.0.1(postcss@8.4.41): - dependencies: - postcss: 8.4.41 - postcss-selector-parser: 6.0.11 - postcss-nested@6.0.1(postcss@8.4.47): dependencies: postcss: 8.4.47 @@ -55684,42 +55725,42 @@ snapshots: 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): + react-aria-components@1.4.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): dependencies: '@internationalized/date': 3.5.6 '@internationalized/string': 3.2.4 - '@react-aria/accordion': 3.0.0-alpha.35(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/collections': 3.0.0-alpha.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/color': 3.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/disclosure': 3.0.0-alpha.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/dnd': 3.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) + '@react-aria/accordion': 3.0.0-alpha.34(react-dom@18.3.1(react@18.3.1))(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@19.0.0-rc-603e6108-20241029) + '@react-aria/color': 3.0.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/disclosure': 3.0.0-alpha.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/dnd': 3.7.4(react-dom@18.3.1(react@18.3.1))(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) '@react-aria/live-announcer': 3.4.0 - '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/toolbar': 3.0.0-beta.10(react@18.3.1) - '@react-aria/tree': 3.0.0-beta.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-aria/virtualizer': 4.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-stately/color': 3.8.0(react@18.3.1) - '@react-stately/disclosure': 3.0.0-alpha.0(react@18.3.1) - '@react-stately/layout': 4.0.3(react@18.3.1) - '@react-stately/menu': 3.8.3(react@18.3.1) - '@react-stately/table': 3.12.3(react@18.3.1) - '@react-stately/utils': 3.10.4(react@18.3.1) - '@react-stately/virtualizer': 4.1.0(react@18.3.1) - '@react-types/color': 3.0.0(react@18.3.1) - '@react-types/form': 3.7.7(react@18.3.1) - '@react-types/grid': 3.2.9(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - '@react-types/table': 3.10.2(react@18.3.1) - '@swc/helpers': 0.5.11 + '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/toolbar': 3.0.0-beta.9(react@19.0.0-rc-603e6108-20241029) + '@react-aria/tree': 3.0.0-beta.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/virtualizer': 4.0.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-stately/color': 3.8.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/disclosure': 3.0.0-alpha.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/layout': 4.0.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/menu': 3.8.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) + '@react-stately/virtualizer': 4.1.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/color': 3.0.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/form': 3.7.7(react@19.0.0-rc-603e6108-20241029) + '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + '@swc/helpers': 0.5.13 client-only: 0.0.1 - react: 18.3.1 - react-aria: 3.35.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 19.0.0-rc-603e6108-20241029 + react-aria: 3.35.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) react-dom: 18.3.1(react@18.3.1) - react-stately: 3.33.0(react@18.3.1) - use-sync-external-store: 1.2.0(react@18.3.1) + react-stately: 3.33.0(react@19.0.0-rc-603e6108-20241029) + use-sync-external-store: 1.2.0(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): dependencies: @@ -55763,55 +55804,103 @@ snapshots: 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): + react-aria@3.35.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): dependencies: '@internationalized/string': 3.2.4 - '@react-aria/breadcrumbs': 3.5.18(react@18.3.1) - '@react-aria/button': 3.10.1(react@18.3.1) - '@react-aria/calendar': 3.5.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/checkbox': 3.14.8(react@18.3.1) - '@react-aria/color': 3.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/combobox': 3.10.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/datepicker': 3.11.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/dialog': 3.5.19(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/dnd': 3.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/focus': 3.18.4(react@18.3.1) - '@react-aria/gridlist': 3.9.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/i18n': 3.12.3(react@18.3.1) - '@react-aria/interactions': 3.22.4(react@18.3.1) - '@react-aria/label': 3.7.12(react@18.3.1) - '@react-aria/link': 3.7.6(react@18.3.1) - '@react-aria/listbox': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/meter': 3.4.17(react@18.3.1) - '@react-aria/numberfield': 3.11.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/progress': 3.4.17(react@18.3.1) - '@react-aria/radio': 3.10.9(react@18.3.1) - '@react-aria/searchfield': 3.7.10(react@18.3.1) - '@react-aria/select': 3.14.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/separator': 3.4.3(react@18.3.1) - '@react-aria/slider': 3.7.13(react@18.3.1) - '@react-aria/ssr': 3.9.6(react@18.3.1) - '@react-aria/switch': 3.6.9(react@18.3.1) - '@react-aria/table': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/tabs': 3.9.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/tag': 3.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@react-aria/textfield': 3.14.10(react@18.3.1) - '@react-aria/tooltip': 3.7.9(react@18.3.1) - '@react-aria/utils': 3.25.3(react@18.3.1) - '@react-aria/visually-hidden': 3.8.17(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - react: 18.3.1 + '@react-aria/breadcrumbs': 3.5.18(react@19.0.0-rc-603e6108-20241029) + '@react-aria/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) + '@react-aria/calendar': 3.5.13(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/checkbox': 3.14.8(react@19.0.0-rc-603e6108-20241029) + '@react-aria/color': 3.0.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/combobox': 3.10.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/datepicker': 3.11.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/dialog': 3.5.19(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/dnd': 3.7.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/gridlist': 3.9.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/link': 3.7.6(react@19.0.0-rc-603e6108-20241029) + '@react-aria/listbox': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/meter': 3.4.17(react@19.0.0-rc-603e6108-20241029) + '@react-aria/numberfield': 3.11.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/progress': 3.4.17(react@19.0.0-rc-603e6108-20241029) + '@react-aria/radio': 3.10.9(react@19.0.0-rc-603e6108-20241029) + '@react-aria/searchfield': 3.7.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/select': 3.14.11(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/separator': 3.4.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/slider': 3.7.13(react@19.0.0-rc-603e6108-20241029) + '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) + '@react-aria/switch': 3.6.9(react@19.0.0-rc-603e6108-20241029) + '@react-aria/table': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/tabs': 3.9.7(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/tag': 3.4.7(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/tooltip': 3.7.9(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) + react-aria@3.35.0(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.4 + '@react-aria/breadcrumbs': 3.5.18(react@19.0.0-rc-603e6108-20241029) + '@react-aria/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) + '@react-aria/calendar': 3.5.13(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.8(react@19.0.0-rc-603e6108-20241029) + '@react-aria/color': 3.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-aria/combobox': 3.10.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/datepicker': 3.11.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/dialog': 3.5.19(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.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/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/gridlist': 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/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) + '@react-aria/link': 3.7.6(react@19.0.0-rc-603e6108-20241029) + '@react-aria/listbox': 3.13.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/menu': 3.15.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/meter': 3.4.17(react@19.0.0-rc-603e6108-20241029) + '@react-aria/numberfield': 3.11.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/overlays': 3.23.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/progress': 3.4.17(react@19.0.0-rc-603e6108-20241029) + '@react-aria/radio': 3.10.9(react@19.0.0-rc-603e6108-20241029) + '@react-aria/searchfield': 3.7.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/select': 3.14.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/selection': 3.20.1(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.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/slider': 3.7.13(react@19.0.0-rc-603e6108-20241029) + '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) + '@react-aria/switch': 3.6.9(react@19.0.0-rc-603e6108-20241029) + '@react-aria/table': 3.15.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/tabs': 3.9.7(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.7(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.10(react@19.0.0-rc-603e6108-20241029) + '@react-aria/tooltip': 3.7.9(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.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) + react-colorful@5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-dev-utils@12.0.1(eslint@9.12.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0): + react-colorful@5.6.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): + dependencies: + react: 19.0.0-rc-603e6108-20241029 + react-dom: 18.3.1(react@18.3.1) + + react-dev-utils@12.0.1(eslint@9.13.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0): dependencies: '@babel/code-frame': 7.23.5 address: 1.2.2 @@ -55822,7 +55911,7 @@ snapshots: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@9.12.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@9.13.0(jiti@1.21.0))(typescript@4.9.5)(webpack@5.91.0) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -55859,9 +55948,9 @@ snapshots: react-docgen@7.0.3: dependencies: - '@babel/core': 7.24.7 - '@babel/traverse': 7.25.3 - '@babel/types': 7.25.2 + '@babel/core': 7.25.8 + '@babel/traverse': 7.25.7 + '@babel/types': 7.25.8 '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.6 '@types/doctrine': 0.0.9 @@ -55891,11 +55980,11 @@ snapshots: 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): + react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 - react: 18.3.1 + react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) react-is: 18.1.0 @@ -55909,7 +55998,7 @@ snapshots: transitivePeerDependencies: - csstype - 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-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.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: '@babel/runtime': 7.25.7 html-parse-stringify: 3.0.1 @@ -55917,7 +56006,7 @@ snapshots: react: 19.0.0-rc-603e6108-20241029 optionalDependencies: 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-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-is@16.13.1: {} @@ -55955,12 +56044,12 @@ 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))(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-webview@11.26.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))(react@19.0.0-rc-603e6108-20241029): dependencies: escape-string-regexp: 2.0.0 invariant: 2.2.4 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.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-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: @@ -56012,56 +56101,6 @@ 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))(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) - '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13) - '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13) - '@react-native/assets-registry': 0.74.84 - '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7)) - '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@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(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 - base64-js: 1.5.1 - chalk: 4.1.2 - event-target-shim: 5.0.1 - flow-enums-runtime: 0.0.6 - invariant: 2.2.4 - jest-environment-node: 29.7.0 - jsc-android: 250231.0.0 - memoize-one: 5.2.1 - metro-runtime: 0.80.12 - metro-source-map: 0.80.12 - mkdirp: 0.5.6 - nullthrows: 1.1.1 - pretty-format: 26.6.2 - promise: 8.3.0 - 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@19.0.0-rc-603e6108-20241029) - regenerator-runtime: 0.13.11 - scheduler: 0.24.0-canary-efb381bbf-20230505 - stacktrace-parser: 0.1.10 - whatwg-fetch: 3.6.20 - ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) - yargs: 17.7.2 - optionalDependencies: - '@types/react': types-react@19.0.0-rc.1 - transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' - - bufferutil - - encoding - - 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@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 @@ -56213,33 +56252,33 @@ snapshots: '@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: - '@react-stately/calendar': 3.5.5(react@18.3.1) - '@react-stately/checkbox': 3.6.9(react@18.3.1) - '@react-stately/collections': 3.11.0(react@18.3.1) - '@react-stately/color': 3.8.0(react@18.3.1) - '@react-stately/combobox': 3.10.0(react@18.3.1) - '@react-stately/data': 3.11.7(react@18.3.1) - '@react-stately/datepicker': 3.10.3(react@18.3.1) - '@react-stately/dnd': 3.4.3(react@18.3.1) - '@react-stately/form': 3.0.6(react@18.3.1) - '@react-stately/list': 3.11.0(react@18.3.1) - '@react-stately/menu': 3.8.3(react@18.3.1) - '@react-stately/numberfield': 3.9.7(react@18.3.1) - '@react-stately/overlays': 3.6.11(react@18.3.1) - '@react-stately/radio': 3.10.8(react@18.3.1) - '@react-stately/searchfield': 3.5.7(react@18.3.1) - '@react-stately/select': 3.6.8(react@18.3.1) - '@react-stately/selection': 3.17.0(react@18.3.1) - '@react-stately/slider': 3.5.8(react@18.3.1) - '@react-stately/table': 3.12.3(react@18.3.1) - '@react-stately/tabs': 3.6.10(react@18.3.1) - '@react-stately/toggle': 3.7.8(react@18.3.1) - '@react-stately/tooltip': 3.4.13(react@18.3.1) - '@react-stately/tree': 3.8.5(react@18.3.1) - '@react-types/shared': 3.25.0(react@18.3.1) - react: 18.3.1 + react-stately@3.33.0(react@19.0.0-rc-603e6108-20241029): + dependencies: + '@react-stately/calendar': 3.5.5(react@19.0.0-rc-603e6108-20241029) + '@react-stately/checkbox': 3.6.9(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/color': 3.8.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/combobox': 3.10.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/data': 3.11.7(react@19.0.0-rc-603e6108-20241029) + '@react-stately/datepicker': 3.10.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/dnd': 3.4.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) + '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/menu': 3.8.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/numberfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) + '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) + '@react-stately/radio': 3.10.8(react@19.0.0-rc-603e6108-20241029) + '@react-stately/searchfield': 3.5.7(react@19.0.0-rc-603e6108-20241029) + '@react-stately/select': 3.6.8(react@19.0.0-rc-603e6108-20241029) + '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/slider': 3.5.8(react@19.0.0-rc-603e6108-20241029) + '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tabs': 3.6.10(react@19.0.0-rc-603e6108-20241029) + '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tooltip': 3.4.13(react@19.0.0-rc-603e6108-20241029) + '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.25.0(react@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): dependencies: @@ -57746,14 +57785,14 @@ snapshots: hey-listen: 1.0.8 tslib: 2.8.0 - 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): + styled-components@5.3.11(@babel/core@7.25.8)(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@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) + babel-plugin-styled-components: 2.1.4(@babel/core@7.25.8)(styled-components@5.3.11(@babel/core@7.25.8)(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: 19.0.0-rc-603e6108-20241029 @@ -57764,13 +57803,6 @@ snapshots: transitivePeerDependencies: - '@babel/core' - 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.7 - styled-jsx@5.1.1(@babel/core@7.25.8)(react@18.3.1): dependencies: client-only: 0.0.1 @@ -57778,13 +57810,6 @@ snapshots: optionalDependencies: '@babel/core': 7.25.8 - styled-jsx@5.1.1(@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 - styled-jsx@5.1.6(@babel/core@7.24.0)(react@19.0.0-rc-603e6108-20241029): dependencies: client-only: 0.0.1 @@ -57792,20 +57817,6 @@ snapshots: 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 - react: 18.3.1 - 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 @@ -58011,17 +58022,17 @@ snapshots: dependencies: tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)) - tailwindcss-animate@1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))): + tailwindcss-animate@1.0.7(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))): dependencies: - 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@22.8.2)(typescript@5.6.3)) tailwindcss-react-aria-components@1.1.5(tailwindcss@3.4.10(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4))): dependencies: tailwindcss: 3.4.10(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)) - tailwindcss-react-aria-components@1.1.6(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3))): + tailwindcss-react-aria-components@1.1.6(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3))): dependencies: - 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@22.8.2)(typescript@5.6.3)) tailwindcss@3.2.4(postcss@8.4.38)(ts-node@10.9.2(@types/node@18.11.18)(typescript@5.4.5)): dependencies: @@ -58067,11 +58078,11 @@ snapshots: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.1 - postcss: 8.4.41 - postcss-import: 15.1.0(postcss@8.4.41) - postcss-js: 4.0.1(postcss@8.4.41) - 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-nested: 6.0.1(postcss@8.4.41) + 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 @@ -58090,16 +58101,16 @@ snapshots: is-glob: 4.0.3 jiti: 1.21.0 lilconfig: 2.1.0 - micromatch: 4.0.7 + micromatch: 4.0.8 normalize-path: 3.0.0 object-hash: 3.0.0 - picocolors: 1.0.1 + picocolors: 1.1.1 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@20.14.7)(typescript@5.5.2)) postcss-nested: 6.0.1(postcss@8.4.47) - postcss-selector-parser: 6.0.11 + postcss-selector-parser: 6.1.2 resolve: 1.22.8 sucrase: 3.35.0 transitivePeerDependencies: @@ -58117,22 +58128,22 @@ snapshots: is-glob: 4.0.3 jiti: 1.21.0 lilconfig: 2.1.0 - micromatch: 4.0.7 + micromatch: 4.0.8 normalize-path: 3.0.0 object-hash: 3.0.0 - picocolors: 1.0.1 + picocolors: 1.1.1 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 + postcss-selector-parser: 6.1.2 resolve: 1.22.8 sucrase: 3.35.0 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@22.8.2)(typescript@5.6.3)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -58144,16 +58155,16 @@ snapshots: is-glob: 4.0.3 jiti: 1.21.0 lilconfig: 2.1.0 - micromatch: 4.0.7 + micromatch: 4.0.8 normalize-path: 3.0.0 object-hash: 3.0.0 - picocolors: 1.0.1 + picocolors: 1.1.1 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@22.8.2)(typescript@5.6.3)) postcss-nested: 6.0.1(postcss@8.4.47) - postcss-selector-parser: 6.0.11 + postcss-selector-parser: 6.1.2 resolve: 1.22.8 sucrase: 3.35.0 transitivePeerDependencies: @@ -58279,7 +58290,7 @@ snapshots: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 - terser: 5.31.5 + terser: 5.36.0 webpack: 5.91.0(esbuild@0.22.0) optionalDependencies: esbuild: 0.22.0 @@ -58290,16 +58301,9 @@ snapshots: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 - terser: 5.31.5 + terser: 5.36.0 webpack: 5.91.0 - terser@5.31.5: - dependencies: - '@jridgewell/source-map': 0.3.6 - acorn: 8.13.0 - commander: 2.20.3 - source-map-support: 0.5.21 - terser@5.36.0: dependencies: '@jridgewell/source-map': 0.3.6 @@ -58574,11 +58578,11 @@ snapshots: dependencies: 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): + 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.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5)) + jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -58694,11 +58698,11 @@ snapshots: '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.25.8) - 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))(jest@29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)))(typescript@4.9.5): + 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))(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@22.7.7)(ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5)) + jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -58711,12 +58715,12 @@ 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.6.3): + 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))(esbuild@0.22.0)(jest@29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)))(typescript@5.6.3): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 fast-json-stable-stringify: 2.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)) + jest: 29.7.0(@types/node@22.8.2)(ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -58725,31 +58729,12 @@ snapshots: typescript: 5.6.3 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.24.7 + '@babel/core': 7.25.8 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.24.7) + babel-jest: 29.7.0(@babel/core@7.25.8) 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.6.3): - dependencies: - bs-logger: 0.2.6 - ejs: 3.1.10 - fast-json-stable-stringify: 2.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)) - jest-util: 29.7.0 - json5: 2.2.3 - lodash.memoize: 4.1.2 - make-error: 1.3.6 - semver: 7.6.3 - typescript: 5.6.3 - yargs-parser: 21.1.1 - optionalDependencies: - '@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) - 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@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5)))(typescript@4.9.5): dependencies: bs-logger: 0.2.6 @@ -58788,12 +58773,12 @@ 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.6.3): + 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@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 fast-json-stable-stringify: 2.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)) + jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -58807,12 +58792,12 @@ 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.6.3): + 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 fast-json-stable-stringify: 2.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)) + jest: 29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 @@ -58870,14 +58855,14 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.1(@types/node@22.7.7)(typescript@4.9.5): + ts-node@10.9.1(@types/node@22.8.2)(typescript@4.9.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 22.7.7 + '@types/node': 22.8.2 acorn: 8.11.3 acorn-walk: 8.2.0 arg: 4.1.3 @@ -58888,14 +58873,14 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.1(@types/node@22.7.7)(typescript@5.4.5): + ts-node@10.9.1(@types/node@22.8.2)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 22.7.7 + '@types/node': 22.8.2 acorn: 8.11.3 acorn-walk: 8.2.0 arg: 4.1.3 @@ -59130,14 +59115,14 @@ snapshots: yn: 3.1.1 optional: true - ts-node@10.9.2(@types/node@22.7.7)(typescript@4.9.5): + ts-node@10.9.2(@types/node@22.8.2)(typescript@4.9.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 22.7.7 + '@types/node': 22.8.2 acorn: 8.12.1 acorn-walk: 8.2.0 arg: 4.1.3 @@ -59148,14 +59133,14 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.2(@types/node@22.7.7)(typescript@5.4.5): + ts-node@10.9.2(@types/node@22.8.2)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 22.7.7 + '@types/node': 22.8.2 acorn: 8.12.1 acorn-walk: 8.2.0 arg: 4.1.3 @@ -59166,14 +59151,14 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - ts-node@10.9.2(@types/node@22.7.7)(typescript@5.6.3): + ts-node@10.9.2(@types/node@22.8.2)(typescript@5.6.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 22.7.7 + '@types/node': 22.8.2 acorn: 8.12.1 acorn-walk: 8.2.0 arg: 4.1.3 @@ -59210,7 +59195,7 @@ snapshots: dependencies: chalk: 4.1.2 enhanced-resolve: 5.17.1 - tsconfig-paths: 4.1.2 + tsconfig-paths: 4.2.0 tsconfig-paths@3.15.0: dependencies: @@ -59219,12 +59204,6 @@ snapshots: minimist: 1.2.8 strip-bom: 3.0.0 - tsconfig-paths@4.1.2: - dependencies: - json5: 2.2.3 - minimist: 1.2.8 - strip-bom: 3.0.0 - tsconfig-paths@4.2.0: dependencies: json5: 2.2.3 @@ -59719,10 +59698,6 @@ snapshots: optionalDependencies: '@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 @@ -60027,10 +60002,10 @@ snapshots: dependencies: xml-name-validator: 4.0.0 - wagmi@2.10.4(slso2y5si5ebobzw4pa64fwb3i): + wagmi@2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq): dependencies: '@tanstack/react-query': 5.45.1(react@19.0.0-rc-603e6108-20241029) - '@wagmi/connectors': 5.0.16(276lu6ucw5vl7m53grscpa4fqq) + '@wagmi/connectors': 5.0.16(c6fifzb677vjk75d7sjyei2p2e) '@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) @@ -61062,11 +61037,11 @@ snapshots: web3-providers-ws@4.0.8(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@types/ws': 8.5.3 - isomorphic-ws: 5.0.0(ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + isomorphic-ws: 5.0.0(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) web3-errors: 1.3.0 web3-types: 1.7.0 web3-utils: 4.3.1 - 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) transitivePeerDependencies: - bufferutil - utf-8-validate @@ -61343,13 +61318,13 @@ snapshots: webpack@5.91.0: dependencies: '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/wasm-edit': 1.12.1 '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.13.0 acorn-import-assertions: 1.9.0(acorn@8.13.0) - browserslist: 4.23.3 + browserslist: 4.24.0 chrome-trace-event: 1.0.4 enhanced-resolve: 5.17.1 es-module-lexer: 1.5.4 @@ -61374,13 +61349,13 @@ snapshots: webpack@5.91.0(esbuild@0.22.0): dependencies: '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 + '@types/estree': 1.0.6 '@webassemblyjs/ast': 1.12.1 '@webassemblyjs/wasm-edit': 1.12.1 '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.13.0 acorn-import-assertions: 1.9.0(acorn@8.13.0) - browserslist: 4.23.3 + browserslist: 4.24.0 chrome-trace-event: 1.0.4 enhanced-resolve: 5.17.1 es-module-lexer: 1.5.4 diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 2589c7f941..4c65b62e3e 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -31,13 +31,47 @@ packages: - "contract_manager" catalog: + "@amplitude/analytics-browser": 2.11.8 + "@amplitude/plugin-autocapture-browser": 1.0.0 + "@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 - "@types/react-dom": npm:types-react-dom@rc - "@types/react": npm:types-react@rc + "@next/third-parties": 15.0.2 + "@phosphor-icons/react": 2.1.7 + "@storybook/addon-essentials": 8.3.5 + "@storybook/addon-styling-webpack": 1.0.0 + "@storybook/addon-themes": 8.3.5 + "@storybook/blocks": 8.3.5 + "@storybook/nextjs": 8.3.5 + "@storybook/react": 8.3.5 + "@svgr/webpack": 8.1.0 + "@tailwindcss/forms": 0.5.9 + "@types/jest": 29.5.14 + "@types/node": 22.8.2 + "@types/react": npm:types-react@19.0.0-rc.1 + "@types/react-dom": npm:types-react-dom@19.0.0-rc.1 + autoprefixer: 10.4.20 + bcp-47: 2.1.0 + clsx: 2.1.1 + css-loader: 7.1.2 + eslint: 9.13.0 + framer-motion: 11.11.10 + jest: 29.7.0 next: 15.0.2 + pino: 9.5.0 + postcss-loader: 8.1.1 + postcss: 8.4.47 + prettier: 3.3.3 + react-aria-components: 1.4.0 + react-aria: 3.35.0 react-dom: 19.0.0-rc-603e6108-20241029 react: 19.0.0-rc-603e6108-20241029 - framer-motion: 11.11.10 + storybook: 8.3.5 + style-loader: 4.0.0 + tailwindcss-animate: 1.0.7 + tailwindcss-react-aria-components: 1.1.6 + tailwindcss: 3.4.14 + typescript: 5.6.3 + vercel: 37.12.1