diff --git a/apps/api-reference/jsx.d.ts b/apps/api-reference/jsx.d.ts new file mode 100644 index 0000000000..34544d616c --- /dev/null +++ b/apps/api-reference/jsx.d.ts @@ -0,0 +1,9 @@ +import type { JSX as Jsx } from "react/jsx-runtime"; + +declare global { + namespace JSX { + type ElementClass = Jsx.ElementClass; + type Element = Jsx.Element; + type IntrinsicElements = Jsx.IntrinsicElements; + } +} diff --git a/apps/api-reference/next-env.d.ts b/apps/api-reference/next-env.d.ts index 40c3d68096..1b3be0840f 100644 --- a/apps/api-reference/next-env.d.ts +++ b/apps/api-reference/next-env.d.ts @@ -2,4 +2,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. +// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/apps/api-reference/src/markdown-components.tsx b/apps/api-reference/src/markdown-components.tsx index 2bcf89a06a..dd9297c0ba 100644 --- a/apps/api-reference/src/markdown-components.tsx +++ b/apps/api-reference/src/markdown-components.tsx @@ -31,9 +31,6 @@ export const MARKDOWN_COMPONENTS = { ); } else { - // @ts-expect-error react-markdown doesn't officially support react 19 - // yet; there's no issues here in practice but the types don't currently - // unify return
;
     }
   },
diff --git a/apps/insights/next-env.d.ts b/apps/insights/next-env.d.ts
index 40c3d68096..1b3be0840f 100644
--- a/apps/insights/next-env.d.ts
+++ b/apps/insights/next-env.d.ts
@@ -2,4 +2,4 @@
 /// 
 
 // NOTE: This file should not be edited
-// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
+// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/apps/insights/package.json b/apps/insights/package.json
index 0b7be3ac1a..a3c34f9500 100644
--- a/apps/insights/package.json
+++ b/apps/insights/package.json
@@ -35,7 +35,7 @@
     "clsx": "catalog:",
     "cryptocurrency-icons": "catalog:",
     "dnum": "catalog:",
-    "framer-motion": "catalog:",
+    "motion": "catalog:",
     "next": "catalog:",
     "next-themes": "catalog:",
     "nuqs": "catalog:",
diff --git a/apps/insights/src/app/price-feeds/[slug]/layout.ts b/apps/insights/src/app/price-feeds/[slug]/layout.ts
new file mode 100644
index 0000000000..3bc3a95f54
--- /dev/null
+++ b/apps/insights/src/app/price-feeds/[slug]/layout.ts
@@ -0,0 +1,13 @@
+import type { Metadata } from "next";
+
+import { client } from "../../../services/pyth";
+export { PriceFeedLayout as default } from "../../../components/PriceFeed/layout";
+
+export const metadata: Metadata = {
+  title: "Price Feeds",
+};
+
+export const generateStaticParams = async () => {
+  const data = await client.getData();
+  return data.symbols.map((symbol) => ({ slug: encodeURIComponent(symbol) }));
+};
diff --git a/apps/insights/src/app/price-feeds/[slug]/page.ts b/apps/insights/src/app/price-feeds/[slug]/page.ts
new file mode 100644
index 0000000000..8f31450e3a
--- /dev/null
+++ b/apps/insights/src/app/price-feeds/[slug]/page.ts
@@ -0,0 +1 @@
+export { Chart as default } from "../../../components/PriceFeed/chart";
diff --git a/apps/insights/src/app/price-feeds/[slug]/price-components/page.tsx b/apps/insights/src/app/price-feeds/[slug]/price-components/page.tsx
new file mode 100644
index 0000000000..cd1074e5ff
--- /dev/null
+++ b/apps/insights/src/app/price-feeds/[slug]/price-components/page.tsx
@@ -0,0 +1 @@
+export { PriceComponents as default } from "../../../../components/PriceFeed/price-components";
diff --git a/apps/insights/src/app/price-feeds/layout.ts b/apps/insights/src/app/price-feeds/layout.ts
new file mode 100644
index 0000000000..146de5525c
--- /dev/null
+++ b/apps/insights/src/app/price-feeds/layout.ts
@@ -0,0 +1 @@
+export { PriceFeedsLayout as default } from "../../components/PriceFeeds/layout";
diff --git a/apps/insights/src/app/price-feeds/page.ts b/apps/insights/src/app/price-feeds/page.ts
index ef49f0ada8..343ef24c4b 100644
--- a/apps/insights/src/app/price-feeds/page.ts
+++ b/apps/insights/src/app/price-feeds/page.ts
@@ -1 +1,7 @@
+import type { Metadata } from "next";
+
 export { PriceFeeds as default } from "../../components/PriceFeeds";
+
+export const metadata: Metadata = {
+  title: "Price Feeds",
+};
diff --git a/apps/insights/src/app/publishers/page.ts b/apps/insights/src/app/publishers/page.ts
index d9e5e904c1..0df43b651f 100644
--- a/apps/insights/src/app/publishers/page.ts
+++ b/apps/insights/src/app/publishers/page.ts
@@ -1 +1,7 @@
+import type { Metadata } from "next";
+
 export { Publishers as default } from "../../components/Publishers";
+
+export const metadata: Metadata = {
+  title: "Publishers",
+};
diff --git a/apps/insights/src/components/AsyncValue/index.tsx b/apps/insights/src/components/AsyncValue/index.tsx
deleted file mode 100644
index 949cb3acb1..0000000000
--- a/apps/insights/src/components/AsyncValue/index.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-"use client";
-
-import { Skeleton } from "@pythnetwork/component-library/Skeleton";
-import { Suspense, use } from "react";
-
-type Props = {
-  placeholderWidth: number;
-  valuePromise: Promise;
-};
-
-export const AsyncValue = ({
-  placeholderWidth,
-  valuePromise,
-}: Props) => (
-  }>
-    
-  
-);
-
-const ResolvedValue = ({ valuePromise }: Pick, "valuePromise">) =>
-  use(valuePromise);
diff --git a/apps/insights/src/components/PriceFeeds/change-percent.module.scss b/apps/insights/src/components/ChangePercent/index.module.scss
similarity index 93%
rename from apps/insights/src/components/PriceFeeds/change-percent.module.scss
rename to apps/insights/src/components/ChangePercent/index.module.scss
index 94f5a2e8c5..2005df4aa0 100644
--- a/apps/insights/src/components/PriceFeeds/change-percent.module.scss
+++ b/apps/insights/src/components/ChangePercent/index.module.scss
@@ -1,7 +1,6 @@
 @use "@pythnetwork/component-library/theme";
 
 .changePercent {
-  font-size: theme.font-size("sm");
   transition: color 100ms linear;
   display: flex;
   flex-flow: row nowrap;
diff --git a/apps/insights/src/components/PriceFeeds/change-percent.tsx b/apps/insights/src/components/ChangePercent/index.tsx
similarity index 69%
rename from apps/insights/src/components/PriceFeeds/change-percent.tsx
rename to apps/insights/src/components/ChangePercent/index.tsx
index c2a53d918b..79635d088f 100644
--- a/apps/insights/src/components/PriceFeeds/change-percent.tsx
+++ b/apps/insights/src/components/ChangePercent/index.tsx
@@ -2,11 +2,12 @@
 
 import { CaretUp } from "@phosphor-icons/react/dist/ssr/CaretUp";
 import { Skeleton } from "@pythnetwork/component-library/Skeleton";
+import clsx from "clsx";
 import { type ComponentProps, createContext, use } from "react";
 import { useNumberFormatter } from "react-aria";
 import { z } from "zod";
 
-import styles from "./change-percent.module.scss";
+import styles from "./index.module.scss";
 import { StateType, useData } from "../../use-data";
 import { useLivePrice } from "../LivePrices";
 
@@ -18,20 +19,17 @@ const REFRESH_YESTERDAYS_PRICES_INTERVAL = ONE_HOUR_IN_MS;
 const CHANGE_PERCENT_SKELETON_WIDTH = 15;
 
 type Props = Omit, "value"> & {
-  symbolsToFeedKeys: Record;
+  feeds: (Feed & { symbol: string })[];
 };
 
 const YesterdaysPricesContext = createContext<
   undefined | ReturnType>>
 >(undefined);
 
-export const YesterdaysPricesProvider = ({
-  symbolsToFeedKeys,
-  ...props
-}: Props) => {
+export const YesterdaysPricesProvider = ({ feeds, ...props }: Props) => {
   const state = useData(
-    ["yesterdaysPrices", Object.values(symbolsToFeedKeys)],
-    () => getYesterdaysPrices(symbolsToFeedKeys),
+    ["yesterdaysPrices", feeds.map((feed) => feed.symbol)],
+    () => getYesterdaysPrices(feeds),
     {
       refreshInterval: REFRESH_YESTERDAYS_PRICES_INTERVAL,
     },
@@ -41,17 +39,21 @@ export const YesterdaysPricesProvider = ({
 };
 
 const getYesterdaysPrices = async (
-  symbolsToFeedKeys: Record,
+  feeds: (Feed & { symbol: string })[],
 ): Promise> => {
   const url = new URL("/yesterdays-prices", window.location.origin);
-  for (const symbol of Object.keys(symbolsToFeedKeys)) {
-    url.searchParams.append("symbols", symbol);
+  for (const feed of feeds) {
+    url.searchParams.append("symbols", feed.symbol);
   }
   const response = await fetch(url);
   const data: unknown = await response.json();
   return new Map(
     Object.entries(yesterdaysPricesSchema.parse(data)).map(
-      ([symbol, value]) => [symbolsToFeedKeys[symbol] ?? "", value],
+      ([symbol, value]) => [
+        feeds.find((feed) => feed.symbol === symbol)?.product.price_account ??
+          "",
+        value,
+      ],
     ),
   );
 };
@@ -69,10 +71,17 @@ const useYesterdaysPrices = () => {
 };
 
 type ChangePercentProps = {
-  feedKey: string;
+  className?: string | undefined;
+  feed: Feed;
 };
 
-export const ChangePercent = ({ feedKey }: ChangePercentProps) => {
+type Feed = {
+  product: {
+    price_account: string;
+  };
+};
+
+export const ChangePercent = ({ feed, className }: ChangePercentProps) => {
   const yesterdaysPriceState = useYesterdaysPrices();
 
   switch (yesterdaysPriceState.type) {
@@ -85,52 +94,60 @@ export const ChangePercent = ({ feedKey }: ChangePercentProps) => {
     case StateType.NotLoaded: {
       return (
         
       );
     }
 
     case StateType.Loaded: {
-      const yesterdaysPrice = yesterdaysPriceState.data.get(feedKey);
+      const yesterdaysPrice = yesterdaysPriceState.data.get(
+        feed.product.price_account,
+      );
       // eslint-disable-next-line unicorn/no-null
       return yesterdaysPrice === undefined ? null : (
-        
+        
       );
     }
   }
 };
 
 type ChangePercentLoadedProps = {
+  className?: string | undefined;
   priorPrice: number;
-  feedKey: string;
+  feed: Feed;
 };
 
 const ChangePercentLoaded = ({
+  className,
   priorPrice,
-  feedKey,
+  feed,
 }: ChangePercentLoadedProps) => {
-  const currentPrice = useLivePrice(feedKey);
+  const currentPrice = useLivePrice(feed);
 
   return currentPrice === undefined ? (
-    
+    
   ) : (
     
   );
 };
 
 type PriceDifferenceProps = {
+  className?: string | undefined;
   currentPrice: number;
   priorPrice: number;
 };
 
 const PriceDifference = ({
+  className,
   currentPrice,
   priorPrice,
 }: PriceDifferenceProps) => {
@@ -138,7 +155,7 @@ const PriceDifference = ({
   const direction = getDirection(currentPrice, priorPrice);
 
   return (
-    
+    
       
       {numberFormatter.format(
         (100 * Math.abs(currentPrice - priorPrice)) / currentPrice,
diff --git a/apps/insights/src/components/CopyButton/index.module.scss b/apps/insights/src/components/CopyButton/index.module.scss
index bf4f615648..f4ab5e171b 100644
--- a/apps/insights/src/components/CopyButton/index.module.scss
+++ b/apps/insights/src/components/CopyButton/index.module.scss
@@ -1,55 +1,29 @@
 @use "@pythnetwork/component-library/theme";
 
 .copyButton {
-  margin: -#{theme.spacing(0.5)} -#{theme.spacing(1)};
-  display: inline-block;
-  white-space: nowrap;
-  border-radius: theme.border-radius("md");
-  padding: theme.spacing(0.5) theme.spacing(1);
-  background: none;
-  cursor: pointer;
-  transition-property: background-color, color, border-color, outline-color;
-  transition-duration: 100ms;
-  transition-timing-function: linear;
-  border: 1px solid transparent;
-  outline-offset: 0;
-  outline: theme.spacing(1) solid transparent;
-
   .iconContainer {
     position: relative;
-    top: 0.125em;
-    margin-left: theme.spacing(1);
-    display: inline-block;
 
     .copyIcon {
       opacity: 0.5;
       transition: opacity 100ms linear;
-      width: 1em;
-      height: 1em;
+      position: absolute;
+      inset: 0;
+      width: 100%;
+      height: 100%;
     }
 
     .checkIcon {
       position: absolute;
       inset: 0;
+      width: 100%;
+      height: 100%;
       color: theme.color("states", "success", "normal");
       opacity: 0;
       transition: opacity 100ms linear;
     }
   }
 
-  &[data-hovered] {
-    background-color: theme.color("button", "outline", "background", "hover");
-  }
-
-  &[data-pressed] {
-    background-color: theme.color("button", "outline", "background", "active");
-  }
-
-  &[data-focus-visible] {
-    border-color: theme.color("focus");
-    outline-color: theme.color("focus-dim");
-  }
-
   &[data-is-copied] .iconContainer {
     .copyIcon {
       opacity: 0;
diff --git a/apps/insights/src/components/CopyButton/index.tsx b/apps/insights/src/components/CopyButton/index.tsx
index 9b7d6c7afe..0def672482 100644
--- a/apps/insights/src/components/CopyButton/index.tsx
+++ b/apps/insights/src/components/CopyButton/index.tsx
@@ -3,22 +3,23 @@
 import { Check } from "@phosphor-icons/react/dist/ssr/Check";
 import { Copy } from "@phosphor-icons/react/dist/ssr/Copy";
 import { useLogger } from "@pythnetwork/app-logger";
-import { UnstyledButton } from "@pythnetwork/component-library/UnstyledButton";
+import { Button } from "@pythnetwork/component-library/Button";
 import clsx from "clsx";
 import { type ComponentProps, useCallback, useEffect, useState } from "react";
 
 import styles from "./index.module.scss";
 
-type CopyButtonProps = ComponentProps & {
+type OwnProps = {
   text: string;
 };
 
-export const CopyButton = ({
-  text,
-  children,
-  className,
-  ...props
-}: CopyButtonProps) => {
+type Props = Omit<
+  ComponentProps,
+  keyof OwnProps | "onPress" | "afterIcon"
+> &
+  OwnProps;
+
+export const CopyButton = ({ text, children, className, ...props }: Props) => {
   const [isCopied, setIsCopied] = useState(false);
   const logger = useLogger();
   const copy = useCallback(() => {
@@ -52,23 +53,19 @@ export const CopyButton = ({
   }, [isCopied]);
 
   return (
-     (
+        
+ + +
+ )} {...(isCopied && { "data-is-copied": true })} {...props} > - {(...args) => ( - <> - - {typeof children === "function" ? children(...args) : children} - - - - - - - )} -
+ {children} + ); }; diff --git a/apps/insights/src/components/FeedKey/index.tsx b/apps/insights/src/components/FeedKey/index.tsx new file mode 100644 index 0000000000..fc3215596c --- /dev/null +++ b/apps/insights/src/components/FeedKey/index.tsx @@ -0,0 +1,45 @@ +import base58 from "bs58"; +import { useMemo, type ComponentProps } from "react"; + +import { CopyButton } from "../CopyButton"; + +type OwnProps = { + feed: { + product: { + price_account: string; + }; + }; +}; + +type Props = Omit< + ComponentProps, + keyof OwnProps | "text" | "children" +> & + OwnProps; + +export const FeedKey = ({ feed, ...props }: Props) => { + const key = useMemo( + () => toHex(feed.product.price_account), + [feed.product.price_account], + ); + const truncatedKey = useMemo( + () => toTruncatedHex(feed.product.price_account), + [feed.product.price_account], + ); + + return ( + + {truncatedKey} + + ); +}; + +const toHex = (value: string) => toHexString(base58.decode(value)); + +const toTruncatedHex = (value: string) => { + const hex = toHex(value); + return `${hex.slice(0, 6)}...${hex.slice(-4)}`; +}; + +const toHexString = (byteArray: Uint8Array) => + `0x${Array.from(byteArray, (byte) => byte.toString(16).padStart(2, "0")).join("")}`; diff --git a/apps/insights/src/components/FormattedTokens/index.tsx b/apps/insights/src/components/FormattedTokens/index.tsx index 874e709c86..bb9a10207f 100644 --- a/apps/insights/src/components/FormattedTokens/index.tsx +++ b/apps/insights/src/components/FormattedTokens/index.tsx @@ -8,18 +8,18 @@ const DECIMALS = 6; type Props = { mode?: "compact" | "wholePart" | "full"; - children: bigint; + tokens: bigint; }; -export const FormattedTokens = ({ children, mode = "compact" }: Props) => { +export const FormattedTokens = ({ tokens, mode = "compact" }: Props) => { const { locale } = useLocale(); const value = useMemo( () => - dnum.format([children, DECIMALS], { + dnum.format([tokens, DECIMALS], { compact: mode === "compact", locale, }), - [children, locale, mode], + [tokens, locale, mode], ); return mode === "wholePart" ? value.split(".")[0] : value; diff --git a/apps/insights/src/components/LayoutTransition/index.tsx b/apps/insights/src/components/LayoutTransition/index.tsx new file mode 100644 index 0000000000..6883a8cf73 --- /dev/null +++ b/apps/insights/src/components/LayoutTransition/index.tsx @@ -0,0 +1,100 @@ +"use client"; + +import { + type TargetAndTransition, + type Target, + AnimatePresence, + motion, +} from "motion/react"; +import { LayoutRouterContext } from "next/dist/shared/lib/app-router-context.shared-runtime"; +import { useSelectedLayoutSegment } from "next/navigation"; +import { + type ReactNode, + type ComponentProps, + useContext, + useEffect, + useRef, +} from "react"; + +type OwnProps = { + children: ReactNode; + variants?: Record< + string, + | TargetAndTransition + | (( + custom: VariantArg, + current: Target, + velocity: Target, + ) => TargetAndTransition | string) + >; +}; + +export type VariantArg = { + segment: ReturnType; + prevSegment: ReturnType; +}; + +type Props = Omit, keyof OwnProps> & OwnProps; + +export const LayoutTransition = ({ children, ...props }: Props) => { + const segment = useSelectedLayoutSegment(); + const prevSegment = + useRef>(segment); + const nextSegment = + useRef>(segment); + + useEffect(() => { + nextSegment.current = segment; + }, [segment]); + + const updatePrevSegment = () => { + prevSegment.current = nextSegment.current; + }; + + return ( + + + {children} + + + ); +}; + +const FrozenRouter = ({ children }: { children: ReactNode }) => { + const context = useContext(LayoutRouterContext); + // eslint-disable-next-line unicorn/no-null + const prevContext = usePreviousValue(context) ?? null; + + const segment = useSelectedLayoutSegment(); + const prevSegment = usePreviousValue(segment); + + const changed = segment !== prevSegment && prevSegment !== undefined; + + return ( + + {children} + + ); +}; + +const usePreviousValue = (value: T): T | undefined => { + const prevValue = useRef(undefined); + + useEffect(() => { + prevValue.current = value; + return () => { + prevValue.current = undefined; + }; + }); + + return prevValue.current; +}; diff --git a/apps/insights/src/components/LivePrices/index.tsx b/apps/insights/src/components/LivePrices/index.tsx index aa01775932..50305c2592 100644 --- a/apps/insights/src/components/LivePrices/index.tsx +++ b/apps/insights/src/components/LivePrices/index.tsx @@ -2,18 +2,21 @@ import { PlusMinus } from "@phosphor-icons/react/dist/ssr/PlusMinus"; import { useLogger } from "@pythnetwork/app-logger"; +import type { PriceData } from "@pythnetwork/client"; import { Skeleton } from "@pythnetwork/component-library/Skeleton"; import { useMap } from "@react-hookz/web"; import { PublicKey } from "@solana/web3.js"; import { type ComponentProps, + type ReactNode, use, createContext, useEffect, useCallback, useState, + useMemo, } from "react"; -import { useNumberFormatter } from "react-aria"; +import { useNumberFormatter, useDateFormatter } from "react-aria"; import styles from "./index.module.scss"; import { client, subscribe } from "../../services/pyth"; @@ -24,10 +27,8 @@ const LivePricesContext = createContext< ReturnType | undefined >(undefined); -type Price = { - price: number; +type Price = PriceData & { direction: ChangeDirection; - confidence: number; }; type ChangeDirection = "up" | "down" | "flat"; @@ -43,46 +44,103 @@ export const LivePricesProvider = ({ ...props }: LivePricesProviderProps) => { return ; }; -export const useLivePrice = (account: string) => { +type Feed = { + product: { + price_account: string; + }; +}; + +export const useLivePrice = (feed: Feed) => { + const { price_account } = feed.product; const { priceData, addSubscription, removeSubscription } = useLivePrices(); useEffect(() => { - addSubscription(account); + addSubscription(price_account); return () => { - removeSubscription(account); + removeSubscription(price_account); }; - }, [addSubscription, removeSubscription, account]); + }, [addSubscription, removeSubscription, price_account]); - return priceData.get(account); + return priceData.get(price_account); }; -export const LivePrice = ({ account }: { account: string }) => { +export const LivePrice = ({ feed }: { feed: Feed }) => { const numberFormatter = useNumberFormatter({ maximumSignificantDigits: 5 }); - const price = useLivePrice(account); + const price = useLivePrice(feed); return price === undefined ? ( ) : ( - {numberFormatter.format(price.price)} + {numberFormatter.format(price.aggregate.price)} ); }; -export const LiveConfidence = ({ account }: { account: string }) => { +export const LiveConfidence = ({ feed }: { feed: Feed }) => { const numberFormatter = useNumberFormatter({ maximumSignificantDigits: 5 }); - const price = useLivePrice(account); + const price = useLivePrice(feed); - return price === undefined ? ( - - ) : ( + return ( - {numberFormatter.format(price.confidence)} + {price === undefined ? ( + + ) : ( + {numberFormatter.format(price.aggregate.confidence)} + )} ); }; +export const LiveLastUpdated = ({ feed }: { feed: Feed }) => { + const price = useLivePrice(feed); + const formatterWithDate = useDateFormatter({ + dateStyle: "short", + timeStyle: "medium", + }); + const formatterWithoutDate = useDateFormatter({ + timeStyle: "medium", + }); + const formattedTimestamp = useMemo(() => { + if (price) { + const timestamp = new Date(Number(price.timestamp * 1000n)); + return isToday(timestamp) + ? formatterWithoutDate.format(timestamp) + : formatterWithDate.format(timestamp); + } else { + return; + } + }, [price, formatterWithDate, formatterWithoutDate]); + + return formattedTimestamp ?? ; +}; + +type LiveValueProps = { + field: T; + feed: Feed & { + price: Record; + }; +}; + +export const LiveValue = ({ + feed, + field, +}: LiveValueProps) => { + const price = useLivePrice(feed); + + return price?.[field]?.toString() ?? feed.price[field]; +}; + +const isToday = (date: Date) => { + const now = new Date(); + return ( + date.getFullYear() === now.getFullYear() && + date.getMonth() === now.getMonth() && + date.getDate() === now.getDate() + ); +}; + const usePriceData = () => { const feedSubscriptions = useMap([]); const [feedKeys, setFeedKeys] = useState([]); @@ -104,11 +162,7 @@ const usePriceData = () => { for (const [i, price] of initialPrices.entries()) { const key = uninitializedFeedKeys[i]; if (key) { - priceData.set(key, { - price: price.aggregate.price, - direction: "flat", - confidence: price.aggregate.confidence, - }); + priceData.set(key, { ...price, direction: "flat" }); } } }) @@ -120,13 +174,12 @@ const usePriceData = () => { // Then, we create a subscription to update prices live. const connection = subscribe( feedKeys.map((key) => new PublicKey(key)), - ({ price_account }, { aggregate }) => { + ({ price_account }, price) => { if (price_account) { const prevPrice = priceData.get(price_account)?.price; priceData.set(price_account, { - price: aggregate.price, - direction: getChangeDirection(prevPrice, aggregate.price), - confidence: aggregate.confidence, + ...price, + direction: getChangeDirection(prevPrice, price.aggregate.price), }); } }, diff --git a/apps/insights/src/components/PriceFeed/chart.tsx b/apps/insights/src/components/PriceFeed/chart.tsx new file mode 100644 index 0000000000..a1563a1a58 --- /dev/null +++ b/apps/insights/src/components/PriceFeed/chart.tsx @@ -0,0 +1 @@ +export const Chart = () =>

Chart

; diff --git a/apps/insights/src/components/PriceFeed/layout.module.scss b/apps/insights/src/components/PriceFeed/layout.module.scss new file mode 100644 index 0000000000..cdd35b7387 --- /dev/null +++ b/apps/insights/src/components/PriceFeed/layout.module.scss @@ -0,0 +1,63 @@ +@use "@pythnetwork/component-library/theme"; + +.priceFeedLayout { + .header { + @include theme.max-width; + + margin: theme.spacing(6) auto; + display: flex; + flex-flow: column nowrap; + gap: theme.spacing(6); + + .headerRow, + .rightGroup, + .stats { + display: flex; + flex-flow: row nowrap; + align-items: center; + } + + .headerRow { + justify-content: space-between; + } + + .rightGroup { + gap: theme.spacing(2); + } + + .stats { + gap: theme.spacing(6); + + & > * { + flex: 1 1 0px; + width: 0; + } + + .confidenceExplainButton { + margin-top: -#{theme.button-padding("xs", false)}; + margin-right: -#{theme.button-padding("xs", false)}; + } + } + } + + .priceComponentsTabLabel { + display: inline-flex; + flex-flow: row nowrap; + gap: theme.spacing(2); + align-items: center; + } + + .body { + @include theme.max-width; + + padding-top: theme.spacing(6); + } +} + +.confidenceDescription { + margin: 0; + + b { + font-weight: theme.font-weight("semibold"); + } +} diff --git a/apps/insights/src/components/PriceFeed/layout.tsx b/apps/insights/src/components/PriceFeed/layout.tsx new file mode 100644 index 0000000000..97002a6ab8 --- /dev/null +++ b/apps/insights/src/components/PriceFeed/layout.tsx @@ -0,0 +1,193 @@ +import { Info } from "@phosphor-icons/react/dist/ssr/Info"; +import { Lightbulb } from "@phosphor-icons/react/dist/ssr/Lightbulb"; +import { ListDashes } from "@phosphor-icons/react/dist/ssr/ListDashes"; +import { Alert, AlertTrigger } from "@pythnetwork/component-library/Alert"; +import { Badge } from "@pythnetwork/component-library/Badge"; +import { Breadcrumbs } from "@pythnetwork/component-library/Breadcrumbs"; +import { Button, ButtonLink } from "@pythnetwork/component-library/Button"; +import { Drawer, DrawerTrigger } from "@pythnetwork/component-library/Drawer"; +import { StatCard } from "@pythnetwork/component-library/StatCard"; +import type { ReactNode } from "react"; +import { z } from "zod"; + +import styles from "./layout.module.scss"; +import { ReferenceData } from "./reference-data"; +import { TabPanel, TabRoot, Tabs } from "./tabs"; +import { client } from "../../services/pyth"; +import { YesterdaysPricesProvider, ChangePercent } from "../ChangePercent"; +import { FeedKey } from "../FeedKey"; +import { LivePrice, LiveConfidence, LiveLastUpdated } from "../LivePrices"; +import { NotFound } from "../NotFound"; +import { PriceFeedTag } from "../PriceFeedTag"; + +type Props = { + children: ReactNode; + params: Promise<{ + slug: string; + }>; +}; + +export const PriceFeedLayout = async ({ children, params }: Props) => { + const { slug } = await params; + const feed = await getPriceFeed(decodeURIComponent(slug)); + + return feed ? ( +
+
+
+ +
+ + {feed.product.asset_type.toUpperCase()} + +
+
+
+ +
+ + + + + + + +
+
+
+ } + /> + } + corner={ + + + }> +

+ Confidence is how far from the aggregate price Pyth + believes the true price might be. It reflects a combination + of the confidence of individual quoters and how well + individual quoters agree with each other. +

+ + Learn more + +
+
+ } + /> + + + + } + /> + } + /> +
+
+ + + Price Components + + {feed.price.numComponentPrices} + +
+ ), + }, + ]} + /> + {children} + + + ) : ( + + ); +}; + +const getPriceFeed = async (symbol: string) => { + const data = await client.getData(); + const priceFeeds = priceFeedsSchema.parse( + data.symbols.map((symbol) => ({ + symbol, + product: data.productFromSymbol.get(symbol), + price: data.productPrice.get(symbol), + })), + ); + return priceFeeds.find((feed) => feed.symbol === symbol); +}; + +const priceFeedsSchema = z.array( + z.object({ + symbol: z.string(), + product: z.object({ + display_symbol: z.string(), + asset_type: z.string(), + description: z.string(), + price_account: z.string(), + base: z.string().optional(), + country: z.string().optional(), + quote_currency: z.string().optional(), + tenor: z.string().optional(), + cms_symbol: z.string().optional(), + cqs_symbol: z.string().optional(), + nasdaq_symbol: z.string().optional(), + generic_symbol: z.string().optional(), + weekly_schedule: z.string().optional(), + schedule: z.string().optional(), + contract_id: z.string().optional(), + }), + price: z.object({ + exponent: z.number(), + numComponentPrices: z.number(), + numQuoters: z.number(), + minPublishers: z.number(), + lastSlot: z.bigint(), + validSlot: z.bigint(), + }), + }), +); diff --git a/apps/insights/src/components/PriceFeed/price-components.tsx b/apps/insights/src/components/PriceFeed/price-components.tsx new file mode 100644 index 0000000000..6cd9d818a5 --- /dev/null +++ b/apps/insights/src/components/PriceFeed/price-components.tsx @@ -0,0 +1 @@ +export const PriceComponents = () =>

Price Components

; diff --git a/apps/insights/src/components/PriceFeed/reference-data.module.scss b/apps/insights/src/components/PriceFeed/reference-data.module.scss new file mode 100644 index 0000000000..159844092c --- /dev/null +++ b/apps/insights/src/components/PriceFeed/reference-data.module.scss @@ -0,0 +1,12 @@ +@use "@pythnetwork/component-library/theme"; + +.referenceData { + .field { + color: theme.color("muted"); + font-weight: theme.font-weight("normal"); + } + + .value { + color: theme.color("paragraph"); + } +} diff --git a/apps/insights/src/components/PriceFeed/reference-data.tsx b/apps/insights/src/components/PriceFeed/reference-data.tsx new file mode 100644 index 0000000000..69dca2a91b --- /dev/null +++ b/apps/insights/src/components/PriceFeed/reference-data.tsx @@ -0,0 +1,124 @@ +"use client"; + +import { Badge } from "@pythnetwork/component-library/Badge"; +import { Table } from "@pythnetwork/component-library/Table"; +import { useMemo } from "react"; +import { useCollator } from "react-aria"; + +import styles from "./reference-data.module.scss"; +import { LiveValue } from "../LivePrices"; + +type Props = { + feed: { + symbol: string; + product: { + display_symbol: string; + asset_type: string; + description: string; + price_account: string; + base?: string | undefined; + country?: string | undefined; + quote_currency?: string | undefined; + tenor?: string | undefined; + cms_symbol?: string | undefined; + cqs_symbol?: string | undefined; + nasdaq_symbol?: string | undefined; + generic_symbol?: string | undefined; + weekly_schedule?: string | undefined; + schedule?: string | undefined; + contract_id?: string | undefined; + }; + price: { + exponent: number; + numComponentPrices: number; + numQuoters: number; + minPublishers: number; + lastSlot: bigint; + validSlot: bigint; + }; + }; +}; + +export const ReferenceData = ({ feed }: Props) => { + const collator = useCollator(); + + const rows = useMemo( + () => + [ + ...Object.entries({ + "Asset Type": ( + + {feed.product.asset_type.toUpperCase()} + + ), + Base: feed.product.base, + Description: feed.product.description, + Symbol: feed.symbol, + Country: feed.product.country, + "Quote Currency": feed.product.quote_currency, + Tenor: feed.product.tenor, + "CMS Symbol": feed.product.cms_symbol, + "CQS Symbol": feed.product.cqs_symbol, + "NASDAQ Symbol": feed.product.nasdaq_symbol, + "Generic Symbol": feed.product.generic_symbol, + "Weekly Schedule": feed.product.weekly_schedule, + Schedule: feed.product.schedule, + "Contract ID": feed.product.contract_id, + "Display Symbol": feed.product.display_symbol, + }), + ...Object.entries({ + Exponent: "exponent", + "Number of Price Components": "numComponentPrices", + "Number of Price Quoters": "numQuoters", + "Minimum Number of Publishers": "minPublishers", + "Last Slot": "lastSlot", + "Valid Slot": "validSlot", + } as const).map( + ([key, value]) => + [ + key, + + + , + ] as const, + ), + ] + .map(([field, value]) => + value === undefined ? undefined : ([field, value] as const), + ) + .filter((entry) => entry !== undefined) + .sort(([a], [b]) => collator.compare(a, b)) + .map(([field, value]) => ({ + id: field, + data: { + field: {field}, + value: + typeof value === "string" ? ( + {value} + ) : ( + value + ), + }, + })), + [collator, feed], + ); + + return ( + + ); +}; diff --git a/apps/insights/src/components/PriceFeed/tabs.tsx b/apps/insights/src/components/PriceFeed/tabs.tsx new file mode 100644 index 0000000000..83680f62bc --- /dev/null +++ b/apps/insights/src/components/PriceFeed/tabs.tsx @@ -0,0 +1,86 @@ +"use client"; + +import { Tabs as TabsComponent } from "@pythnetwork/component-library/Tabs"; +import { + UnstyledTabPanel, + UnstyledTabs, +} from "@pythnetwork/component-library/UnstyledTabs"; +import { useSelectedLayoutSegment, usePathname } from "next/navigation"; +import { useMemo, type ComponentProps } from "react"; + +import { LayoutTransition } from "../LayoutTransition"; + +export const TabRoot = ( + props: Omit, "selectedKey">, +) => { + const tabId = useSelectedLayoutSegment() ?? ""; + + return ; +}; + +type TabsProps = Omit< + ComponentProps, + "pathname" | "items" +> & { + slug: string; + items: (Omit< + ComponentProps["items"], + "href" | "id" + >[number] & { + segment: string | undefined; + })[]; +}; + +export const Tabs = ({ slug, items, ...props }: TabsProps) => { + const pathname = usePathname(); + const mappedItems = useMemo(() => { + const prefix = `/price-feeds/${slug}`; + return items.map((item) => ({ + ...item, + id: item.segment ?? "", + href: item.segment ? `${prefix}/${item.segment}` : prefix, + })); + }, [items, slug]); + + return ; +}; + +export const TabPanel = ({ + children, + ...props +}: Omit, "id">) => { + const tabId = useSelectedLayoutSegment() ?? ""; + + return ( + + {(args) => ( + ({ + opacity: 0, + x: segment === null ? "-2%" : "2%", + }), + exit: ({ segment }) => ({ + opacity: 0, + x: segment === null ? "2%" : "-2%", + transition: { + x: { type: "spring", bounce: 0 }, + }, + }), + }} + initial="initial" + animate={{ + opacity: 1, + x: 0, + transition: { + x: { type: "spring", bounce: 0 }, + }, + }} + exit="exit" + > + {typeof children === "function" ? children(args) : children} + + )} + + ); +}; diff --git a/apps/insights/src/icons.tsx b/apps/insights/src/components/PriceFeedTag/icons.ts similarity index 99% rename from apps/insights/src/icons.tsx rename to apps/insights/src/components/PriceFeedTag/icons.ts index 01f2b5f40b..c3f00555d1 100644 --- a/apps/insights/src/icons.tsx +++ b/apps/insights/src/components/PriceFeedTag/icons.ts @@ -969,6 +969,3 @@ export const icons = { ZIL: Zil, ZRX: Zrx, }; - -export const getIcon = (symbol: string) => - symbol in icons ? icons[symbol as keyof typeof icons] : undefined; diff --git a/apps/insights/src/components/PriceFeedTag/index.module.scss b/apps/insights/src/components/PriceFeedTag/index.module.scss new file mode 100644 index 0000000000..2a57b1fca3 --- /dev/null +++ b/apps/insights/src/components/PriceFeedTag/index.module.scss @@ -0,0 +1,70 @@ +@use "@pythnetwork/component-library/theme"; + +.priceFeedTag { + display: flex; + flex-flow: row nowrap; + gap: theme.spacing(3); + align-items: center; + width: 100%; + + .icon { + flex: none; + width: theme.spacing(10); + height: theme.spacing(10); + } + + .nameAndDescription { + display: flex; + flex-flow: column nowrap; + gap: theme.spacing(1); + flex-grow: 1; + flex-basis: 0; + white-space: nowrap; + overflow: hidden; + + .name { + overflow: hidden; + text-overflow: ellipsis; + display: flex; + flex-flow: row nowrap; + align-items: center; + gap: theme.spacing(1); + color: theme.color("heading"); + + .firstPart { + font-weight: theme.font-weight("medium"); + } + + .divider { + font-weight: theme.font-weight("light"); + color: theme.color("muted"); + } + + .part { + opacity: 0.6; + } + } + + .description { + font-size: theme.font-size("xs"); + font-weight: theme.font-weight("medium"); + line-height: theme.spacing(4); + color: theme.color("muted"); + overflow: hidden; + text-overflow: ellipsis; + } + } + + &[data-compact] { + .icon { + width: theme.spacing(6); + height: theme.spacing(6); + } + } + + &[data-loading] { + .icon { + border-radius: theme.border-radius("full"); + } + } +} diff --git a/apps/insights/src/components/PriceFeedTag/index.tsx b/apps/insights/src/components/PriceFeedTag/index.tsx new file mode 100644 index 0000000000..2e09bb4c04 --- /dev/null +++ b/apps/insights/src/components/PriceFeedTag/index.tsx @@ -0,0 +1,95 @@ +import { Skeleton } from "@pythnetwork/component-library/Skeleton"; +import clsx from "clsx"; +import Generic from "cryptocurrency-icons/svg/color/generic.svg"; +import { type ComponentProps, Fragment } from "react"; + +import { icons } from "./icons"; +import styles from "./index.module.scss"; + +type OwnProps = { + compact?: boolean | undefined; + feed?: + | { + product: { + display_symbol: string; + description: string; + }; + } + | undefined; +}; +type Props = Omit, keyof OwnProps> & OwnProps; + +export const PriceFeedTag = ({ feed, className, compact, ...props }: Props) => ( +
+ {feed === undefined ? ( + + ) : ( + + )} +
+ {feed === undefined ? ( +
+ +
+ ) : ( + + )} + {!compact && ( +
+ {feed === undefined ? ( + + ) : ( + feed.product.description.split("/")[0] + )} +
+ )} +
+
+); + +type OwnFeedNameProps = { symbol: string }; +type FeedNameProps = Omit, keyof OwnFeedNameProps> & + OwnFeedNameProps; + +const FeedName = ({ symbol, className, ...props }: FeedNameProps) => { + const [firstPart, ...parts] = symbol.split("/"); + + return ( +
+ {firstPart} + {parts.map((part, i) => ( + + / + {part} + + ))} +
+ ); +}; + +type OwnFeedIconProps = { + symbol: string; +}; +type FeedIconProps = Omit< + ComponentProps, + keyof OwnFeedIconProps | "width" | "height" | "viewBox" +> & + OwnFeedIconProps; + +const FeedIcon = ({ symbol, ...props }: FeedIconProps) => { + const firstPart = symbol.split("/")[0]; + const Icon = + firstPart && firstPart in icons + ? icons[firstPart as keyof typeof icons] + : Generic; + + return ; +}; diff --git a/apps/insights/src/components/PriceFeeds/coming-soon-list.module.scss b/apps/insights/src/components/PriceFeeds/coming-soon-list.module.scss index 390f3ed92d..d5e15a9924 100644 --- a/apps/insights/src/components/PriceFeeds/coming-soon-list.module.scss +++ b/apps/insights/src/components/PriceFeeds/coming-soon-list.module.scss @@ -1,15 +1,22 @@ @use "@pythnetwork/component-library/theme"; -.searchBar { - width: 100%; - padding: theme.spacing(3); +.comingSoonList { display: flex; - flex-flow: row nowrap; - gap: theme.spacing(3); - flex: none; -} + flex-flow: column nowrap; + overflow: hidden; + height: 100%; + + .searchBar { + width: 100%; + padding: theme.spacing(3); + display: flex; + flex-flow: row nowrap; + gap: theme.spacing(3); + flex: none; + } -.priceFeeds { - overflow: auto; - flex-grow: 1; + .priceFeeds { + overflow: auto; + flex-grow: 1; + } } diff --git a/apps/insights/src/components/PriceFeeds/coming-soon-list.tsx b/apps/insights/src/components/PriceFeeds/coming-soon-list.tsx index fe8c2cd89c..dc624335d2 100644 --- a/apps/insights/src/components/PriceFeeds/coming-soon-list.tsx +++ b/apps/insights/src/components/PriceFeeds/coming-soon-list.tsx @@ -67,7 +67,7 @@ export const ComingSoonList = ({ comingSoonFeeds }: Props) => { [filteredFeeds], ); return ( - <> +
{ ]} rows={rows} /> - +
); }; diff --git a/apps/insights/src/components/PriceFeeds/index.module.scss b/apps/insights/src/components/PriceFeeds/index.module.scss index 45cde5c6f6..1b39301414 100644 --- a/apps/insights/src/components/PriceFeeds/index.module.scss +++ b/apps/insights/src/components/PriceFeeds/index.module.scss @@ -1,55 +1,5 @@ @use "@pythnetwork/component-library/theme"; -.priceFeedNameAndIcon, -.priceFeedNameAndDescription { - display: flex; - flex-flow: row nowrap; - gap: theme.spacing(3); - align-items: center; - width: 100%; - - .priceFeedIcon { - flex: none; - } - - .priceFeedName { - display: flex; - flex-flow: row nowrap; - align-items: center; - gap: theme.spacing(1); - color: theme.color("heading"); - - .firstPart { - font-weight: theme.font-weight("medium"); - } - - .divider { - font-weight: theme.font-weight("light"); - color: theme.color("muted"); - } - - .part { - opacity: 0.6; - } - } -} - -.priceFeedNameAndIcon { - .priceFeedIcon { - width: theme.spacing(6); - height: theme.spacing(6); - - &.skeleton { - border-radius: theme.border-radius("full"); - } - } - - .priceFeedName { - flex-grow: 1; - flex-basis: 0; - } -} - .priceFeeds { @include theme.max-width; @@ -66,6 +16,10 @@ flex-flow: column nowrap; gap: theme.spacing(6); + .feedKey { + margin: 0 -#{theme.button-padding("xs", true)}; + } + .featuredFeeds, .stats { display: flex; @@ -79,7 +33,7 @@ } .stats { - gap: theme.spacing(4); + gap: theme.spacing(6); } .featuredFeeds { @@ -93,37 +47,6 @@ padding: theme.spacing(3); gap: theme.spacing(6); - .priceFeedNameAndDescription { - .priceFeedIcon { - width: theme.spacing(10); - height: theme.spacing(10); - } - - .nameAndDescription { - display: flex; - flex-flow: column nowrap; - gap: theme.spacing(1); - flex-grow: 1; - flex-basis: 0; - white-space: nowrap; - overflow: hidden; - - .priceFeedName { - overflow: hidden; - text-overflow: ellipsis; - } - - .description { - font-size: theme.font-size("xs"); - font-weight: theme.font-weight("medium"); - line-height: theme.spacing(4); - color: theme.color("muted"); - overflow: hidden; - text-overflow: ellipsis; - } - } - } - .prices { display: flex; flex-flow: row nowrap; @@ -133,13 +56,12 @@ font-weight: theme.font-weight("medium"); line-height: 1; font-size: theme.font-size("base"); + + .changePercent { + font-size: theme.font-size("sm"); + } } } } - - .priceFeedId { - color: theme.color("link", "normal"); - font-weight: theme.font-weight("medium"); - } } } diff --git a/apps/insights/src/components/PriceFeeds/index.tsx b/apps/insights/src/components/PriceFeeds/index.tsx index 4821116778..861ade4003 100644 --- a/apps/insights/src/components/PriceFeeds/index.tsx +++ b/apps/insights/src/components/PriceFeeds/index.tsx @@ -10,24 +10,20 @@ import { Card, } from "@pythnetwork/component-library/Card"; import { Drawer, DrawerTrigger } from "@pythnetwork/component-library/Drawer"; -import { Skeleton } from "@pythnetwork/component-library/Skeleton"; import { StatCard } from "@pythnetwork/component-library/StatCard"; -import base58 from "bs58"; -import clsx from "clsx"; -import Generic from "cryptocurrency-icons/svg/color/generic.svg"; -import { Fragment, type ElementType } from "react"; +import { type ElementType } from "react"; import { z } from "zod"; import { AssetClassesDrawer } from "./asset-classes-drawer"; -import { YesterdaysPricesProvider, ChangePercent } from "./change-percent"; import { ComingSoonList } from "./coming-soon-list"; import styles from "./index.module.scss"; import { PriceFeedsCard } from "./price-feeds-card"; -import { getIcon } from "../../icons"; import { client } from "../../services/pyth"; import { priceFeeds as priceFeedsStaticConfig } from "../../static-data/price-feeds"; -import { CopyButton } from "../CopyButton"; -import { LivePrice } from "../LivePrices"; +import { YesterdaysPricesProvider, ChangePercent } from "../ChangePercent"; +import { FeedKey } from "../FeedKey"; +import { LivePrice, LiveConfidence, LiveValue } from "../LivePrices"; +import { PriceFeedTag } from "../PriceFeedTag"; const PRICE_FEEDS_ANCHOR = "priceFeeds"; @@ -53,7 +49,7 @@ export const PriceFeeds = async () => {

Price Feeds

-
+
{ corner={} /> -
- [ - symbol, - product.price_account, - ]), - )} - > + + } @@ -115,24 +104,18 @@ export const PriceFeeds = async () => { } > ({ - symbol, - id: product.price_account, - displaySymbol: product.display_symbol, - assetClassAsString: product.asset_type, - priceFeedName: ( - - {product.display_symbol} - - ), - assetClass: ( - - {product.asset_type.toUpperCase()} - - ), - }), - )} + comingSoonFeeds={priceFeeds.comingSoon.map((feed) => ({ + symbol: feed.symbol, + id: feed.product.price_account, + displaySymbol: feed.product.display_symbol, + assetClassAsString: feed.product.asset_type, + priceFeedName: , + assetClass: ( + + {feed.product.asset_type.toUpperCase()} + + ), + }))} /> @@ -140,46 +123,32 @@ export const PriceFeeds = async () => { /> - } + priceFeeds={priceFeeds.activeFeeds.map((feed) => ({ + symbol: feed.symbol, + id: feed.product.price_account, + displaySymbol: feed.product.display_symbol, + assetClassAsString: feed.product.asset_type, + exponent: , + numPublishers: , + price: , + confidenceInterval: , + weeklySchedule: feed.product.weekly_schedule, + priceFeedName: , + assetClass: ( + + {feed.product.asset_type.toUpperCase()} + + ), + priceFeedId: ( + -
- -
-
- } - priceFeeds={priceFeeds.activeFeeds.map( - ({ symbol, product, price }) => ({ - symbol, - id: product.price_account, - displaySymbol: product.display_symbol, - assetClassAsString: product.asset_type, - exponent: price.exponent, - numPublishers: price.numQuoters, - weeklySchedule: product.weekly_schedule, - priceFeedName: ( - - {product.display_symbol} - - ), - assetClass: ( - - {product.asset_type.toUpperCase()} - - ), - priceFeedId: ( - - {toTruncatedHex(product.price_account)} - - ), - }), - )} + ), + }))} />
@@ -193,6 +162,7 @@ type FeaturedFeedsCardProps = Omit< showPrices?: boolean | undefined; linkFeeds?: boolean | undefined; feeds: { + symbol: string; product: { display_symbol: string; price_account: string; @@ -209,26 +179,20 @@ const FeaturedFeedsCard = ({ }: FeaturedFeedsCardProps) => (
- {feeds.map(({ product }) => ( + {feeds.map((feed) => (
-
- {product.display_symbol} -
- {product.display_symbol} -
- {product.description.split("/")[0]} -
-
-
+ {showPrices && (
- - + +
)}
@@ -238,53 +202,6 @@ const FeaturedFeedsCard = ({
); -const PriceFeedNameAndIcon = ({ children }: { children: string }) => ( -
- {children} - {children} -
-); - -const PriceFeedIcon = ({ children }: { children: string }) => { - const firstPart = children.split("/")[0]; - const Icon = firstPart ? (getIcon(firstPart) ?? Generic) : Generic; - - return ( - - ); -}; - -const PriceFeedName = ({ children }: { children: string }) => { - const [firstPart, ...parts] = children.split("/"); - - return ( -
- {firstPart} - {parts.map((part, i) => ( - - / - {part} - - ))} -
- ); -}; - -const toHex = (value: string) => toHexString(base58.decode(value)); - -const toTruncatedHex = (value: string) => { - const hex = toHex(value); - return `${hex.slice(0, 6)}...${hex.slice(-4)}`; -}; - -const toHexString = (byteArray: Uint8Array) => - `0x${Array.from(byteArray, (byte) => byte.toString(16).padStart(2, "0")).join("")}`; - const getPriceFeeds = async () => { const data = await client.getData(); const priceFeeds = priceFeedsSchema.parse( diff --git a/apps/insights/src/components/PriceFeeds/layout.tsx b/apps/insights/src/components/PriceFeeds/layout.tsx new file mode 100644 index 0000000000..276b191a8a --- /dev/null +++ b/apps/insights/src/components/PriceFeeds/layout.tsx @@ -0,0 +1,41 @@ +"use client"; + +import type { ReactNode } from "react"; + +import { type VariantArg, LayoutTransition } from "../LayoutTransition"; + +type Props = { + children: ReactNode; +}; + +export const PriceFeedsLayout = ({ children }: Props) => ( + ({ + opacity: 0, + scale: isGoingToIndex(custom) ? 1.04 : 0.96, + }), + exit: (custom) => ({ + opacity: 0, + scale: isGoingToIndex(custom) ? 0.96 : 1.04, + transition: { + scale: { type: "spring", bounce: 0 }, + }, + }), + }} + initial="initial" + animate={{ + opacity: 1, + scale: 1, + transition: { + scale: { type: "spring", bounce: 0 }, + }, + }} + style={{ transformOrigin: "top" }} + exit="exit" + > + {children} + +); + +const isGoingToIndex = ({ segment }: VariantArg) => segment === null; diff --git a/apps/insights/src/components/PriceFeeds/price-feeds-card.tsx b/apps/insights/src/components/PriceFeeds/price-feeds-card.tsx index cacf5adcfc..09795b473d 100644 --- a/apps/insights/src/components/PriceFeeds/price-feeds-card.tsx +++ b/apps/insights/src/components/PriceFeeds/price-feeds-card.tsx @@ -12,7 +12,7 @@ import { type ReactNode, Suspense, useCallback, useMemo } from "react"; import { useFilter, useCollator } from "react-aria"; import { serialize, useQueryParams } from "./query-params"; -import { SKELETON_WIDTH, LivePrice, LiveConfidence } from "../LivePrices"; +import { SKELETON_WIDTH } from "../LivePrices"; type Props = { id: string; @@ -25,8 +25,10 @@ type PriceFeed = { id: string; displaySymbol: string; assetClassAsString: string; - exponent: number; - numPublishers: number; + exponent: ReactNode; + numPublishers: ReactNode; + price: ReactNode; + confidenceInterval: ReactNode; priceFeedId: ReactNode; priceFeedName: ReactNode; assetClass: ReactNode; @@ -85,14 +87,10 @@ const ResolvedPriceFeedsCard = ({ priceFeeds, ...props }: Props) => { ); const rows = useMemo( () => - paginatedFeeds.map(({ id, ...data }) => ({ + paginatedFeeds.map(({ id, symbol, ...data }) => ({ id, - href: "#", - data: { - ...data, - price: , - confidenceInterval: , - }, + href: `/price-feeds/${encodeURIComponent(symbol)}`, + data, })), [paginatedFeeds], ); diff --git a/apps/insights/src/components/Publishers/index.module.scss b/apps/insights/src/components/Publishers/index.module.scss index 37692bb73c..9ab9b38cb4 100644 --- a/apps/insights/src/components/Publishers/index.module.scss +++ b/apps/insights/src/components/Publishers/index.module.scss @@ -149,21 +149,23 @@ border-radius: theme.border-radius("full"); } + .key { + margin: 0 -#{theme.button-padding("sm", true)}; + } + .nameAndKey { display: flex; flex-flow: column nowrap; gap: theme.spacing(1); align-items: flex-start; - .publisherKey { - color: theme.color("link", "normal"); - font-weight: theme.font-weight("medium"); - font-size: theme.font-size("xxs"); + .name { + color: theme.color("heading"); } - } - .name { - color: theme.color("heading"); + .key { + margin: 0 -#{theme.button-padding("xs", true)}; + } } &[data-is-undisclosed] { diff --git a/apps/insights/src/components/Publishers/index.tsx b/apps/insights/src/components/Publishers/index.tsx index 33bacafbee..8d229542ae 100644 --- a/apps/insights/src/components/Publishers/index.tsx +++ b/apps/insights/src/components/Publishers/index.tsx @@ -36,7 +36,7 @@ export const Publishers = async () => {

Publishers

-
+
{

- - {oisStats.totalStaked} - +

/{" "} - - {BigInt(oisStats.maxPoolSize ?? 0)} - +

@@ -134,7 +136,7 @@ export const Publishers = async () => { stat={ <> - {oisStats.totalStaked} + } /> @@ -144,15 +146,13 @@ export const Publishers = async () => { stat={ <> - - {oisStats.rewardsDistributed} - + } />
-
+ { ({ key, rank, numSymbols, medianScore }) => ({ id: key, nameAsString: lookupPublisher(key)?.name, - name: {key}, + name: , ranking: {rank}, activeFeeds: numSymbols, inactiveFeeds: totalFeeds - numSymbols, @@ -195,8 +195,8 @@ const Ranking = ({ className, ...props }: ComponentProps<"span">) => ( ); -const PublisherName = ({ children }: { children: string }) => { - const knownPublisher = lookupPublisher(children); +const PublisherName = ({ publisherKey }: { publisherKey: string }) => { + const knownPublisher = lookupPublisher(publisherKey); const Icon = knownPublisher?.icon.color ?? UndisclosedIcon; const name = knownPublisher?.name ?? "Undisclosed"; return ( @@ -208,13 +208,23 @@ const PublisherName = ({ children }: { children: string }) => { {knownPublisher ? (
{name}
- - {`${children.slice(0, 4)}...${children.slice(-4)}`} + + {`${publisherKey.slice(0, 4)}...${publisherKey.slice(-4)}`}
) : ( - - {`${children.slice(0, 4)}...${children.slice(-4)}`} + + {`${publisherKey.slice(0, 4)}...${publisherKey.slice(-4)}`} )}
diff --git a/apps/insights/src/components/Publishers/publishers-card.tsx b/apps/insights/src/components/Publishers/publishers-card.tsx index cff59b8c53..158d9fb351 100644 --- a/apps/insights/src/components/Publishers/publishers-card.tsx +++ b/apps/insights/src/components/Publishers/publishers-card.tsx @@ -128,7 +128,7 @@ const ResolvedPublishersCard = ({ publishers, ...props }: Props) => { href: "#", data: { ...data, - medianScore: {medianScore}, + medianScore: , }, })), [paginatedPublishers], @@ -283,14 +283,15 @@ const PublishersCardContents = ({ ); type PublisherScoreProps = { - children: number; + score: number; }; -const PublisherScore = ({ children }: PublisherScoreProps) => ( +const PublisherScore = ({ score }: PublisherScoreProps) => ( {({ percentage }) => (
( className={styles.fill} style={{ width: `${(50 + percentage / 2).toString()}%` }} > - {children.toFixed(2)} + {score.toFixed(2)}
)} diff --git a/apps/insights/src/components/Root/header.tsx b/apps/insights/src/components/Root/header.tsx index 25124c41a8..6004fa795c 100644 --- a/apps/insights/src/components/Root/header.tsx +++ b/apps/insights/src/components/Root/header.tsx @@ -1,5 +1,4 @@ import { Lifebuoy } from "@phosphor-icons/react/dist/ssr/Lifebuoy"; -import { AppTabs } from "@pythnetwork/component-library/AppTabs"; import { Button, ButtonLink } from "@pythnetwork/component-library/Button"; import { Link } from "@pythnetwork/component-library/Link"; import clsx from "clsx"; @@ -8,6 +7,7 @@ import type { ComponentProps } from "react"; import styles from "./header.module.scss"; import Logo from "./logo.svg"; import { SearchButton } from "./search-button"; +import { MainNavTabs } from "./tabs"; import { ThemeSwitch } from "./theme-switch"; export const Header = ({ className, ...props }: ComponentProps<"header">) => ( @@ -21,17 +21,7 @@ export const Header = ({ className, ...props }: ComponentProps<"header">) => (
Pyth Homepage
Insights
- +
- + ); }; @@ -71,7 +69,7 @@ type IconMovementProps = Omit & { }; const IconMovement = ({ icon: Icon, offset, ...props }: IconMovementProps) => ( - ( initial={false} > - + ); const useOffsets = () => { diff --git a/apps/insights/src/static-data/price-feeds.tsx b/apps/insights/src/static-data/price-feeds.tsx index 7c5f7384f3..4e7b513bfb 100644 --- a/apps/insights/src/static-data/price-feeds.tsx +++ b/apps/insights/src/static-data/price-feeds.tsx @@ -8,11 +8,5 @@ export const priceFeeds = { "Commodities.WTI1M", "Crypto.1INCH/USD", ], - featuredComingSoon: [ - "Rates.US2Y", - "Crypto.SOL/ETH", - "Crypto.ION/USD", - "Equity.NL.BCOIN/USD", - "Crypto.BSOL/SOL.RR", - ], + featuredComingSoon: ["Rates.US2Y", "Crypto.ION/USD", "Equity.NL.BCOIN/USD"], }; diff --git a/apps/staking/next-env.d.ts b/apps/staking/next-env.d.ts index 40c3d68096..1b3be0840f 100644 --- a/apps/staking/next-env.d.ts +++ b/apps/staking/next-env.d.ts @@ -2,4 +2,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information. +// see https://nextjs.org/docs/app/api-reference/config/typescript for more information. diff --git a/governance/xc_admin/packages/xc_admin_frontend/next-env.d.ts b/governance/xc_admin/packages/xc_admin_frontend/next-env.d.ts index a4a7b3f5cf..52e831b434 100644 --- a/governance/xc_admin/packages/xc_admin_frontend/next-env.d.ts +++ b/governance/xc_admin/packages/xc_admin_frontend/next-env.d.ts @@ -2,4 +2,4 @@ /// // NOTE: This file should not be edited -// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information. +// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information. diff --git a/packages/component-library/src/Breadcrumbs/index.module.scss b/packages/component-library/src/Breadcrumbs/index.module.scss new file mode 100644 index 0000000000..0f00f8715c --- /dev/null +++ b/packages/component-library/src/Breadcrumbs/index.module.scss @@ -0,0 +1,40 @@ +@use "../theme"; + +.breadcrumbs { + display: flex; + flex-flow: row nowrap; + align-items: center; + gap: theme.spacing(4); + list-style: none; + margin: 0; + padding: 0; + + .breadcrumb { + display: flex; + flex-flow: row nowrap; + align-items: center; + gap: theme.spacing(4); + + .separator { + color: theme.color("muted"); + width: theme.spacing(4); + height: theme.spacing(4); + } + + .crumb, + .current { + font-size: theme.font-size(); + font-style: normal; + font-weight: theme.font-weight("medium"); + line-height: 1; + } + + .crumb { + color: theme.color("link", "primary"); + } + + .current { + color: theme.color("heading"); + } + } +} diff --git a/packages/component-library/src/Breadcrumbs/index.stories.tsx b/packages/component-library/src/Breadcrumbs/index.stories.tsx new file mode 100644 index 0000000000..aac12f1fd2 --- /dev/null +++ b/packages/component-library/src/Breadcrumbs/index.stories.tsx @@ -0,0 +1,32 @@ +import type { Meta, StoryObj } from "@storybook/react"; + +import { Breadcrumbs as BreadcrumbsComponent } from "./index.js"; + +const meta = { + component: BreadcrumbsComponent, + argTypes: { + label: { + control: "text", + table: { + category: "Contents", + }, + }, + items: { + table: { + disable: true, + }, + }, + }, +} satisfies Meta; +export default meta; + +export const Breadcrumbs = { + args: { + label: "Breadcrumbs", + items: [ + { href: "/", label: "Home" }, + { href: "/foo", label: "Foo" }, + { label: "Bar" }, + ], + }, +} satisfies StoryObj; diff --git a/packages/component-library/src/Breadcrumbs/index.tsx b/packages/component-library/src/Breadcrumbs/index.tsx new file mode 100644 index 0000000000..c066810366 --- /dev/null +++ b/packages/component-library/src/Breadcrumbs/index.tsx @@ -0,0 +1,72 @@ +"use client"; + +import { CaretRight } from "@phosphor-icons/react/dist/ssr/CaretRight"; +import { House } from "@phosphor-icons/react/dist/ssr/House"; +import clsx from "clsx"; +import type { ComponentProps } from "react"; + +import styles from "./index.module.scss"; +import { ButtonLink } from "../Button/index.js"; +import { Link } from "../Link/index.js"; +import { + UnstyledBreadcrumbs, + UnstyledBreadcrumb, +} from "../UnstyledBreadcrumbs/index.js"; + +type OwnProps = { + label: string; + items: [ + ...{ + href: string; + label: string; + }[], + { label: string }, + ]; +}; +type Props = Omit, keyof OwnProps> & + OwnProps; + +export const Breadcrumbs = ({ label, className, items, ...props }: Props) => ( + +); diff --git a/packages/component-library/src/Drawer/index.module.scss b/packages/component-library/src/Drawer/index.module.scss index 6ba1686bdc..455c8c4066 100644 --- a/packages/component-library/src/Drawer/index.module.scss +++ b/packages/component-library/src/Drawer/index.module.scss @@ -19,11 +19,12 @@ background: theme.color("background", "primary"); border: 1px solid theme.color("border"); border-radius: theme.border-radius("3xl"); - overflow: hidden; outline: none; display: flex; flex-flow: column nowrap; height: 100%; + overflow-y: hidden; + padding-bottom: theme.border-radius("3xl"); .heading { padding: theme.spacing(4); @@ -33,6 +34,7 @@ justify-content: space-between; align-items: center; color: theme.color("heading"); + flex: none; .title { @include theme.h4; @@ -42,6 +44,11 @@ gap: theme.spacing(3); } } + + .body { + flex: 1; + overflow-y: auto; + } } } } diff --git a/packages/component-library/src/Drawer/index.tsx b/packages/component-library/src/Drawer/index.tsx index c7f6149153..e542242b48 100644 --- a/packages/component-library/src/Drawer/index.tsx +++ b/packages/component-library/src/Drawer/index.tsx @@ -58,7 +58,9 @@ export const Drawer = ({ title, children, className, ...props }: Props) => ( Close
- {typeof children === "function" ? children(state) : children} +
+ {typeof children === "function" ? children(state) : children} +
)} diff --git a/packages/component-library/src/Link/index.module.scss b/packages/component-library/src/Link/index.module.scss index 608fb795db..09286913fa 100644 --- a/packages/component-library/src/Link/index.module.scss +++ b/packages/component-library/src/Link/index.module.scss @@ -27,4 +27,12 @@ cursor: not-allowed; color: theme.color("button", "disabled", "foreground"); } + + &[data-invert] { + text-decoration: none; + + &[data-hovered] { + text-decoration: underline; + } + } } diff --git a/packages/component-library/src/Link/index.stories.tsx b/packages/component-library/src/Link/index.stories.tsx index f58cd0ea55..50e57874bf 100644 --- a/packages/component-library/src/Link/index.stories.tsx +++ b/packages/component-library/src/Link/index.stories.tsx @@ -29,6 +29,12 @@ const meta = { category: "State", }, }, + invert: { + control: "boolean", + table: { + category: "Link", + }, + }, }, } satisfies Meta; export default meta; @@ -39,5 +45,6 @@ export const Link = { href: "https://www.pyth.network", target: "_blank", isDisabled: false, + invert: false, }, } satisfies StoryObj; diff --git a/packages/component-library/src/Link/index.tsx b/packages/component-library/src/Link/index.tsx index ffcfae74b4..b4ae4ac5ad 100644 --- a/packages/component-library/src/Link/index.tsx +++ b/packages/component-library/src/Link/index.tsx @@ -1,9 +1,19 @@ import clsx from "clsx"; -import type { LinkProps } from "react-aria-components"; +import type { ComponentProps } from "react"; import styles from "./index.module.scss"; import { UnstyledLink } from "../UnstyledLink/index.js"; -export const Link = ({ className, ...props }: LinkProps) => ( - +type OwnProps = { + invert?: boolean | undefined; +}; +type Props = Omit, keyof OwnProps> & + OwnProps; + +export const Link = ({ className, invert, ...props }: Props) => ( + ); diff --git a/packages/component-library/src/AppTabs/index.module.scss b/packages/component-library/src/MainNavTabs/index.module.scss similarity index 51% rename from packages/component-library/src/AppTabs/index.module.scss rename to packages/component-library/src/MainNavTabs/index.module.scss index 1540c4f7a9..0d6e7573ef 100644 --- a/packages/component-library/src/AppTabs/index.module.scss +++ b/packages/component-library/src/MainNavTabs/index.module.scss @@ -1,6 +1,6 @@ @use "../theme"; -.appTabs { +.mainNavTabs { gap: theme.spacing(2); @include theme.row; @@ -17,7 +17,9 @@ outline: 4px solid transparent; outline-offset: 0; z-index: -1; - transition: outline-color 200ms linear; + transition-property: background-color, outline-color; + transition-duration: 100ms; + transition-timing-function: linear; } &[data-focus-visible] { @@ -31,7 +33,29 @@ &[data-selected] { color: theme.color("button", "solid", "foreground"); - cursor: default; + pointer-events: none; + + &[data-selectable] { + pointer-events: auto; + + &[data-hovered] .bubble { + background-color: theme.color( + "button", + "solid", + "background", + "hover" + ); + } + + &[data-pressed] .bubble { + background-color: theme.color( + "button", + "solid", + "background", + "active" + ); + } + } } } } diff --git a/packages/component-library/src/MainNavTabs/index.stories.tsx b/packages/component-library/src/MainNavTabs/index.stories.tsx new file mode 100644 index 0000000000..ab300d8b85 --- /dev/null +++ b/packages/component-library/src/MainNavTabs/index.stories.tsx @@ -0,0 +1,32 @@ +import type { Meta, StoryObj } from "@storybook/react"; + +import { MainNavTabs as MainNavTabsComponent } from "./index.js"; +import { UnstyledTabs } from "../UnstyledTabs/index.js"; + +const meta = { + component: MainNavTabsComponent, + argTypes: { + items: { + table: { + disable: true, + }, + }, + }, +} satisfies Meta; +export default meta; + +export const MainNavTabs = { + decorators: [ + (Story) => ( + + + + ), + ], + args: { + items: [ + { id: "foo", children: "Foo" }, + { id: "bar", children: "Bar" }, + ], + }, +} satisfies StoryObj; diff --git a/packages/component-library/src/MainNavTabs/index.tsx b/packages/component-library/src/MainNavTabs/index.tsx new file mode 100644 index 0000000000..a48f0eeef7 --- /dev/null +++ b/packages/component-library/src/MainNavTabs/index.tsx @@ -0,0 +1,53 @@ +"use client"; + +import clsx from "clsx"; +import { motion } from "motion/react"; +import type { ComponentProps } from "react"; + +import styles from "./index.module.scss"; +import buttonStyles from "../Button/index.module.scss"; +import { UnstyledTab, UnstyledTabList } from "../UnstyledTabs/index.js"; + +type OwnProps = { + pathname?: string | undefined; + items: ComponentProps[]; +}; +type Props = Omit, keyof OwnProps> & + OwnProps; + +export const MainNavTabs = ({ className, pathname, ...props }: Props) => ( + + {({ className: tabClassName, children, ...tab }) => ( + + {(args) => ( + <> + {args.isSelected && ( + + )} + + {typeof children === "function" ? children(args) : children} + + + )} + + )} + +); diff --git a/packages/component-library/src/Table/index.module.scss b/packages/component-library/src/Table/index.module.scss index 1d93f80d01..2db4fb9ca3 100644 --- a/packages/component-library/src/Table/index.module.scss +++ b/packages/component-library/src/Table/index.module.scss @@ -36,15 +36,18 @@ } .table { - border-collapse: collapse; + border-spacing: 0; .cell { padding-left: theme.spacing(3); padding-right: theme.spacing(3); white-space: nowrap; border: 0; - outline: none; + outline: theme.spacing(0.5) solid transparent; width: calc(theme.spacing(1) * var(--width)); + outline-offset: -#{theme.spacing(0.5)}; + background-color: theme.color("background", "primary"); + transition: outline-color 100ms linear; &:first-child { padding-left: theme.spacing(4); @@ -70,21 +73,35 @@ width: 100%; } + &[data-sticky] { + position: sticky; + left: 0; + z-index: 1; + border-right: 1px solid theme.color("border"); + } + &[data-focus-visible] { - outline: theme.spacing(0.5) solid theme.color("focus"); + outline-color: theme.color("focus"); } } .tableHeader { - border-bottom: 1px solid theme.color("background", "secondary"); font-size: theme.font-size("xs"); line-height: theme.spacing(4); color: theme.color("muted"); .cell { + border-bottom: 1px solid theme.color("background", "secondary"); font-weight: theme.font-weight("medium"); padding-top: theme.spacing(3); padding-bottom: theme.spacing(3); + position: sticky; + top: 0; + z-index: 1; + + &[data-sticky] { + z-index: 2; + } } } @@ -95,13 +112,25 @@ font-weight: theme.font-weight("medium"); .row { - background-color: transparent; - transition-property: background-color; - transition-duration: 100ms; - transition-timing-function: linear; - outline: none; + outline: theme.spacing(0.5) solid transparent; + outline-offset: -#{theme.spacing(0.5)}; + transition: outline-color 100ms linear; + + &[data-focus-visible] { + outline: theme.spacing(0.5) solid theme.color("focus"); + } + + &[data-href] { + cursor: pointer; + } - &[data-hovered] { + .cell { + padding-top: theme.spacing(4); + padding-bottom: theme.spacing(4); + transition: background-color 100ms linear; + } + + &[data-hovered] .cell { background-color: theme.color( "button", "outline", @@ -110,7 +139,7 @@ ); } - &[data-pressed] { + &[data-pressed] .cell { background-color: theme.color( "button", "outline", @@ -118,19 +147,6 @@ "active" ); } - - &[data-focus-visible] { - outline: theme.spacing(0.5) solid theme.color("focus"); - } - - &[data-href] { - cursor: pointer; - } - - .cell { - padding-top: theme.spacing(4); - padding-bottom: theme.spacing(4); - } } } } @@ -140,25 +156,49 @@ } &[data-divide] { - .tableHeader { - border-color: theme.color("border"); - } + .table { + // This rule has lower specificity than a rule above which applies the + // background color to hovered / pressed body cells, but csslint has no + // way to understand that .tableHeader and .tableBody are mutually + // exclusive and so these rules will never override other other. + // stylelint-disable-next-line no-descending-specificity + .tableHeader .cell { + border-color: theme.color("border"); + } - .tableBody .row .cell { - border-bottom: 1px solid theme.color("background", "secondary"); + .tableBody .row .cell { + border-bottom: 1px solid theme.color("background", "secondary"); + } } } &[data-rounded] { border-radius: theme.border-radius("xl"); - .tableBody .row:last-child .cell { - &:first-child { - border-bottom-left-radius: theme.border-radius("xl"); + .table { + .tableHeader .cell { + &:first-child { + border-top-left-radius: theme.border-radius("xl"); + } + + &:last-child { + border-top-right-radius: theme.border-radius("xl"); + } } - &:last-child { + .tableBody .row:last-child { + border-bottom-left-radius: theme.border-radius("xl"); border-bottom-right-radius: theme.border-radius("xl"); + + .cell { + &:first-child { + border-bottom-left-radius: theme.border-radius("xl"); + } + + &:last-child { + border-bottom-right-radius: theme.border-radius("xl"); + } + } } } } diff --git a/packages/component-library/src/Table/index.tsx b/packages/component-library/src/Table/index.tsx index c831119f62..147cca1b10 100644 --- a/packages/component-library/src/Table/index.tsx +++ b/packages/component-library/src/Table/index.tsx @@ -39,6 +39,7 @@ export type ColumnConfig = Omit & { name: ReactNode; id: T; fill?: boolean | undefined; + sticky?: boolean | undefined; alignment?: Alignment | undefined; width?: number | undefined; } & ( @@ -85,8 +86,8 @@ export const Table = ({ columns={columns} className={styles.tableHeader ?? ""} > - {({ fill, width, alignment, ...column }: ColumnConfig) => ( - + {(column: ColumnConfig) => ( + {column.name} )} @@ -104,8 +105,8 @@ export const Table = ({ className={styles.row ?? ""} columns={columns} > - {({ alignment, fill, width, ...column }: ColumnConfig) => ( - + {(column: ColumnConfig) => ( + {"loadingSkeleton" in column ? ( column.loadingSkeleton ) : ( @@ -113,7 +114,7 @@ export const Table = ({ width={ "loadingSkeletonWidth" in column ? column.loadingSkeletonWidth - : width + : column.width } /> )} @@ -127,9 +128,9 @@ export const Table = ({ columns={columns} {...row} > - {({ alignment, width, fill, id }: ColumnConfig) => ( - - {data[id]} + {(column: ColumnConfig) => ( + + {data[column.id]} )} @@ -140,13 +141,15 @@ export const Table = ({ ); -const cellProps = ( - alignment: Alignment | undefined, - width: number | undefined, - fill: boolean | undefined, -) => ({ +const cellProps = ({ + alignment, + width, + fill, + sticky, +}: Pick, "alignment" | "width" | "fill" | "sticky">) => ({ className: styles.cell ?? "", "data-alignment": alignment ?? "left", + "data-fill": fill ? "" : undefined, + "data-sticky": sticky ? "" : undefined, ...(width && { style: { "--width": width } as CSSProperties }), - ...(fill && { "data-fill": "" }), }); diff --git a/packages/component-library/src/Tabs/index.module.scss b/packages/component-library/src/Tabs/index.module.scss new file mode 100644 index 0000000000..e5a67cbb5e --- /dev/null +++ b/packages/component-library/src/Tabs/index.module.scss @@ -0,0 +1,35 @@ +@use "../theme"; + +.tabs { + border-bottom: 1px solid theme.color("border"); + + .tabList { + @include theme.max-width; + + display: flex; + flex-flow: row nowrap; + gap: theme.spacing(2); + padding-bottom: theme.spacing(1); + + .tab { + position: relative; + + .underline { + position: absolute; + bottom: -#{theme.spacing(1.5)}; + left: 0; + width: 100%; + height: theme.spacing(0.5); + background: theme.color("foreground"); + } + + &[data-selected] { + pointer-events: none; + + &[data-selectable] { + pointer-events: auto; + } + } + } + } +} diff --git a/packages/component-library/src/AppTabs/index.stories.tsx b/packages/component-library/src/Tabs/index.stories.tsx similarity index 65% rename from packages/component-library/src/AppTabs/index.stories.tsx rename to packages/component-library/src/Tabs/index.stories.tsx index 854648f9f2..4396828005 100644 --- a/packages/component-library/src/AppTabs/index.stories.tsx +++ b/packages/component-library/src/Tabs/index.stories.tsx @@ -1,21 +1,21 @@ import type { Meta, StoryObj } from "@storybook/react"; -import { AppTabs as AppTabsComponent } from "./index.js"; +import { Tabs as TabsComponent } from "./index.js"; import { UnstyledTabs } from "../UnstyledTabs/index.js"; const meta = { - component: AppTabsComponent, + component: TabsComponent, argTypes: { - tabs: { + items: { table: { disable: true, }, }, }, -} satisfies Meta; +} satisfies Meta; export default meta; -export const AppTabs = { +export const Tabs = { decorators: [ (Story) => ( @@ -24,9 +24,9 @@ export const AppTabs = { ), ], args: { - tabs: [ + items: [ { id: "foo", children: "Foo" }, { id: "bar", children: "Bar" }, ], }, -} satisfies StoryObj; +} satisfies StoryObj; diff --git a/packages/component-library/src/AppTabs/index.tsx b/packages/component-library/src/Tabs/index.tsx similarity index 50% rename from packages/component-library/src/AppTabs/index.tsx rename to packages/component-library/src/Tabs/index.tsx index df40a263e3..3c9e9b854b 100644 --- a/packages/component-library/src/AppTabs/index.tsx +++ b/packages/component-library/src/Tabs/index.tsx @@ -1,50 +1,55 @@ "use client"; import clsx from "clsx"; -import { m, LazyMotion, domMax } from "motion/react"; +import { motion } from "motion/react"; import type { ComponentProps } from "react"; import styles from "./index.module.scss"; import buttonStyles from "../Button/index.module.scss"; import { UnstyledTab, UnstyledTabList } from "../UnstyledTabs/index.js"; -type TabListProps = { - tabs: ComponentProps[]; +type OwnProps = { + label: string; + pathname?: string | undefined; + items: ComponentProps[]; }; +type Props = Omit, keyof OwnProps> & + OwnProps; -export const AppTabs = ({ tabs }: TabListProps) => ( - +export const Tabs = ({ label, className, pathname, ...props }: Props) => ( +
- {({ className, children, ...tab }) => ( + {({ className: tabClassName, children, ...tab }) => ( {(args) => ( <> + + {typeof children === "function" ? children(args) : children} + {args.isSelected && ( - )} - - {typeof children === "function" ? children(args) : children} - )} )} - +
); diff --git a/packages/component-library/src/UnstyledBreadcrumbs/index.tsx b/packages/component-library/src/UnstyledBreadcrumbs/index.tsx new file mode 100644 index 0000000000..3b1ed50307 --- /dev/null +++ b/packages/component-library/src/UnstyledBreadcrumbs/index.tsx @@ -0,0 +1,12 @@ +/** + * 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 { + Breadcrumbs as UnstyledBreadcrumbs, + Breadcrumb as UnstyledBreadcrumb, +} from "react-aria-components"; diff --git a/packages/component-library/src/theme.scss b/packages/component-library/src/theme.scss index 51ea440155..9e19889ef0 100644 --- a/packages/component-library/src/theme.scss +++ b/packages/component-library/src/theme.scss @@ -425,6 +425,8 @@ $color: ( "paragraph": light-dark(pallette-color("steel", 700), pallette-color("steel", 300)), "link": ( + "primary": + light-dark(pallette-color("violet", 700), pallette-color("purple", 300)), "normal": light-dark(pallette-color("steel", 800), pallette-color("steel", 50)), ), diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 90a5aaa2d9..da396a3a08 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -73,11 +73,11 @@ catalogs: specifier: 22.8.2 version: 22.8.2 '@types/react': - specifier: npm:types-react@19.0.0-rc.1 - version: 19.0.0-rc.1 + specifier: 19.0.1 + version: 19.0.1 '@types/react-dom': - specifier: npm:types-react-dom@19.0.0-rc.1 - version: 19.0.0-rc.1 + specifier: 19.0.2 + version: 19.0.2 autoprefixer: specifier: 10.4.20 version: 10.4.20 @@ -115,8 +115,8 @@ catalogs: specifier: 11.11.17 version: 11.11.17 next: - specifier: 15.0.3 - version: 15.0.3 + specifier: 15.1.0 + version: 15.1.0 next-themes: specifier: 0.3.0 version: 0.3.0 @@ -136,8 +136,8 @@ catalogs: specifier: 3.3.3 version: 3.3.3 react: - specifier: 19.0.0-rc-603e6108-20241029 - version: 19.0.0-rc-603e6108-20241029 + specifier: 19.0.0 + version: 19.0.0 react-aria: specifier: 3.36.0 version: 3.36.0 @@ -145,8 +145,8 @@ catalogs: specifier: 1.5.0 version: 1.5.0 react-dom: - specifier: 19.0.0-rc-603e6108-20241029 - version: 19.0.0-rc-603e6108-20241029 + specifier: 19.0.0 + version: 19.0.0 recharts: specifier: 2.14.1 version: 2.14.1 @@ -216,16 +216,16 @@ importers: version: 0.9.0 '@floating-ui/react': specifier: ^0.26.17 - version: 0.26.17(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 0.26.17(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@headlessui/react': specifier: ^2.2.0 - version: 2.2.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 2.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@heroicons/react': specifier: ^2.1.4 - version: 2.1.4(react@19.0.0-rc-603e6108-20241029) + version: 2.1.4(react@19.0.0) '@next/third-parties': specifier: ^14.2.4 - version: 14.2.4(next@15.0.3(@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)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029) + version: 14.2.4(next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0) '@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) @@ -237,7 +237,7 @@ importers: version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@tanstack/react-query': specifier: ^5.45.1 - version: 5.45.1(react@19.0.0-rc-603e6108-20241029) + version: 5.45.1(react@19.0.0) bs58: specifier: ^5.0.0 version: 5.0.0 @@ -246,31 +246,31 @@ 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(cwnwljk3n25tzd5weih3j2cexi) cryptocurrency-icons: specifier: ^0.18.1 version: 0.18.1 framer-motion: specifier: ^11.3.8 - version: 11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) next: specifier: 'catalog:' - version: 15.0.3(@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)(sass@1.80.7) + version: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) 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) + version: 0.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) pino: specifier: ^9.2.0 version: 9.2.0 react: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029 + version: 19.0.0 react-dom: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + version: 19.0.0(react@19.0.0) react-markdown: specifier: ^9.0.1 - version: 9.0.1(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) + version: 9.0.1(@types/react@19.0.1)(react@19.0.0) shiki: specifier: ^1.7.0 version: 1.7.0 @@ -279,7 +279,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(@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@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@19.0.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(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) zod: specifier: ^3.23.8 version: 3.23.8 @@ -289,10 +289,10 @@ importers: version: 4.9.1 '@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.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2) + 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)(sass@1.80.7)(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)(sass@1.80.7)(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) @@ -313,10 +313,10 @@ importers: version: 20.14.7 '@types/react': specifier: 'catalog:' - version: types-react@19.0.0-rc.1 + version: 19.0.1 '@types/react-dom': specifier: 'catalog:' - version: types-react-dom@19.0.0-rc.1 + version: 19.0.2(@types/react@19.0.1) autoprefixer: specifier: ^10.4.19 version: 10.4.19(postcss@8.4.38) @@ -380,7 +380,7 @@ importers: version: 29.7.0(@types/node@20.14.2)(ts-node@10.9.2(@types/node@20.14.2)(typescript@4.9.5)) openapi-zod-client: specifier: ^1.18.1 - version: 1.18.1(react@18.3.1) + version: 1.18.1(react@19.0.0) prettier: specifier: ^2.6.2 version: 2.8.8 @@ -401,7 +401,7 @@ importers: version: 1.8.0 '@phosphor-icons/react': specifier: 'catalog:' - version: 2.1.7(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 2.1.7(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@pythnetwork/app-logger': specifier: workspace:* version: link:../../packages/app-logger @@ -425,7 +425,7 @@ importers: version: link:../../packages/next-root '@react-hookz/web': specifier: 'catalog:' - version: 24.0.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 24.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@solana/web3.js': specifier: 'catalog:' version: 1.95.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -441,36 +441,36 @@ importers: dnum: specifier: 'catalog:' version: 2.14.0 - framer-motion: + motion: specifier: 'catalog:' - version: 11.11.10(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) next: specifier: 'catalog:' - version: 15.0.3(@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)(sass@1.80.7) + version: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) next-themes: specifier: 'catalog:' - 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) + version: 0.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) nuqs: specifier: 'catalog:' - version: 2.1.2(next@15.0.3(@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)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029) + version: 2.1.2(next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0) react: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029 + version: 19.0.0 react-aria: specifier: 'catalog:' - version: 3.36.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 3.36.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react-aria-components: specifier: 'catalog:' - version: 1.5.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 1.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react-dom: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + version: 19.0.0(react@19.0.0) recharts: specifier: 'catalog:' - version: 2.14.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 2.14.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) swr: specifier: 'catalog:' - version: 2.2.5(react@19.0.0-rc-603e6108-20241029) + version: 2.2.5(react@19.0.0) zod: specifier: 'catalog:' version: 3.23.8 @@ -501,10 +501,10 @@ importers: version: 22.8.2 '@types/react': specifier: 'catalog:' - version: types-react@19.0.0-rc.1 + version: 19.0.1 '@types/react-dom': specifier: 'catalog:' - version: types-react-dom@19.0.0-rc.1 + version: 19.0.2(@types/react@19.0.1) autoprefixer: specifier: 'catalog:' version: 10.4.20(postcss@8.4.47) @@ -664,10 +664,10 @@ importers: version: 3.0.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10) '@heroicons/react': specifier: ^2.1.4 - version: 2.1.4(react@19.0.0-rc-603e6108-20241029) + version: 2.1.4(react@19.0.0) '@next/third-parties': specifier: ^14.2.5 - version: 14.2.6(next@15.0.3(@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)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029) + version: 14.2.6(next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0) '@pythnetwork/hermes-client': specifier: workspace:* version: link:../hermes/client/js @@ -676,25 +676,25 @@ importers: version: link:../../governance/pyth_staking_sdk '@react-aria/toast': specifier: 3.0.0-beta.16 - version: 3.0.0-beta.16(react@19.0.0-rc-603e6108-20241029) + version: 3.0.0-beta.16(react@19.0.0) '@react-hookz/web': specifier: ^24.0.4 - version: 24.0.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 24.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@react-stately/toast': specifier: 3.0.0-beta.6 - version: 3.0.0-beta.6(react@19.0.0-rc-603e6108-20241029) + version: 3.0.0-beta.6(react@19.0.0) '@solana/wallet-adapter-base': specifier: ^0.9.23 version: 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-react': specifier: ^0.15.35 - version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-react-ui': specifier: ^0.9.35 - version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.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) + 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(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-wallets': specifier: 0.19.10 - version: 0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.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@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) + 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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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(react@19.0.0))(react@19.0.0)(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) @@ -712,13 +712,13 @@ importers: version: 2.13.1 framer-motion: specifier: 'catalog:' - version: 11.11.10(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 11.11.10(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) ip-range-check: specifier: ^0.2.0 version: 0.2.0 next: specifier: 'catalog:' - version: 15.0.3(@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)(sass@1.80.7) + version: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) pino: specifier: ^9.3.2 version: 9.3.2 @@ -727,22 +727,22 @@ importers: version: 0.0.11(encoding@0.1.13) react: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029 + version: 19.0.0 react-aria: specifier: 'catalog:' - version: 3.36.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 3.36.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react-aria-components: specifier: 'catalog:' - version: 1.5.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 1.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react-dom: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + version: 19.0.0(react@19.0.0) recharts: specifier: ^2.13.3 - version: 2.13.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 2.13.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) swr: specifier: ^2.2.5 - version: 2.2.5(react@19.0.0-rc-603e6108-20241029) + version: 2.2.5(react@19.0.0) zod: specifier: ^3.23.8 version: 3.23.8 @@ -776,10 +776,10 @@ importers: version: 22.2.0 '@types/react': specifier: 'catalog:' - version: types-react@19.0.0-rc.1 + version: 19.0.1 '@types/react-dom': specifier: 'catalog:' - version: types-react-dom@19.0.0-rc.1 + version: 19.0.2(@types/react@19.0.1) autoprefixer: specifier: ^10.4.19 version: 10.4.19(postcss@8.4.41) @@ -815,16 +815,16 @@ importers: dependencies: '@certusone/wormhole-sdk': specifier: ^0.9.8 - version: 0.9.24(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10) + version: 0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10) '@coral-xyz/anchor': specifier: ^0.29.0 - version: 0.29.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + version: 0.29.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) '@cosmjs/cosmwasm-stargate': specifier: ^0.32.3 - version: 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 0.32.3(bufferutil@4.0.7)(utf-8-validate@5.0.10) '@cosmjs/stargate': specifier: ^0.32.3 - version: 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 0.32.3(bufferutil@4.0.7)(utf-8-validate@5.0.10) '@injectivelabs/networks': specifier: ^1.14.6 version: 1.14.6(google-protobuf@3.21.4) @@ -833,7 +833,7 @@ importers: version: 1.3.0(svelte@4.2.18)(typescript@5.4.5) '@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) + version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) '@pythnetwork/cosmwasm-deploy-tools': specifier: workspace:* version: link:../target_chains/cosmwasm/tools @@ -872,10 +872,10 @@ importers: version: link:../governance/xc_admin/packages/xc_admin_common '@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) + version: 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) '@sqds/mesh': specifier: ^1.0.6 - version: 1.0.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + version: 1.0.6(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) '@ton/blueprint': specifier: ^0.22.0 version: 0.22.0(@ton/core@0.59.0(@ton/crypto@3.3.0))(@ton/crypto@3.3.0)(@ton/ton@15.1.0(@ton/core@0.59.0(@ton/crypto@3.3.0))(@ton/crypto@3.3.0))(@types/node@22.8.2)(encoding@0.1.13)(typescript@5.4.5) @@ -920,7 +920,7 @@ importers: version: 5.4.5 web3: specifier: ^1.8.2 - version: 1.10.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + version: 1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) web3-eth-contract: specifier: ^1.8.2 version: 1.10.0(encoding@0.1.13) @@ -930,7 +930,7 @@ importers: devDependencies: '@types/web3': specifier: ^1.2.2 - version: 1.2.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + version: 1.2.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) eslint: specifier: ^8.0.0 version: 8.56.0 @@ -1098,7 +1098,7 @@ importers: version: 3.0.1 '@solana/wallet-adapter-react': specifier: ^0.15.28 - version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@types/jest': specifier: ^29.5.12 version: 29.5.12 @@ -1269,19 +1269,19 @@ importers: dependencies: '@certusone/wormhole-sdk': specifier: ^0.10.15 - version: 0.10.15(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10) + version: 0.10.15(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10) '@coral-xyz/anchor': specifier: ^0.29.0 - version: 0.29.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) + version: 0.29.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@injectivelabs/token-metadata': specifier: ~1.10.42 version: 1.10.42(google-protobuf@3.21.4) '@project-serum/anchor': specifier: ^0.25.0 - version: 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) + version: 0.25.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@pythnetwork/client': specifier: ^2.22.0 - version: 2.22.0(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) + 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) '@pythnetwork/pyth-solana-receiver': specifier: workspace:* version: link:../../../../target_chains/solana/sdk/js/pyth_solana_receiver @@ -1293,10 +1293,10 @@ importers: version: 4.0.1 '@solana/web3.js': specifier: 1.92.3 - version: 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) + version: 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@sqds/mesh': specifier: ^1.0.6 - version: 1.0.6(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) + version: 1.0.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) bigint-buffer: specifier: ^1.1.5 version: 1.1.5 @@ -1305,7 +1305,7 @@ importers: version: 5.2.1 ethers: specifier: ^5.7.2 - version: 5.7.2(bufferutil@4.0.7)(utf-8-validate@5.0.10) + version: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) lodash: specifier: ^4.17.21 version: 4.17.21 @@ -1345,7 +1345,7 @@ importers: version: 0.29.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@headlessui/react': specifier: ^2.2.0 - version: 2.2.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 2.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@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) @@ -1357,10 +1357,10 @@ importers: version: link:../xc_admin_common '@radix-ui/react-label': specifier: ^2.0.0 - version: 2.0.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 2.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@radix-ui/react-tooltip': specifier: ^1.0.3 - version: 1.0.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) + version: 1.0.3(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@solana/spl-token': specifier: ^0.3.7 version: 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) @@ -1369,13 +1369,13 @@ importers: version: 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-react': specifier: ^0.15.28 - version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-react-ui': specifier: ^0.9.27 - version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@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.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + version: 0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-wallets': specifier: 0.19.10 - version: 0.19.10(@babel/runtime@7.25.7)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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(react@19.0.0))(react@19.0.0)(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) @@ -1384,7 +1384,7 @@ importers: version: 1.0.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@tanstack/react-table': specifier: ^8.7.6 - version: 8.7.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 8.7.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) axios: specifier: ^1.4.0 version: 1.6.8 @@ -1399,28 +1399,28 @@ importers: version: link:../../../../pythnet/message_buffer next: specifier: 'catalog:' - version: 15.0.3(@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)(sass@1.80.7) + version: 15.1.0(@babel/core@7.24.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) next-seo: specifier: ^5.15.0 - version: 5.15.0(next@15.0.3(@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)(sass@1.80.7))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 5.15.0(next@15.1.0(@babel/core@7.24.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) nuqs: specifier: 'catalog:' - version: 2.1.2(next@15.0.3(@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)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029) + version: 2.1.2(next@15.1.0(@babel/core@7.24.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0) react: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029 + version: 19.0.0 react-dom: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + version: 19.0.0(react@19.0.0) react-hot-toast: specifier: ^2.4.0 - version: 2.4.0(csstype@3.1.3)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 2.4.0(csstype@3.1.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) sharp: specifier: ^0.33.4 version: 0.33.4 use-debounce: specifier: ^9.0.2 - version: 9.0.3(react@19.0.0-rc-603e6108-20241029) + version: 9.0.3(react@19.0.0) web3: specifier: ^4.8.0 version: 4.8.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8) @@ -1439,10 +1439,10 @@ importers: version: 18.11.18 '@types/react': specifier: 'catalog:' - version: types-react@19.0.0-rc.1 + version: 19.0.1 '@types/react-dom': specifier: 'catalog:' - version: types-react-dom@19.0.0-rc.1 + version: 19.0.2(@types/react@19.0.1) '@typescript-eslint/eslint-plugin': specifier: ^7.7.0 version: 7.7.1(@typescript-eslint/parser@8.14.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0)(typescript@5.4.5) @@ -1583,7 +1583,7 @@ importers: version: 29.5.14 '@types/react': specifier: 'catalog:' - version: types-react@19.0.0-rc.1 + version: 19.0.1 eslint: specifier: 'catalog:' version: 9.13.0(jiti@1.21.0) @@ -1595,7 +1595,7 @@ importers: version: 3.3.3 react: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029 + version: 19.0.0 typescript: specifier: 'catalog:' version: 5.6.3 @@ -1607,7 +1607,7 @@ importers: version: link:../fonts '@react-hookz/web': specifier: 'catalog:' - version: 24.0.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + version: 24.0.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0) clsx: specifier: 'catalog:' version: 2.1.1 @@ -1616,13 +1616,13 @@ importers: version: 3.0.1 motion: specifier: 'catalog:' - version: 11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + version: 11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@19.0.0) react-aria: specifier: 'catalog:' - version: 3.36.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + version: 3.36.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) react-aria-components: specifier: 'catalog:' - version: 1.5.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + version: 1.5.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) devDependencies: '@cprussin/eslint-config': specifier: 'catalog:' @@ -1638,7 +1638,7 @@ importers: version: 3.0.1 '@phosphor-icons/react': 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) + version: 2.1.7(react-dom@18.3.1(react@19.0.0))(react@19.0.0) '@storybook/addon-essentials': 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) @@ -1650,19 +1650,19 @@ importers: version: 8.3.5(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) '@storybook/blocks': 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)) + version: 8.3.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4)) '@storybook/nextjs': specifier: 'catalog:' - version: 8.3.5(esbuild@0.22.0)(next@15.0.3(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7))(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(type-fest@4.26.1)(typescript@5.6.3)(webpack-hot-middleware@2.26.1)(webpack@5.91.0(esbuild@0.22.0)) + version: 8.3.5(esbuild@0.22.0)(next@15.1.0(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(sass@1.80.7)(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: '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) + 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)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))(typescript@5.6.3) '@types/jest': specifier: 'catalog:' version: 29.5.14 '@types/react': specifier: 'catalog:' - version: types-react@19.0.0-rc.1 + version: 19.0.1 autoprefixer: specifier: 'catalog:' version: 10.4.20(postcss@8.4.47) @@ -1686,7 +1686,7 @@ importers: version: 3.3.3 react: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029 + version: 19.0.0 sass: specifier: 'catalog:' version: 1.80.7 @@ -1734,7 +1734,7 @@ importers: 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.3(@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)(sass@1.80.7) + version: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) prettier: specifier: 'catalog:' version: 3.3.3 @@ -1761,7 +1761,7 @@ importers: version: 29.5.14 '@types/react': specifier: 'catalog:' - version: types-react@19.0.0-rc.1 + version: 19.0.1 eslint: specifier: 'catalog:' version: 9.13.0(jiti@1.21.0) @@ -1773,7 +1773,7 @@ importers: version: 3.3.3 react: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029 + version: 19.0.0 typescript: specifier: 'catalog:' version: 5.6.3 @@ -1791,7 +1791,7 @@ importers: version: 4.9.1 '@next/third-parties': specifier: 'catalog:' - version: 15.0.2(next@15.0.3(@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)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029) + version: 15.0.2(next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0) '@pythnetwork/app-logger': specifier: workspace:* version: link:../app-logger @@ -1803,7 +1803,7 @@ importers: version: 2.1.0 next-themes: specifier: 'catalog:' - 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) + version: 0.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) devDependencies: '@cprussin/eslint-config': specifier: 'catalog:' @@ -1822,10 +1822,10 @@ importers: version: 29.5.14 '@types/react': specifier: 'catalog:' - version: types-react@19.0.0-rc.1 + version: 19.0.1 '@types/react-dom': specifier: 'catalog:' - version: types-react-dom@19.0.0-rc.1 + version: 19.0.2(@types/react@19.0.1) eslint: specifier: 'catalog:' version: 9.13.0(jiti@1.21.0) @@ -1834,19 +1834,19 @@ importers: 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.3(@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)(sass@1.80.7) + version: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) prettier: specifier: 'catalog:' version: 3.3.3 react: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029 + version: 19.0.0 react-aria: specifier: 'catalog:' - version: 3.36.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + version: 3.36.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react-dom: specifier: 'catalog:' - version: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + version: 19.0.0(react@19.0.0) typescript: specifier: 'catalog:' version: 5.6.3 @@ -2518,7 +2518,7 @@ importers: devDependencies: '@solana/wallet-adapter-react': specifier: ^0.15.28 - version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + version: 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@types/jest': specifier: ^29.4.0 version: 29.4.0 @@ -6591,8 +6591,8 @@ packages: '@next/env@14.2.15': resolution: {integrity: sha512-S1qaj25Wru2dUpcIZMjxeMVSwkt8BK4dmWHHiBuRstcIyOsMapqT4A4jSB6onvqeygkSSmOkyny9VVx8JIGamQ==} - '@next/env@15.0.3': - resolution: {integrity: sha512-t9Xy32pjNOvVn2AS+Utt6VmyrshbpfUMhIjFO60gI58deSo/KgLOp31XZ4O+kY/Is8WAGYwA5gR7kOb1eORDBA==} + '@next/env@15.1.0': + resolution: {integrity: sha512-UcCO481cROsqJuszPPXJnb7GGuLq617ve4xuAyyNG4VSSocJNtMU5Fsx+Lp6mlN8c7W58aZLc5y6D/2xNmaK+w==} '@next/eslint-plugin-next@14.2.3': resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==} @@ -6603,8 +6603,8 @@ packages: cpu: [arm64] os: [darwin] - '@next/swc-darwin-arm64@15.0.3': - resolution: {integrity: sha512-s3Q/NOorCsLYdCKvQlWU+a+GeAd3C8Rb3L1YnetsgwXzhc3UTWrtQpB/3eCjFOdGUj5QmXfRak12uocd1ZiiQw==} + '@next/swc-darwin-arm64@15.1.0': + resolution: {integrity: sha512-ZU8d7xxpX14uIaFC3nsr4L++5ZS/AkWDm1PzPO6gD9xWhFkOj2hzSbSIxoncsnlJXB1CbLOfGVN4Zk9tg83PUw==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -6615,8 +6615,8 @@ packages: cpu: [x64] os: [darwin] - '@next/swc-darwin-x64@15.0.3': - resolution: {integrity: sha512-Zxl/TwyXVZPCFSf0u2BNj5sE0F2uR6iSKxWpq4Wlk/Sv9Ob6YCKByQTkV2y6BCic+fkabp9190hyrDdPA/dNrw==} + '@next/swc-darwin-x64@15.1.0': + resolution: {integrity: sha512-DQ3RiUoW2XC9FcSM4ffpfndq1EsLV0fj0/UY33i7eklW5akPUCo6OX2qkcLXZ3jyPdo4sf2flwAED3AAq3Om2Q==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -6627,8 +6627,8 @@ packages: cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-gnu@15.0.3': - resolution: {integrity: sha512-T5+gg2EwpsY3OoaLxUIofmMb7ohAUlcNZW0fPQ6YAutaWJaxt1Z1h+8zdl4FRIOr5ABAAhXtBcpkZNwUcKI2fw==} + '@next/swc-linux-arm64-gnu@15.1.0': + resolution: {integrity: sha512-M+vhTovRS2F//LMx9KtxbkWk627l5Q7AqXWWWrfIzNIaUFiz2/NkOFkxCFyNyGACi5YbA8aekzCLtbDyfF/v5Q==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -6639,8 +6639,8 @@ packages: cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@15.0.3': - resolution: {integrity: sha512-WkAk6R60mwDjH4lG/JBpb2xHl2/0Vj0ZRu1TIzWuOYfQ9tt9NFsIinI1Epma77JVgy81F32X/AeD+B2cBu/YQA==} + '@next/swc-linux-arm64-musl@15.1.0': + resolution: {integrity: sha512-Qn6vOuwaTCx3pNwygpSGtdIu0TfS1KiaYLYXLH5zq1scoTXdwYfdZtwvJTpB1WrLgiQE2Ne2kt8MZok3HlFqmg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -6651,8 +6651,8 @@ packages: cpu: [x64] os: [linux] - '@next/swc-linux-x64-gnu@15.0.3': - resolution: {integrity: sha512-gWL/Cta1aPVqIGgDb6nxkqy06DkwJ9gAnKORdHWX1QBbSZZB+biFYPFti8aKIQL7otCE1pjyPaXpFzGeG2OS2w==} + '@next/swc-linux-x64-gnu@15.1.0': + resolution: {integrity: sha512-yeNh9ofMqzOZ5yTOk+2rwncBzucc6a1lyqtg8xZv0rH5znyjxHOWsoUtSq4cUTeeBIiXXX51QOOe+VoCjdXJRw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -6663,8 +6663,8 @@ packages: cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@15.0.3': - resolution: {integrity: sha512-QQEMwFd8r7C0GxQS62Zcdy6GKx999I/rTO2ubdXEe+MlZk9ZiinsrjwoiBL5/57tfyjikgh6GOU2WRQVUej3UA==} + '@next/swc-linux-x64-musl@15.1.0': + resolution: {integrity: sha512-t9IfNkHQs/uKgPoyEtU912MG6a1j7Had37cSUyLTKx9MnUpjj+ZDKw9OyqTI9OwIIv0wmkr1pkZy+3T5pxhJPg==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -6675,8 +6675,8 @@ packages: cpu: [arm64] os: [win32] - '@next/swc-win32-arm64-msvc@15.0.3': - resolution: {integrity: sha512-9TEp47AAd/ms9fPNgtgnT7F3M1Hf7koIYYWCMQ9neOwjbVWJsHZxrFbI3iEDJ8rf1TDGpmHbKxXf2IFpAvheIQ==} + '@next/swc-win32-arm64-msvc@15.1.0': + resolution: {integrity: sha512-WEAoHyG14t5sTavZa1c6BnOIEukll9iqFRTavqRVPfYmfegOAd5MaZfXgOGG6kGo1RduyGdTHD4+YZQSdsNZXg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -6693,8 +6693,8 @@ packages: cpu: [x64] os: [win32] - '@next/swc-win32-x64-msvc@15.0.3': - resolution: {integrity: sha512-VNAz+HN4OGgvZs6MOoVfnn41kBzT+M+tB+OK4cww6DNyWS6wKaDpaAm/qLeOUbnMh0oVx1+mg0uoYARF69dJyA==} + '@next/swc-win32-x64-msvc@15.1.0': + resolution: {integrity: sha512-J1YdKuJv9xcixzXR24Dv+4SaDKc2jj31IVUEMdO5xJivMTXuE6MAdIi4qPjSymHuFG8O5wbfWKnhJUcHHpj5CA==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -9446,6 +9446,9 @@ packages: '@swc/helpers@0.5.13': resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} + '@swc/helpers@0.5.15': + resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==} + '@swc/helpers@0.5.5': resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} @@ -10187,9 +10190,17 @@ packages: '@types/range-parser@1.2.7': resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + '@types/react-dom@19.0.2': + resolution: {integrity: sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==} + peerDependencies: + '@types/react': ^19.0.0 + '@types/react@18.3.11': resolution: {integrity: sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==} + '@types/react@19.0.1': + resolution: {integrity: sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==} + '@types/resolve@1.20.6': resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} @@ -18109,16 +18120,16 @@ packages: sass: optional: true - next@15.0.3: - resolution: {integrity: sha512-ontCbCRKJUIoivAdGB34yCaOcPgYXr9AAkV/IwqFfWWTXEPUgLYkSkqBhIk9KK7gGmgjc64B+RdoeIDM13Irnw==} + next@15.1.0: + resolution: {integrity: sha512-QKhzt6Y8rgLNlj30izdMbxAwjHMFANnLwDwZ+WQh5sMhyt4lEBqDK9QpvWHtIM4rINKPoJ8aiRZKg5ULSybVHw==} engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 '@playwright/test': ^1.41.2 babel-plugin-react-compiler: '*' - react: ^18.2.0 || 19.0.0-rc-66855b96-20241106 - react-dom: ^18.2.0 || 19.0.0-rc-66855b96-20241106 + react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 + react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0 sass: ^1.3.0 peerDependenciesMeta: '@opentelemetry/api': @@ -19697,10 +19708,10 @@ packages: peerDependencies: react: ^18.3.1 - react-dom@19.0.0-rc-603e6108-20241029: - resolution: {integrity: sha512-1jaWZcv3V6R39ZnDU3FtGSXtEm/z/lCRFnWmvbp019wPffFGKoXDv+i5KoyQ5yUBpwumImFrKTWXYQluOnm7Jw==} + react-dom@19.0.0: + resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} peerDependencies: - react: 19.0.0-rc-603e6108-20241029 + react: ^19.0.0 react-element-to-jsx-string@15.0.0: resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} @@ -19828,8 +19839,8 @@ packages: resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} - react@19.0.0-rc-603e6108-20241029: - resolution: {integrity: sha512-NXn7GRnAqiL12ZxUJCUjKT5T7jtqHzYp/4moEYZ4Uv0mUhBT4kFbuYQcPSAJTuP67kENUw79DgWfGbqg5qnh1w==} + react@19.0.0: + resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} engines: {node: '>=0.10.0'} read-cache@1.0.0: @@ -20375,8 +20386,8 @@ packages: scheduler@0.24.0-canary-efb381bbf-20230505: resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} - scheduler@0.25.0-rc-603e6108-20241029: - resolution: {integrity: sha512-pFwF6H1XrSdYYNLfOcGlM28/j8CGLu8IvdrxqhjWULe2bPcKiKW4CV+OWqR/9fT52mywx65l7ysNkjLKBda7eA==} + scheduler@0.25.0: + resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} schema-utils@2.7.0: resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} @@ -21884,12 +21895,6 @@ packages: typeforce@1.18.0: resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==} - types-react-dom@19.0.0-rc.1: - resolution: {integrity: sha512-VSLZJl8VXCD0fAWp7DUTFUDCcZ8DVXOQmjhJMD03odgeFmu14ZQJHCXeETm3BEAhJqfgJaFkLnGkQv88sRx0fQ==} - - types-react@19.0.0-rc.1: - resolution: {integrity: sha512-RshndUfqTW6K3STLPis8BtAYCGOkMbtvYsi90gmVNDZBXUyUc5juf2PE9LfS/JmOlUIRO8cWTS/1MTnmhjDqyQ==} - typescript-compare@0.0.2: resolution: {integrity: sha512-8ja4j7pMHkfLJQO2/8tut7ub+J3Lw2S3061eJLFQcvs3tsmJKp8KG5NtpLn7KcY2w08edF74BSVN7qJS0U6oHA==} @@ -24021,19 +24026,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 @@ -24105,19 +24097,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 @@ -24165,13 +24144,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 @@ -24360,16 +24332,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 @@ -24410,16 +24372,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 @@ -24466,15 +24418,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 @@ -24491,13 +24434,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 @@ -24541,15 +24477,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 @@ -24787,16 +24714,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 @@ -24813,12 +24730,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 @@ -24843,11 +24754,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 @@ -24871,12 +24777,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 @@ -24889,12 +24789,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 @@ -24907,12 +24801,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 @@ -24928,15 +24816,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 @@ -24952,12 +24831,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 @@ -24980,15 +24853,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 @@ -25105,11 +24969,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 @@ -25135,11 +24994,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 @@ -25240,11 +25094,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25390,11 +25239,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.24.7)': - dependencies: - '@babel/core': 7.24.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-typescript@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -25443,11 +25287,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 @@ -25528,15 +25367,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 @@ -25591,11 +25421,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 @@ -25719,18 +25544,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 @@ -25773,12 +25586,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 @@ -25810,11 +25617,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 @@ -25936,12 +25738,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 @@ -26014,15 +25810,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 @@ -26075,11 +25862,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 @@ -26200,15 +25982,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 @@ -26320,12 +26093,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 @@ -26492,11 +26259,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 @@ -26522,11 +26284,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 @@ -26564,14 +26321,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 @@ -26619,15 +26368,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 @@ -26687,11 +26427,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-react-display-name@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-display-name@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26717,11 +26452,6 @@ snapshots: '@babel/core': 7.24.0 '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-transform-react-jsx-self@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-self@7.25.7(@babel/core@7.25.8)': dependencies: '@babel/core': 7.25.8 @@ -26732,11 +26462,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 @@ -26780,17 +26505,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 @@ -26888,18 +26602,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 @@ -26937,11 +26639,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 @@ -26985,14 +26682,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 @@ -27026,11 +26715,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 @@ -27105,17 +26789,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 @@ -27195,12 +26868,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 @@ -27894,41 +27561,6 @@ snapshots: '@types/long': 4.0.2 '@types/node': 18.19.57 - '@certusone/wormhole-sdk@0.10.15(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)': - dependencies: - '@certusone/wormhole-sdk-proto-web': 0.0.7(google-protobuf@3.21.4) - '@certusone/wormhole-sdk-wasm': 0.0.1 - '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@mysten/sui.js': 0.32.2(bufferutil@4.0.7)(utf-8-validate@5.0.10) - '@project-serum/anchor': 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@terra-money/terra.js': 3.1.9 - '@xpla/xpla.js': 0.2.3 - algosdk: 2.7.0 - aptos: 1.5.0 - axios: 0.24.0 - bech32: 2.0.0 - binary-parser: 2.2.1 - bs58: 4.0.1 - elliptic: 6.5.6 - js-base64: 3.7.5 - near-api-js: 1.1.0(encoding@0.1.13) - optionalDependencies: - '@injectivelabs/networks': 1.10.12(google-protobuf@3.21.4) - '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.7)(utf-8-validate@5.0.10) - '@injectivelabs/utils': 1.10.12(google-protobuf@3.21.4) - transitivePeerDependencies: - - bufferutil - - debug - - encoding - - google-protobuf - - graphql-ws - - react - - react-dom - - subscriptions-transport-ws - - utf-8-validate - '@certusone/wormhole-sdk@0.10.15(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10)': dependencies: '@certusone/wormhole-sdk-proto-web': 0.0.7(google-protobuf@3.21.2) @@ -27999,15 +27631,15 @@ snapshots: - subscriptions-transport-ws - utf-8-validate - '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@6.0.3)': + '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)': dependencies: '@certusone/wormhole-sdk-proto-web': 0.0.6(google-protobuf@3.21.4) '@certusone/wormhole-sdk-wasm': 0.0.1 - '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)) - '@mysten/sui.js': 0.32.2(bufferutil@4.0.7)(utf-8-validate@6.0.3) - '@project-serum/anchor': 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3) - '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3) - '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3) + '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)) + '@mysten/sui.js': 0.32.2(bufferutil@4.0.7)(utf-8-validate@5.0.10) + '@project-serum/anchor': 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) '@terra-money/terra.js': 3.1.9 '@xpla/xpla.js': 0.2.3 algosdk: 2.7.0 @@ -28021,7 +27653,7 @@ snapshots: near-api-js: 1.1.0(encoding@0.1.13) optionalDependencies: '@injectivelabs/networks': 1.10.12(google-protobuf@3.21.4) - '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.7)(utf-8-validate@6.0.3) + '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.7)(utf-8-validate@5.0.10) '@injectivelabs/utils': 1.10.12(google-protobuf@3.21.4) transitivePeerDependencies: - bufferutil @@ -28034,15 +27666,15 @@ snapshots: - subscriptions-transport-ws - utf-8-validate - '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.8)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@5.0.10)': + '@certusone/wormhole-sdk@0.9.24(bufferutil@4.0.7)(encoding@0.1.13)(google-protobuf@3.21.4)(utf-8-validate@6.0.3)': dependencies: '@certusone/wormhole-sdk-proto-web': 0.0.6(google-protobuf@3.21.4) '@certusone/wormhole-sdk-wasm': 0.0.1 - '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@mysten/sui.js': 0.32.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@project-serum/anchor': 0.25.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@coral-xyz/borsh': 0.2.6(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3)) + '@mysten/sui.js': 0.32.2(bufferutil@4.0.7)(utf-8-validate@6.0.3) + '@project-serum/anchor': 0.25.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3) + '@solana/spl-token': 0.3.7(@solana/web3.js@1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3))(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3) + '@solana/web3.js': 1.92.3(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3) '@terra-money/terra.js': 3.1.9 '@xpla/xpla.js': 0.2.3 algosdk: 2.7.0 @@ -28056,7 +27688,7 @@ snapshots: near-api-js: 1.1.0(encoding@0.1.13) optionalDependencies: '@injectivelabs/networks': 1.10.12(google-protobuf@3.21.4) - '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(utf-8-validate@5.0.10) + '@injectivelabs/sdk-ts': 1.10.72(bufferutil@4.0.7)(utf-8-validate@6.0.3) '@injectivelabs/utils': 1.10.12(google-protobuf@3.21.4) transitivePeerDependencies: - bufferutil @@ -28418,23 +28050,6 @@ snapshots: - debug - utf-8-validate - '@cosmjs/cosmwasm-stargate@0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@cosmjs/amino': 0.32.3 - '@cosmjs/crypto': 0.32.3 - '@cosmjs/encoding': 0.32.3 - '@cosmjs/math': 0.32.3 - '@cosmjs/proto-signing': 0.32.3 - '@cosmjs/stargate': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmjs/tendermint-rpc': 0.32.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@cosmjs/utils': 0.32.3 - cosmjs-types: 0.9.0 - pako: 2.1.0 - transitivePeerDependencies: - - bufferutil - - debug - - utf-8-validate - '@cosmjs/crypto@0.30.1': dependencies: '@cosmjs/encoding': 0.30.1 @@ -28846,7 +28461,7 @@ snapshots: transitivePeerDependencies: - debug - '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))(typescript@5.5.4)': + '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)': dependencies: '@babel/core': 7.25.8 '@babel/eslint-parser': 7.24.7(@babel/core@7.25.8)(eslint@9.12.0(jiti@1.21.0)) @@ -28858,22 +28473,22 @@ 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.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)) - eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)) + eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2) eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0)) - eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4) - eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))) - eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4) + eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))) + eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) eslint-plugin-tsdoc: 0.3.0 eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0)) globals: 15.6.0 - tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)) - typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4) + tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)) + typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) transitivePeerDependencies: - '@testing-library/dom' - '@typescript-eslint/eslint-plugin' @@ -28886,7 +28501,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.14.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.14.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/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))(typescript@5.5.4)': 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)) @@ -28898,22 +28513,22 @@ 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.14.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.14.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-import: 2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)) + eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4) eslint-plugin-jest-dom: 5.4.0(@testing-library/dom@10.4.0)(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-jsonc: 2.16.0(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-jsx-a11y: 6.8.0(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0)) - eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.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-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4) + eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4))) + eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4) eslint-plugin-tsdoc: 0.3.0 eslint-plugin-unicorn: 53.0.0(eslint@9.12.0(jiti@1.21.0)) globals: 15.6.0 - 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) + tailwindcss: 3.4.14(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)) + typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4) transitivePeerDependencies: - '@testing-library/dom' - '@typescript-eslint/eslint-plugin' @@ -28926,7 +28541,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.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(jiti@1.21.0)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))(typescript@5.5.2)': + '@cprussin/eslint-config@3.0.0(@testing-library/dom@10.4.0)(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.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.14.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)) @@ -28938,22 +28553,22 @@ 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.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)) - eslint-plugin-jest: 28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.14.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.14.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)) eslint-plugin-n: 17.9.0(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-react: 7.34.2(eslint@9.12.0(jiti@1.21.0)) eslint-plugin-react-hooks: 4.6.2(eslint@9.12.0(jiti@1.21.0)) - eslint-plugin-storybook: 0.8.0(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - eslint-plugin-tailwindcss: 3.17.3(tailwindcss@3.4.14(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2))) - eslint-plugin-testing-library: 6.2.2(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + eslint-plugin-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.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@20.14.7)(typescript@5.5.2)) - typescript-eslint: 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + 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' - '@typescript-eslint/eslint-plugin' @@ -29046,18 +28661,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)(sass@1.80.7)(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)(sass@1.80.7)(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)(sass@1.80.7) + next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@18.3.1)(sass@1.80.7) prettier: 3.3.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - ts-jest: 29.2.4(@babel/core@7.24.7)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.7))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.4) + 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.5.4) typescript: 5.5.4 transitivePeerDependencies: - '@babel/core' @@ -29087,7 +28702,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)(sass@1.80.7) + next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@18.3.1)(sass@1.80.7) prettier: 3.3.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -29121,7 +28736,7 @@ snapshots: 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.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@18.3.1))(react@18.3.1)(sass@1.80.7) + next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@18.3.1)(sass@1.80.7) prettier: 3.3.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -29155,7 +28770,7 @@ snapshots: 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@5.0.10) 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@18.3.1))(react@18.3.1)(sass@1.80.7) + next: 14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@18.3.1)(sass@1.80.7) prettier: 3.3.3 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) @@ -30003,27 +29618,27 @@ snapshots: '@floating-ui/core': 1.6.2 '@floating-ui/utils': 0.2.2 - '@floating-ui/react-dom@0.7.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)': + '@floating-ui/react-dom@0.7.2(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@floating-ui/dom': 0.5.4 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - use-isomorphic-layout-effect: 1.1.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + use-isomorphic-layout-effect: 1.1.2(@types/react@19.0.1)(react@19.0.0) transitivePeerDependencies: - '@types/react' - '@floating-ui/react-dom@2.1.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@floating-ui/react-dom@2.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@floating-ui/dom': 1.6.5 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@floating-ui/react@0.26.17(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@floating-ui/react@0.26.17(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + '@floating-ui/react-dom': 2.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@floating-ui/utils': 0.2.2 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) tabbable: 6.2.0 '@floating-ui/utils@0.2.2': {} @@ -30052,14 +29667,14 @@ snapshots: dependencies: tslib: 2.8.0 - '@fractalwagmi/popup-connection@1.1.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@fractalwagmi/popup-connection@1.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@fractalwagmi/solana-wallet-adapter@0.1.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@fractalwagmi/solana-wallet-adapter@0.1.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@fractalwagmi/popup-connection': 1.1.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + '@fractalwagmi/popup-connection': 1.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) bs58: 5.0.0 transitivePeerDependencies: @@ -30737,18 +30352,18 @@ snapshots: dependencies: '@hapi/hoek': 9.3.0 - '@headlessui/react@2.2.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@headlessui/react@2.2.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@floating-ui/react': 0.26.17(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@tanstack/react-virtual': 3.10.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + '@floating-ui/react': 0.26.17(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/focus': 3.18.4(react@19.0.0) + '@react-aria/interactions': 3.22.4(react@19.0.0) + '@tanstack/react-virtual': 3.10.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@heroicons/react@2.1.4(react@19.0.0-rc-603e6108-20241029)': + '@heroicons/react@2.1.4(react@19.0.0)': dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 '@humanfs/core@0.19.0': {} @@ -32328,12 +31943,12 @@ snapshots: '@types/yargs': 17.0.33 chalk: 4.1.2 - '@jnwng/walletconnect-solana@0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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)': + '@jnwng/walletconnect-solana@0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@walletconnect/qrcode-modal': 1.8.0 - '@walletconnect/sign-client': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/sign-client': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) bs58: 5.0.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -32354,12 +31969,12 @@ snapshots: - uWebSockets.js - utf-8-validate - '@jnwng/walletconnect-solana@0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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)': + '@jnwng/walletconnect-solana@0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@walletconnect/qrcode-modal': 1.8.0 - '@walletconnect/sign-client': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/sign-client': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) bs58: 5.0.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -33021,22 +32636,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(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': 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(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) 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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(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(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@types/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 cross-fetch: 4.0.0(encoding@0.1.13) @@ -33049,15 +32664,15 @@ snapshots: obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 - react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) readable-stream: 3.6.2 rollup-plugin-visualizer: 5.12.0 socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) util: 0.12.5 uuid: 8.3.2 optionalDependencies: - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - bufferutil - encoding @@ -33356,7 +32971,7 @@ snapshots: '@next/env@14.2.15': {} - '@next/env@15.0.3': {} + '@next/env@15.1.0': {} '@next/eslint-plugin-next@14.2.3': dependencies: @@ -33365,43 +32980,43 @@ snapshots: '@next/swc-darwin-arm64@14.2.15': optional: true - '@next/swc-darwin-arm64@15.0.3': + '@next/swc-darwin-arm64@15.1.0': optional: true '@next/swc-darwin-x64@14.2.15': optional: true - '@next/swc-darwin-x64@15.0.3': + '@next/swc-darwin-x64@15.1.0': optional: true '@next/swc-linux-arm64-gnu@14.2.15': optional: true - '@next/swc-linux-arm64-gnu@15.0.3': + '@next/swc-linux-arm64-gnu@15.1.0': optional: true '@next/swc-linux-arm64-musl@14.2.15': optional: true - '@next/swc-linux-arm64-musl@15.0.3': + '@next/swc-linux-arm64-musl@15.1.0': optional: true '@next/swc-linux-x64-gnu@14.2.15': optional: true - '@next/swc-linux-x64-gnu@15.0.3': + '@next/swc-linux-x64-gnu@15.1.0': optional: true '@next/swc-linux-x64-musl@14.2.15': optional: true - '@next/swc-linux-x64-musl@15.0.3': + '@next/swc-linux-x64-musl@15.1.0': optional: true '@next/swc-win32-arm64-msvc@14.2.15': optional: true - '@next/swc-win32-arm64-msvc@15.0.3': + '@next/swc-win32-arm64-msvc@15.1.0': optional: true '@next/swc-win32-ia32-msvc@14.2.15': @@ -33410,25 +33025,25 @@ snapshots: '@next/swc-win32-x64-msvc@14.2.15': optional: true - '@next/swc-win32-x64-msvc@15.0.3': + '@next/swc-win32-x64-msvc@15.1.0': optional: true - '@next/third-parties@14.2.4(next@15.0.3(@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)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029)': + '@next/third-parties@14.2.4(next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0)': dependencies: - next: 15.0.3(@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)(sass@1.80.7) - react: 19.0.0-rc-603e6108-20241029 + next: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) + react: 19.0.0 third-party-capital: 1.0.20 - '@next/third-parties@14.2.6(next@15.0.3(@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)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029)': + '@next/third-parties@14.2.6(next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0)': dependencies: - next: 15.0.3(@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)(sass@1.80.7) - react: 19.0.0-rc-603e6108-20241029 + next: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) + react: 19.0.0 third-party-capital: 1.0.20 - '@next/third-parties@15.0.2(next@15.0.3(@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)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029)': + '@next/third-parties@15.0.2(next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0)': dependencies: - next: 15.0.3(@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)(sass@1.80.7) - react: 19.0.0-rc-603e6108-20241029 + next: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) + react: 19.0.0 third-party-capital: 1.0.20 '@ngraveio/bc-ur@1.1.13': @@ -34197,15 +33812,15 @@ snapshots: '@pedrouid/environment@1.0.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)': + '@phosphor-icons/react@2.1.7(react-dom@18.3.1(react@19.0.0))(react@19.0.0)': dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@phosphor-icons/react@2.1.7(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@phosphor-icons/react@2.1.7(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) '@pkgjs/parseargs@0.11.0': optional: true @@ -34434,1170 +34049,1164 @@ snapshots: dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-arrow@1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-arrow@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@radix-ui/react-compose-refs@1.0.0(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-compose-refs@1.0.0(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@radix-ui/react-context@1.0.0(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-context@1.0.0(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@radix-ui/react-dismissable-layer@1.0.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-dismissable-layer@1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 '@radix-ui/primitive': 1.0.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-use-escape-keydown': 1.0.2(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0) + '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0) + '@radix-ui/react-use-escape-keydown': 1.0.2(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@radix-ui/react-id@1.0.0(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-id@1.0.0(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0) + react: 19.0.0 - '@radix-ui/react-label@2.0.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-label@2.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.23.9 - '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@radix-ui/react-popper@1.1.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)': + '@radix-ui/react-popper@1.1.0(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@floating-ui/react-dom': 0.7.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) - '@radix-ui/react-arrow': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-context': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-use-rect': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-use-size': 1.0.0(react@19.0.0-rc-603e6108-20241029) + '@floating-ui/react-dom': 0.7.2(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@radix-ui/react-arrow': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0) + '@radix-ui/react-context': 1.0.0(react@19.0.0) + '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0) + '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0) + '@radix-ui/react-use-rect': 1.0.0(react@19.0.0) + '@radix-ui/react-use-size': 1.0.0(react@19.0.0) '@radix-ui/rect': 1.0.0 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - '@types/react' - '@radix-ui/react-portal@1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-portal@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@radix-ui/react-presence@1.0.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-presence@1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0) + '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@radix-ui/react-primitive@1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-primitive@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-slot': 1.0.1(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + '@radix-ui/react-slot': 1.0.1(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@radix-ui/react-slot@1.0.1(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-slot@1.0.1(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0) + react: 19.0.0 - '@radix-ui/react-tooltip@1.0.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)': + '@radix-ui/react-tooltip@1.0.3(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.23.9 '@radix-ui/primitive': 1.0.0 - '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-context': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-dismissable-layer': 1.0.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-id': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-popper': 1.1.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) - '@radix-ui/react-portal': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-presence': 1.0.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-slot': 1.0.1(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-use-controllable-state': 1.0.0(react@19.0.0-rc-603e6108-20241029) - '@radix-ui/react-visually-hidden': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + '@radix-ui/react-compose-refs': 1.0.0(react@19.0.0) + '@radix-ui/react-context': 1.0.0(react@19.0.0) + '@radix-ui/react-dismissable-layer': 1.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@radix-ui/react-id': 1.0.0(react@19.0.0) + '@radix-ui/react-popper': 1.1.0(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@radix-ui/react-portal': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@radix-ui/react-presence': 1.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@radix-ui/react-slot': 1.0.1(react@19.0.0) + '@radix-ui/react-use-controllable-state': 1.0.0(react@19.0.0) + '@radix-ui/react-visually-hidden': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - '@types/react' - '@radix-ui/react-use-callback-ref@1.0.0(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-use-callback-ref@1.0.0(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-use-controllable-state@1.0.0(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0) + react: 19.0.0 - '@radix-ui/react-use-escape-keydown@1.0.2(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-use-escape-keydown@1.0.2(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@radix-ui/react-use-callback-ref': 1.0.0(react@19.0.0) + react: 19.0.0 - '@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-use-layout-effect@1.0.0(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@radix-ui/react-use-rect@1.0.0(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-use-rect@1.0.0(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 '@radix-ui/rect': 1.0.0 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@radix-ui/react-use-size@1.0.0(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-use-size@1.0.0(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@radix-ui/react-use-layout-effect': 1.0.0(react@19.0.0) + react: 19.0.0 - '@radix-ui/react-visually-hidden@1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@radix-ui/react-visually-hidden@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.25.7 - '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + '@radix-ui/react-primitive': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) '@radix-ui/rect@1.0.0': dependencies: '@babel/runtime': 7.25.7 - '@react-aria/breadcrumbs@3.5.19(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/breadcrumbs@3.5.19(react@19.0.0)': dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/link': 3.7.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/breadcrumbs': 3.7.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/link': 3.7.7(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/breadcrumbs': 3.7.9(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/button@3.11.0(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/button@3.11.0(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/toolbar': 3.0.0-beta.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.8.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/toolbar': 3.0.0-beta.11(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/toggle': 3.8.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/calendar@3.6.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/calendar@3.6.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: '@internationalized/date': 3.6.0 - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/calendar': 3.6.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/calendar': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/calendar': 3.6.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/calendar': 3.5.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/calendar@3.6.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/calendar@3.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@internationalized/date': 3.6.0 - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/calendar': 3.6.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/calendar': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/calendar': 3.6.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/calendar': 3.5.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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.15.0(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/form': 3.0.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/toggle': 3.10.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/checkbox': 3.6.10(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.8.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@react-aria/checkbox@3.15.0(react@19.0.0)': + dependencies: + '@react-aria/form': 3.0.11(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/toggle': 3.10.10(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/checkbox': 3.6.10(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/toggle': 3.8.0(react@19.0.0) + '@react-types/checkbox': 3.9.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/collections@3.0.0-alpha.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/collections@3.0.0-alpha.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) + use-sync-external-store: 1.2.0(react@19.0.0) - '@react-aria/collections@3.0.0-alpha.6(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/collections@3.0.0-alpha.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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) - use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) - - '@react-aria/color@3.0.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/numberfield': 3.11.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/slider': 3.7.14(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.18(react@19.0.0-rc-603e6108-20241029) - '@react-stately/color': 3.8.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/color': 3.0.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + use-sync-external-store: 1.2.0(react@19.0.0) + + '@react-aria/color@3.0.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': + dependencies: + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/numberfield': 3.11.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/slider': 3.7.14(react@19.0.0) + '@react-aria/spinbutton': 3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/textfield': 3.15.0(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) + '@react-stately/color': 3.8.1(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-types/color': 3.0.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/color@3.0.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/numberfield': 3.11.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/slider': 3.7.14(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.10(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.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.18(react@19.0.0-rc-603e6108-20241029) - '@react-stately/color': 3.8.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/color': 3.0.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/color@3.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/numberfield': 3.11.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/slider': 3.7.14(react@19.0.0) + '@react-aria/spinbutton': 3.6.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/textfield': 3.15.0(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) + '@react-stately/color': 3.8.1(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-types/color': 3.0.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/combobox@3.11.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/combobox@3.11.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/listbox': 3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/menu': 3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/combobox': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/combobox': 3.13.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/menu': 3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/overlays': 3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/textfield': 3.15.0(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/combobox': 3.10.1(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/combobox': 3.13.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/combobox@3.11.0(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.11.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.6(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/listbox': 3.13.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/menu': 3.16.0(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.24.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(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.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/combobox': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/combobox': 3.13.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/menu': 3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/overlays': 3.24.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/textfield': 3.15.0(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/combobox': 3.10.1(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/combobox': 3.13.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/datepicker@3.12.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/datepicker@3.12.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: '@internationalized/date': 3.6.0 '@internationalized/number': 3.6.0 '@internationalized/string': 3.2.5 - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/form': 3.0.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/datepicker': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/calendar': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/datepicker': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/dialog': 3.5.14(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/form': 3.0.11(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/spinbutton': 3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/datepicker': 3.11.0(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/calendar': 3.5.0(react@19.0.0) + '@react-types/datepicker': 3.9.0(react@19.0.0) + '@react-types/dialog': 3.5.14(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/datepicker@3.12.0(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.12.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@internationalized/date': 3.6.0 '@internationalized/number': 3.6.0 '@internationalized/string': 3.2.5 - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/form': 3.0.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.10(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.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/datepicker': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/calendar': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/datepicker': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/dialog': 3.5.14(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/form': 3.0.11(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/spinbutton': 3.6.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/datepicker': 3.11.0(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/calendar': 3.5.0(react@19.0.0) + '@react-types/datepicker': 3.9.0(react@19.0.0) + '@react-types/dialog': 3.5.14(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/dialog@3.5.20(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/dialog@3.5.20(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/dialog': 3.5.14(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/overlays': 3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/dialog': 3.5.14(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/dialog@3.5.20(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.20(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.24.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/dialog': 3.5.14(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/overlays': 3.24.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/dialog': 3.5.14(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/disclosure@3.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/disclosure@3.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/disclosure': 3.0.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/disclosure': 3.0.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/disclosure@3.0.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/disclosure@3.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/disclosure': 3.0.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/disclosure': 3.0.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/dnd@3.8.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/dnd@3.8.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: '@internationalized/string': 3.2.5 - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/overlays': 3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/dnd': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/overlays': 3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/dnd': 3.5.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/dnd@3.8.0(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.8.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@internationalized/string': 3.2.5 - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/overlays': 3.24.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/dnd': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/overlays': 3.24.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/dnd': 3.5.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/focus@3.18.4(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/focus@3.18.4(react@19.0.0)': dependencies: - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.4(react@19.0.0) + '@react-aria/utils': 3.25.3(react@19.0.0) + '@react-types/shared': 3.25.0(react@19.0.0) '@swc/helpers': 0.5.11 clsx: 2.1.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/focus@3.19.0(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/focus@3.19.0(react@19.0.0)': dependencies: - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 clsx: 2.1.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/form@3.0.11(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/form@3.0.11(react@19.0.0)': dependencies: - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/grid@3.11.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/grid@3.11.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/grid': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/grid': 3.10.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-types/checkbox': 3.9.0(react@19.0.0) + '@react-types/grid': 3.2.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/grid@3.11.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/grid@3.11.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/selection': 3.21.0(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.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/grid': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/grid': 3.10.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-types/checkbox': 3.9.0(react@19.0.0) + '@react-types/grid': 3.2.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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.10.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/grid': 3.11.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@react-aria/gridlist@3.10.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': + dependencies: + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/grid': 3.11.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/list': 3.11.1(react@19.0.0) + '@react-stately/tree': 3.8.6(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/gridlist@3.10.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/grid': 3.11.0(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.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(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.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/gridlist@3.10.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/grid': 3.11.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/list': 3.11.1(react@19.0.0) + '@react-stately/tree': 3.8.6(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/i18n@3.12.3(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/i18n@3.12.3(react@19.0.0)': 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@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) + '@react-aria/ssr': 3.9.6(react@19.0.0) + '@react-aria/utils': 3.25.3(react@19.0.0) + '@react-types/shared': 3.25.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/i18n@3.12.4(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/i18n@3.12.4(react@19.0.0)': dependencies: '@internationalized/date': 3.6.0 '@internationalized/message': 3.1.6 '@internationalized/number': 3.6.0 '@internationalized/string': 3.2.5 - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/interactions@3.22.3(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/interactions@3.22.3(react@19.0.0)': dependencies: - '@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) + '@react-aria/ssr': 3.9.6(react@19.0.0) + '@react-aria/utils': 3.25.3(react@19.0.0) + '@react-types/shared': 3.25.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/interactions@3.22.4(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/interactions@3.22.4(react@19.0.0)': dependencies: - '@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) + '@react-aria/ssr': 3.9.6(react@19.0.0) + '@react-aria/utils': 3.25.3(react@19.0.0) + '@react-types/shared': 3.25.0(react@19.0.0) '@swc/helpers': 0.5.11 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/interactions@3.22.5(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/interactions@3.22.5(react@19.0.0)': dependencies: - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/label@3.7.13(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/label@3.7.13(react@19.0.0)': dependencies: - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/landmark@3.0.0-beta.16(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/landmark@3.0.0-beta.16(react@19.0.0)': dependencies: - '@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) + '@react-aria/utils': 3.25.3(react@19.0.0) + '@react-types/shared': 3.25.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 - use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + use-sync-external-store: 1.2.0(react@19.0.0) - '@react-aria/link@3.7.7(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/link@3.7.7(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/link': 3.5.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/link': 3.5.9(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 - - '@react-aria/listbox@3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/listbox': 3.5.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + + '@react-aria/listbox@3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': + dependencies: + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/list': 3.11.1(react@19.0.0) + '@react-types/listbox': 3.5.3(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/listbox@3.13.6(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/listbox@3.13.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(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.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/listbox': 3.5.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/list': 3.11.1(react@19.0.0) + '@react-types/listbox': 3.5.3(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) '@react-aria/live-announcer@3.4.1': dependencies: '@swc/helpers': 0.5.13 - '@react-aria/menu@3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/menu': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/menu': 3.9.13(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/menu@3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': + dependencies: + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/overlays': 3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/menu': 3.9.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-stately/tree': 3.8.6(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/menu': 3.9.13(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/menu@3.16.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.24.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(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.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/menu': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/menu': 3.9.13(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/menu@3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/overlays': 3.24.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/menu': 3.9.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-stately/tree': 3.8.6(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/menu': 3.9.13(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/meter@3.4.18(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/meter@3.4.18(react@19.0.0)': dependencies: - '@react-aria/progress': 3.4.18(react@19.0.0-rc-603e6108-20241029) - '@react-types/meter': 3.4.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/progress': 3.4.18(react@19.0.0) + '@react-types/meter': 3.4.5(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 - - '@react-aria/numberfield@3.11.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/numberfield': 3.9.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/numberfield': 3.8.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + + '@react-aria/numberfield@3.11.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': + dependencies: + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/spinbutton': 3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/textfield': 3.15.0(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/numberfield': 3.9.8(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/numberfield': 3.8.7(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/numberfield@3.11.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/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.10(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.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/numberfield': 3.9.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/numberfield': 3.8.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/numberfield@3.11.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/spinbutton': 3.6.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/textfield': 3.15.0(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/numberfield': 3.9.8(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/numberfield': 3.8.7(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.18(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.12(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/overlays': 3.8.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@react-aria/overlays@3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': + dependencies: + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) + '@react-stately/overlays': 3.6.12(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/overlays': 3.8.11(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/overlays@3.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: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.18(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.12(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/overlays': 3.8.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/overlays@3.24.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) + '@react-stately/overlays': 3.6.12(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/overlays': 3.8.11(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/progress@3.4.18(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/progress@3.4.18(react@19.0.0)': dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/progress': 3.5.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/progress': 3.5.8(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 - - '@react-aria/radio@3.10.10(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/form': 3.0.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/radio': 3.10.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/radio': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + + '@react-aria/radio@3.10.10(react@19.0.0)': + dependencies: + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/form': 3.0.11(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/radio': 3.10.9(react@19.0.0) + '@react-types/radio': 3.8.5(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/searchfield@3.7.11(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/searchfield@3.7.11(react@19.0.0)': dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/searchfield': 3.5.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/searchfield': 3.5.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/textfield': 3.15.0(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/searchfield': 3.5.8(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/searchfield': 3.5.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 - - '@react-aria/select@3.15.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/form': 3.0.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/menu': 3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.18(react@19.0.0-rc-603e6108-20241029) - '@react-stately/select': 3.6.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/select': 3.9.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + + '@react-aria/select@3.15.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': + dependencies: + '@react-aria/form': 3.0.11(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/listbox': 3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/menu': 3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) + '@react-stately/select': 3.6.9(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/select': 3.9.8(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/select@3.15.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/form': 3.0.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.6(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/menu': 3.16.0(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.21.0(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.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.18(react@19.0.0-rc-603e6108-20241029) - '@react-stately/select': 3.6.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/select': 3.9.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/select@3.15.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@react-aria/form': 3.0.11(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/listbox': 3.13.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/menu': 3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) + '@react-stately/select': 3.6.9(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/select': 3.9.8(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/selection@3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/selection@3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/selection@3.21.0(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.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/separator@3.4.4(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/separator@3.4.4(react@19.0.0)': dependencies: - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 - - '@react-aria/slider@3.7.14(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/slider': 3.6.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/slider': 3.7.7(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + + '@react-aria/slider@3.7.14(react@19.0.0)': + dependencies: + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/slider': 3.6.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/slider': 3.7.7(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/spinbutton@3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/spinbutton@3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/spinbutton@3.6.10(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/spinbutton@3.6.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/ssr@3.9.6(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/ssr@3.9.6(react@19.0.0)': dependencies: '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/ssr@3.9.7(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/ssr@3.9.7(react@19.0.0)': dependencies: '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/switch@3.6.10(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/switch@3.6.10(react@19.0.0)': dependencies: - '@react-aria/toggle': 3.10.10(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.8.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/switch': 3.5.7(react@19.0.0-rc-603e6108-20241029) + '@react-aria/toggle': 3.10.10(react@19.0.0) + '@react-stately/toggle': 3.8.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/switch': 3.5.7(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/table@3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/table@3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/grid': 3.11.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/grid': 3.11.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.18(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) '@react-stately/flags': 3.0.5 - '@react-stately/table': 3.13.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/table': 3.13.0(react@19.0.0) + '@react-types/checkbox': 3.9.0(react@19.0.0) + '@react-types/grid': 3.2.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/table': 3.10.3(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/table@3.16.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/table@3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/grid': 3.11.0(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.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/grid': 3.11.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.18(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) '@react-stately/flags': 3.0.5 - '@react-stately/table': 3.13.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/table': 3.13.0(react@19.0.0) + '@react-types/checkbox': 3.9.0(react@19.0.0) + '@react-types/grid': 3.2.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/table': 3.10.3(react@19.0.0) '@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.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tabs': 3.7.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/tabs': 3.3.11(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@react-aria/tabs@3.9.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': + dependencies: + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/tabs': 3.7.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/tabs': 3.3.11(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/tabs@3.9.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/tabs@3.9.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(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.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tabs': 3.7.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/tabs': 3.3.11(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/tabs': 3.7.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/tabs': 3.3.11(react@19.0.0) '@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.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/gridlist': 3.10.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@react-aria/tag@3.4.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': + dependencies: + '@react-aria/gridlist': 3.10.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/list': 3.11.1(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/tag@3.4.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/gridlist': 3.10.0(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.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(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.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/tag@3.4.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@react-aria/gridlist': 3.10.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/list': 3.11.1(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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.15.0(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/form': 3.0.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/textfield': 3.10.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + '@react-aria/textfield@3.15.0(react@19.0.0)': + dependencies: + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/form': 3.0.11(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/textfield': 3.10.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/toast@3.0.0-beta.16(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/toast@3.0.0-beta.16(react@19.0.0)': dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/landmark': 3.0.0-beta.16(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toast': 3.0.0-beta.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.3(react@19.0.0) + '@react-aria/interactions': 3.22.3(react@19.0.0) + '@react-aria/landmark': 3.0.0-beta.16(react@19.0.0) + '@react-aria/utils': 3.25.3(react@19.0.0) + '@react-stately/toast': 3.0.0-beta.6(react@19.0.0) + '@react-types/button': 3.10.0(react@19.0.0) + '@react-types/shared': 3.25.0(react@19.0.0) '@swc/helpers': 0.5.11 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/toggle@3.10.10(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/toggle@3.10.10(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.8.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/toggle': 3.8.0(react@19.0.0) + '@react-types/checkbox': 3.9.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/toolbar@3.0.0-beta.11(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/toolbar@3.0.0-beta.11(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/tooltip@3.7.10(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/tooltip@3.7.10(react@19.0.0)': dependencies: - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tooltip': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/tooltip': 3.4.13(react@19.0.0-rc-603e6108-20241029) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/tooltip': 3.5.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/tooltip': 3.4.13(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/tree@3.0.0-beta.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/tree@3.0.0-beta.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - '@react-aria/gridlist': 3.10.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/gridlist': 3.10.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/tree': 3.8.6(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/tree@3.0.0-beta.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/tree@3.0.0-beta.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/gridlist': 3.10.0(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.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(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.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/gridlist': 3.10.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/tree': 3.8.6(react@19.0.0) + '@react-types/button': 3.10.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/utils@3.25.3(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/utils@3.25.3(react@19.0.0)': dependencies: - '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/ssr': 3.9.6(react@19.0.0) + '@react-stately/utils': 3.10.4(react@19.0.0) + '@react-types/shared': 3.25.0(react@19.0.0) '@swc/helpers': 0.5.13 clsx: 2.1.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/utils@3.26.0(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/utils@3.26.0(react@19.0.0)': dependencies: - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 clsx: 2.1.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-aria/virtualizer@4.1.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/virtualizer@4.1.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/virtualizer': 4.2.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/virtualizer': 4.2.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-aria/virtualizer@4.1.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/virtualizer@4.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/virtualizer': 4.2.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-stately/virtualizer': 4.2.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@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: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-aria/visually-hidden@3.8.18(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/visually-hidden@3.8.18(react@19.0.0)': dependencies: - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 '@react-hookz/deep-equal@1.0.4': {} - '@react-hookz/web@24.0.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-hookz/web@24.0.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: '@react-hookz/deep-equal': 1.0.4 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - '@react-hookz/web@24.0.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-hookz/web@24.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@react-hookz/deep-equal': 1.0.4 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))': + '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))': dependencies: merge-options: 3.0.4 - react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) + react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))': + '@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)(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) + 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)(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))': + '@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@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))': dependencies: merge-options: 3.0.4 - react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10) - optional: true - - '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))': - dependencies: - merge-options: 3.0.4 - react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10) optional: true '@react-native-community/cli-clean@13.6.8(encoding@0.1.13)': @@ -35756,13 +35365,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)) @@ -35819,55 +35421,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 @@ -35930,19 +35483,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 @@ -35978,28 +35518,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) @@ -36059,16 +35577,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 @@ -36081,451 +35589,442 @@ snapshots: '@react-native/normalize-colors@0.74.84': {} - '@react-native/virtualized-lists@0.74.84(@types/react@18.3.11)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@react-native/virtualized-lists@0.74.84(@types/react@18.3.11)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react: 19.0.0-rc-603e6108-20241029 - react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10) + react: 19.0.0 + react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10) optionalDependencies: '@types/react': 18.3.11 - '@react-native/virtualized-lists@0.74.84(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)': + '@react-native/virtualized-lists@0.74.84(@types/react@19.0.1)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': 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.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) + react: 19.0.0 + react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10) optionalDependencies: - '@types/react': types-react@19.0.0-rc.1 + '@types/react': 19.0.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)': + '@react-native/virtualized-lists@0.74.84(@types/react@19.0.1)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': 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) + react: 19.0.0 + react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10) optionalDependencies: - '@types/react': types-react@19.0.0-rc.1 + '@types/react': 19.0.1 - '@react-native/virtualized-lists@0.74.84(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)': - dependencies: - invariant: 2.2.4 - nullthrows: 1.1.1 - react: 19.0.0-rc-603e6108-20241029 - react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) - optionalDependencies: - '@types/react': types-react@19.0.0-rc.1 - - '@react-stately/calendar@3.6.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/calendar@3.6.0(react@19.0.0)': dependencies: '@internationalized/date': 3.6.0 - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/calendar': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/calendar': 3.5.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/checkbox@3.6.10(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/checkbox@3.6.10(react@19.0.0)': dependencies: - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/checkbox': 3.9.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/collections@3.12.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/collections@3.12.0(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/color@3.8.1(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/color@3.8.1(react@19.0.0)': dependencies: '@internationalized/number': 3.6.0 '@internationalized/string': 3.2.5 - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/numberfield': 3.9.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/slider': 3.6.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/color': 3.0.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/numberfield': 3.9.8(react@19.0.0) + '@react-stately/slider': 3.6.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/color': 3.0.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 - - '@react-stately/combobox@3.10.1(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.12(react@19.0.0-rc-603e6108-20241029) - '@react-stately/select': 3.6.9(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/combobox': 3.13.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + + '@react-stately/combobox@3.10.1(react@19.0.0)': + dependencies: + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/list': 3.11.1(react@19.0.0) + '@react-stately/overlays': 3.6.12(react@19.0.0) + '@react-stately/select': 3.6.9(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/combobox': 3.13.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/data@3.12.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/data@3.12.0(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/datepicker@3.11.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/datepicker@3.11.0(react@19.0.0)': dependencies: '@internationalized/date': 3.6.0 '@internationalized/string': 3.2.5 - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.12(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/datepicker': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/overlays': 3.6.12(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/datepicker': 3.9.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/disclosure@3.0.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/disclosure@3.0.0(react@19.0.0)': dependencies: - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/dnd@3.5.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/dnd@3.5.0(react@19.0.0)': dependencies: - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 '@react-stately/flags@3.0.5': dependencies: '@swc/helpers': 0.5.13 - '@react-stately/form@3.1.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/form@3.1.0(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/grid@3.10.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/grid@3.10.0(react@19.0.0)': dependencies: - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-types/grid': 3.2.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/layout@4.1.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/layout@4.1.0(react@19.0.0)': dependencies: - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/table': 3.13.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/virtualizer': 4.2.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/table': 3.13.0(react@19.0.0) + '@react-stately/virtualizer': 4.2.0(react@19.0.0) + '@react-types/grid': 3.2.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/table': 3.10.3(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/list@3.11.1(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/list@3.11.1(react@19.0.0)': dependencies: - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/menu@3.9.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/menu@3.9.0(react@19.0.0)': dependencies: - '@react-stately/overlays': 3.6.12(react@19.0.0-rc-603e6108-20241029) - '@react-types/menu': 3.9.13(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/overlays': 3.6.12(react@19.0.0) + '@react-types/menu': 3.9.13(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/numberfield@3.9.8(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/numberfield@3.9.8(react@19.0.0)': dependencies: '@internationalized/number': 3.6.0 - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/numberfield': 3.8.7(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/numberfield': 3.8.7(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/overlays@3.6.12(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/overlays@3.6.12(react@19.0.0)': dependencies: - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/overlays': 3.8.11(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/overlays': 3.8.11(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/radio@3.10.9(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/radio@3.10.9(react@19.0.0)': dependencies: - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/radio': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/radio': 3.8.5(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/searchfield@3.5.8(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/searchfield@3.5.8(react@19.0.0)': dependencies: - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/searchfield': 3.5.10(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/searchfield': 3.5.10(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/select@3.6.9(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/select@3.6.9(react@19.0.0)': dependencies: - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.12(react@19.0.0-rc-603e6108-20241029) - '@react-types/select': 3.9.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/list': 3.11.1(react@19.0.0) + '@react-stately/overlays': 3.6.12(react@19.0.0) + '@react-types/select': 3.9.8(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/selection@3.18.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/selection@3.18.0(react@19.0.0)': dependencies: - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/slider@3.6.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/slider@3.6.0(react@19.0.0)': dependencies: - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/slider': 3.7.7(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/slider': 3.7.7(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/table@3.13.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/table@3.13.0(react@19.0.0)': dependencies: - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.12.0(react@19.0.0) '@react-stately/flags': 3.0.5 - '@react-stately/grid': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.3(react@19.0.0-rc-603e6108-20241029) + '@react-stately/grid': 3.10.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/grid': 3.2.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/table': 3.10.3(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/tabs@3.7.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/tabs@3.7.0(react@19.0.0)': dependencies: - '@react-stately/list': 3.11.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/tabs': 3.3.11(react@19.0.0-rc-603e6108-20241029) + '@react-stately/list': 3.11.1(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/tabs': 3.3.11(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/toast@3.0.0-beta.6(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/toast@3.0.0-beta.6(react@19.0.0)': dependencies: '@swc/helpers': 0.5.11 - react: 19.0.0-rc-603e6108-20241029 - use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + use-sync-external-store: 1.2.0(react@19.0.0) - '@react-stately/toggle@3.8.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/toggle@3.8.0(react@19.0.0)': dependencies: - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/checkbox': 3.9.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/tooltip@3.5.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/tooltip@3.5.0(react@19.0.0)': dependencies: - '@react-stately/overlays': 3.6.12(react@19.0.0-rc-603e6108-20241029) - '@react-types/tooltip': 3.4.13(react@19.0.0-rc-603e6108-20241029) + '@react-stately/overlays': 3.6.12(react@19.0.0) + '@react-types/tooltip': 3.4.13(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/tree@3.8.6(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/tree@3.8.6(react@19.0.0)': dependencies: - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/utils@3.10.4(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/utils@3.10.4(react@19.0.0)': dependencies: '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/utils@3.10.5(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/utils@3.10.5(react@19.0.0)': dependencies: '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-stately/virtualizer@4.2.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/virtualizer@4.2.0(react@19.0.0)': dependencies: - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-types/breadcrumbs@3.7.9(react@19.0.0-rc-603e6108-20241029)': + '@react-types/breadcrumbs@3.7.9(react@19.0.0)': dependencies: - '@react-types/link': 3.5.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/link': 3.5.9(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/button@3.10.0(react@19.0.0-rc-603e6108-20241029)': + '@react-types/button@3.10.0(react@19.0.0)': dependencies: - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.25.0(react@19.0.0) + react: 19.0.0 - '@react-types/button@3.10.1(react@19.0.0-rc-603e6108-20241029)': + '@react-types/button@3.10.1(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/calendar@3.5.0(react@19.0.0-rc-603e6108-20241029)': + '@react-types/calendar@3.5.0(react@19.0.0)': dependencies: '@internationalized/date': 3.6.0 - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/checkbox@3.9.0(react@19.0.0-rc-603e6108-20241029)': + '@react-types/checkbox@3.9.0(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/color@3.0.1(react@19.0.0-rc-603e6108-20241029)': + '@react-types/color@3.0.1(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/slider': 3.7.7(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/slider': 3.7.7(react@19.0.0) + react: 19.0.0 - '@react-types/combobox@3.13.1(react@19.0.0-rc-603e6108-20241029)': + '@react-types/combobox@3.13.1(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/datepicker@3.9.0(react@19.0.0-rc-603e6108-20241029)': + '@react-types/datepicker@3.9.0(react@19.0.0)': dependencies: '@internationalized/date': 3.6.0 - '@react-types/calendar': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/overlays': 3.8.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/calendar': 3.5.0(react@19.0.0) + '@react-types/overlays': 3.8.11(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/dialog@3.5.14(react@19.0.0-rc-603e6108-20241029)': + '@react-types/dialog@3.5.14(react@19.0.0)': dependencies: - '@react-types/overlays': 3.8.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/overlays': 3.8.11(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/form@3.7.8(react@19.0.0-rc-603e6108-20241029)': + '@react-types/form@3.7.8(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/grid@3.2.10(react@19.0.0-rc-603e6108-20241029)': + '@react-types/grid@3.2.10(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/link@3.5.9(react@19.0.0-rc-603e6108-20241029)': + '@react-types/link@3.5.9(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/listbox@3.5.3(react@19.0.0-rc-603e6108-20241029)': + '@react-types/listbox@3.5.3(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/menu@3.9.13(react@19.0.0-rc-603e6108-20241029)': + '@react-types/menu@3.9.13(react@19.0.0)': dependencies: - '@react-types/overlays': 3.8.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/overlays': 3.8.11(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/meter@3.4.5(react@19.0.0-rc-603e6108-20241029)': + '@react-types/meter@3.4.5(react@19.0.0)': dependencies: - '@react-types/progress': 3.5.8(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/progress': 3.5.8(react@19.0.0) + react: 19.0.0 - '@react-types/numberfield@3.8.7(react@19.0.0-rc-603e6108-20241029)': + '@react-types/numberfield@3.8.7(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/overlays@3.8.11(react@19.0.0-rc-603e6108-20241029)': + '@react-types/overlays@3.8.11(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/progress@3.5.8(react@19.0.0-rc-603e6108-20241029)': + '@react-types/progress@3.5.8(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/radio@3.8.5(react@19.0.0-rc-603e6108-20241029)': + '@react-types/radio@3.8.5(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/searchfield@3.5.10(react@19.0.0-rc-603e6108-20241029)': + '@react-types/searchfield@3.5.10(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/textfield': 3.10.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/textfield': 3.10.0(react@19.0.0) + react: 19.0.0 - '@react-types/select@3.9.8(react@19.0.0-rc-603e6108-20241029)': + '@react-types/select@3.9.8(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/shared@3.25.0(react@19.0.0-rc-603e6108-20241029)': + '@react-types/shared@3.25.0(react@19.0.0)': dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-types/shared@3.26.0(react@19.0.0-rc-603e6108-20241029)': + '@react-types/shared@3.26.0(react@19.0.0)': dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@react-types/slider@3.7.7(react@19.0.0-rc-603e6108-20241029)': + '@react-types/slider@3.7.7(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/switch@3.5.7(react@19.0.0-rc-603e6108-20241029)': + '@react-types/switch@3.5.7(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/table@3.10.3(react@19.0.0-rc-603e6108-20241029)': + '@react-types/table@3.10.3(react@19.0.0)': dependencies: - '@react-types/grid': 3.2.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/grid': 3.2.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/tabs@3.3.11(react@19.0.0-rc-603e6108-20241029)': + '@react-types/tabs@3.3.11(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/textfield@3.10.0(react@19.0.0-rc-603e6108-20241029)': + '@react-types/textfield@3.10.0(react@19.0.0)': dependencies: - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 - '@react-types/tooltip@3.4.13(react@19.0.0-rc-603e6108-20241029)': + '@react-types/tooltip@3.4.13(react@19.0.0)': dependencies: - '@react-types/overlays': 3.8.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-types/overlays': 3.8.11(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 '@redux-saga/core@1.3.0': dependencies: @@ -36849,9 +36348,9 @@ snapshots: '@socket.io/component-emitter@3.1.1': {} - '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) bs58: 5.0.0 js-base64: 3.7.5 @@ -36860,9 +36359,9 @@ snapshots: - react - react-native - '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) bs58: 5.0.0 js-base64: 3.7.5 @@ -36871,9 +36370,9 @@ snapshots: - react - react-native - '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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-mobile/mobile-wallet-adapter-protocol-web3js@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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-mobile/mobile-wallet-adapter-protocol': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) bs58: 5.0.0 js-base64: 3.7.5 @@ -36882,80 +36381,80 @@ snapshots: - react - react-native - '@solana-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0) '@solana/wallet-standard-util': 1.1.1 '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@wallet-standard/core': 1.0.3 js-base64: 3.7.5 - react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) + react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@solana/wallet-adapter-base' - bs58 - react - '@solana-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@solana-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0) '@solana/wallet-standard-util': 1.1.1 '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@wallet-standard/core': 1.0.3 js-base64: 3.7.5 - react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10) + react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@solana/wallet-adapter-base' - bs58 - react - '@solana-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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-mobile/mobile-wallet-adapter-protocol@2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0) '@solana/wallet-standard-util': 1.1.1 '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@wallet-standard/core': 1.0.3 js-base64: 3.7.5 - react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10) transitivePeerDependencies: - '@solana/wallet-adapter-base' - bs58 - react - '@solana-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-standard-features': 1.2.0 '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) js-base64: 3.7.5 optionalDependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)) transitivePeerDependencies: - react - react-native - '@solana-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@solana-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-standard-features': 1.2.0 '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) js-base64: 3.7.5 optionalDependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)) + '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)) transitivePeerDependencies: - react - react-native - '@solana-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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-mobile/wallet-adapter-mobile@2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-standard-features': 1.2.0 '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) js-base64: 3.7.5 optionalDependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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-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@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)) transitivePeerDependencies: - react - react-native @@ -37234,20 +36733,20 @@ snapshots: '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 transitivePeerDependencies: - bs58 - react-native - '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-adapter-base-ui@0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 transitivePeerDependencies: - bs58 - react-native @@ -37321,9 +36820,9 @@ snapshots: '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-fractal@0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-adapter-fractal@0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@fractalwagmi/solana-wallet-adapter': 0.1.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + '@fractalwagmi/solana-wallet-adapter': 0.1.1(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -37420,70 +36919,70 @@ snapshots: '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) - '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) + '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - bs58 - react-native - '@solana/wallet-adapter-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@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-react-ui@0.9.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) - '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-adapter-base-ui': 0.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) + '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) transitivePeerDependencies: - bs58 - react-native - '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 transitivePeerDependencies: - bs58 - react-native - '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 transitivePeerDependencies: - bs58 - react-native - '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 transitivePeerDependencies: - bs58 - react-native - '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react-native@0.74.2(@babel/core@7.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)(utf-8-validate@5.0.10))(react@19.0.0)': dependencies: - '@solana-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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-mobile/wallet-adapter-mobile': 2.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 transitivePeerDependencies: - bs58 - react-native @@ -37590,9 +37089,9 @@ snapshots: '@solana/wallet-standard-util': 1.1.1 '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@solana/wallet-adapter-walletconnect@0.1.16(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@jnwng/walletconnect-solana': 0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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) + '@jnwng/walletconnect-solana': 0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -37614,9 +37113,9 @@ snapshots: - uWebSockets.js - utf-8-validate - '@solana/wallet-adapter-walletconnect@0.1.16(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@jnwng/walletconnect-solana': 0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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) + '@jnwng/walletconnect-solana': 0.2.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/web3.js': 1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -37638,7 +37137,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@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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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(react@19.0.0))(react@19.0.0)(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)) @@ -37653,7 +37152,7 @@ snapshots: '@solana/wallet-adapter-coinbase': 0.1.19(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-coinhub': 0.3.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-exodus': 0.1.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-fractal': 0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-adapter-fractal': 0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@solana/wallet-adapter-glow': 0.1.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-huobi': 0.1.15(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-hyperpay': 0.1.14(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) @@ -37666,7 +37165,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)) @@ -37683,7 +37182,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.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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: @@ -37712,7 +37211,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.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@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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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(react@19.0.0))(react@19.0.0)(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)) @@ -37727,7 +37226,7 @@ snapshots: '@solana/wallet-adapter-coinbase': 0.1.19(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-coinhub': 0.3.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-exodus': 0.1.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) - '@solana/wallet-adapter-fractal': 0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-adapter-fractal': 0.1.8(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@solana/wallet-adapter-glow': 0.1.18(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-huobi': 0.1.15(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-adapter-hyperpay': 0.1.14(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) @@ -37740,7 +37239,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)) @@ -37757,7 +37256,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.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.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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: @@ -37838,42 +37337,42 @@ snapshots: '@wallet-standard/wallet': 1.0.1 bs58: 6.0.0 - '@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0)': dependencies: '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0) '@wallet-standard/app': 1.0.1 '@wallet-standard/base': 1.0.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 transitivePeerDependencies: - '@solana/web3.js' - bs58 - '@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0)(react@19.0.0)': dependencies: '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)) '@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@6.0.0) '@wallet-standard/app': 1.0.1 '@wallet-standard/base': 1.0.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 transitivePeerDependencies: - '@solana/web3.js' - bs58 - '@solana/wallet-standard-wallet-adapter@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-standard-wallet-adapter@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0)': dependencies: '@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0) - '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0) transitivePeerDependencies: - '@solana/wallet-adapter-base' - '@solana/web3.js' - bs58 - react - '@solana/wallet-standard@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029)': + '@solana/wallet-standard@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0)': dependencies: '@solana/wallet-standard-core': 1.1.1 - '@solana/wallet-standard-wallet-adapter': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0-rc-603e6108-20241029) + '@solana/wallet-standard-wallet-adapter': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)))(@solana/web3.js@1.92.3(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@19.0.0) transitivePeerDependencies: - '@solana/wallet-adapter-base' - '@solana/web3.js' @@ -38276,25 +37775,25 @@ 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))': + '@storybook/blocks@8.3.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(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) + '@storybook/icons': 1.2.12(react-dom@18.3.1(react@18.3.1))(react@19.0.0) '@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) + markdown-to-jsx: 7.5.0(react@19.0.0) 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) + react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0) 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: 19.0.0 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)': @@ -38389,9 +37888,9 @@ 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)': + '@storybook/icons@1.2.12(react-dom@18.3.1(react@18.3.1))(react@19.0.0)': dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 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))': @@ -38405,7 +37904,7 @@ snapshots: dependencies: storybook: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4) - '@storybook/nextjs@8.3.5(esbuild@0.22.0)(next@15.0.3(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7))(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7)(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.1.0(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(sass@1.80.7)(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.25.8 '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.25.8) @@ -38422,8 +37921,8 @@ snapshots: '@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@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/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)(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)(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.8.2 '@types/semver': 7.5.8 @@ -38433,12 +37932,12 @@ snapshots: fs-extra: 11.2.0 image-size: 1.1.1 loader-utils: 3.2.1 - next: 15.0.3(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7) + next: 15.1.0(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7) 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: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) react-refresh: 0.14.2 resolve-url-loader: 5.0.0 @@ -38446,7 +37945,7 @@ 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.25.8)(react@19.0.0-rc-603e6108-20241029) + styled-jsx: 5.1.6(@babel/core@7.25.8)(react@19.0.0) ts-dedent: 2.2.0 tsconfig-paths: 4.2.0 tsconfig-paths-webpack-plugin: 4.1.0 @@ -38477,17 +37976,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@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/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)(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@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)(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.8.2 '@types/semver': 7.5.8 find-up: 5.0.0 fs-extra: 11.2.0 magic-string: 0.30.12 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-docgen: 7.0.3 react-dom: 18.3.1(react@18.3.1) resolve: 1.22.8 @@ -38529,19 +38028,19 @@ 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-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/react-dom-shim@8.3.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0)(storybook@8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4))': dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 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)': + '@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)(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@19.0.0-rc-603e6108-20241029)(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)(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 @@ -38552,9 +38051,9 @@ snapshots: escodegen: 2.1.0 html-tags: 3.3.1 prop-types: 15.8.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 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@19.0.0-rc-603e6108-20241029) + react-element-to-jsx-string: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) semver: 7.6.3 storybook: 8.3.5(bufferutil@4.0.8)(utf-8-validate@6.0.4) ts-dedent: 2.2.0 @@ -38874,6 +38373,10 @@ snapshots: dependencies: tslib: 2.8.0 + '@swc/helpers@0.5.15': + dependencies: + tslib: 2.8.0 + '@swc/helpers@0.5.5': dependencies: '@swc/counter': 0.1.3 @@ -38922,22 +38425,22 @@ snapshots: '@tanstack/query-core@5.45.0': {} - '@tanstack/react-query@5.45.1(react@19.0.0-rc-603e6108-20241029)': + '@tanstack/react-query@5.45.1(react@19.0.0)': dependencies: '@tanstack/query-core': 5.45.0 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - '@tanstack/react-table@8.7.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@tanstack/react-table@8.7.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@tanstack/table-core': 8.7.8 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - '@tanstack/react-virtual@3.10.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@tanstack/react-virtual@3.10.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: '@tanstack/virtual-core': 3.10.8 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) '@tanstack/table-core@8.7.8': {} @@ -40055,11 +39558,19 @@ snapshots: '@types/range-parser@1.2.7': optional: true + '@types/react-dom@19.0.2(@types/react@19.0.1)': + dependencies: + '@types/react': 19.0.1 + '@types/react@18.3.11': dependencies: '@types/prop-types': 15.7.12 csstype: 3.1.3 + '@types/react@19.0.1': + dependencies: + csstype: 3.1.3 + '@types/resolve@1.20.6': {} '@types/responselike@1.0.0': @@ -40121,9 +39632,9 @@ snapshots: '@types/bn.js': 5.1.6 '@types/underscore': 1.11.4 - '@types/web3@1.2.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@types/web3@1.2.2(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - web3: 1.10.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + web3: 1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - encoding @@ -40294,6 +39805,25 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)': + dependencies: + '@eslint-community/regexpp': 4.11.0 + '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + '@typescript-eslint/scope-manager': 7.13.1 + '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2) + '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2) + '@typescript-eslint/visitor-keys': 7.13.1 + eslint: 9.5.0 + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + ts-api-utils: 1.3.0(typescript@5.5.2) + optionalDependencies: + typescript: 5.5.2 + transitivePeerDependencies: + - supports-color + optional: true + '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.11.0 @@ -40332,25 +39862,6 @@ snapshots: - supports-color optional: true - '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2)': - dependencies: - '@eslint-community/regexpp': 4.11.0 - '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2) - '@typescript-eslint/scope-manager': 7.13.1 - '@typescript-eslint/type-utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2) - '@typescript-eslint/utils': 7.13.1(eslint@9.5.0)(typescript@5.5.2) - '@typescript-eslint/visitor-keys': 7.13.1 - eslint: 9.5.0 - graphemer: 1.4.0 - ignore: 5.3.2 - natural-compare: 1.4.0 - ts-api-utils: 1.3.0(typescript@5.5.2) - optionalDependencies: - typescript: 5.5.2 - transitivePeerDependencies: - - supports-color - optional: true - '@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)': dependencies: '@eslint-community/regexpp': 4.11.0 @@ -40602,20 +40113,6 @@ snapshots: - supports-color optional: true - '@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2)': - dependencies: - '@typescript-eslint/scope-manager': 8.14.0 - '@typescript-eslint/types': 8.14.0 - '@typescript-eslint/typescript-estree': 8.14.0(typescript@5.5.2) - '@typescript-eslint/visitor-keys': 8.14.0 - debug: 4.3.7(supports-color@8.1.1) - eslint: 9.5.0 - optionalDependencies: - typescript: 5.5.2 - transitivePeerDependencies: - - supports-color - optional: true - '@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4)': dependencies: '@typescript-eslint/scope-manager': 8.14.0 @@ -41050,22 +40547,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@8.14.0(typescript@5.5.2)': - dependencies: - '@typescript-eslint/types': 8.14.0 - '@typescript-eslint/visitor-keys': 8.14.0 - debug: 4.3.7(supports-color@8.1.1) - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.5.2) - optionalDependencies: - typescript: 5.5.2 - transitivePeerDependencies: - - supports-color - optional: true - '@typescript-eslint/typescript-estree@8.14.0(typescript@5.5.4)': dependencies: '@typescript-eslint/types': 8.14.0 @@ -41763,15 +41244,15 @@ snapshots: '@vue/shared@3.4.34': {} - '@wagmi/connectors@5.0.16(276lu6ucw5vl7m53grscpa4fqq)': + '@wagmi/connectors@5.0.16(4kbay4ejz7vqiich5e43lezopu)': 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(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(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/modal': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) + '@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(@types/react@19.0.1)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0)(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.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10) + '@walletconnect/modal': 2.6.2(@types/react@19.0.1)(react@19.0.0) cbw-sdk: '@coinbase/wallet-sdk@3.9.3' viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8) optionalDependencies: @@ -41803,12 +41284,12 @@ snapshots: - utf-8-validate - zod - '@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)': + '@wagmi/core@2.11.4(@tanstack/query-core@5.45.0)(@types/react@19.0.1)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)': dependencies: eventemitter3: 5.0.1 mipd: 0.0.5(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8) viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8) - zustand: 4.4.1(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) + zustand: 4.4.1(@types/react@19.0.1)(immer@9.0.21)(react@19.0.0) optionalDependencies: '@tanstack/query-core': 5.45.0 typescript: 5.5.2 @@ -41849,21 +41330,21 @@ snapshots: '@walletconnect/window-metadata': 1.0.0 detect-browser: 5.2.0 - '@walletconnect/core@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.10 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) events: 3.3.0 isomorphic-unfetch: 3.1.0(encoding@0.1.13) lodash.isequal: 4.5.0 @@ -41887,21 +41368,21 @@ snapshots: - uWebSockets.js - utf-8-validate - '@walletconnect/core@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.10 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) events: 3.3.0 isomorphic-unfetch: 3.1.0(encoding@0.1.13) lodash.isequal: 4.5.0 @@ -41925,21 +41406,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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) events: 3.3.0 isomorphic-unfetch: 3.1.0(encoding@0.1.13) lodash.isequal: 4.5.0 @@ -41967,17 +41448,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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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/modal': 2.6.2(@types/react@19.0.1)(react@19.0.0) + '@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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -42064,35 +41545,13 @@ snapshots: - bufferutil - utf-8-validate - '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))': - dependencies: - '@walletconnect/safe-json': 1.0.2 - idb-keyval: 6.2.1 - unstorage: 1.10.2(idb-keyval@6.2.1) - optionalDependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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.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.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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)) + '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -42108,13 +41567,13 @@ snapshots: - ioredis - uWebSockets.js - '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/safe-json': 1.0.2 idb-keyval: 6.2.1 unstorage: 1.10.2(idb-keyval@6.2.1) optionalDependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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-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@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -42137,16 +41596,16 @@ snapshots: '@walletconnect/mobile-registry@1.4.0': {} - '@walletconnect/modal-core@2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)': + '@walletconnect/modal-core@2.6.2(@types/react@19.0.1)(react@19.0.0)': dependencies: - valtio: 1.11.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) + valtio: 1.11.2(@types/react@19.0.1)(react@19.0.0) transitivePeerDependencies: - '@types/react' - react - '@walletconnect/modal-ui@2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)': + '@walletconnect/modal-ui@2.6.2(@types/react@19.0.1)(react@19.0.0)': dependencies: - '@walletconnect/modal-core': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) + '@walletconnect/modal-core': 2.6.2(@types/react@19.0.1)(react@19.0.0) lit: 2.8.0 motion: 10.16.2 qrcode: 1.5.3 @@ -42154,10 +41613,10 @@ snapshots: - '@types/react' - react - '@walletconnect/modal@2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)': + '@walletconnect/modal@2.6.2(@types/react@19.0.1)(react@19.0.0)': dependencies: - '@walletconnect/modal-core': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) - '@walletconnect/modal-ui': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) + '@walletconnect/modal-core': 2.6.2(@types/react@19.0.1)(react@19.0.0) + '@walletconnect/modal-ui': 2.6.2(@types/react@19.0.1)(react@19.0.0) transitivePeerDependencies: - '@types/react' - react @@ -42190,16 +41649,16 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/sign-client@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -42220,16 +41679,16 @@ snapshots: - uWebSockets.js - utf-8-validate - '@walletconnect/sign-client@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -42250,16 +41709,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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -42286,12 +41745,12 @@ snapshots: '@walletconnect/types@1.8.0': {} - '@walletconnect/types@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: @@ -42310,12 +41769,12 @@ snapshots: - ioredis - uWebSockets.js - '@walletconnect/types@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: @@ -42334,12 +41793,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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: @@ -42358,16 +41817,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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -42388,7 +41847,7 @@ snapshots: - uWebSockets.js - utf-8-validate - '@walletconnect/utils@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))': + '@walletconnect/utils@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -42398,7 +41857,7 @@ snapshots: '@walletconnect/relay-api': 1.0.10 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(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.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -42420,7 +41879,7 @@ snapshots: - ioredis - uWebSockets.js - '@walletconnect/utils@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))': + '@walletconnect/utils@2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -42430,7 +41889,7 @@ snapshots: '@walletconnect/relay-api': 1.0.10 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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.12.2(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -42452,7 +41911,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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -42462,7 +41921,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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -43531,20 +42990,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 - optional: true - babel-jest@29.7.0(@babel/core@7.25.8): dependencies: '@babel/core': 7.25.8 @@ -43666,14 +43111,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 @@ -43733,14 +43170,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(react@19.0.0))(react-is@18.3.1)(react@19.0.0))(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(react@19.0.0))(react-is@18.3.1)(react@19.0.0) transitivePeerDependencies: - '@babel/core' - supports-color @@ -43751,12 +43188,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) @@ -43801,13 +43232,6 @@ 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) - optional: true - babel-preset-jest@29.6.3(@babel/core@7.25.8): dependencies: '@babel/core': 7.25.8 @@ -44887,21 +44311,21 @@ 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(cwnwljk3n25tzd5weih3j2cexi): dependencies: - '@tanstack/react-query': 5.45.1(react@19.0.0-rc-603e6108-20241029) + '@tanstack/react-query': 5.45.1(react@19.0.0) buffer: 6.0.3 detect-browser: 5.3.0 - framer-motion: 6.5.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + framer-motion: 6.5.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) qrcode: 1.5.3 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - react-transition-state: 1.1.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - react-use-measure: 2.1.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-transition-state: 1.1.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-use-measure: 2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 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(react@19.0.0))(react-is@18.3.1)(react@19.0.0) 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(@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@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@19.0.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(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) transitivePeerDependencies: - '@babel/core' - react-is @@ -46655,31 +46079,31 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)): + eslint-module-utils@2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4) + '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) eslint: 9.12.0(jiti@1.21.0) eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.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)): + eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3) + '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4) eslint: 9.12.0(jiti@1.21.0) eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(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.14.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.14.0(eslint@9.5.0)(typescript@5.5.2) + '@typescript-eslint/parser': 8.14.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: @@ -46712,7 +46136,7 @@ snapshots: eslint: 9.12.0(jiti@1.21.0) eslint-compat-utils: 0.5.1(eslint@9.12.0(jiti@1.21.0)) - eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -46720,9 +46144,9 @@ snapshots: array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.56.0 + eslint: 9.12.0(jiti@1.21.0) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -46733,13 +46157,13 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.14.0(eslint@8.56.0)(typescript@5.4.5) + '@typescript-eslint/parser': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -46747,9 +46171,9 @@ snapshots: array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 9.12.0(jiti@1.21.0) + eslint: 8.56.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.13.1(eslint@8.56.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -46760,13 +46184,13 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4) + '@typescript-eslint/parser': 8.14.0(eslint@8.56.0)(typescript@5.4.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.13.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.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0)): dependencies: array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -46776,7 +46200,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.14.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)) + eslint-module-utils: 2.8.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint@9.12.0(jiti@1.21.0)) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 @@ -46787,13 +46211,13 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3) + '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0)): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.14.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 @@ -46803,7 +46227,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.14.0(eslint@9.5.0)(typescript@5.5.2))(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.14.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 @@ -46814,7 +46238,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.14.0(eslint@9.5.0)(typescript@5.5.2) + '@typescript-eslint/parser': 8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.6.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -46882,6 +46306,17 @@ snapshots: optionalDependencies: '@testing-library/dom': 10.4.0 + eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2): + dependencies: + '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) + eslint: 9.12.0(jiti@1.21.0) + optionalDependencies: + '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@7.13.1(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2) + jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)) + transitivePeerDependencies: + - supports-color + - typescript + eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.13.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@18.19.57)(ts-node@10.9.2(@types/node@18.19.57)(typescript@5.5.4)))(typescript@5.5.4): dependencies: '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4) @@ -46904,17 +46339,6 @@ snapshots: - supports-color - typescript - eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.2): - dependencies: - '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.2) - eslint: 9.12.0(jiti@1.21.0) - optionalDependencies: - '@typescript-eslint/eslint-plugin': 7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.5.0)(typescript@5.5.2))(eslint@9.5.0)(typescript@5.5.2) - jest: 29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)) - transitivePeerDependencies: - - supports-color - - typescript - eslint-plugin-jest@28.6.0(@typescript-eslint/eslint-plugin@7.13.1(@typescript-eslint/parser@8.14.0(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.9.0(jiti@1.21.0))(typescript@5.5.4))(eslint@9.12.0(jiti@1.21.0))(jest@29.7.0(@types/node@22.2.0)(ts-node@10.9.2(@types/node@22.2.0)(typescript@5.5.4)))(typescript@5.5.4): dependencies: '@typescript-eslint/utils': 7.13.1(eslint@9.12.0(jiti@1.21.0))(typescript@5.5.4) @@ -47635,6 +47059,19 @@ snapshots: transitivePeerDependencies: - encoding + eth-lib@0.1.29(bufferutil@4.0.7)(utf-8-validate@5.0.10): + dependencies: + bn.js: 4.12.0 + elliptic: 6.5.6 + nano-json-stream-parser: 0.1.2 + servify: 0.1.12 + ws: 3.3.3(bufferutil@4.0.7)(utf-8-validate@5.0.10) + xhr-request-promise: 0.1.3 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + eth-lib@0.1.29(bufferutil@4.0.7)(utf-8-validate@6.0.3): dependencies: bn.js: 4.12.0 @@ -48525,38 +47962,46 @@ snapshots: fraction.js@4.3.7: {} - framer-motion@11.11.10(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + framer-motion@11.11.10(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: tslib: 2.8.0 optionalDependencies: '@emotion/is-prop-valid': 1.2.2 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - framer-motion@11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): + framer-motion@11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@19.0.0): dependencies: tslib: 2.8.0 optionalDependencies: '@emotion/is-prop-valid': 1.2.2 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - framer-motion@11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + framer-motion@11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + dependencies: + tslib: 2.8.0 + optionalDependencies: + '@emotion/is-prop-valid': 1.2.2 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + + framer-motion@11.3.8(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: tslib: 2.6.3 optionalDependencies: '@emotion/is-prop-valid': 1.2.2 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - framer-motion@6.5.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + framer-motion@6.5.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@motionone/dom': 10.12.0 framesync: 6.0.1 hey-listen: 1.0.8 popmotion: 11.0.3 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) style-value-types: 5.0.0 tslib: 2.6.3 optionalDependencies: @@ -52446,31 +51891,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 @@ -53327,9 +52747,9 @@ snapshots: dependencies: react: 18.3.1 - markdown-to-jsx@7.5.0(react@19.0.0-rc-603e6108-20241029): + markdown-to-jsx@7.5.0(react@19.0.0): dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 marked@4.3.0: {} @@ -54147,15 +53567,24 @@ snapshots: '@motionone/utils': 10.18.0 '@motionone/vue': 10.16.4 - motion@11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): + motion@11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@19.0.0): dependencies: - framer-motion: 11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + framer-motion: 11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@19.0.0) tslib: 2.8.0 optionalDependencies: '@emotion/is-prop-valid': 1.2.2 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) + motion@11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + dependencies: + framer-motion: 11.11.17(@emotion/is-prop-valid@1.2.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + tslib: 2.8.0 + optionalDependencies: + '@emotion/is-prop-valid': 1.2.2 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + mri@1.2.0: {} ms@2.0.0: {} @@ -54305,46 +53734,20 @@ snapshots: dependencies: ansi-regex: 2.1.1 - next-seo@5.15.0(next@15.0.3(@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)(sass@1.80.7))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + next-seo@5.15.0(next@15.1.0(@babel/core@7.24.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: - next: 15.0.3(@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)(sass@1.80.7) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + next: 15.1.0(@babel/core@7.24.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - next-themes@0.3.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + next-themes@0.3.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) 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)(sass@1.80.7): - dependencies: - '@next/env': 14.2.15 - '@swc/helpers': 0.5.5 - busboy: 1.6.0 - caniuse-lite: 1.0.30001669 - 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 - sass: 1.80.7 - 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)(sass@1.80.7): + next@14.2.15(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@18.3.1)(sass@1.80.7): dependencies: '@next/env': 14.2.15 '@swc/helpers': 0.5.5 @@ -54370,104 +53773,78 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@15.0.3(@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)(sass@1.80.7): + next@15.1.0(@babel/core@7.24.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7): dependencies: - '@next/env': 15.0.3 + '@next/env': 15.1.0 '@swc/counter': 0.1.3 - '@swc/helpers': 0.5.13 + '@swc/helpers': 0.5.15 busboy: 1.6.0 caniuse-lite: 1.0.30001669 postcss: 8.4.31 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - styled-jsx: 5.1.6(@babel/core@7.24.0)(react@19.0.0-rc-603e6108-20241029) - optionalDependencies: - '@next/swc-darwin-arm64': 15.0.3 - '@next/swc-darwin-x64': 15.0.3 - '@next/swc-linux-arm64-gnu': 15.0.3 - '@next/swc-linux-arm64-musl': 15.0.3 - '@next/swc-linux-x64-gnu': 15.0.3 - '@next/swc-linux-x64-musl': 15.0.3 - '@next/swc-win32-arm64-msvc': 15.0.3 - '@next/swc-win32-x64-msvc': 15.0.3 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + styled-jsx: 5.1.6(@babel/core@7.24.0)(react@19.0.0) + optionalDependencies: + '@next/swc-darwin-arm64': 15.1.0 + '@next/swc-darwin-x64': 15.1.0 + '@next/swc-linux-arm64-gnu': 15.1.0 + '@next/swc-linux-arm64-musl': 15.1.0 + '@next/swc-linux-x64-gnu': 15.1.0 + '@next/swc-linux-x64-musl': 15.1.0 + '@next/swc-win32-arm64-msvc': 15.1.0 + '@next/swc-win32-x64-msvc': 15.1.0 sass: 1.80.7 sharp: 0.33.5 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - next@15.0.3(@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)(sass@1.80.7): + next@15.1.0(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0))(react@19.0.0)(sass@1.80.7): dependencies: - '@next/env': 15.0.3 + '@next/env': 15.1.0 '@swc/counter': 0.1.3 - '@swc/helpers': 0.5.13 + '@swc/helpers': 0.5.15 busboy: 1.6.0 caniuse-lite: 1.0.30001669 postcss: 8.4.31 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - styled-jsx: 5.1.6(@babel/core@7.24.7)(react@19.0.0-rc-603e6108-20241029) - optionalDependencies: - '@next/swc-darwin-arm64': 15.0.3 - '@next/swc-darwin-x64': 15.0.3 - '@next/swc-linux-arm64-gnu': 15.0.3 - '@next/swc-linux-arm64-musl': 15.0.3 - '@next/swc-linux-x64-gnu': 15.0.3 - '@next/swc-linux-x64-musl': 15.0.3 - '@next/swc-win32-arm64-msvc': 15.0.3 - '@next/swc-win32-x64-msvc': 15.0.3 - sass: 1.80.7 - sharp: 0.33.5 - transitivePeerDependencies: - - '@babel/core' - - babel-plugin-macros - - next@15.0.3(@babel/core@7.25.8)(react-dom@18.3.1(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)(sass@1.80.7): - dependencies: - '@next/env': 15.0.3 - '@swc/counter': 0.1.3 - '@swc/helpers': 0.5.13 - busboy: 1.6.0 - caniuse-lite: 1.0.30001669 - postcss: 8.4.31 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 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.3 - '@next/swc-darwin-x64': 15.0.3 - '@next/swc-linux-arm64-gnu': 15.0.3 - '@next/swc-linux-arm64-musl': 15.0.3 - '@next/swc-linux-x64-gnu': 15.0.3 - '@next/swc-linux-x64-musl': 15.0.3 - '@next/swc-win32-arm64-msvc': 15.0.3 - '@next/swc-win32-x64-msvc': 15.0.3 + styled-jsx: 5.1.6(@babel/core@7.25.8)(react@19.0.0) + optionalDependencies: + '@next/swc-darwin-arm64': 15.1.0 + '@next/swc-darwin-x64': 15.1.0 + '@next/swc-linux-arm64-gnu': 15.1.0 + '@next/swc-linux-arm64-musl': 15.1.0 + '@next/swc-linux-x64-gnu': 15.1.0 + '@next/swc-linux-x64-musl': 15.1.0 + '@next/swc-win32-arm64-msvc': 15.1.0 + '@next/swc-win32-x64-msvc': 15.1.0 sass: 1.80.7 sharp: 0.33.5 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - next@15.0.3(@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)(sass@1.80.7): + next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7): dependencies: - '@next/env': 15.0.3 + '@next/env': 15.1.0 '@swc/counter': 0.1.3 - '@swc/helpers': 0.5.13 + '@swc/helpers': 0.5.15 busboy: 1.6.0 caniuse-lite: 1.0.30001669 postcss: 8.4.31 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - styled-jsx: 5.1.6(@babel/core@7.25.8)(react@19.0.0-rc-603e6108-20241029) - optionalDependencies: - '@next/swc-darwin-arm64': 15.0.3 - '@next/swc-darwin-x64': 15.0.3 - '@next/swc-linux-arm64-gnu': 15.0.3 - '@next/swc-linux-arm64-musl': 15.0.3 - '@next/swc-linux-x64-gnu': 15.0.3 - '@next/swc-linux-x64-musl': 15.0.3 - '@next/swc-win32-arm64-msvc': 15.0.3 - '@next/swc-win32-x64-msvc': 15.0.3 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + styled-jsx: 5.1.6(@babel/core@7.25.8)(react@19.0.0) + optionalDependencies: + '@next/swc-darwin-arm64': 15.1.0 + '@next/swc-darwin-x64': 15.1.0 + '@next/swc-linux-arm64-gnu': 15.1.0 + '@next/swc-linux-arm64-musl': 15.1.0 + '@next/swc-linux-x64-gnu': 15.1.0 + '@next/swc-linux-x64-musl': 15.1.0 + '@next/swc-win32-arm64-msvc': 15.1.0 + '@next/swc-win32-x64-msvc': 15.1.0 sass: 1.80.7 sharp: 0.33.5 transitivePeerDependencies: @@ -54737,19 +54114,19 @@ snapshots: bn.js: 4.11.6 strip-hex-prefix: 1.0.0 - nuqs@2.1.2(next@15.0.3(@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)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029): + nuqs@2.1.2(next@15.1.0(@babel/core@7.24.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0): dependencies: mitt: 3.0.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 optionalDependencies: - next: 15.0.3(@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)(sass@1.80.7) + next: 15.1.0(@babel/core@7.24.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) - nuqs@2.1.2(next@15.0.3(@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)(sass@1.80.7))(react@19.0.0-rc-603e6108-20241029): + nuqs@2.1.2(next@15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7))(react@19.0.0): dependencies: mitt: 3.0.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 optionalDependencies: - next: 15.0.3(@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)(sass@1.80.7) + next: 15.1.0(@babel/core@7.25.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.80.7) nwsapi@2.2.10: {} @@ -55006,7 +54383,7 @@ snapshots: undici: 5.28.4 yargs-parser: 21.1.1 - openapi-zod-client@1.18.1(react@18.3.1): + openapi-zod-client@1.18.1(react@19.0.0): dependencies: '@apidevtools/swagger-parser': 10.1.0(openapi-types@12.1.3) '@liuli-util/fs-extra': 0.1.0 @@ -55016,7 +54393,7 @@ snapshots: handlebars: 4.7.7 openapi-types: 12.1.3 openapi3-ts: 3.1.0 - pastable: 2.2.1(react@18.3.1) + pastable: 2.2.1(react@19.0.0) prettier: 2.8.8 tanu: 0.1.13 ts-pattern: 5.1.2 @@ -55301,13 +54678,13 @@ snapshots: no-case: 3.0.4 tslib: 2.8.0 - pastable@2.2.1(react@18.3.1): + pastable@2.2.1(react@19.0.0): dependencies: '@babel/core': 7.24.7 ts-toolbelt: 9.6.0 type-fest: 3.13.1 optionalDependencies: - react: 18.3.1 + react: 19.0.0 transitivePeerDependencies: - supports-color @@ -56364,176 +55741,176 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-aria-components@1.5.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): + react-aria-components@1.5.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0): dependencies: '@internationalized/date': 3.6.0 '@internationalized/string': 3.2.5 - '@react-aria/collections': 3.0.0-alpha.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/color': 3.0.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/disclosure': 3.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/dnd': 3.8.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) + '@react-aria/collections': 3.0.0-alpha.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/color': 3.0.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/disclosure': 3.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/dnd': 3.8.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/menu': 3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/toolbar': 3.0.0-beta.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tree': 3.0.0-beta.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/virtualizer': 4.1.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-stately/color': 3.8.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/disclosure': 3.0.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/layout': 4.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/menu': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/table': 3.13.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-stately/virtualizer': 4.2.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/color': 3.0.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/form': 3.7.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/menu': 3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/toolbar': 3.0.0-beta.11(react@19.0.0) + '@react-aria/tree': 3.0.0-beta.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/virtualizer': 4.1.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-stately/color': 3.8.1(react@19.0.0) + '@react-stately/disclosure': 3.0.0(react@19.0.0) + '@react-stately/layout': 4.1.0(react@19.0.0) + '@react-stately/menu': 3.9.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-stately/table': 3.13.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-stately/virtualizer': 4.2.0(react@19.0.0) + '@react-types/color': 3.0.1(react@19.0.0) + '@react-types/form': 3.7.8(react@19.0.0) + '@react-types/grid': 3.2.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/table': 3.10.3(react@19.0.0) '@swc/helpers': 0.5.13 client-only: 0.0.1 - react: 19.0.0-rc-603e6108-20241029 - react-aria: 3.36.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-aria: 3.36.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) react-dom: 18.3.1(react@18.3.1) - react-stately: 3.34.0(react@19.0.0-rc-603e6108-20241029) - use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) + react-stately: 3.34.0(react@19.0.0) + use-sync-external-store: 1.2.0(react@19.0.0) - react-aria-components@1.5.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + react-aria-components@1.5.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@internationalized/date': 3.6.0 '@internationalized/string': 3.2.5 - '@react-aria/collections': 3.0.0-alpha.6(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/color': 3.0.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/disclosure': 3.0.0(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.8.0(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.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) + '@react-aria/collections': 3.0.0-alpha.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/color': 3.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/disclosure': 3.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/dnd': 3.8.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/menu': 3.16.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/toolbar': 3.0.0-beta.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tree': 3.0.0-beta.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/virtualizer': 4.1.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-stately/color': 3.8.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/disclosure': 3.0.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/layout': 4.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/menu': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/table': 3.13.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.5(react@19.0.0-rc-603e6108-20241029) - '@react-stately/virtualizer': 4.2.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/color': 3.0.1(react@19.0.0-rc-603e6108-20241029) - '@react-types/form': 3.7.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.3(react@19.0.0-rc-603e6108-20241029) + '@react-aria/menu': 3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/toolbar': 3.0.0-beta.11(react@19.0.0) + '@react-aria/tree': 3.0.0-beta.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/virtualizer': 4.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-stately/color': 3.8.1(react@19.0.0) + '@react-stately/disclosure': 3.0.0(react@19.0.0) + '@react-stately/layout': 4.1.0(react@19.0.0) + '@react-stately/menu': 3.9.0(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-stately/table': 3.13.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.0.0) + '@react-stately/virtualizer': 4.2.0(react@19.0.0) + '@react-types/color': 3.0.1(react@19.0.0) + '@react-types/form': 3.7.8(react@19.0.0) + '@react-types/grid': 3.2.10(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + '@react-types/table': 3.10.3(react@19.0.0) '@swc/helpers': 0.5.13 client-only: 0.0.1 - react: 19.0.0-rc-603e6108-20241029 - react-aria: 3.36.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - react-stately: 3.34.0(react@19.0.0-rc-603e6108-20241029) - use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-aria: 3.36.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-dom: 19.0.0(react@19.0.0) + react-stately: 3.34.0(react@19.0.0) + use-sync-external-store: 1.2.0(react@19.0.0) - react-aria@3.36.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): + react-aria@3.36.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0): dependencies: '@internationalized/string': 3.2.5 - '@react-aria/breadcrumbs': 3.5.19(react@19.0.0-rc-603e6108-20241029) - '@react-aria/button': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/calendar': 3.6.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/checkbox': 3.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/color': 3.0.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/combobox': 3.11.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/datepicker': 3.12.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/dialog': 3.5.20(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/disclosure': 3.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/dnd': 3.8.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/focus': 3.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/gridlist': 3.10.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/link': 3.7.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/menu': 3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/meter': 3.4.18(react@19.0.0-rc-603e6108-20241029) - '@react-aria/numberfield': 3.11.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/progress': 3.4.18(react@19.0.0-rc-603e6108-20241029) - '@react-aria/radio': 3.10.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/searchfield': 3.7.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/select': 3.15.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/separator': 3.4.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/slider': 3.7.14(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/switch': 3.6.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/table': 3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tabs': 3.9.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tag': 3.4.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tooltip': 3.7.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.18(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) - react: 19.0.0-rc-603e6108-20241029 + '@react-aria/breadcrumbs': 3.5.19(react@19.0.0) + '@react-aria/button': 3.11.0(react@19.0.0) + '@react-aria/calendar': 3.6.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/checkbox': 3.15.0(react@19.0.0) + '@react-aria/color': 3.0.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/combobox': 3.11.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/datepicker': 3.12.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/dialog': 3.5.20(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/disclosure': 3.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/dnd': 3.8.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/gridlist': 3.10.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/link': 3.7.7(react@19.0.0) + '@react-aria/listbox': 3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/menu': 3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/meter': 3.4.18(react@19.0.0) + '@react-aria/numberfield': 3.11.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/overlays': 3.24.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/progress': 3.4.18(react@19.0.0) + '@react-aria/radio': 3.10.10(react@19.0.0) + '@react-aria/searchfield': 3.7.11(react@19.0.0) + '@react-aria/select': 3.15.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/separator': 3.4.4(react@19.0.0) + '@react-aria/slider': 3.7.14(react@19.0.0) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-aria/switch': 3.6.10(react@19.0.0) + '@react-aria/table': 3.16.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/tabs': 3.9.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/tag': 3.4.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0) + '@react-aria/textfield': 3.15.0(react@19.0.0) + '@react-aria/tooltip': 3.7.10(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) - react-aria@3.36.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + react-aria@3.36.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@internationalized/string': 3.2.5 - '@react-aria/breadcrumbs': 3.5.19(react@19.0.0-rc-603e6108-20241029) - '@react-aria/button': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/calendar': 3.6.0(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.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/color': 3.0.2(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/combobox': 3.11.0(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.12.0(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.20(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/disclosure': 3.0.0(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.8.0(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.19.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/gridlist': 3.10.0(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.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.5(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/link': 3.7.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.6(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/menu': 3.16.0(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.18(react@19.0.0-rc-603e6108-20241029) - '@react-aria/numberfield': 3.11.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/overlays': 3.24.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/progress': 3.4.18(react@19.0.0-rc-603e6108-20241029) - '@react-aria/radio': 3.10.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/searchfield': 3.7.11(react@19.0.0-rc-603e6108-20241029) - '@react-aria/select': 3.15.0(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.21.0(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.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/slider': 3.7.14(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-aria/switch': 3.6.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/table': 3.16.0(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.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/tag': 3.4.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.15.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tooltip': 3.7.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.26.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.18(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.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-aria/breadcrumbs': 3.5.19(react@19.0.0) + '@react-aria/button': 3.11.0(react@19.0.0) + '@react-aria/calendar': 3.6.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/checkbox': 3.15.0(react@19.0.0) + '@react-aria/color': 3.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/combobox': 3.11.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/datepicker': 3.12.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/dialog': 3.5.20(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/disclosure': 3.0.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/dnd': 3.8.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/focus': 3.19.0(react@19.0.0) + '@react-aria/gridlist': 3.10.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/i18n': 3.12.4(react@19.0.0) + '@react-aria/interactions': 3.22.5(react@19.0.0) + '@react-aria/label': 3.7.13(react@19.0.0) + '@react-aria/link': 3.7.7(react@19.0.0) + '@react-aria/listbox': 3.13.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/menu': 3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/meter': 3.4.18(react@19.0.0) + '@react-aria/numberfield': 3.11.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/overlays': 3.24.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/progress': 3.4.18(react@19.0.0) + '@react-aria/radio': 3.10.10(react@19.0.0) + '@react-aria/searchfield': 3.7.11(react@19.0.0) + '@react-aria/select': 3.15.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/selection': 3.21.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/separator': 3.4.4(react@19.0.0) + '@react-aria/slider': 3.7.14(react@19.0.0) + '@react-aria/ssr': 3.9.7(react@19.0.0) + '@react-aria/switch': 3.6.10(react@19.0.0) + '@react-aria/table': 3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/tabs': 3.9.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/tag': 3.4.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/textfield': 3.15.0(react@19.0.0) + '@react-aria/tooltip': 3.7.10(react@19.0.0) + '@react-aria/utils': 3.26.0(react@19.0.0) + '@react-aria/visually-hidden': 3.8.18(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) 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-colorful@5.6.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): + react-colorful@5.6.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0): dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 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): @@ -56611,38 +55988,38 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029): + react-dom@19.0.0(react@19.0.0): dependencies: - react: 19.0.0-rc-603e6108-20241029 - scheduler: 0.25.0-rc-603e6108-20241029 + react: 19.0.0 + scheduler: 0.25.0 - react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): + react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0): dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-dom: 18.3.1(react@18.3.1) react-is: 18.1.0 react-error-overlay@6.0.11: {} - react-hot-toast@2.4.0(csstype@3.1.3)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + react-hot-toast@2.4.0(csstype@3.1.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: goober: 2.1.11(csstype@3.1.3) - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) 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(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0): dependencies: '@babel/runtime': 7.25.7 html-parse-stringify: 3.0.1 i18next: 22.5.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 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-dom: 19.0.0(react@19.0.0) + react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10) react-is@16.13.1: {} @@ -56654,15 +56031,15 @@ snapshots: react-lifecycles-compat@3.0.4: {} - react-markdown@9.0.1(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1): + react-markdown@9.0.1(@types/react@19.0.1)(react@19.0.0): dependencies: '@types/hast': 3.0.4 - '@types/react': types-react@19.0.0-rc.1 + '@types/react': 19.0.1 devlop: 1.1.0 hast-util-to-jsx-runtime: 2.3.0 html-url-attributes: 3.0.0 mdast-util-to-hast: 13.2.0 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 remark-parse: 11.0.0 remark-rehype: 11.1.0 unified: 11.0.5 @@ -56680,14 +56057,14 @@ snapshots: react-lifecycles-compat: 3.0.4 warning: 4.0.3 - react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0): 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: 19.0.0 + react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10) - react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10): + react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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) @@ -56699,57 +56076,7 @@ snapshots: '@react-native/gradle-plugin': 0.74.84 '@react-native/js-polyfills': 0.74.84 '@react-native/normalize-colors': 0.74.84 - '@react-native/virtualized-lists': 0.74.84(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) - abort-controller: 3.0.0 - anser: 1.4.10 - ansi-regex: 5.0.1 - 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.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) + '@react-native/virtualized-lists': 0.74.84(@types/react@19.0.1)(react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -56767,10 +56094,10 @@ snapshots: nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 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) + react-shallow-renderer: 16.15.0(react@19.0.0) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 stacktrace-parser: 0.1.10 @@ -56778,7 +56105,7 @@ snapshots: 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 + '@types/react': 19.0.1 transitivePeerDependencies: - '@babel/core' - '@babel/preset-env' @@ -56787,7 +56114,7 @@ snapshots: - supports-color - utf-8-validate - react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10): + react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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) @@ -56799,7 +56126,7 @@ snapshots: '@react-native/gradle-plugin': 0.74.84 '@react-native/js-polyfills': 0.74.84 '@react-native/normalize-colors': 0.74.84 - '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.11)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + '@react-native/virtualized-lists': 0.74.84(@types/react@18.3.11)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -56817,10 +56144,10 @@ snapshots: nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 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) + react-shallow-renderer: 16.15.0(react@19.0.0) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 stacktrace-parser: 0.1.10 @@ -56837,7 +56164,7 @@ snapshots: - supports-color - utf-8-validate - react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(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))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(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) @@ -56849,7 +56176,7 @@ snapshots: '@react-native/gradle-plugin': 0.74.84 '@react-native/js-polyfills': 0.74.84 '@react-native/normalize-colors': 0.74.84 - '@react-native/virtualized-lists': 0.74.84(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) + '@react-native/virtualized-lists': 0.74.84(@types/react@19.0.1)(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -56867,10 +56194,10 @@ snapshots: nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 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) + react-shallow-renderer: 16.15.0(react@19.0.0) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 stacktrace-parser: 0.1.10 @@ -56878,7 +56205,7 @@ snapshots: 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 + '@types/react': 19.0.1 transitivePeerDependencies: - '@babel/core' - '@babel/preset-env' @@ -56897,68 +56224,68 @@ snapshots: react-refresh@0.14.2: {} - react-shallow-renderer@16.15.0(react@19.0.0-rc-603e6108-20241029): + react-shallow-renderer@16.15.0(react@19.0.0): dependencies: object-assign: 4.1.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 react-is: 18.3.1 - react-smooth@4.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + react-smooth@4.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: fast-equals: 5.0.1 prop-types: 15.8.1 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - react-transition-group: 4.4.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - - react-stately@3.34.0(react@19.0.0-rc-603e6108-20241029): - dependencies: - '@react-stately/calendar': 3.6.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/checkbox': 3.6.10(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/color': 3.8.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/combobox': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/data': 3.12.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/datepicker': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/disclosure': 3.0.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/dnd': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.1(react@19.0.0-rc-603e6108-20241029) - '@react-stately/menu': 3.9.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/numberfield': 3.9.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.12(react@19.0.0-rc-603e6108-20241029) - '@react-stately/radio': 3.10.9(react@19.0.0-rc-603e6108-20241029) - '@react-stately/searchfield': 3.5.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/select': 3.6.9(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.18.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/slider': 3.6.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/table': 3.13.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tabs': 3.7.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.8.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tooltip': 3.5.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.26.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): + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + react-transition-group: 4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + + react-stately@3.34.0(react@19.0.0): + dependencies: + '@react-stately/calendar': 3.6.0(react@19.0.0) + '@react-stately/checkbox': 3.6.10(react@19.0.0) + '@react-stately/collections': 3.12.0(react@19.0.0) + '@react-stately/color': 3.8.1(react@19.0.0) + '@react-stately/combobox': 3.10.1(react@19.0.0) + '@react-stately/data': 3.12.0(react@19.0.0) + '@react-stately/datepicker': 3.11.0(react@19.0.0) + '@react-stately/disclosure': 3.0.0(react@19.0.0) + '@react-stately/dnd': 3.5.0(react@19.0.0) + '@react-stately/form': 3.1.0(react@19.0.0) + '@react-stately/list': 3.11.1(react@19.0.0) + '@react-stately/menu': 3.9.0(react@19.0.0) + '@react-stately/numberfield': 3.9.8(react@19.0.0) + '@react-stately/overlays': 3.6.12(react@19.0.0) + '@react-stately/radio': 3.10.9(react@19.0.0) + '@react-stately/searchfield': 3.5.8(react@19.0.0) + '@react-stately/select': 3.6.9(react@19.0.0) + '@react-stately/selection': 3.18.0(react@19.0.0) + '@react-stately/slider': 3.6.0(react@19.0.0) + '@react-stately/table': 3.13.0(react@19.0.0) + '@react-stately/tabs': 3.7.0(react@19.0.0) + '@react-stately/toggle': 3.8.0(react@19.0.0) + '@react-stately/tooltip': 3.5.0(react@19.0.0) + '@react-stately/tree': 3.8.6(react@19.0.0) + '@react-types/shared': 3.26.0(react@19.0.0) + react: 19.0.0 + + react-transition-group@4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: '@babel/runtime': 7.25.7 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - 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-transition-state@1.1.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) - 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): + react-use-measure@2.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: debounce: 1.2.1 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) react@16.13.1: dependencies: @@ -56970,7 +56297,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - react@19.0.0-rc-603e6108-20241029: {} + react@19.0.0: {} read-cache@1.0.0: dependencies: @@ -57112,28 +56439,28 @@ snapshots: dependencies: decimal.js-light: 2.5.1 - recharts@2.13.3(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + recharts@2.13.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: clsx: 2.1.1 eventemitter3: 4.0.7 lodash: 4.17.21 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) react-is: 18.3.1 - react-smooth: 4.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + react-smooth: 4.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) recharts-scale: 0.4.5 tiny-invariant: 1.3.3 victory-vendor: 36.9.2 - recharts@2.14.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): + recharts@2.14.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: clsx: 2.1.1 eventemitter3: 4.0.7 lodash: 4.17.21 - react: 19.0.0-rc-603e6108-20241029 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) react-is: 18.3.1 - react-smooth: 4.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + react-smooth: 4.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) recharts-scale: 0.4.5 tiny-invariant: 1.3.3 victory-vendor: 36.9.2 @@ -57609,7 +56936,7 @@ snapshots: dependencies: loose-envify: 1.4.0 - scheduler@0.25.0-rc-603e6108-20241029: {} + scheduler@0.25.0: {} schema-utils@2.7.0: dependencies: @@ -58494,31 +57821,24 @@ 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(react@19.0.0))(react-is@18.3.1)(react@19.0.0): 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(react@19.0.0))(react-is@18.3.1)(react@19.0.0))(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 - react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) react-is: 18.3.1 shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - '@babel/core' - styled-jsx@5.1.1(@babel/core@7.24.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 @@ -58526,24 +57846,17 @@ snapshots: optionalDependencies: '@babel/core': 7.25.8 - styled-jsx@5.1.6(@babel/core@7.24.0)(react@19.0.0-rc-603e6108-20241029): + styled-jsx@5.1.6(@babel/core@7.24.0)(react@19.0.0): dependencies: client-only: 0.0.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 optionalDependencies: '@babel/core': 7.24.0 - 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): + styled-jsx@5.1.6(@babel/core@7.25.8)(react@19.0.0): dependencies: client-only: 0.0.1 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 optionalDependencies: '@babel/core': 7.25.8 @@ -58736,6 +58049,24 @@ snapshots: lower-case: 1.1.4 upper-case: 1.1.3 + swarm-js@0.1.42(bufferutil@4.0.7)(utf-8-validate@5.0.10): + dependencies: + bluebird: 3.7.2 + buffer: 5.7.1 + eth-lib: 0.1.29(bufferutil@4.0.7)(utf-8-validate@5.0.10) + fs-extra: 4.0.3 + got: 11.8.6 + mime-types: 2.1.35 + mkdirp-promise: 5.0.1 + mock-fs: 4.14.0 + setimmediate: 1.0.5 + tar: 4.4.19 + xhr-request: 1.1.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + swarm-js@0.1.42(bufferutil@4.0.7)(utf-8-validate@6.0.3): dependencies: bluebird: 3.7.2 @@ -58772,11 +58103,11 @@ snapshots: - supports-color - utf-8-validate - swr@2.2.5(react@19.0.0-rc-603e6108-20241029): + swr@2.2.5(react@19.0.0): dependencies: client-only: 0.0.1 - react: 19.0.0-rc-603e6108-20241029 - use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0 + use-sync-external-store: 1.2.0(react@19.0.0) symbol-observable@1.2.0: {} @@ -59530,12 +58861,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))(jest@29.7.0(@types/node@20.14.7)(ts-node@10.9.2(@types/node@20.14.7)(typescript@5.5.2)))(typescript@5.5.4): + 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.5.4): 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: 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 @@ -59544,43 +58875,43 @@ snapshots: typescript: 5.5.4 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.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.5.4): + 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 ejs: 3.1.10 fast-json-stable-stringify: 2.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)) + jest: 29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5)) 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.5.4 + typescript: 4.9.5 yargs-parser: 21.1.1 optionalDependencies: '@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 - 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): + 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.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)))(typescript@5.5.4): dependencies: bs-logger: 0.2.6 ejs: 3.1.10 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@18.19.44)(ts-node@10.9.2(@types/node@18.19.44)(typescript@4.9.5)) + jest: 29.7.0(@types/node@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.6.3 - typescript: 4.9.5 + typescript: 5.5.4 yargs-parser: 21.1.1 optionalDependencies: '@babel/core': 7.25.8 @@ -59588,12 +58919,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@20.14.15)(ts-node@10.9.2(@types/node@20.14.15)(typescript@5.5.4)))(typescript@5.5.4): + 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.5.4): 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.15)(ts-node@10.9.2(@types/node@20.14.15)(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 @@ -60242,14 +59573,6 @@ snapshots: typeforce@1.18.0: {} - types-react-dom@19.0.0-rc.1: - dependencies: - '@types/react': 18.3.11 - - types-react@19.0.0-rc.1: - dependencies: - csstype: 3.1.3 - typescript-compare@0.0.2: dependencies: typescript-logic: 0.0.0 @@ -60562,19 +59885,19 @@ snapshots: node-addon-api: 6.1.0 node-gyp-build: 4.8.2 - use-debounce@9.0.3(react@19.0.0-rc-603e6108-20241029): + use-debounce@9.0.3(react@19.0.0): dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 - use-isomorphic-layout-effect@1.1.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1): + use-isomorphic-layout-effect@1.1.2(@types/react@19.0.1)(react@19.0.0): dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 optionalDependencies: - '@types/react': types-react@19.0.0-rc.1 + '@types/react': 19.0.1 - use-sync-external-store@1.2.0(react@19.0.0-rc-603e6108-20241029): + use-sync-external-store@1.2.0(react@19.0.0): dependencies: - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 utf-8-validate@5.0.10: dependencies: @@ -60650,13 +59973,13 @@ snapshots: validate-npm-package-name@5.0.1: {} - valtio@1.11.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1): + valtio@1.11.2(@types/react@19.0.1)(react@19.0.0): dependencies: proxy-compare: 2.5.1 - use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) + use-sync-external-store: 1.2.0(react@19.0.0) optionalDependencies: - '@types/react': types-react@19.0.0-rc.1 - react: 19.0.0-rc-603e6108-20241029 + '@types/react': 19.0.1 + react: 19.0.0 value-or-promise@1.0.11: optional: true @@ -60876,13 +60199,13 @@ snapshots: dependencies: xml-name-validator: 4.0.0 - wagmi@2.10.4(slso2y5si5ebobzw4pa64fwb3i): + wagmi@2.10.4(@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@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.45.0)(@tanstack/react-query@5.45.1(react@19.0.0))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@19.0.0(react@19.0.0))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@19.0.1)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0)(utf-8-validate@5.0.10))(react@19.0.0)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8): dependencies: - '@tanstack/react-query': 5.45.1(react@19.0.0-rc-603e6108-20241029) - '@wagmi/connectors': 5.0.16(276lu6ucw5vl7m53grscpa4fqq) - '@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) - react: 19.0.0-rc-603e6108-20241029 - use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) + '@tanstack/react-query': 5.45.1(react@19.0.0) + '@wagmi/connectors': 5.0.16(4kbay4ejz7vqiich5e43lezopu) + '@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(@types/react@19.0.1)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0)(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 + use-sync-external-store: 1.2.0(react@19.0.0) viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8) optionalDependencies: typescript: 5.5.2 @@ -60935,21 +60258,21 @@ snapshots: web-vitals@0.2.4: {} - web3-bzz@1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3): + web3-bzz@1.10.0(bufferutil@4.0.7)(utf-8-validate@5.0.10): dependencies: '@types/node': 12.20.55 got: 12.1.0 - swarm-js: 0.1.42(bufferutil@4.0.7)(utf-8-validate@6.0.3) + swarm-js: 0.1.42(bufferutil@4.0.7)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - web3-bzz@1.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + web3-bzz@1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3): dependencies: '@types/node': 12.20.55 got: 12.1.0 - swarm-js: 0.1.42(bufferutil@4.0.8)(utf-8-validate@5.0.10) + swarm-js: 0.1.42(bufferutil@4.0.7)(utf-8-validate@6.0.3) transitivePeerDependencies: - bufferutil - supports-color @@ -62049,9 +61372,9 @@ snapshots: web3-types: 1.7.0 zod: 3.23.8 - web3@1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3): + web3@1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@5.0.10): dependencies: - web3-bzz: 1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3) + web3-bzz: 1.10.0(bufferutil@4.0.7)(utf-8-validate@5.0.10) web3-core: 1.10.0(encoding@0.1.13) web3-eth: 1.10.0(encoding@0.1.13) web3-eth-personal: 1.10.0(encoding@0.1.13) @@ -62064,9 +61387,9 @@ snapshots: - supports-color - utf-8-validate - web3@1.10.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10): + web3@1.10.0(bufferutil@4.0.7)(encoding@0.1.13)(utf-8-validate@6.0.3): dependencies: - web3-bzz: 1.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + web3-bzz: 1.10.0(bufferutil@4.0.7)(utf-8-validate@6.0.3) web3-core: 1.10.0(encoding@0.1.13) web3-eth: 1.10.0(encoding@0.1.13) web3-eth-personal: 1.10.0(encoding@0.1.13) @@ -62479,6 +61802,15 @@ snapshots: readable-stream: 0.0.4 optional: true + ws@3.3.3(bufferutil@4.0.7)(utf-8-validate@5.0.10): + dependencies: + async-limiter: 1.0.1 + safe-buffer: 5.1.2 + ultron: 1.1.1 + optionalDependencies: + bufferutil: 4.0.7 + utf-8-validate: 5.0.10 + ws@3.3.3(bufferutil@4.0.7)(utf-8-validate@6.0.3): dependencies: async-limiter: 1.0.1 @@ -62825,12 +62157,12 @@ snapshots: zod@3.23.8: {} - zustand@4.4.1(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1): + zustand@4.4.1(@types/react@19.0.1)(immer@9.0.21)(react@19.0.0): dependencies: - use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) + use-sync-external-store: 1.2.0(react@19.0.0) optionalDependencies: - '@types/react': types-react@19.0.0-rc.1 + '@types/react': 19.0.1 immer: 9.0.21 - react: 19.0.0-rc-603e6108-20241029 + react: 19.0.0 zwitch@2.0.4: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 23b07d7fc6..65447e87c1 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -56,8 +56,8 @@ catalog: "@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 + "@types/react": 19.0.1 + "@types/react-dom": 19.0.2 autoprefixer: 10.4.20 bcp-47: 2.1.0 bs58: 6.0.0 @@ -71,7 +71,7 @@ catalog: modern-normalize: 3.0.1 motion: 11.11.17 next-themes: 0.3.0 - next: 15.0.3 + next: 15.1.0 nuqs: 2.1.2 pino: 9.5.0 postcss-loader: 8.1.1 @@ -79,8 +79,8 @@ catalog: prettier: 3.3.3 react-aria-components: 1.5.0 react-aria: 3.36.0 - react-dom: 19.0.0-rc-603e6108-20241029 - react: 19.0.0-rc-603e6108-20241029 + react-dom: 19.0.0 + react: 19.0.0 recharts: 2.14.1 sass-loader: 16.0.3 sass: 1.80.7