diff --git a/apps/insights/package.json b/apps/insights/package.json index 980f19c335..b59cbc2422 100644 --- a/apps/insights/package.json +++ b/apps/insights/package.json @@ -30,6 +30,7 @@ "@pythnetwork/next-root": "workspace:*", "@react-hookz/web": "catalog:", "@solana/web3.js": "catalog:", + "bs58": "catalog:", "clsx": "catalog:", "cryptocurrency-icons": "catalog:", "framer-motion": "catalog:", @@ -40,6 +41,7 @@ "react-aria": "catalog:", "react-aria-components": "catalog:", "react-dom": "catalog:", + "swr": "catalog:", "zod": "catalog:" }, "devDependencies": { diff --git a/apps/insights/src/app/loading.tsx b/apps/insights/src/app/loading.tsx deleted file mode 100644 index c3fb2ad08d..0000000000 --- a/apps/insights/src/app/loading.tsx +++ /dev/null @@ -1 +0,0 @@ -export { Loading as default } from "../components/Loading"; diff --git a/apps/insights/src/app/price-feeds/layout.ts b/apps/insights/src/app/price-feeds/layout.ts deleted file mode 100644 index 146de5525c..0000000000 --- a/apps/insights/src/app/price-feeds/layout.ts +++ /dev/null @@ -1 +0,0 @@ -export { PriceFeedsLayout as default } from "../../components/PriceFeeds/layout"; diff --git a/apps/insights/src/app/price-feeds/loading.ts b/apps/insights/src/app/price-feeds/loading.ts deleted file mode 100644 index d643c2cdca..0000000000 --- a/apps/insights/src/app/price-feeds/loading.ts +++ /dev/null @@ -1 +0,0 @@ -export { PriceFeedsLoading as default } from "../../components/PriceFeeds/loading"; diff --git a/apps/insights/src/app/yesterdays-prices/route.ts b/apps/insights/src/app/yesterdays-prices/route.ts new file mode 100644 index 0000000000..cbf08a975a --- /dev/null +++ b/apps/insights/src/app/yesterdays-prices/route.ts @@ -0,0 +1,25 @@ +import type { NextRequest } from "next/server"; +import { z } from "zod"; + +import { client } from "../../clickhouse"; + +export async function GET(req: NextRequest) { + const symbols = req.nextUrl.searchParams.getAll("symbols"); + const rows = await client.query({ + query: + "select * from insights_yesterdays_prices(symbols={symbols: Array(String)})", + query_params: { symbols }, + }); + const result = await rows.json(); + const data = schema.parse(result.data); + return Response.json( + Object.fromEntries(data.map(({ symbol, price }) => [symbol, price])), + ); +} + +const schema = z.array( + z.object({ + symbol: z.string(), + price: z.number(), + }), +); diff --git a/apps/insights/src/components/CopyButton/index.module.scss b/apps/insights/src/components/CopyButton/index.module.scss index 33093eae4e..bf4f615648 100644 --- a/apps/insights/src/components/CopyButton/index.module.scss +++ b/apps/insights/src/components/CopyButton/index.module.scss @@ -1,16 +1,19 @@ @use "@pythnetwork/component-library/theme"; .copyButton { - margin: -#{theme.spacing(0.5)} -0.5em; + 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) 0.5em; - border: none; + padding: theme.spacing(0.5) theme.spacing(1); background: none; cursor: pointer; - transition: background-color 100ms linear; - outline: none; + 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; @@ -18,18 +21,11 @@ margin-left: theme.spacing(1); display: inline-block; - .copyIconContainer { + .copyIcon { opacity: 0.5; transition: opacity 100ms linear; - - .copyIcon { - width: 1em; - height: 1em; - } - - .copyIconLabel { - @include theme.sr-only; - } + width: 1em; + height: 1em; } .checkIcon { @@ -50,12 +46,12 @@ } &[data-focus-visible] { - outline: 1px solid currentcolor; - outline-offset: theme.spacing(1); + border-color: theme.color("focus"); + outline-color: theme.color("focus-dim"); } &[data-is-copied] .iconContainer { - .copyIconContainer { + .copyIcon { opacity: 0; } diff --git a/apps/insights/src/components/CopyButton/index.tsx b/apps/insights/src/components/CopyButton/index.tsx index 84b550697b..9b7d6c7afe 100644 --- a/apps/insights/src/components/CopyButton/index.tsx +++ b/apps/insights/src/components/CopyButton/index.tsx @@ -64,10 +64,7 @@ export const CopyButton = ({ {typeof children === "function" ? children(...args) : children} - - -
Copy to clipboard
-
+
diff --git a/apps/insights/src/components/H1/index.module.scss b/apps/insights/src/components/H1/index.module.scss index a6cacc232f..da9ae4d5e6 100644 --- a/apps/insights/src/components/H1/index.module.scss +++ b/apps/insights/src/components/H1/index.module.scss @@ -3,4 +3,5 @@ .h1 { font-size: theme.font-size("2xl"); font-weight: theme.font-weight("medium"); + margin: 0; } diff --git a/apps/insights/src/components/LivePrices/index.module.scss b/apps/insights/src/components/LivePrices/index.module.scss new file mode 100644 index 0000000000..9cd7ba99dd --- /dev/null +++ b/apps/insights/src/components/LivePrices/index.module.scss @@ -0,0 +1,27 @@ +@use "@pythnetwork/component-library/theme"; + +.price { + transition: color 100ms linear; + + &[data-direction="up"] { + color: theme.color("states", "success", "base"); + } + + &[data-direction="down"] { + color: theme.color("states", "error", "base"); + } +} + +.confidence { + display: flex; + flex-flow: row nowrap; + gap: theme.spacing(2); + align-items: center; + + .plusMinus { + width: theme.spacing(4); + height: theme.spacing(4); + display: inline-block; + color: theme.color("muted"); + } +} diff --git a/apps/insights/src/components/LivePrices/index.tsx b/apps/insights/src/components/LivePrices/index.tsx new file mode 100644 index 0000000000..4232c4131b --- /dev/null +++ b/apps/insights/src/components/LivePrices/index.tsx @@ -0,0 +1,202 @@ +"use client"; + +import { PlusMinus } from "@phosphor-icons/react/dist/ssr/PlusMinus"; +import { useLogger } from "@pythnetwork/app-logger"; +import { Skeleton } from "@pythnetwork/component-library/Skeleton"; +import { useMap } from "@react-hookz/web"; +import { PublicKey } from "@solana/web3.js"; +import { + type ComponentProps, + use, + createContext, + useEffect, + useCallback, + useState, +} from "react"; +import { useNumberFormatter } from "react-aria"; + +import styles from "./index.module.scss"; +import { client, subscribe } from "../../pyth"; + +export const SKELETON_WIDTH = 20; + +const LivePricesContext = createContext< + ReturnType | undefined +>(undefined); + +type Price = { + price: number; + direction: ChangeDirection; + confidence: number; +}; + +type ChangeDirection = "up" | "down" | "flat"; + +type LivePricesProviderProps = Omit< + ComponentProps, + "value" +>; + +export const LivePricesProvider = ({ ...props }: LivePricesProviderProps) => { + const priceData = usePriceData(); + + return ; +}; + +export const useLivePrice = (account: string) => { + const { priceData, addSubscription, removeSubscription } = useLivePrices(); + + useEffect(() => { + addSubscription(account); + return () => { + removeSubscription(account); + }; + }, [addSubscription, removeSubscription, account]); + + return priceData.get(account); +}; + +export const LivePrice = ({ account }: { account: string }) => { + const numberFormatter = useNumberFormatter({ maximumSignificantDigits: 5 }); + const price = useLivePrice(account); + + return price === undefined ? ( + + ) : ( + + {numberFormatter.format(price.price)} + + ); +}; + +export const LiveConfidence = ({ account }: { account: string }) => { + const numberFormatter = useNumberFormatter({ maximumSignificantDigits: 5 }); + const price = useLivePrice(account); + + return price === undefined ? ( + + ) : ( + + + {numberFormatter.format(price.confidence)} + + ); +}; + +const usePriceData = () => { + const feedSubscriptions = useMap([]); + const [feedKeys, setFeedKeys] = useState([]); + const priceData = useMap([]); + const logger = useLogger(); + + useEffect(() => { + // First, we initialize prices with the last available price. This way, if + // there's any symbol that isn't currently publishing prices (e.g. the + // markets are closed), we will still display the last published price for + // that symbol. + const uninitializedFeedKeys = feedKeys.filter((key) => !priceData.has(key)); + if (uninitializedFeedKeys.length > 0) { + client + .getAssetPricesFromAccounts( + uninitializedFeedKeys.map((key) => new PublicKey(key)), + ) + .then((initialPrices) => { + 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, + }); + } + } + }) + .catch((error: unknown) => { + logger.error("Failed to fetch initial prices", error); + }); + } + + // Then, we create a subscription to update prices live. + const connection = subscribe( + feedKeys.map((key) => new PublicKey(key)), + ({ price_account }, { aggregate }) => { + 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, + }); + } + }, + ); + + connection.start().catch((error: unknown) => { + logger.error("Failed to subscribe to prices", error); + }); + return () => { + connection.stop().catch((error: unknown) => { + logger.error("Failed to unsubscribe from price updates", error); + }); + }; + }, [feedKeys, logger, priceData]); + + const addSubscription = useCallback( + (key: string) => { + const current = feedSubscriptions.get(key) ?? 0; + feedSubscriptions.set(key, current + 1); + if (current === 0) { + setFeedKeys((prev) => [...new Set([...prev, key])]); + } + }, + [feedSubscriptions], + ); + + const removeSubscription = useCallback( + (key: string) => { + const current = feedSubscriptions.get(key); + if (current) { + feedSubscriptions.set(key, current - 1); + if (current === 1) { + setFeedKeys((prev) => prev.filter((elem) => elem !== key)); + } + } + }, + [feedSubscriptions], + ); + + return { + priceData: new Map(priceData), + addSubscription, + removeSubscription, + }; +}; + +const useLivePrices = () => { + const prices = use(LivePricesContext); + if (prices === undefined) { + throw new LivePricesProviderNotInitializedError(); + } + return prices; +}; + +class LivePricesProviderNotInitializedError extends Error { + constructor() { + super("This component must be a child of "); + this.name = "LivePricesProviderNotInitializedError"; + } +} + +const getChangeDirection = ( + prevPrice: number | undefined, + price: number, +): ChangeDirection => { + if (prevPrice === undefined || prevPrice === price) { + return "flat"; + } else if (prevPrice < price) { + return "up"; + } else { + return "down"; + } +}; diff --git a/apps/insights/src/components/PriceFeeds/epoch-select.module.scss b/apps/insights/src/components/PriceFeeds/asset-classes-card.module.scss similarity index 58% rename from apps/insights/src/components/PriceFeeds/epoch-select.module.scss rename to apps/insights/src/components/PriceFeeds/asset-classes-card.module.scss index 240a87514e..50890a9ec8 100644 --- a/apps/insights/src/components/PriceFeeds/epoch-select.module.scss +++ b/apps/insights/src/components/PriceFeeds/asset-classes-card.module.scss @@ -1,8 +1,7 @@ @use "@pythnetwork/component-library/theme"; -.epochSelect { +.drawerTitle { display: flex; flex-flow: row nowrap; - align-items: center; - gap: theme.spacing(2); + gap: theme.spacing(3); } diff --git a/apps/insights/src/components/PriceFeeds/asset-classes-card.tsx b/apps/insights/src/components/PriceFeeds/asset-classes-card.tsx new file mode 100644 index 0000000000..4c18b05b49 --- /dev/null +++ b/apps/insights/src/components/PriceFeeds/asset-classes-card.tsx @@ -0,0 +1,122 @@ +"use client"; + +import { Badge } from "@pythnetwork/component-library/Badge"; +import { + CLOSE_DURATION_IN_MS, + Drawer, + DrawerTrigger, +} from "@pythnetwork/component-library/Drawer"; +import { Skeleton } from "@pythnetwork/component-library/Skeleton"; +import { StatCard } from "@pythnetwork/component-library/StatCard"; +import { Table } from "@pythnetwork/component-library/Table"; +import { usePathname } from "next/navigation"; +import { createSerializer } from "nuqs"; +import { Suspense, use, useMemo } from "react"; +import { useCollator } from "react-aria"; + +import styles from "./asset-classes-card.module.scss"; +import { queryParams, useQuery } from "./use-query"; + +type Props = { + numFeedsByAssetClassPromise: Promise>; +}; + +export const AssetClassesCard = ({ numFeedsByAssetClassPromise }: Props) => ( + } {...sharedStatCardProps} /> + } + > + + +); + +const ResolvedAssetClassesCard = ({ numFeedsByAssetClassPromise }: Props) => { + const numFeedsByAssetClass = use(numFeedsByAssetClassPromise); + const numAssetClasses = useMemo( + () => Object.keys(numFeedsByAssetClass).length, + [numFeedsByAssetClass], + ); + + return ( + + + + Asset Classes + {numAssetClasses} + + } + > + {({ close }) => ( + + )} + + + ); +}; + +const sharedStatCardProps = { + header: "Asset Classes", +}; + +type AssetClassTableProps = { + numFeedsByAssetClass: Record; + closeDrawer: () => void; +}; + +const AssetClassTable = ({ + numFeedsByAssetClass, + closeDrawer, +}: AssetClassTableProps) => { + const collator = useCollator(); + const pathname = usePathname(); + const { updateAssetClass } = useQuery(); + const assetClassRows = useMemo( + () => + Object.entries(numFeedsByAssetClass) + .sort(([a], [b]) => collator.compare(a, b)) + .map(([assetClass, count]) => { + const serialize = createSerializer(queryParams); + return { + id: assetClass, + href: `${pathname}${serialize({ assetClass })}`, + onAction: () => { + closeDrawer(); + setTimeout(() => { + updateAssetClass(assetClass); + }, CLOSE_DURATION_IN_MS); + }, + data: { + assetClass, + count: {count}, + }, + }; + }), + [numFeedsByAssetClass, collator, closeDrawer, pathname, updateAssetClass], + ); + return ( + + ); +}; diff --git a/apps/insights/src/components/PriceFeeds/columns.ts b/apps/insights/src/components/PriceFeeds/columns.ts deleted file mode 100644 index 0902f051de..0000000000 --- a/apps/insights/src/components/PriceFeeds/columns.ts +++ /dev/null @@ -1,42 +0,0 @@ -import type { ColumnConfig } from "@pythnetwork/component-library/Table"; - -export const columns = [ - { - id: "asset", - name: "ASSET", - isRowHeader: true, - alignment: "left", - loadingSkeletonWidth: 28, - }, - { - id: "assetType", - name: "ASSET TYPE", - fill: true, - alignment: "left", - loadingSkeletonWidth: 20, - }, - { - id: "price", - name: "PRICE", - alignment: "right", - loadingSkeletonWidth: 20, - }, - { - id: "uptime", - name: "UPTIME", - alignment: "center", - loadingSkeletonWidth: 6, - }, - { - id: "deviation", - name: "DEVIATION", - alignment: "center", - loadingSkeletonWidth: 6, - }, - { - id: "staleness", - name: "STALENESS", - alignment: "center", - loadingSkeletonWidth: 6, - }, -] satisfies ColumnConfig[]; diff --git a/apps/insights/src/components/PriceFeeds/coming-soon-show-all-button.module.scss b/apps/insights/src/components/PriceFeeds/coming-soon-show-all-button.module.scss new file mode 100644 index 0000000000..63cb0f16cf --- /dev/null +++ b/apps/insights/src/components/PriceFeeds/coming-soon-show-all-button.module.scss @@ -0,0 +1,23 @@ +@use "@pythnetwork/component-library/theme"; + +.comingSoonCard { + .drawerTitle { + display: flex; + flex-flow: row nowrap; + gap: theme.spacing(3); + } + + .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; + } +} diff --git a/apps/insights/src/components/PriceFeeds/coming-soon-show-all-button.tsx b/apps/insights/src/components/PriceFeeds/coming-soon-show-all-button.tsx new file mode 100644 index 0000000000..ce3ca089aa --- /dev/null +++ b/apps/insights/src/components/PriceFeeds/coming-soon-show-all-button.tsx @@ -0,0 +1,152 @@ +"use client"; + +import { Badge } from "@pythnetwork/component-library/Badge"; +import { Button } from "@pythnetwork/component-library/Button"; +import { Drawer, DrawerTrigger } from "@pythnetwork/component-library/Drawer"; +import { SearchInput } from "@pythnetwork/component-library/SearchInput"; +import { Select } from "@pythnetwork/component-library/Select"; +import { Table } from "@pythnetwork/component-library/Table"; +import { type ReactNode, Suspense, useMemo, useState, use } from "react"; +import { useCollator, useFilter } from "react-aria"; + +import styles from "./coming-soon-show-all-button.module.scss"; + +type Props = { + comingSoonPromise: Promise; +}; + +type ComingSoonPriceFeed = { + symbol: string; + id: string; + displaySymbol: string; + assetClassAsString: string; + priceFeedName: ReactNode; + assetClass: ReactNode; +}; + +export const ComingSoonShowAllButton = ({ comingSoonPromise }: Props) => ( + }> + + +); + +const ResolvedComingSoonShowAllButton = ({ comingSoonPromise }: Props) => { + const comingSoon = use(comingSoonPromise); + + return ( + +
+ + ); +}; diff --git a/apps/insights/src/components/PriceFeeds/epoch-select.tsx b/apps/insights/src/components/PriceFeeds/epoch-select.tsx deleted file mode 100644 index 676e5059f0..0000000000 --- a/apps/insights/src/components/PriceFeeds/epoch-select.tsx +++ /dev/null @@ -1,38 +0,0 @@ -"use client"; - -import { CalendarDots } from "@phosphor-icons/react/dist/ssr/CalendarDots"; -import { CaretLeft } from "@phosphor-icons/react/dist/ssr/CaretLeft"; -import { CaretRight } from "@phosphor-icons/react/dist/ssr/CaretRight"; -import { Button } from "@pythnetwork/component-library/Button"; -import { Select } from "@pythnetwork/component-library/Select"; - -import styles from "./epoch-select.module.scss"; - -export const EpochSelect = () => ( -
- - + + + } + > + + +
+ } + footer={ + +
+ + } + {...props} + > + + } + > + + + +); + +type NumFeedsProps = { + priceFeedsPromise: Props["priceFeedsPromise"]; +}; + +const NumFeeds = ({ priceFeedsPromise }: NumFeedsProps) => + useFilteredFeeds(priceFeedsPromise).length; + +type ToolbarProps = { + priceFeedsPromise: Props["priceFeedsPromise"]; +}; + +const ToolbarContents = ({ priceFeedsPromise }: ToolbarProps) => { + const { search, assetClass, updateSearch, updateAssetClass } = useQuery(); + const collator = useCollator(); + const priceFeeds = use(priceFeedsPromise); + const assetClasses = useMemo( + () => + [...new Set(priceFeeds.map((feed) => feed.assetClassAsString))].sort( + (a, b) => collator.compare(a, b), + ), + [priceFeeds, collator], + ); + + return ( + <> +

No results!

} + {...sharedTableProps()} + /> + ); +}; + +const sharedTableProps = (placeholderPriceFeedName?: ReactNode) => ({ + label: "Price Feeds", + columns: [ + { + id: "priceFeedName", + name: "PRICE FEED", + isRowHeader: true, + alignment: "left", + width: 50, + loadingSkeleton: placeholderPriceFeedName, + }, + { + id: "assetClass", + name: "ASSET CLASS", + alignment: "left", + width: 60, + }, + { + id: "priceFeedId", + name: "PRICE FEED ID", + alignment: "left", + width: 40, + }, + { + id: "price", + name: "PRICE", + alignment: "right", + width: 40, + loadingSkeletonWidth: SKELETON_WIDTH, + }, + { + id: "confidenceInterval", + name: "CONFIDENCE INTERVAL", + alignment: "left", + width: 40, + loadingSkeletonWidth: SKELETON_WIDTH, + }, + { + id: "exponent", + name: "EXPONENT", + alignment: "left", + width: 8, + }, + { + id: "numPublishers", + name: "# PUBLISHERS", + alignment: "left", + width: 8, + }, + { + id: "weeklySchedule", + name: "WEEKLY SCHEDULE", + alignment: "left", + width: 100, + }, + ] as const satisfies ColumnConfig[], + rounded: true, + fill: true, +}); + +const Footer = ({ + priceFeedsPromise, +}: { + priceFeedsPromise: Props["priceFeedsPromise"]; +}) => { + const { page, pageSize, updatePage, updatePageSize } = useQuery(); + const filteredFeeds = useFilteredFeeds(priceFeedsPromise); + + const numPages = useMemo( + () => Math.ceil(filteredFeeds.length / pageSize), + [filteredFeeds, pageSize], + ); + + const pathname = usePathname(); + + const mkPageLink = useCallback( + (page: number) => { + const serialize = createSerializer(queryParams); + return `${pathname}${serialize({ page, pageSize })}`; + }, + [pathname, pageSize], + ); + + return ( + + ); +}; + +const useFilteredFeeds = (priceFeedsPromise: Promise) => { + const { search, assetClass } = useQuery(); + const filter = useFilter({ sensitivity: "base", usage: "search" }); + const collator = useCollator(); + const activeFeeds = use(priceFeedsPromise); + const sortedFeeds = useMemo( + () => + activeFeeds.sort((a, b) => + collator.compare(a.displaySymbol, b.displaySymbol), + ), + [activeFeeds, collator], + ); + const feedsFilteredByAssetClass = useMemo( + () => + assetClass + ? sortedFeeds.filter((feed) => feed.assetClassAsString === assetClass) + : sortedFeeds, + [assetClass, sortedFeeds], + ); + const filteredFeeds = useMemo( + () => + search === "" + ? feedsFilteredByAssetClass + : feedsFilteredByAssetClass.filter((feed) => + filter.contains(feed.symbol, search), + ), + [search, feedsFilteredByAssetClass, filter], + ); + + return filteredFeeds; +}; diff --git a/apps/insights/src/components/PriceFeeds/prices.module.scss b/apps/insights/src/components/PriceFeeds/prices.module.scss deleted file mode 100644 index 8ec21af759..0000000000 --- a/apps/insights/src/components/PriceFeeds/prices.module.scss +++ /dev/null @@ -1,13 +0,0 @@ -@use "@pythnetwork/component-library/theme"; - -.price { - transition: color 100ms linear; - - &[data-direction="up"] { - color: theme.color("states", "success", "normal"); - } - - &[data-direction="down"] { - color: theme.color("states", "error", "normal"); - } -} diff --git a/apps/insights/src/components/PriceFeeds/prices.tsx b/apps/insights/src/components/PriceFeeds/prices.tsx deleted file mode 100644 index e3cf0795e7..0000000000 --- a/apps/insights/src/components/PriceFeeds/prices.tsx +++ /dev/null @@ -1,123 +0,0 @@ -"use client"; - -import { useLogger } from "@pythnetwork/app-logger"; -import { Skeleton } from "@pythnetwork/component-library/Skeleton"; -import { useMap } from "@react-hookz/web"; -import { PublicKey } from "@solana/web3.js"; -import { - type ComponentProps, - createContext, - useContext, - useEffect, -} from "react"; -import { useNumberFormatter } from "react-aria"; - -import styles from "./prices.module.scss"; -import { client, subscribe } from "../../pyth"; - -const PriceContext = createContext< - Map | undefined ->(undefined); - -type ChangeDirection = "up" | "down" | "flat"; - -type PriceProviderProps = Omit, "value"> & { - feedKeys: string[]; -}; - -export const PriceProvider = ({ feedKeys, ...props }: PriceProviderProps) => { - const priceData = usePriceData(feedKeys); - - return ; -}; - -export const Price = ({ account }: { account: string }) => { - const numberFormatter = useNumberFormatter({ maximumSignificantDigits: 5 }); - const price = usePrices().get(account); - - return price === undefined ? ( - - ) : ( - - {numberFormatter.format(price[0])} - - ); -}; - -const usePriceData = (feedKeys: string[]) => { - const priceData = useMap([]); - const logger = useLogger(); - - useEffect(() => { - const initialFeedKeys = feedKeys.filter((key) => !priceData.has(key)); - if (initialFeedKeys.length > 0) { - client - .getAssetPricesFromAccounts( - initialFeedKeys.map((key) => new PublicKey(key)), - ) - .then((initialPrices) => { - for (const [i, price] of initialPrices.entries()) { - const key = initialFeedKeys[i]; - if (key && !priceData.has(key)) { - priceData.set(key, [price.aggregate.price, "flat"]); - } - } - }) - .catch((error: unknown) => { - logger.error("Failed to fetch initial prices", error); - }); - } - - const connection = subscribe( - feedKeys.map((key) => new PublicKey(key)), - ({ price_account }, { aggregate }) => { - if (price_account) { - const prevPrice = priceData.get(price_account)?.[0]; - priceData.set(price_account, [ - aggregate.price, - getChangeDirection(prevPrice, aggregate.price), - ]); - } - }, - ); - - connection.start().catch((error: unknown) => { - logger.error("Failed to subscribe to prices", error); - }); - return () => { - connection.stop().catch((error: unknown) => { - logger.error("Failed to unsubscribe from price updates", error); - }); - }; - }, [feedKeys, logger, priceData]); - - return new Map(priceData); -}; - -const usePrices = () => { - const prices = useContext(PriceContext); - if (prices === undefined) { - throw new NotInitializedError(); - } - return prices; -}; - -class NotInitializedError extends Error { - constructor() { - super("This component must be a child of "); - this.name = "NotInitializedError"; - } -} - -const getChangeDirection = ( - prevPrice: number | undefined, - price: number, -): ChangeDirection => { - if (prevPrice === undefined || prevPrice === price) { - return "flat"; - } else if (prevPrice < price) { - return "up"; - } else { - return "down"; - } -}; diff --git a/apps/insights/src/components/PriceFeeds/results.tsx b/apps/insights/src/components/PriceFeeds/results.tsx deleted file mode 100644 index 2c29acfba3..0000000000 --- a/apps/insights/src/components/PriceFeeds/results.tsx +++ /dev/null @@ -1,153 +0,0 @@ -"use client"; - -import { ChartLine } from "@phosphor-icons/react/dist/ssr/ChartLine"; -import { useLogger } from "@pythnetwork/app-logger"; -import { Paginator } from "@pythnetwork/component-library/Paginator"; -import { SearchInput } from "@pythnetwork/component-library/SearchInput"; -import { TableCard } from "@pythnetwork/component-library/TableCard"; -import { usePathname } from "next/navigation"; -import { - parseAsString, - parseAsInteger, - useQueryStates, - createSerializer, -} from "nuqs"; -import { - type ComponentProps, - useTransition, - useMemo, - useCallback, -} from "react"; -import { useFilter, useCollator } from "react-aria"; - -import { columns } from "./columns"; -import { PriceProvider } from "./prices"; - -type Props = { - priceFeeds: { - symbol: string; - key: string; - displaySymbol: string; - data: ComponentProps< - typeof TableCard<(typeof columns)[number]["id"]> - >["rows"][number]["data"]; - }[]; -}; - -const params = { - page: parseAsInteger.withDefault(1), - pageSize: parseAsInteger.withDefault(20), - search: parseAsString.withDefault(""), -}; - -export const Results = ({ priceFeeds }: Props) => { - const [isTransitioning, startTransition] = useTransition(); - const [{ page, pageSize, search }, setQuery] = useQueryStates(params); - const filter = useFilter({ sensitivity: "base", usage: "search" }); - const collator = useCollator(); - const filteredFeeds = useMemo( - () => - search === "" - ? priceFeeds - : priceFeeds.filter((feed) => filter.contains(feed.symbol, search)), - [search, priceFeeds, filter], - ); - const sortedRows = useMemo( - () => - filteredFeeds.sort((a, b) => - collator.compare(a.displaySymbol, b.displaySymbol), - ), - [filteredFeeds, collator], - ); - const paginatedRows = useMemo( - () => sortedRows.slice((page - 1) * pageSize, page * pageSize), - [page, pageSize, sortedRows], - ); - const rows = useMemo( - () => paginatedRows.map(({ key, data }) => ({ id: key, href: "/", data })), - [paginatedRows], - ); - const numPages = useMemo( - () => Math.ceil(filteredFeeds.length / pageSize), - [filteredFeeds, pageSize], - ); - - const logger = useLogger(); - - const updateQuery = useCallback( - (...params: Parameters) => { - window.scrollTo({ top: 0, behavior: "smooth" }); - startTransition(() => { - setQuery(...params).catch((error: unknown) => { - logger.error("Failed to update query", error); - }); - }); - }, - [setQuery, startTransition, logger], - ); - - const updatePage = useCallback( - (newPage: number) => { - updateQuery({ page: newPage }); - }, - [updateQuery], - ); - - const updatePageSize = useCallback( - (newPageSize: number) => { - updateQuery({ page: 1, pageSize: newPageSize }); - }, - [updateQuery], - ); - - const updateSearch = useCallback( - (newSearch: string) => { - updateQuery({ page: 1, search: newSearch }); - }, - [updateQuery], - ); - - const feedKeys = useMemo(() => rows.map((row) => row.id), [rows]); - - const pathname = usePathname(); - - const mkPageLink = useCallback( - (page: number) => { - const serialize = createSerializer(params); - return `${pathname}${serialize({ page, pageSize })}`; - }, - [pathname, pageSize], - ); - - return ( - -

No results!

} - toolbar={ - - } - footer={ - - } - /> -
- ); -}; diff --git a/apps/insights/src/components/PriceFeeds/use-query.ts b/apps/insights/src/components/PriceFeeds/use-query.ts new file mode 100644 index 0000000000..be607f676a --- /dev/null +++ b/apps/insights/src/components/PriceFeeds/use-query.ts @@ -0,0 +1,65 @@ +import { useLogger } from "@pythnetwork/app-logger"; +import { parseAsString, parseAsInteger, useQueryStates } from "nuqs"; +import { useCallback } from "react"; + +export const useQuery = () => { + const logger = useLogger(); + + const [{ search, page, pageSize, assetClass }, setQuery] = + useQueryStates(queryParams); + + const updateQuery = useCallback( + (...params: Parameters) => { + setQuery(...params).catch((error: unknown) => { + logger.error("Failed to update query", error); + }); + }, + [setQuery, logger], + ); + + const updateSearch = useCallback( + (newSearch: string) => { + updateQuery({ page: 1, search: newSearch }); + }, + [updateQuery], + ); + + const updatePage = useCallback( + (newPage: number) => { + updateQuery({ page: newPage }); + }, + [updateQuery], + ); + + const updatePageSize = useCallback( + (newPageSize: number) => { + updateQuery({ page: 1, pageSize: newPageSize }); + }, + [updateQuery], + ); + + const updateAssetClass = useCallback( + (newAssetClass: string) => { + updateQuery({ page: 1, assetClass: newAssetClass }); + }, + [updateQuery], + ); + + return { + search, + page, + pageSize, + assetClass, + updateSearch, + updatePage, + updatePageSize, + updateAssetClass, + }; +}; + +export const queryParams = { + assetClass: parseAsString.withDefault(""), + page: parseAsInteger.withDefault(1), + pageSize: parseAsInteger.withDefault(30), + search: parseAsString.withDefault(""), +}; diff --git a/apps/insights/src/components/Publishers/loading.tsx b/apps/insights/src/components/Publishers/loading.tsx index 6d26a701d3..04ac3a72b0 100644 --- a/apps/insights/src/components/Publishers/loading.tsx +++ b/apps/insights/src/components/Publishers/loading.tsx @@ -1,7 +1,10 @@ -import { TableCard } from "@pythnetwork/component-library/TableCard"; +import { Card } from "@pythnetwork/component-library/Card"; +import { Table } from "@pythnetwork/component-library/Table"; import { columns } from "./columns"; export const PublishersLoading = () => ( - + +
+ ); diff --git a/apps/insights/src/components/Publishers/results.tsx b/apps/insights/src/components/Publishers/results.tsx index 1524b5bd0f..aaea50beba 100644 --- a/apps/insights/src/components/Publishers/results.tsx +++ b/apps/insights/src/components/Publishers/results.tsx @@ -1,16 +1,12 @@ "use client"; import { useLogger } from "@pythnetwork/app-logger"; +import { Card } from "@pythnetwork/component-library/Card"; import { Paginator } from "@pythnetwork/component-library/Paginator"; -import { TableCard } from "@pythnetwork/component-library/TableCard"; +import { type RowConfig, Table } from "@pythnetwork/component-library/Table"; import { usePathname } from "next/navigation"; import { parseAsInteger, useQueryStates, createSerializer } from "nuqs"; -import { - type ComponentProps, - useTransition, - useMemo, - useCallback, -} from "react"; +import { useTransition, useMemo, useCallback } from "react"; import { columns } from "./columns"; @@ -18,9 +14,7 @@ type Props = { publishers: { key: string; rank: number; - data: ComponentProps< - typeof TableCard<(typeof columns)[number]["id"]> - >["rows"][number]["data"]; + data: RowConfig<(typeof columns)[number]["id"]>["data"]; }[]; }; @@ -84,11 +78,8 @@ export const Results = ({ publishers }: Props) => { ); return ( - { pageSizeOptions={[10, 20, 30, 40, 50]} /> } - /> + > +
+ ); }; diff --git a/apps/insights/src/components/Root/footer.module.scss b/apps/insights/src/components/Root/footer.module.scss index 171c5cade0..2fcb155ccb 100644 --- a/apps/insights/src/components/Root/footer.module.scss +++ b/apps/insights/src/components/Root/footer.module.scss @@ -38,12 +38,13 @@ // gap-8 .logoLink { - margin: -#{theme.spacing(2)}; - border-radius: theme.border-radius(); - padding: theme.spacing(2); + height: theme.spacing(5); + box-sizing: content-box; + padding: theme.spacing(3); + margin: -#{theme.spacing(3)}; .logo { - height: theme.spacing(5); + height: 100%; } .logoLabel { diff --git a/apps/insights/src/components/Root/header.module.scss b/apps/insights/src/components/Root/header.module.scss index d52481d2a1..59895f0376 100644 --- a/apps/insights/src/components/Root/header.module.scss +++ b/apps/insights/src/components/Root/header.module.scss @@ -3,9 +3,9 @@ .header { position: sticky; top: 0; - height: theme.spacing(20); width: 100%; - background-color: theme.color("background", "primary"); + background-color: theme.color("background", "nav-blur"); + backdrop-filter: blur(32px); .content { height: 100%; @@ -20,14 +20,26 @@ @include theme.row; - .logo { - margin-top: 0.5646rem; - height: 2.8146rem; - width: theme.spacing(9); - } + .logoLink { + padding: theme.spacing(3); + margin: -#{theme.spacing(3)}; + + .logoWrapper { + width: theme.spacing(9); + height: theme.spacing(9); + position: relative; + + .logo { + position: absolute; + top: 0; + left: 0; + width: 100%; + } + } - .logoLabel { - @include theme.sr-only; + .logoLabel { + @include theme.sr-only; + } } .appName { @@ -49,5 +61,23 @@ margin-left: theme.spacing(1); } } + + @media screen and (min-width: theme.$max-width + (2 * (theme.spacing(9) + theme.spacing(8) + theme.spacing(7)))) { + .leftMenu { + margin-left: -#{theme.spacing(9) + theme.spacing(7)}; + + .logoLink { + margin-right: -#{theme.spacing(2)}; + } + } + + .rightMenu { + margin-right: -#{theme.spacing(9) + theme.spacing(7)}; + + .themeSwitch { + margin-left: theme.spacing(5); + } + } + } } } diff --git a/apps/insights/src/components/Root/header.tsx b/apps/insights/src/components/Root/header.tsx index 5bf2754fee..3ea922e2a7 100644 --- a/apps/insights/src/components/Root/header.tsx +++ b/apps/insights/src/components/Root/header.tsx @@ -14,8 +14,10 @@ export const Header = ({ className, ...props }: ComponentProps<"header">) => (
- - + +
+ +
Pyth Homepage
Insights
diff --git a/apps/insights/src/components/Root/index.module.scss b/apps/insights/src/components/Root/index.module.scss index 1a48615158..e50f7c424f 100644 --- a/apps/insights/src/components/Root/index.module.scss +++ b/apps/insights/src/components/Root/index.module.scss @@ -1,17 +1,22 @@ @use "@pythnetwork/component-library/theme"; -.tabRoot { - display: grid; - min-height: 100dvh; - grid-template-rows: auto 1fr auto; +$header-height: theme.spacing(20); - .main { - padding-top: theme.spacing(6); - padding-bottom: theme.spacing(12); - isolation: isolate; - } +.root { + scroll-padding-top: $header-height; + + .tabRoot { + display: grid; + min-height: 100dvh; + grid-template-rows: auto 1fr auto; + + .main { + isolation: isolate; + } - .header { - z-index: 1; + .header { + z-index: 1; + height: $header-height; + } } } diff --git a/apps/insights/src/components/Root/index.tsx b/apps/insights/src/components/Root/index.tsx index dc07624bd4..c91504bd53 100644 --- a/apps/insights/src/components/Root/index.tsx +++ b/apps/insights/src/components/Root/index.tsx @@ -12,6 +12,7 @@ import { GOOGLE_ANALYTICS_ID, AMPLITUDE_API_KEY, } from "../../config/server"; +import { LivePricesProvider } from "../LivePrices"; type Props = { children: ReactNode; @@ -22,7 +23,8 @@ export const Root = ({ children }: Props) => ( amplitudeApiKey={AMPLITUDE_API_KEY} googleAnalyticsId={GOOGLE_ANALYTICS_ID} enableAccessibilityReporting={!IS_PRODUCTION_SERVER} - providers={[NuqsAdapter]} + providers={[NuqsAdapter, LivePricesProvider]} + className={styles.root} >
diff --git a/apps/insights/src/static-data/price-feeds.tsx b/apps/insights/src/static-data/price-feeds.tsx new file mode 100644 index 0000000000..2f6178122c --- /dev/null +++ b/apps/insights/src/static-data/price-feeds.tsx @@ -0,0 +1,12 @@ +export const priceFeeds = { + activeChains: "80+", + updateFrequency: "400ms", + featuredRecentlyAdded: [ + "Crypto.PYTH/USD", + "FX.EUR/USD", + "Equity.US.NFLX/USD", + "Commodities.WTI1M", + "Crypto.1INCH/USD", + ], + featuredComingSoon: ["Rates.US2Y", "Crypto.SOL/ETH", "Commodities.BRENT2M"], +}; diff --git a/apps/insights/src/use-data.ts b/apps/insights/src/use-data.ts new file mode 100644 index 0000000000..68b575bccc --- /dev/null +++ b/apps/insights/src/use-data.ts @@ -0,0 +1,57 @@ +import { useLogger } from "@pythnetwork/app-logger"; +import { useCallback } from "react"; +import useSWR, { type KeyedMutator } from "swr"; + +export const useData = (...args: Parameters>) => { + const { data, isLoading, mutate, ...rest } = useSWR(...args); + + const error = rest.error as unknown; + const logger = useLogger(); + + const reset = useCallback(() => { + mutate(undefined).catch(() => { + /* no-op */ + }); + }, [mutate]); + + if (error) { + logger.error(error); + return State.ErrorState(new UseDataError(error), reset); + } else if (isLoading) { + return State.Loading(); + } else if (data) { + return State.Loaded(data, mutate); + } else { + return State.NotLoaded(); + } +}; + +export enum StateType { + NotLoaded, + Loading, + Loaded, + Error, +} + +const State = { + NotLoaded: () => ({ type: StateType.NotLoaded as const }), + Loading: () => ({ type: StateType.Loading as const }), + Loaded: (data: T, mutate: KeyedMutator) => ({ + type: StateType.Loaded as const, + mutate, + data, + }), + ErrorState: (error: UseDataError, reset: () => void) => ({ + type: StateType.Error as const, + error, + reset, + }), +}; + +class UseDataError extends Error { + constructor(cause: unknown) { + super(cause instanceof Error ? cause.message : ""); + this.name = "UseDataError"; + this.cause = cause; + } +} diff --git a/flake.nix b/flake.nix index d465a236a7..faf84b8a35 100644 --- a/flake.nix +++ b/flake.nix @@ -59,6 +59,7 @@ pkgs.python3 pkgs.python3Packages.distutils pkgs.graphviz + pkgs.anchor ]; }; } diff --git a/packages/component-library/.storybook/preview.tsx b/packages/component-library/.storybook/preview.tsx index 74833e0772..5e4e2298f3 100644 --- a/packages/component-library/.storybook/preview.tsx +++ b/packages/component-library/.storybook/preview.tsx @@ -1,5 +1,7 @@ +import { sans } from "@pythnetwork/fonts"; import { withThemeByClassName } from "@storybook/addon-themes"; import type { Preview, Decorator } from "@storybook/react"; +import clsx from "clsx"; import "../src/Html/base.scss"; import styles from "./storybook.module.scss"; @@ -7,6 +9,10 @@ import styles from "./storybook.module.scss"; const preview = { parameters: { backgrounds: { + grid: { + cellSize: 4, + cellAmount: 4, + }, options: [ { name: "Primary", value: "var(--primary-background)" }, { name: "Secondary", value: "var(--secondary-background)" }, @@ -24,8 +30,8 @@ export default preview; export const decorators: Decorator[] = [ withThemeByClassName({ themes: { - Light: styles.light ?? "", - Dark: styles.dark ?? "", + Light: clsx(sans.className, styles.light), + Dark: clsx(sans.className, styles.dark), }, defaultTheme: "Light", }), diff --git a/packages/component-library/.storybook/storybook.module.scss b/packages/component-library/.storybook/storybook.module.scss index 25ad8c75fd..9013bff84c 100644 --- a/packages/component-library/.storybook/storybook.module.scss +++ b/packages/component-library/.storybook/storybook.module.scss @@ -3,6 +3,7 @@ html, body { height: 100%; + width: 100%; } :root { diff --git a/packages/component-library/src/AppTabs/index.module.scss b/packages/component-library/src/AppTabs/index.module.scss index 03e36d5bd7..ca923bfe1f 100644 --- a/packages/component-library/src/AppTabs/index.module.scss +++ b/packages/component-library/src/AppTabs/index.module.scss @@ -13,11 +13,11 @@ position: absolute; inset: 0; border-radius: theme.border-radius("full"); - background-color: white; - mix-blend-mode: difference; - outline: none; - z-index: 1; - transition: box-shadow 200ms linear; + background-color: theme.color("button", "solid", "background", "normal"); + outline: 4px solid transparent; + outline-offset: 0; + z-index: -1; + transition: outline-color 200ms linear; } &[data-focus-visible] { @@ -25,8 +25,12 @@ border-color: transparent; .bubble { - box-shadow: 0 0 0 4px rgba(white, 0.4); + outline-color: theme.color("focus-dim"); } } + + &[data-selected] { + color: theme.color("button", "solid", "foreground"); + } } } diff --git a/packages/component-library/src/Badge/index.module.scss b/packages/component-library/src/Badge/index.module.scss new file mode 100644 index 0000000000..5e044f619e --- /dev/null +++ b/packages/component-library/src/Badge/index.module.scss @@ -0,0 +1,53 @@ +@use "../theme"; + +.badge { + display: inline flow-root; + border-radius: theme.border-radius("3xl"); + transition-property: color, background-color, border-color; + transition-duration: 100ms; + transition-timing-function: linear; + border: 1px solid var(--badge-color); + + &[data-size="xs"] { + line-height: theme.spacing(4); + height: theme.spacing(4); + padding: 0 theme.spacing(2); + font-size: theme.font-size("xxs"); + font-weight: theme.font-weight("medium"); + } + + &[data-size="md"] { + line-height: theme.spacing(6); + height: theme.spacing(6); + padding: 0 theme.spacing(3); + font-size: theme.font-size("xs"); + font-weight: theme.font-weight("medium"); + } + + &[data-size="lg"] { + line-height: theme.spacing(9); + height: theme.spacing(9); + padding: 0 theme.spacing(5); + font-size: theme.font-size("sm"); + font-weight: theme.font-weight("semibold"); + } + + @each $variant in ("neutral", "info", "warning", "error", "data", "success") { + &[data-variant="#{$variant}"] { + --badge-color: #{theme.color("states", $variant, "normal")}; + } + } + + &[data-variant="muted"] { + --badge-color: #{theme.color("muted")}; + } + + &[data-style="filled"] { + color: theme.color("background", "primary"); + background: var(--badge-color); + } + + &[data-style="outline"] { + color: var(--badge-color); + } +} diff --git a/packages/component-library/src/Badge/index.stories.tsx b/packages/component-library/src/Badge/index.stories.tsx new file mode 100644 index 0000000000..5148c0dfbd --- /dev/null +++ b/packages/component-library/src/Badge/index.stories.tsx @@ -0,0 +1,46 @@ +import type { Meta, StoryObj } from "@storybook/react"; + +import { Badge as BadgeComponent, VARIANTS, SIZES, STYLES } from "./index.js"; + +const meta = { + component: BadgeComponent, + argTypes: { + children: { + control: "text", + table: { + category: "Contents", + }, + }, + variant: { + control: "inline-radio", + options: VARIANTS, + table: { + category: "Variant", + }, + }, + style: { + control: "inline-radio", + options: STYLES, + table: { + category: "Variant", + }, + }, + size: { + control: "inline-radio", + options: SIZES, + table: { + category: "Variant", + }, + }, + }, +} satisfies Meta; +export default meta; + +export const Badge = { + args: { + children: "A BADGE", + variant: "neutral", + style: "filled", + size: "md", + }, +} satisfies StoryObj; diff --git a/packages/component-library/src/Badge/index.tsx b/packages/component-library/src/Badge/index.tsx new file mode 100644 index 0000000000..7ba12f0b61 --- /dev/null +++ b/packages/component-library/src/Badge/index.tsx @@ -0,0 +1,41 @@ +import clsx from "clsx"; +import type { ComponentProps } from "react"; + +import styles from "./index.module.scss"; + +export const VARIANTS = [ + "neutral", + "info", + "warning", + "error", + "data", + "success", + "muted", +] as const; +export const STYLES = ["filled", "outline"] as const; +export const SIZES = ["xs", "md", "lg"] as const; + +type Props = ComponentProps<"span"> & { + variant?: (typeof VARIANTS)[number] | undefined; + style?: (typeof STYLES)[number] | undefined; + size?: (typeof SIZES)[number] | undefined; +}; + +export const Badge = ({ + className, + variant = "neutral", + size = "md", + style = "filled", + children, + ...props +}: Props) => ( + + {children} + +); diff --git a/packages/component-library/src/Button/index.module.scss b/packages/component-library/src/Button/index.module.scss index 0553a90a8e..6de1e6fc7a 100644 --- a/packages/component-library/src/Button/index.module.scss +++ b/packages/component-library/src/Button/index.module.scss @@ -34,7 +34,7 @@ .text { padding: 0 theme.map-get-strict($values, "gap"); - line-height: calc(theme.map-get-strict($values, "height") - 2px); + line-height: theme.map-get-strict($values, "height"); } } } diff --git a/packages/component-library/src/Card/index.module.scss b/packages/component-library/src/Card/index.module.scss index 9bcc15a646..29e048d1fe 100644 --- a/packages/component-library/src/Card/index.module.scss +++ b/packages/component-library/src/Card/index.module.scss @@ -1,9 +1,102 @@ @use "../theme"; .card { + display: block; flex-direction: column; gap: theme.spacing(2); - background-color: theme.color("background", "secondary"); border-radius: theme.border-radius("2xl"); + text-decoration: none; + color: theme.color("foreground"); + outline-offset: 0; + outline: theme.spacing(1) solid transparent; + transition-property: outline-color, border-color, box-shadow, background; + transition-duration: 100ms; + transition-timing-function: linear; + border: 1px solid transparent; + position: relative; padding: theme.spacing(1); + isolation: isolate; + + @at-root button#{&} { + cursor: pointer; + width: 100%; + } + + .cardHoverBackground { + border-radius: theme.border-radius("2xl"); + position: absolute; + inset: -1px; + opacity: 0; + transition: opacity 100ms linear; + background: theme.color("button", "outline", "background", "hover"); + z-index: -1; + } + + .header { + padding: theme.spacing(3) theme.spacing(4); + position: relative; + + .title { + margin: 0; + font-size: theme.font-size("base"); + font-weight: theme.font-weight("medium"); + color: theme.color("heading"); + display: inline-flex; + flex-flow: row nowrap; + gap: theme.spacing(3); + align-items: center; + + .icon { + font-size: theme.spacing(6); + height: theme.spacing(6); + color: theme.color("button", "primary", "background", "normal"); + } + } + + .toolbar { + position: absolute; + right: theme.spacing(3); + top: 0; + bottom: 0; + display: grid; + place-content: center; + } + } + + .footer { + padding: theme.spacing(2); + } + + &[data-variant="primary"] { + background: theme.color("background", "card-highlight"); + + &[data-hovered] { + @include theme.elevation("primary", 2); + } + } + + &[data-variant="secondary"] { + background: theme.color("background", "secondary"); + + &[data-hovered] { + @include theme.elevation("default", 2); + } + } + + &[data-variant="tertiary"] { + background: theme.color("background", "primary"); + + &[data-hovered] { + @include theme.elevation("default", 2); + } + } + + &[data-hovered] .cardHoverBackground { + opacity: 1; + } + + &[data-focus-visible] { + border-color: theme.color("focus"); + outline-color: theme.color("focus-dim"); + } } diff --git a/packages/component-library/src/Card/index.stories.tsx b/packages/component-library/src/Card/index.stories.tsx index 867e4b7300..cf34e68a2f 100644 --- a/packages/component-library/src/Card/index.stories.tsx +++ b/packages/component-library/src/Card/index.stories.tsx @@ -1,21 +1,64 @@ +import * as Icon from "@phosphor-icons/react/dist/ssr"; import type { Meta, StoryObj } from "@storybook/react"; -import { Card as CardComponent } from "./index.js"; +import { Card as CardComponent, VARIANTS } from "./index.js"; const meta = { component: CardComponent, - parameters: { - backgrounds: { - disable: true, - }, - }, argTypes: { + href: { + control: "text", + table: { + category: "Link", + }, + }, + target: { + control: "text", + table: { + category: "Link", + }, + }, children: { control: "text", table: { category: "Contents", }, }, + variant: { + control: "inline-radio", + options: VARIANTS, + table: { + category: "Variant", + }, + }, + title: { + control: "text", + table: { + category: "Contents", + }, + }, + icon: { + control: "select", + options: Object.keys(Icon), + mapping: Object.fromEntries( + Object.entries(Icon).map(([key, Icon]) => [key, ]), + ), + table: { + category: "Contents", + }, + }, + toolbar: { + control: "text", + table: { + category: "Contents", + }, + }, + footer: { + control: "text", + table: { + category: "Contents", + }, + }, }, } satisfies Meta; export default meta; @@ -23,5 +66,9 @@ export default meta; export const Card = { args: { children: "This is a card!", + variant: "secondary", + title: "", + toolbar: "", + footer: "", }, } satisfies StoryObj; diff --git a/packages/component-library/src/Card/index.tsx b/packages/component-library/src/Card/index.tsx index 98e3c9c86e..4932a67082 100644 --- a/packages/component-library/src/Card/index.tsx +++ b/packages/component-library/src/Card/index.tsx @@ -1,10 +1,78 @@ +"use client"; + import clsx from "clsx"; -import type { ComponentProps } from "react"; +import { + type ComponentProps, + type ElementType, + type ReactNode, + use, +} from "react"; +import { OverlayTriggerStateContext } from "react-aria-components"; import styles from "./index.module.scss"; +import { UnstyledButton } from "../UnstyledButton/index.js"; +import { UnstyledLink } from "../UnstyledLink/index.js"; + +export const VARIANTS = ["primary", "secondary", "tertiary"] as const; + +type OwnProps = { + variant?: (typeof VARIANTS)[number] | undefined; + icon?: ReactNode | undefined; + title?: ReactNode | undefined; + toolbar?: ReactNode | ReactNode[] | undefined; + footer?: ReactNode | undefined; +}; + +export type Props = Omit< + ComponentProps, + keyof OwnProps +> & + OwnProps; + +export const Card = ( + props: + | Props<"div"> + | Props + | Props, +) => { + const overlayState = use(OverlayTriggerStateContext); -type Props = ComponentProps<"div">; + if (overlayState !== null || "onPress" in props) { + return ; + } else if ("href" in props) { + return ; + } else { + return
; + } +}; -export const Card = ({ className, ...props }: Props) => ( -
-); +const cardProps = ({ + className, + variant = "secondary", + children, + icon, + title, + toolbar, + footer, + ...props +}: Props) => ({ + ...props, + "data-variant": variant, + className: clsx(styles.card, className), + children: ( + <> +
+ {(Boolean(icon) || Boolean(title) || Boolean(toolbar)) && ( +
+

+ {icon &&
{icon}
} + {title} +

+
{toolbar}
+
+ )} + {children} + {footer &&
{footer}
} + + ), +}); diff --git a/packages/component-library/src/Drawer/index.module.scss b/packages/component-library/src/Drawer/index.module.scss new file mode 100644 index 0000000000..dd5914c88b --- /dev/null +++ b/packages/component-library/src/Drawer/index.module.scss @@ -0,0 +1,42 @@ +@use "../theme"; + +.modalOverlay { + position: fixed; + inset: 0; + background: rgba(from black r g b / 30%); + z-index: 1; + + .modal { + position: fixed; + top: theme.spacing(4); + bottom: theme.spacing(4); + right: theme.spacing(4); + width: 40%; + max-width: theme.spacing(160); + background: theme.color("background", "primary"); + border: 1px solid theme.color("border"); + border-radius: theme.border-radius("3xl"); + outline: none; + overflow: hidden; + + .dialog { + outline: none; + display: flex; + flex-flow: column nowrap; + height: 100%; + + .heading { + padding: theme.spacing(4); + padding-left: theme.spacing(6); + display: flex; + flex-flow: row nowrap; + justify-content: space-between; + align-items: center; + + .title { + @include theme.h4; + } + } + } + } +} diff --git a/packages/component-library/src/Drawer/index.stories.tsx b/packages/component-library/src/Drawer/index.stories.tsx new file mode 100644 index 0000000000..ad20759961 --- /dev/null +++ b/packages/component-library/src/Drawer/index.stories.tsx @@ -0,0 +1,38 @@ +import type { Meta, StoryObj } from "@storybook/react"; + +import { Drawer as DrawerComponent, DrawerTrigger } from "./index.js"; +import { Button } from "../Button/index.js"; + +const meta = { + component: DrawerComponent, + decorators: [ + (Story) => ( + + + + + ), + ], + argTypes: { + title: { + control: "text", + table: { + category: "Contents", + }, + }, + children: { + control: "text", + table: { + category: "Contents", + }, + }, + }, +} satisfies Meta; +export default meta; + +export const Drawer = { + args: { + title: "A drawer", + children: "This is a drawer", + }, +} satisfies StoryObj; diff --git a/packages/component-library/src/Drawer/index.tsx b/packages/component-library/src/Drawer/index.tsx new file mode 100644 index 0000000000..00e26a68d4 --- /dev/null +++ b/packages/component-library/src/Drawer/index.tsx @@ -0,0 +1,106 @@ +import { XCircle } from "@phosphor-icons/react/dist/ssr/XCircle"; +import clsx from "clsx"; +import { motion, AnimatePresence } from "motion/react"; +import { + type ComponentProps, + type ReactNode, + type ContextType, + use, + useCallback, +} from "react"; +import { + Dialog, + Heading, + Modal as ModalComponent, + ModalOverlay as ModalOverlayComponent, + OverlayTriggerStateContext, +} from "react-aria-components"; + +import styles from "./index.module.scss"; +import { Button } from "../Button/index.js"; + +export { DialogTrigger as DrawerTrigger } from "react-aria-components"; + +const CLOSE_DURATION_IN_S = 0.15; +export const CLOSE_DURATION_IN_MS = CLOSE_DURATION_IN_S * 1000; + +// @ts-expect-error Looks like there's a typing mismatch currently between +// motion and react, probably due to us being on react 19. I'm expecting this +// will go away when react 19 is officially stabilized... +const ModalOverlay = motion.create(ModalOverlayComponent); +// @ts-expect-error Looks like there's a typing mismatch currently between +// motion and react, probably due to us being on react 19. I'm expecting this +// will go away when react 19 is officially stabilized... +const Modal = motion.create(ModalComponent); + +type OwnProps = { + title: ReactNode; + children: + | ReactNode + | (( + state: NonNullable>, + ) => ReactNode); +}; + +type Props = Omit, keyof OwnProps> & OwnProps; + +export const Drawer = ({ title, children, className, ...props }: Props) => { + const state = use(OverlayTriggerStateContext); + + const onOpenChange = useCallback( + (newValue: boolean) => { + state?.setOpen(newValue); + }, + [state], + ); + + return ( + + {state?.isOpen && ( + + + +
+ + {title} + + +
+ {typeof children === "function" ? children(state) : children} +
+
+
+ )} +
+ ); +}; diff --git a/packages/component-library/src/Html/base.scss b/packages/component-library/src/Html/base.scss index a5314d8a05..5d1091b35c 100644 --- a/packages/component-library/src/Html/base.scss +++ b/packages/component-library/src/Html/base.scss @@ -6,6 +6,7 @@ background: theme.color("background", "primary"); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; + scroll-behavior: smooth; } *::selection { diff --git a/packages/component-library/src/Html/index.tsx b/packages/component-library/src/Html/index.tsx index 88f6cd252f..5ba6d9ef86 100644 --- a/packages/component-library/src/Html/index.tsx +++ b/packages/component-library/src/Html/index.tsx @@ -5,5 +5,10 @@ import type { ComponentProps } from "react"; import "./base.scss"; export const Html = ({ className, lang, ...props }: ComponentProps<"html">) => ( - + ); diff --git a/packages/component-library/src/Link/index.module.scss b/packages/component-library/src/Link/index.module.scss index 4a074b4ddd..1908c82ac4 100644 --- a/packages/component-library/src/Link/index.module.scss +++ b/packages/component-library/src/Link/index.module.scss @@ -2,15 +2,21 @@ .link { text-decoration: underline; - border: none; + border: 1px solid transparent; border-radius: theme.border-radius(); - outline-width: 1px; - outline-offset: theme.spacing(1); - outline-color: transparent; + transition: + outline-color 100ms linear, + border-color 100ms linear; + outline: theme.spacing(1) solid transparent; color: inherit; + padding: theme.spacing(1); + margin: -#{theme.spacing(1)}; + text-underline-offset: 0.125em; + outline-offset: 0; &[data-focus-visible] { - outline-color: currentcolor; + outline-color: theme.color("focus-dim"); + border-color: theme.color("focus"); } &[data-hovered] { diff --git a/packages/component-library/src/Paginator/index.stories.tsx b/packages/component-library/src/Paginator/index.stories.tsx index 969ec65ea7..2d15f0c62e 100644 --- a/packages/component-library/src/Paginator/index.stories.tsx +++ b/packages/component-library/src/Paginator/index.stories.tsx @@ -33,6 +33,11 @@ const meta = { disable: true, }, }, + className: { + table: { + disable: true, + }, + }, onPageChange: { table: { category: "Behavior", diff --git a/packages/component-library/src/Paginator/index.tsx b/packages/component-library/src/Paginator/index.tsx index ae760b4716..26df77ffec 100644 --- a/packages/component-library/src/Paginator/index.tsx +++ b/packages/component-library/src/Paginator/index.tsx @@ -1,13 +1,7 @@ import { CaretLeft } from "@phosphor-icons/react/dist/ssr/CaretLeft"; import { CaretRight } from "@phosphor-icons/react/dist/ssr/CaretRight"; -import { CircleNotch } from "@phosphor-icons/react/dist/ssr/CircleNotch"; import clsx from "clsx"; -import { - type ComponentProps, - useTransition, - useMemo, - useCallback, -} from "react"; +import { type ComponentProps, useMemo, useCallback } from "react"; import styles from "./index.module.scss"; import { Button, ButtonLink } from "../Button/index.js"; @@ -63,38 +57,19 @@ const PageSizeSelect = ({ pageSize, onPageSizeChange, pageSizeOptions, -}: PageSizeSelectProps) => { - const [isTransitioning, startTransition] = useTransition(); - - const onChange = useCallback( - (newPageSize: number) => { - startTransition(() => { - onPageSizeChange(newPageSize); - }); - }, - [startTransition, onPageSizeChange], - ); - - return ( -
- `${value.toString()} per page`} + variant="ghost" + size="sm" + /> +); type PaginatorProps = { numPages: number; @@ -209,13 +184,9 @@ const PageLink = ({ mkPageLink, ...props }: PageLinkProps) => { - const [isTransitioning, startTransition] = useTransition(); - const url = useMemo(() => mkPageLink(page), [page, mkPageLink]); const onPress = useCallback(() => { - startTransition(() => { - onPageChange(page); - }); + onPageChange(page); }, [onPageChange, page]); return ( @@ -224,7 +195,7 @@ const PageLink = ({ size="sm" onPress={onPress} href={url} - isDisabled={isDisabled === true || isTransitioning} + isDisabled={isDisabled === true} {...props} /> ); @@ -244,12 +215,8 @@ const PageButton = ({ onPageChange, ...props }: PageButtonProps) => { - const [isTransitioning, startTransition] = useTransition(); - const onPress = useCallback(() => { - startTransition(() => { - onPageChange(page); - }); + onPageChange(page); }, [onPageChange, page]); return ( @@ -257,7 +224,7 @@ const PageButton = ({ variant="ghost" size="sm" onPress={onPress} - isDisabled={isDisabled === true || isTransitioning} + isDisabled={isDisabled === true} {...props} /> ); diff --git a/packages/component-library/src/SearchInput/index.module.scss b/packages/component-library/src/SearchInput/index.module.scss index 6c4a244f3a..bf3331513a 100644 --- a/packages/component-library/src/SearchInput/index.module.scss +++ b/packages/component-library/src/SearchInput/index.module.scss @@ -100,7 +100,7 @@ .input { border-radius: theme.map-get-strict($values, "border-radius"); font-size: theme.map-get-strict($values, "font-size"); - line-height: calc($height - 2px); + line-height: $height; padding: 0 ($padding + $icon-size + $gap); } diff --git a/packages/component-library/src/SearchInput/index.tsx b/packages/component-library/src/SearchInput/index.tsx index d58e499298..48c3372c65 100644 --- a/packages/component-library/src/SearchInput/index.tsx +++ b/packages/component-library/src/SearchInput/index.tsx @@ -1,3 +1,5 @@ +"use client"; + import { CircleNotch } from "@phosphor-icons/react/dist/ssr/CircleNotch"; import { MagnifyingGlass } from "@phosphor-icons/react/dist/ssr/MagnifyingGlass"; import { XCircle } from "@phosphor-icons/react/dist/ssr/XCircle"; diff --git a/packages/component-library/src/Select/index.module.scss b/packages/component-library/src/Select/index.module.scss index 30a9cffae6..ad00c3ce24 100644 --- a/packages/component-library/src/Select/index.module.scss +++ b/packages/component-library/src/Select/index.module.scss @@ -19,23 +19,47 @@ } .popover { - // data-[entering]:animate-in data-[exiting]:animate-out data-[entering]:fade-in data-[exiting]:fade-out" + min-width: var(--trigger-width); + background-color: theme.color("background", "modal"); + border-radius: theme.border-radius("lg"); + border: 1px solid theme.color("border"); + color: theme.color("paragraph"); + display: flex; + flex-flow: column nowrap; + font-size: theme.font-size("sm"); + box-shadow: + 0 4px 6px -4px rgb(from black r g b / 10%), + 0 10px 15px -3px rgb(from black r g b / 10%); + + .title { + padding: theme.spacing(3); + padding-bottom: theme.spacing(1); + color: theme.color("muted"); + line-height: theme.spacing(4); + font-size: theme.font-size("xxs"); + font-weight: theme.font-weight("medium"); + } .listbox { - min-width: var(--trigger-width); - background-color: theme.color("background", "modal"); - border-radius: theme.border-radius("lg"); - border: 1px solid theme.color("border"); - color: theme.color("paragraph"); + outline: none; + overflow: auto; padding: theme.spacing(1); - display: flex; - flex-flow: column nowrap; - font-size: theme.font-size("sm"); - box-shadow: - 0 4px 6px -4px rgb(0 0 0 / 10%), - 0 10px 15px -3px rgb(0 0 0 / 10%); - // origin-top-right" + .section { + padding: theme.spacing(0.5) 0; + + &:first-child { + padding-top: 0; + } + + &:last-child { + padding-bottom: 0; + } + + &:not(:first-child) { + border-top: 1px solid theme.color("border"); + } + } .listboxItem { padding: theme.spacing(2); @@ -54,6 +78,7 @@ border: 1px solid transparent; outline: theme.spacing(0.5) solid transparent; outline-offset: 0; + line-height: theme.spacing(4); .check { width: theme.spacing(3); @@ -84,4 +109,56 @@ } } } + + &[data-group-label-hidden] .groupLabel { + @include theme.sr-only; + } + + &[data-placement="top"] { + --origin: translateY(8px); + --scale: 1, 0.8; + + transform-origin: bottom; + } + + &[data-placement="bottom"] { + --origin: translateY(-8px); + --scale: 1, 0.8; + + transform-origin: top; + } + + &[data-placement="right"] { + --origin: translateX(-8px); + --scale: 0.8, 1; + + transform-origin: left; + } + + &[data-placement="left"] { + --origin: translateX(8px); + --scale: 0.8, 1; + + transform-origin: right; + } + + &[data-entering] { + animation: popover-slide 200ms; + } + + &[data-exiting] { + animation: popover-slide 200ms reverse ease-in; + } +} + +@keyframes popover-slide { + from { + transform: scale(var(--scale)) var(--origin); + opacity: 0; + } + + to { + transform: scale(1, 1) translateY(0); + opacity: 1; + } } diff --git a/packages/component-library/src/Select/index.stories.tsx b/packages/component-library/src/Select/index.stories.tsx index 0983a5a47e..89b29f4712 100644 --- a/packages/component-library/src/Select/index.stories.tsx +++ b/packages/component-library/src/Select/index.stories.tsx @@ -3,8 +3,6 @@ import type { Meta, StoryObj } from "@storybook/react"; import { Select as SelectComponent } from "./index.js"; import buttonMeta from "../Button/index.stories.js"; -const OPTIONS = ["foo", "bar", "baz"]; - // eslint-disable-next-line @typescript-eslint/no-unused-vars const { children, beforeIcon, onPress, ...argTypes } = buttonMeta.argTypes; const meta = { @@ -29,6 +27,11 @@ const meta = { disable: true, }, }, + optionGroups: { + table: { + disable: true, + }, + }, defaultSelectedKey: { table: { disable: true, @@ -74,14 +77,49 @@ const meta = { category: "Behavior", }, }, + buttonLabel: { + control: "text", + table: { + category: "Label", + }, + }, }, } satisfies Meta; export default meta; -export const Select = { +export const Flat = { + args: { + defaultSelectedKey: "foo", + options: ["foo", "bar", "baz"], + variant: "primary", + size: "md", + isDisabled: false, + isPending: false, + rounded: false, + hideText: false, + show: (value) => `The option ${value.toString()}`, + label: "A SELECT!", + hideLabel: true, + buttonLabel: "", + }, +} satisfies StoryObj; + +export const Grouped = { + argTypes: { + hideGroupLabel: { + control: "boolean", + table: { + category: "Contents", + }, + }, + }, args: { defaultSelectedKey: "foo", - options: OPTIONS, + optionGroups: [ + { name: "All", options: ["foo1", "foo2", "Some"] }, + { name: "bars", options: ["bar1", "bar2", "bar3"] }, + { name: "bazzes", options: ["baz1", "baz2", "baz3"] }, + ], variant: "primary", size: "md", isDisabled: false, @@ -89,7 +127,9 @@ export const Select = { rounded: false, hideText: false, show: (value) => `The option ${value.toString()}`, - label: "A Select!", + label: "FOOS AND BARS", hideLabel: true, + hideGroupLabel: true, + buttonLabel: "", }, } satisfies StoryObj; diff --git a/packages/component-library/src/Select/index.tsx b/packages/component-library/src/Select/index.tsx index 69d5bf232a..63dadd4119 100644 --- a/packages/component-library/src/Select/index.tsx +++ b/packages/component-library/src/Select/index.tsx @@ -8,6 +8,9 @@ import { Popover, ListBox, ListBoxItem, + ListBoxSection, + Header, + Collection, SelectValue, } from "react-aria-components"; @@ -23,24 +26,32 @@ type Props = Omit< "variant" | "size" | "rounded" | "hideText" | "isPending" > & Pick & { - options: readonly T[]; show?: (value: T) => string; icon?: ComponentProps["beforeIcon"]; label: ReactNode; hideLabel?: boolean | undefined; + buttonLabel?: ReactNode; } & ( | { - defaultSelectedKey: T; + defaultSelectedKey?: T | undefined; } | { selectedKey: T; onSelectionChange: (newValue: T) => void; } + ) & + ( + | { + options: readonly T[]; + } + | { + hideGroupLabel?: boolean | undefined; + optionGroups: { name: string; options: readonly T[] }[]; + } ); export const Select = ({ className, - options, show, variant, size, @@ -51,6 +62,7 @@ export const Select = ({ hideLabel, placement, isPending, + buttonLabel, ...props }: Props) => ( // @ts-expect-error react-aria coerces everything to Key for some reason... @@ -72,31 +84,65 @@ export const Select = ({ beforeIcon={icon} isPending={isPending === true} > - > - {({ selectedItem }) => - selectedItem ? (show?.(selectedItem.id) ?? selectedItem.id) : <> - } - + {buttonLabel !== undefined && buttonLabel !== "" ? ( + buttonLabel + ) : ( + > + {({ selectedItem, selectedText }) => + selectedItem + ? (show?.(selectedItem.id) ?? selectedItem.id) + : selectedText + } + + )} - - ({ id }))} - > - {({ id }) => ( - - {show?.(id) ?? id} - - - )} - + + {label} + {"options" in props ? ( + ({ id }))} + > + {({ id }) => {id}} + + ) : ( + + {({ name, options }) => ( + +
{name}
+ ({ id }))}> + {({ id }) => {id}} + +
+ )} +
+ )}
); +type ItemProps = { + children: T; + show: ((value: T) => string) | undefined; +}; + +const Item = ({ children, show }: ItemProps) => ( + + {show?.(children) ?? children} + + +); + const DropdownCaretDown = ( props: Omit, "xmlns" | "viewBox" | "fill">, ) => ( diff --git a/packages/component-library/src/Skeleton/index.module.scss b/packages/component-library/src/Skeleton/index.module.scss index bb592d0233..a281d9c822 100644 --- a/packages/component-library/src/Skeleton/index.module.scss +++ b/packages/component-library/src/Skeleton/index.module.scss @@ -14,4 +14,31 @@ @include theme.sr-only; } } + + &[data-round] { + border-radius: theme.border-radius("full"); + display: inline-block; + width: calc(theme.spacing(1) * var(--skeleton-width)); + height: calc(theme.spacing(1) * var(--skeleton-width)); + + .skeletonInner { + width: 100%; + height: 100%; + } + } + + &[data-fill] { + .skeletonInner { + width: 100%; + } + + &[data-round] { + width: 100%; + height: 100%; + + .skeletonInner { + height: 100%; + } + } + } } diff --git a/packages/component-library/src/Skeleton/index.stories.tsx b/packages/component-library/src/Skeleton/index.stories.tsx index b7a3bd2da3..1e3a96598c 100644 --- a/packages/component-library/src/Skeleton/index.stories.tsx +++ b/packages/component-library/src/Skeleton/index.stories.tsx @@ -17,6 +17,12 @@ const meta = { category: "Skeleton", }, }, + round: { + control: "boolean", + table: { + category: "Skeleton", + }, + }, }, } satisfies Meta; export default meta; @@ -25,5 +31,6 @@ export const Skeleton = { args: { label: "Loading", width: 20, + round: false, }, } satisfies StoryObj; diff --git a/packages/component-library/src/Skeleton/index.tsx b/packages/component-library/src/Skeleton/index.tsx index 625ea55946..f5784a3f12 100644 --- a/packages/component-library/src/Skeleton/index.tsx +++ b/packages/component-library/src/Skeleton/index.tsx @@ -4,17 +4,25 @@ import type { ComponentProps, CSSProperties } from "react"; import styles from "./index.module.scss"; type Props = Omit, "children"> & { - width: number; + width?: number | undefined; label?: string | undefined; + round?: boolean | undefined; }; -export const Skeleton = ({ className, label, width, ...props }: Props) => ( - - +export const Skeleton = ({ + className, + label, + width, + round, + ...props +}: Props) => ( + + {label ?? "Loading"} diff --git a/packages/component-library/src/StatCard/index.module.scss b/packages/component-library/src/StatCard/index.module.scss new file mode 100644 index 0000000000..4726592cd8 --- /dev/null +++ b/packages/component-library/src/StatCard/index.module.scss @@ -0,0 +1,36 @@ +@use "../theme"; + +.statCard { + height: theme.spacing(22); + + .cardContents { + display: flex; + flex-flow: column nowrap; + justify-content: space-between; + height: 100%; + padding: theme.spacing(3); + padding-bottom: theme.spacing(2); + + .header { + color: theme.color("muted"); + text-align: left; + + @include theme.text("sm", "medium"); + } + + .bottom { + display: flex; + flex-flow: row nowrap; + justify-content: space-between; + align-items: center; + + .stat { + @include theme.h3; + } + + .miniStat { + @include theme.text("sm", "medium"); + } + } + } +} diff --git a/packages/component-library/src/StatCard/index.stories.tsx b/packages/component-library/src/StatCard/index.stories.tsx new file mode 100644 index 0000000000..967566e5a4 --- /dev/null +++ b/packages/component-library/src/StatCard/index.stories.tsx @@ -0,0 +1,51 @@ +import type { Meta, StoryObj } from "@storybook/react"; + +import { StatCard as StatCardComponent } from "./index.js"; +import cardMeta, { Card as CardStory } from "../Card/index.stories.js"; + +const cardMetaArgTypes = () => { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const { title, toolbar, icon, footer, ...argTypes } = cardMeta.argTypes; + return argTypes; +}; + +const meta = { + component: StatCardComponent, + argTypes: { + ...cardMetaArgTypes(), + header: { + control: "text", + table: { + category: "Contents", + }, + }, + stat: { + control: "text", + table: { + category: "Contents", + }, + }, + miniStat: { + control: "text", + table: { + category: "Contents", + }, + }, + }, +} satisfies Meta; +export default meta; + +const cardStoryArgs = () => { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const { title, toolbar, footer, ...args } = CardStory.args; + return args; +}; + +export const StatCard = { + args: { + ...cardStoryArgs(), + header: "Active Feeds", + stat: "552", + miniStat: "+5", + }, +} satisfies StoryObj; diff --git a/packages/component-library/src/StatCard/index.tsx b/packages/component-library/src/StatCard/index.tsx new file mode 100644 index 0000000000..d97f9d604c --- /dev/null +++ b/packages/component-library/src/StatCard/index.tsx @@ -0,0 +1,32 @@ +import clsx from "clsx"; +import type { ReactNode, ElementType } from "react"; + +import styles from "./index.module.scss"; +import { type Props as CardProps, Card } from "../Card/index.js"; + +type Props = Omit< + CardProps, + "title" | "toolbar" | "icon" | "footer" +> & { + header: ReactNode; + stat: ReactNode; + miniStat?: ReactNode | undefined; +}; + +export const StatCard = ({ + header, + stat, + miniStat, + className, + ...props +}: Props) => ( + +
+

{header}

+
+
{stat}
+ {miniStat &&
{miniStat}
} +
+
+
+); diff --git a/packages/component-library/src/Table/index.module.scss b/packages/component-library/src/Table/index.module.scss index 5d704f6767..a1bd28a204 100644 --- a/packages/component-library/src/Table/index.module.scss +++ b/packages/component-library/src/Table/index.module.scss @@ -2,7 +2,6 @@ .tableContainer { background-color: theme.color("background", "primary"); - border-radius: theme.border-radius("xl"); position: relative; .loaderWrapper { @@ -40,11 +39,12 @@ border-collapse: collapse; .cell { - padding-left: theme.spacing(2); - padding-right: theme.spacing(2); + padding-left: theme.spacing(3); + padding-right: theme.spacing(3); white-space: nowrap; border: 0; outline: none; + width: calc(theme.spacing(1) * var(--width)); &:first-child { padding-left: theme.spacing(4); @@ -89,7 +89,7 @@ } .tableBody { - font-size: theme.font-size("sm"); + @include theme.text("sm", "medium"); .row { background-color: transparent; @@ -128,18 +128,34 @@ padding-top: theme.spacing(4); padding-bottom: theme.spacing(4); } + } + } + } - &:last-child { - .cell { - &:first-child { - border-bottom-left-radius: theme.border-radius("xl"); - } + &[data-fill] .table { + width: 100%; + } - &:last-child { - border-bottom-right-radius: theme.border-radius("xl"); - } - } - } + &[data-divide] { + .tableHeader { + border-color: theme.color("border"); + } + + .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"); + } + + &:last-child { + border-bottom-right-radius: theme.border-radius("xl"); } } } diff --git a/packages/component-library/src/Table/index.stories.tsx b/packages/component-library/src/Table/index.stories.tsx index 35b09737e9..a4ea136be7 100644 --- a/packages/component-library/src/Table/index.stories.tsx +++ b/packages/component-library/src/Table/index.stories.tsx @@ -20,6 +20,11 @@ const meta = { disable: true, }, }, + className: { + table: { + disable: true, + }, + }, label: { table: { category: "Accessibility", @@ -37,6 +42,29 @@ const meta = { category: "State", }, }, + divide: { + control: "boolean", + table: { + category: "Variant", + }, + }, + fill: { + control: "boolean", + table: { + category: "Variant", + }, + }, + rounded: { + control: "boolean", + table: { + category: "Variant", + }, + }, + dependencies: { + table: { + disable: true, + }, + }, }, } satisfies Meta; export default meta; @@ -46,6 +74,9 @@ export const Table = { label: "A Table", isUpdating: false, isLoading: false, + fill: true, + divide: false, + rounded: true, columns: [ { name: "PRICE FEED", diff --git a/packages/component-library/src/Table/index.tsx b/packages/component-library/src/Table/index.tsx index bb6ae37826..fc59df8582 100644 --- a/packages/component-library/src/Table/index.tsx +++ b/packages/component-library/src/Table/index.tsx @@ -1,8 +1,7 @@ "use client"; -import { useDebouncedEffect } from "@react-hookz/web"; import clsx from "clsx"; -import { type ReactNode, useState } from "react"; +import type { CSSProperties, ReactNode } from "react"; import type { RowProps, ColumnProps, @@ -21,25 +20,35 @@ import { } from "../UnstyledTable/index.js"; type TableProps = { + className?: string | undefined; + fill?: boolean | undefined; + divide?: boolean | undefined; + rounded?: boolean | undefined; label: string; columns: ColumnConfig[]; - rows: RowConfig[]; isLoading?: boolean | undefined; isUpdating?: boolean | undefined; - renderEmptyState?: TableBodyProps["renderEmptyState"]; -}; + renderEmptyState?: TableBodyProps["renderEmptyState"] | undefined; + dependencies?: TableBodyProps["dependencies"] | undefined; +} & ( + | { isLoading: true; rows?: RowConfig[] | undefined } + | { isLoading?: false | undefined; rows: RowConfig[] } +); export type ColumnConfig = Omit & { name: ReactNode; id: T; fill?: boolean | undefined; alignment?: Alignment | undefined; - loadingSkeletonWidth?: number | undefined; -}; + width?: number | undefined; +} & ( + | { loadingSkeleton?: ReactNode } + | { loadingSkeletonWidth?: number | undefined } + ); type Alignment = "left" | "center" | "right" | undefined; -type RowConfig = Omit< +export type RowConfig = Omit< RowProps, "columns" | "children" | "value" > & { @@ -48,85 +57,96 @@ type RowConfig = Omit< }; export const Table = ({ + className, + fill, + divide, + rounded, label, rows, columns, isLoading, isUpdating, renderEmptyState, -}: TableProps) => { - const [debouncedRows, setDebouncedRows] = useState(rows); - - useDebouncedEffect( - () => { - setDebouncedRows(rows); - }, - [rows], - 500, - ); - - return ( -
- {isUpdating && ( -
-
-
- )} - - - {({ fill, alignment, ...column }: ColumnConfig) => ( - - {column.name} - - )} - - - {isLoading ? ( + dependencies, +}: TableProps) => ( +
+ {isUpdating && ( +
+
+
+ )} + + + {({ fill, width, alignment, ...column }: ColumnConfig) => ( + + {column.name} + + )} + + + {isLoading ? ( + + {({ alignment, fill, width, ...column }: ColumnConfig) => ( + + {"loadingSkeleton" in column ? ( + column.loadingSkeleton + ) : ( + + )} + + )} + + ) : ( + ({ className: rowClassName, data, ...row }: RowConfig) => ( - {({ alignment, fill, loadingSkeletonWidth }: ColumnConfig) => ( - - + {({ alignment, width, fill, id }: ColumnConfig) => ( + + {data[id]} )} - ) : ( - ({ className: rowClassName, data, ...row }: RowConfig) => ( - - {({ alignment, fill, id }: ColumnConfig) => ( - - {data[id]} - - )} - - ) - )} - - -
- ); -}; + ) + )} + + +
+); const cellProps = ( alignment: Alignment | undefined, + width: number | undefined, fill: boolean | undefined, ) => ({ className: styles.cell ?? "", "data-alignment": alignment ?? "left", + ...(width && { style: { "--width": width } as CSSProperties }), ...(fill && { "data-fill": "" }), }); diff --git a/packages/component-library/src/TableCard/index.module.scss b/packages/component-library/src/TableCard/index.module.scss deleted file mode 100644 index f1b3ea65cd..0000000000 --- a/packages/component-library/src/TableCard/index.module.scss +++ /dev/null @@ -1,32 +0,0 @@ -@use "../theme"; - -.tableCard { - .header { - display: flex; - flex-flow: row nowrap; - justify-content: space-between; - align-items: center; - padding: theme.spacing(4); - - .title { - margin: 0; - font-size: theme.font-size("lg"); - font-weight: theme.font-weight("medium"); - color: theme.color("heading"); - display: inline-flex; - flex-flow: row nowrap; - gap: theme.spacing(3); - align-items: center; - - .icon { - width: theme.spacing(6); - height: theme.spacing(6); - color: theme.color("button", "primary", "background", "normal"); - } - } - } - - .footer { - padding: theme.spacing(2); - } -} diff --git a/packages/component-library/src/TableCard/index.stories.tsx b/packages/component-library/src/TableCard/index.stories.tsx deleted file mode 100644 index 69cc8eb9ef..0000000000 --- a/packages/component-library/src/TableCard/index.stories.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import * as Icon from "@phosphor-icons/react/dist/ssr"; -import type { Meta, StoryObj } from "@storybook/react"; - -import { TableCard as TableCardComponent } from "./index.js"; -import tableMeta, { Table as TableStory } from "../Table/index.stories.js"; - -const meta = { - component: TableCardComponent, - parameters: { - backgrounds: { - disable: true, - }, - }, - argTypes: { - ...tableMeta.argTypes, - title: { - control: "text", - table: { - category: "Card", - }, - }, - toolbar: { - table: { - disable: true, - }, - }, - footer: { - table: { - disable: true, - }, - }, - icon: { - control: "select", - options: Object.keys(Icon), - mapping: Icon, - table: { - category: "Contents", - }, - }, - }, -} satisfies Meta; -export default meta; - -export const TableCard = { - args: { - ...TableStory.args, - title: "A Table", - toolbar:
A toolbar
, - footer:
A footer
, - }, -} satisfies StoryObj; diff --git a/packages/component-library/src/TableCard/index.tsx b/packages/component-library/src/TableCard/index.tsx deleted file mode 100644 index 4da3030134..0000000000 --- a/packages/component-library/src/TableCard/index.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import type { ComponentType, ComponentProps, ReactNode } from "react"; - -import styles from "./index.module.scss"; -import { Card } from "../Card/index.js"; -import { Table } from "../Table/index.js"; - -type Props = ComponentProps> & { - icon?: ComponentType<{ className?: string | undefined }> | undefined; - title?: ReactNode | undefined; - footer?: ReactNode | undefined; - toolbar?: ReactNode | ReactNode[] | undefined; -}; - -export const TableCard = ({ - icon: Icon, - title, - footer, - toolbar, - ...props -}: Props) => ( - -
-

- {Icon && } - {title ?? props.label} -

- {toolbar} -
-
- {footer &&
{footer}
} - -); diff --git a/packages/component-library/src/theme.scss b/packages/component-library/src/theme.scss index e1f6b5da47..a0295b2b95 100644 --- a/packages/component-library/src/theme.scss +++ b/packages/component-library/src/theme.scss @@ -47,10 +47,23 @@ $font-size: ( "9xl": 8rem, ); -@function font-size($size: "$base") { +@function font-size($size: "base") { @return map-get-strict($font-size, $size); } +$letter-spacing: ( + "tighter": -0.05em, + "tight": -0.025em, + "normal": 0em, + "wide": 0.025em, + "wider": 0.05em, + "widest": 0.1em, +); + +@function letter-spacing($spacing: "normal") { + @return map-get-strict($letter-spacing, $spacing); +} + $border-radius: ( "none": 0px, "sm": 0.125rem, @@ -378,9 +391,9 @@ $color-pallette: ( 500: #64678b, 600: #474a69, 700: #333655, - 800: #1e1f3b, - 900: #100f2a, - 950: #050217, + 800: #25253e, + 900: #27253d, + 950: #100e23, ), ); @@ -392,9 +405,18 @@ $color: ( "transparent": transparent, "background": ( "primary": light-dark(pallette-color("white"), pallette-color("steel", 950)), + "nav-blur": + light-dark( + rgb(from pallette-color("white") r g b / 70%), + rgb(from pallette-color("steel", 950) r g b / 70%) + ), "modal": light-dark(pallette-color("white"), pallette-color("steel", 950)), "secondary": light-dark(pallette-color("beige", 100), pallette-color("steel", 900)), + "card-highlight": + light-dark(pallette-color("violet", 100), pallette-color("violet", 950)), + "card-secondary": + light-dark(pallette-color("white"), pallette-color("steel", 950)), ), "foreground": light-dark(pallette-color("steel", 900), pallette-color("steel", 50)), @@ -403,7 +425,7 @@ $color: ( "paragraph": light-dark(pallette-color("steel", 700), pallette-color("steel", 300)), "muted": - light-dark(pallette-color("stone", 500), pallette-color("steel", 400)), + light-dark(pallette-color("stone", 700), pallette-color("steel", 300)), "border": light-dark(pallette-color("stone", 300), pallette-color("steel", 600)), "selection": ( @@ -414,11 +436,17 @@ $color: ( ), "states": ( "success": ( + "base": + light-dark( + pallette-color("emerald", 600), + pallette-color("emerald", 500) + ), "normal": pallette-color("emerald", 500), "hover": pallette-color("emerald", 600), "active": pallette-color("emerald", 700), ), "error": ( + "base": light-dark(pallette-color("red", 600), pallette-color("red", 400)), "normal": pallette-color("red", 500), "hover": pallette-color("red", 600), "active": pallette-color("red", 700), @@ -427,13 +455,25 @@ $color: ( "normal": light-dark(pallette-color("steel", 900), pallette-color("steel", 50)), ), + "info": ( + "normal": + light-dark(pallette-color("indigo", 600), pallette-color("indigo", 400)), + ), + "warning": ( + "normal": + light-dark(pallette-color("orange", 600), pallette-color("orange", 400)), + ), + "data": ( + "normal": + light-dark(pallette-color("violet", 600), pallette-color("violet", 400)), + ), ), "focus": light-dark(pallette-color("violet", 700), pallette-color("violet", 500)), "focus-dim": light-dark( - rgba(pallette-color("violet", 700), 0.3), - rgba(pallette-color("violet", 500), 0.3) + rgb(from pallette-color("violet", 700) r g b / 30%), + rgb(from pallette-color("violet", 500) r g b / 30%) ), "forms": ( "input": ( @@ -491,13 +531,13 @@ $color: ( "background": ( "hover": light-dark( - rgba(pallette-color("beige", 950), 0.05), - rgba(pallette-color("steel", 50), 0.05) + rgb(from pallette-color("beige", 950) r g b / 5%), + rgb(from pallette-color("steel", 50) r g b / 5%) ), "active": light-dark( - rgba(pallette-color("beige", 950), 0.1), - rgba(pallette-color("steel", 50), 0.1) + rgb(from pallette-color("beige", 950) r g b / 10%), + rgb(from pallette-color("steel", 50) r g b / 10%) ), ), ), @@ -605,9 +645,11 @@ $button-sizes: ( } } +$max-width: 96rem; + @mixin max-width { margin: 0 auto; - max-width: 1536px; + max-width: $max-width; padding: 0 spacing(6); box-sizing: content-box; } @@ -617,3 +659,61 @@ $button-sizes: ( flex-flow: row nowrap; align-items: center; } + +$elevations: ( + primary: ( + 2: ( + 0px 66px 18px 0px rgb(112 66 206 / 0%), + 0px 42px 17px 0px rgb(112 66 206 / 3%), + 0px 24px 14px 0px rgb(112 66 206 / 8%), + 0px 11px 11px 0px rgb(112 66 206 / 14%), + 0px 3px 6px 0px rgb(112 66 206 / 17%), + ), + ), + default: ( + 1: ( + 0px 4px 6px -4px rgb(from black r g b / 10%), + 0px 10px 15px -3px rgb(from black r g b / 10%), + ), + 2: ( + 0px 29px 12px 0px + light-dark(rgb(from #564848 r g b / 2%), rgb(from black r g b / 8%)), + 0px 16px 10px 0px + light-dark(rgb(from #564848 r g b / 6%), rgb(from black r g b / 12%)), + 0px 7px 7px 0px + light-dark(rgb(from #564848 r g b / 12%), rgb(from black r g b / 20%)), + 0px 2px 4px 0px + light-dark(rgb(from #564848 r g b / 14%), rgb(from black r g b / 30%)), + ), + ), +); + +@mixin elevation($elevation...) { + box-shadow: map-get-strict($elevations, $elevation...); +} + +@mixin h3 { + font-size: font-size("2xl"); + font-style: normal; + font-weight: font-weight("medium"); + line-height: 125%; + letter-spacing: letter-spacing("tighter"); + margin: 0; +} + +@mixin h4 { + font-size: font-size("xl"); + font-style: normal; + font-weight: font-weight("medium"); + line-height: 125%; + letter-spacing: letter-spacing("tight"); + margin: 0; +} + +@mixin text($size: "base", $weight: "normal") { + font-size: font-size($size); + font-weight: font-weight($weight); + margin: 0; + font-style: normal; + line-height: normal; +} diff --git a/packages/next-root/src/index.tsx b/packages/next-root/src/index.tsx index 982b66726c..769f904abb 100644 --- a/packages/next-root/src/index.tsx +++ b/packages/next-root/src/index.tsx @@ -34,10 +34,10 @@ export const Root = ({ }: Props) => ( = 12'} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/table@3.15.5': - resolution: {integrity: sha512-bdNZF0ZoNOfyOEIK/ctv0llacaCNk8mv+GGy8mwh5bZeJjd8KuDIpYQtZJYvf2YVvPYRWyXRhF0/B229m65f/g==} + '@react-aria/switch@3.6.10': + resolution: {integrity: sha512-FtaI9WaEP1tAmra1sYlAkYXg9x75P5UtgY8pSbe9+1WRyWbuE1QZT+RNCTi3IU4fZ7iJQmXH6+VaMyzPlSUagw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/tabs@3.9.7': - resolution: {integrity: sha512-f78P2Y9ZCYtwOnteku9mPVIk21xSSREYWaQPtA9ebSgVbeR5ya6RpaX9ISc9cd0HEF3Av+hZYyS1pNXXWymv9g==} + '@react-aria/table@3.16.0': + resolution: {integrity: sha512-9xF9S3CJ7XRiiK92hsIKxPedD0kgcQWwqTMtj3IBynpQ4vsnRiW3YNIzrn9C3apjknRZDTSta8O2QPYCUMmw2A==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/tag@3.4.7': - resolution: {integrity: sha512-hreVvphUeYUfMN6gjM3+WouN2P/WGuR0rGpOrFk2HEnGDPg3Ar0isfdAaciTSBOc26CDKNgrmzRguxCmKKuqgw==} + '@react-aria/tabs@3.9.8': + resolution: {integrity: sha512-Nur/qRFBe+Zrt4xcCJV/ULXCS3Mlae+B89bp1Gl20vSDqk6uaPtGk+cS5k03eugOvas7AQapqNJsJgKd66TChw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/textfield@3.14.10': - resolution: {integrity: sha512-vG44FgxwfJUF2S6tRG+Sg646DDEgs0CO9RYniafEOHz8rwcNIH3lML7n8LAfzQa+BjBY28+UF0wmqEvd6VCzCQ==} + '@react-aria/tag@3.4.8': + resolution: {integrity: sha512-exWl52bsFtJuzaqMYvSnLteUoPqb3Wf+uICru/yRtREJsWVqjJF38NCVlU73Yqd9qMPTctDrboSZFAWAWKDxoA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/textfield@3.15.0': + resolution: {integrity: sha512-V5mg7y1OR6WXYHdhhm4FC7QyGc9TideVRDFij1SdOJrIo5IFB7lvwpOS0GmgwkVbtr71PTRMjZnNbrJUFU6VNA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 '@react-aria/toast@3.0.0-beta.16': resolution: {integrity: sha512-hIkpdfFf7/CvuEh1rp2zensEGJVq0mi8NuwVi0Spj5zN7WTgix0yuA5y6KuYr+SGurP32TXjpVg5rTwykYEwGQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/toggle@3.10.9': - resolution: {integrity: sha512-dtfnyIU2/kcH9rFAiB48diSmaXDv45K7UCuTkMQLjbQa3QHC1oYNbleVN/VdGyAMBsIWtfl8L4uuPrAQmDV/bg==} + '@react-aria/toggle@3.10.10': + resolution: {integrity: sha512-QwMT/vTNrbrILxWVHfd9zVQ3mV2NdBwyRu+DphVQiFAXcmc808LEaIX2n0lI6FCsUDC9ZejCyvzd91/YemdZ1Q==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/toolbar@3.0.0-beta.9': - resolution: {integrity: sha512-P80zgbPb0aIg22fHlgHRXXUSpNSAOnh1ljsLiSHAGdXPrC5nRijYwwKi7DNRsXqD+ljEJwF6ekZPo95dXXeYAA==} + '@react-aria/toolbar@3.0.0-beta.11': + resolution: {integrity: sha512-LM3jTRFNDgoEpoL568WaiuqiVM7eynSQLJis1hV0vlVnhTd7M7kzt7zoOjzxVb5Uapz02uCp1Fsm4wQMz09qwQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/tooltip@3.7.9': - resolution: {integrity: sha512-TqVJ7YqaP/enxNyA1QGr43w4nBZmOs6Hb/pROMS5afbX7gHgMVFn0lTRc6DC2cvcfgYc4WICs2QiQMniZt/E7A==} + '@react-aria/tooltip@3.7.10': + resolution: {integrity: sha512-Udi3XOnrF/SYIz72jw9bgB74MG/yCOzF5pozHj2FH2HiJlchYv/b6rHByV/77IZemdlkmL/uugrv/7raPLSlnw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/tree@3.0.0-beta.0': - resolution: {integrity: sha512-bF9sp7x+Ciy0N2KJwy8epmDoNblyVmeB4vR/KWLVIKMjANCpzTbvhWZUBpQxkpO0eupInU2uN+FMNr0WKMyd7Q==} + '@react-aria/tree@3.0.0-beta.2': + resolution: {integrity: sha512-lH3hVl2VgG3YLN+ee1zQzm+2F+BGLd/HBhfMYPuI3IjHvDb+m+jCJXHdBOGrfG2Qydk2LYheqX8QXCluulu0qQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 '@react-aria/utils@3.25.3': resolution: {integrity: sha512-PR5H/2vaD8fSq0H/UB9inNbc8KDcVmW6fYAfSWkkn+OAdhTTMVKqXXrZuZBWyFfSD5Ze7VN6acr4hrOQm2bmrA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/virtualizer@4.0.4': - resolution: {integrity: sha512-DszWqS29B9UoLS4mb5tAgLZKSVKR7IuDfjT+On9TSpcvm+HKS9wG6MVbqO0bh4zE+JGmp8Pnxfg92E7NUF0vgA==} + '@react-aria/utils@3.26.0': + resolution: {integrity: sha512-LkZouGSjjQ0rEqo4XJosS4L3YC/zzQkfRM3KoqK6fUOmUJ9t0jQ09WjiF+uOoG9u+p30AVg3TrZRUWmoTS+koQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-aria/visually-hidden@3.8.17': - resolution: {integrity: sha512-WFgny1q2CbxxU6gu46TGQXf1DjsnuSk+RBDP4M7bm1mUVZzoCp7U7AtjNmsBrWg0NejxUdgD7+7jkHHCQ91qRA==} + '@react-aria/virtualizer@4.1.0': + resolution: {integrity: sha512-ziSq3Y7iuaAMJWGZU1RRs/TykuPapQfx8dyH2eyKPLgEjBUoXRGWE7n6jklBwal14b0lPK0wkCzRoQbkUvX3cg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-aria/visually-hidden@3.8.18': + resolution: {integrity: sha512-l/0igp+uub/salP35SsNWq5mGmg3G5F5QMS1gDZ8p28n7CgjvzyiGhJbbca7Oxvaw1HRFzVl9ev+89I7moNnFQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 '@react-hookz/deep-equal@1.0.4': resolution: {integrity: sha512-N56fTrAPUDz/R423pag+n6TXWbvlBZDtTehaGFjK0InmN+V2OFWLE/WmORhmn6Ce7dlwH5+tQN1LJFw3ngTJVg==} @@ -7924,293 +7968,303 @@ packages: '@types/react': optional: true - '@react-stately/calendar@3.5.5': - resolution: {integrity: sha512-HzaiDRhrmaYIly8hRsjjIrydLkldiw1Ws6T/130NLQOt+VPwRW/x0R+nil42mA9LZ6oV0XN0NpmG5tn7TaKRGw==} + '@react-stately/calendar@3.6.0': + resolution: {integrity: sha512-GqUtOtGnwWjtNrJud8nY/ywI4VBP5byToNVRTnxbMl+gYO1Qe/uc5NG7zjwMxhb2kqSBHZFdkF0DXVqG2Ul+BA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/checkbox@3.6.9': - resolution: {integrity: sha512-JrY3ecnK/SSJPxw+qhGhg3YV4e0CpUcPDrVwY3mSiAE932DPd19xr+qVCknJ34H7JYYt/q0l2z0lmgPnl96RTg==} + '@react-stately/checkbox@3.6.10': + resolution: {integrity: sha512-LHm7i4YI8A/RdgWAuADrnSAYIaYYpQeZqsp1a03Og0pJHAlZL0ymN3y2IFwbZueY0rnfM+yF+kWNXjJqbKrFEQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/collections@3.11.0': - resolution: {integrity: sha512-TiJeJjHMPSbbeAhmCXLJNSCk0fa5XnCvEuYw6HtQzDnYiq1AD7KAwkpjC5NfKkjqF3FLXs/v9RDm/P69q6rYzw==} + '@react-stately/collections@3.12.0': + resolution: {integrity: sha512-MfR9hwCxe5oXv4qrLUnjidwM50U35EFmInUeFf8i9mskYwWlRYS0O1/9PZ0oF1M0cKambaRHKEy98jczgb9ycA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/color@3.8.0': - resolution: {integrity: sha512-lBH91HEStZeayhE/FkDMt9WC0UISQiAn8DoD2hfpTGeeWscX/soyxZA7oVL7zBOG9RfDBMNzF+CybVROrWSKAQ==} + '@react-stately/color@3.8.1': + resolution: {integrity: sha512-7eN7K+KJRu+rxK351eGrzoq2cG+yipr90i5b1cUu4lioYmcH4WdsfjmM5Ku6gypbafH+kTDfflvO6hiY1NZH+A==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/combobox@3.10.0': - resolution: {integrity: sha512-4W4HCCjjoddW/LZM3pSSeLoV7ncYXlaICKmqlBcbtLR5jY4U5Kx+pPpy3oJ1vCdjDHatIxZ0tVKEBP7vBQVeGQ==} + '@react-stately/combobox@3.10.1': + resolution: {integrity: sha512-Rso+H+ZEDGFAhpKWbnRxRR/r7YNmYVtt+Rn0eNDNIUp3bYaxIBCdCySyAtALs4I8RZXZQ9zoUznP7YeVwG3cLg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/data@3.11.7': - resolution: {integrity: sha512-2YJ+Lmca18f/h7jiZiU9j2IhBJl6BFO1BWlwvcCAH/eCWTdveX8gzsUdW++0szzpJaoCilTCYoi8z7QWyVH9jQ==} + '@react-stately/data@3.12.0': + resolution: {integrity: sha512-6PiW2oA56lcH1CVjDcajutzsv91w/PER8K61/OGxtNFFUWaIZH80RWmK4kjU/Lf0vygzXCxout3kEb388lUk0w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/datepicker@3.10.3': - resolution: {integrity: sha512-6PJW1QMwk6BQMktV9L6DA4f2rfAdLfbq3iTNLy4qxd5IfNPLMUZiJGGTj+cuqx0WcEl+q5irp+YhKBpbmhPZHg==} + '@react-stately/datepicker@3.11.0': + resolution: {integrity: sha512-d9MJF34A0VrhL5y5S8mAISA8uwfNCQKmR2k4KoQJm3De1J8SQeNzSjLviAwh1faDow6FXGlA6tVbTrHyDcBgBg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/disclosure@3.0.0-alpha.0': - resolution: {integrity: sha512-CbFUrEwhsP5+44PMHipn/Cd61VTvqyKmx1yeNDyvj/4bYhmxYLgQp/Ma+iEqe23JkXJh2JO/ws3l9FnebScCJQ==} + '@react-stately/disclosure@3.0.0': + resolution: {integrity: sha512-Z9+fi0/41ZXHjGopORQza7mk4lFEFslKhy65ehEo6O6j2GuIV0659ExIVDsmJoJSFjXCfGh0sX8oTSOlXi9gqg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/dnd@3.4.3': - resolution: {integrity: sha512-sUvhmMxFEw6P2MW7walx0ntakIihxdPxA06K9YZ3+ReaUvzQuRw5cFDaTTHrlegWRMYD0CyQaKlGIaTQihhvVA==} + '@react-stately/dnd@3.5.0': + resolution: {integrity: sha512-ZcWFw1npEDnATiy3TEdzA1skQ3UEIyfbNA6VhPNO8yiSVLxoxBOaEaq8VVS72fRGAtxud6dgOy8BnsP9JwDClQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/flags@3.0.4': - resolution: {integrity: sha512-RNJEkOALwKg+JeYsfNlfPc4GXm7hiBLX0yuHOkRapWEyDOfi0cinkV/TZG4goOZdQ5tBpHmemf2qqiHAxqHlzQ==} + '@react-stately/flags@3.0.5': + resolution: {integrity: sha512-6wks4csxUwPCp23LgJSnkBRhrWpd9jGd64DjcCTNB2AHIFu7Ab1W59pJpUL6TW7uAxVxdNKjgn6D1hlBy8qWsA==} - '@react-stately/form@3.0.6': - resolution: {integrity: sha512-KMsxm3/V0iCv/6ikt4JEjVM3LW2AgCzo7aNotMzRobtwIo0RwaUo7DQNY00rGgFQ3/IjzI6DcVo13D+AVE/zXg==} + '@react-stately/form@3.1.0': + resolution: {integrity: sha512-E2wxNQ0QaTyDHD0nJFtTSnEH9A3bpJurwxhS4vgcUmESHgjFEMLlC9irUSZKgvOgb42GAq+fHoWBsgKeTp9Big==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/grid@3.9.3': - resolution: {integrity: sha512-P5KgCNYwm/n8bbLx6527li89RQWoESikrsg2MMyUpUd6IJ321t2pGONGRRQzxE0SBMolPRDJKV0Do2OlsjYKhQ==} + '@react-stately/grid@3.10.0': + resolution: {integrity: sha512-ii+DdsOBvCnHMgL0JvUfFwO1kiAPP19Bpdpl6zn/oOltk6F5TmnoyNrzyz+2///1hCiySI3FE1O7ujsAQs7a6Q==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/layout@4.0.3': - resolution: {integrity: sha512-zFLXnPalWWVCdFGcPAb+nywSTz/xAnKRxb7zT+YDa5U80DHArDGKZcQ+by0+2Sf8yaYolROco4my+BERPXJB6A==} + '@react-stately/layout@4.1.0': + resolution: {integrity: sha512-pSBqn+4EeOaf2QMK+w2SHgsWKYHdgMZWY3qgJijdzWGZ4JpYmHuiD0yOq80qFdUwxcexPW3vFg3hqIQlMpXeCw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/list@3.11.0': - resolution: {integrity: sha512-O+BxXcbtoLZWn4QIT54RoFUaM+QaJQm6s0ZBJ3Jv4ILIhukVOc55ra+aWMVlXFQSpbf6I3hyVP6cz1yyvd5Rtw==} + '@react-stately/list@3.11.1': + resolution: {integrity: sha512-UCOpIvqBOjwLtk7zVTYWuKU1m1Oe61Q5lNar/GwHaV1nAiSQ8/yYlhr40NkBEs9X3plEfsV28UIpzOrYnu1tPg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/menu@3.8.3': - resolution: {integrity: sha512-sV63V+cMgzipx/N7dq5GaXoItfXIfFEpCtlk3PM2vKstlCJalszXrdo+x996bkeU96h0plB7znAlhlXOeTKzUg==} + '@react-stately/menu@3.9.0': + resolution: {integrity: sha512-++sm0fzZeUs9GvtRbj5RwrP+KL9KPANp9f4SvtI3s+MP+Y/X3X7LNNePeeccGeyikB5fzMsuyvd82bRRW9IhDQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/numberfield@3.9.7': - resolution: {integrity: sha512-PjSgCCpYasGCEAznFQNqa2JhhEQ5+/2eMiV7ZI5j76q3edTNF8G5OOCl2RazDbzFp6vDAnRVT7Kctx5Tl5R/Zw==} + '@react-stately/numberfield@3.9.8': + resolution: {integrity: sha512-J6qGILxDNEtu7yvd3/y+FpbrxEaAeIODwlrFo6z1kvuDlLAm/KszXAc75yoDi0OtakFTCMP6/HR5VnHaQdMJ3w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/overlays@3.6.11': - resolution: {integrity: sha512-usuxitwOx4FbmOW7Og4VM8R8ZjerbHZLLbFaxZW7pWLs7Ypway1YhJ3SWcyNTYK7NEk4o602kSoU6MSev1Vgag==} + '@react-stately/overlays@3.6.12': + resolution: {integrity: sha512-QinvZhwZgj8obUyPIcyURSCjTZlqZYRRCS60TF8jH8ZpT0tEAuDb3wvhhSXuYA3Xo9EHLwvLjEf3tQKKdAQArw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/radio@3.10.8': - resolution: {integrity: sha512-VRq6Gzsbk3jzX6hdrSoDoSra9vLRsOi2pLkvW/CMrJ0GSgMwr8jjvJKnNFvYJ3eYQb20EwkarsOAfk7vPSIt/Q==} + '@react-stately/radio@3.10.9': + resolution: {integrity: sha512-kUQ7VdqFke8SDRCatw2jW3rgzMWbvw+n2imN2THETynI47NmNLzNP11dlGO2OllRtTrsLhmBNlYHa3W62pFpAw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/searchfield@3.5.7': - resolution: {integrity: sha512-VxEG4tWDypdXQ8f7clZBu5Qmc4osqDBeA/gNMA2i1j/h2zRVcCJ0fRCHuDeXLSWBqF1XXAI4TWV53fBBwJusbg==} + '@react-stately/searchfield@3.5.8': + resolution: {integrity: sha512-jtquvGadx1DmtQqPKaVO6Qg/xpBjNxsOd59ciig9xRxpxV+90i996EX1E2R6R+tGJdSM1pD++7PVOO4yE++HOg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/select@3.6.8': - resolution: {integrity: sha512-fLAVzGeYSdYdBdrEVws6Pb1ywFPdapA0eWphoW5s3fS0/pKcVWwbCHeHlaBEi1ISyqEubQZFGQdeFKm/M46Hew==} + '@react-stately/select@3.6.9': + resolution: {integrity: sha512-vASUDv7FhEYQURzM+JIwcusPv7/x/l3zHc/oKJPvoCl3aa9pwS8hZwS82SC00o2iFnrDscfDJju4IE/cd4hucg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/selection@3.17.0': - resolution: {integrity: sha512-It3LRTaFOavybuDBvBH2mvCh73OL4awqvN4tZ0JzLzMtaYSBe9+YmFasYrzB0o7ca17B2q1tpUmsNWaAgIqbLA==} + '@react-stately/selection@3.18.0': + resolution: {integrity: sha512-6EaNNP3exxBhW2LkcRR4a3pg+3oDguZlBSqIVVR7lyahv/D8xXHRC4dX+m0mgGHJpsgjs7664Xx6c8v193TFxg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/slider@3.5.8': - resolution: {integrity: sha512-EDgbrxMq1w3+XTN72MGl3YtAG/j65EYX1Uc3Fh56K00+inJbTdRWyYTrb3NA310fXCd0WFBbzExuH2ohlKQycg==} + '@react-stately/slider@3.6.0': + resolution: {integrity: sha512-w5vJxVh267pmD1X+Ppd9S3ZzV1hcg0cV8q5P4Egr160b9WMcWlUspZPtsthwUlN7qQe/C8y5IAhtde4s29eNag==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/table@3.12.3': - resolution: {integrity: sha512-8uGrLcNJYeMbFtzRQZFWCBj5kV+7v3jzwoKIL1j9TmYUKow1PTDMQbPJpAZLQhnC2wVMlaFVgDbedSlbBij7Zg==} + '@react-stately/table@3.13.0': + resolution: {integrity: sha512-mRbNYrwQIE7xzVs09Lk3kPteEVFVyOc20vA8ph6EP54PiUf/RllJpxZe/WUYLf4eom9lUkRYej5sffuUBpxjCA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/tabs@3.6.10': - resolution: {integrity: sha512-F7wfoiNsrBy7c02AYHyE1USGgj05HQ0hp7uXmQjp2LEa+AA0NKKi3HdswTHHySxb0ZRuoEE7E7vp/gXQYx2/Ow==} + '@react-stately/tabs@3.7.0': + resolution: {integrity: sha512-ox4hTkfZCoR4Oyr3Op3rBlWNq2Wxie04vhEYpTZQ2hobR3l4fYaOkd7CPClILktJ3TC104j8wcb0knWxIBRx9w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 '@react-stately/toast@3.0.0-beta.6': resolution: {integrity: sha512-ffvWaigbyNd7QfubTs2cKNRsFywBcbYA/WaSerKM2iw0ek9F+C7zb+9F7Ms3mdM4BGTh0JqmuMQTRXTI0sAxBw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/toggle@3.7.8': - resolution: {integrity: sha512-ySOtkByvIY54yIu8IZ4lnvomQA0H+/mkZnd6T5fKN3tjvIzHmkUk3TAPmNInUxHX148tSW6mWwec0xvjYqEd6w==} + '@react-stately/toggle@3.8.0': + resolution: {integrity: sha512-pyt/k/J8BwE/2g6LL6Z6sMSWRx9HEJB83Sm/MtovXnI66sxJ2EfQ1OaXB7Su5PEL9OMdoQF6Mb+N1RcW3zAoPw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/tooltip@3.4.13': - resolution: {integrity: sha512-zQ+8FQ7Pi0Cz852dltXb6yaryjE18K3byK4tIO3e5vnrZHEGvfdxowc+v9ak5UV93kVrYoOVmfZHRcEaTXTBNA==} + '@react-stately/tooltip@3.5.0': + resolution: {integrity: sha512-+xzPNztJDd2XJD0X3DgWKlrgOhMqZpSzsIssXeJgO7uCnP8/Z513ESaipJhJCFC8fxj5caO/DK4Uu8hEtlB8cQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-stately/tree@3.8.5': - resolution: {integrity: sha512-0/tYhsKWQQJTOZFDwh8hY3Qk6ejNFRldGrLeK5kS22UZdvsMFyh7WAi40FTCJy561/VoB0WqQI4oyNPOa9lYWg==} + '@react-stately/tree@3.8.6': + resolution: {integrity: sha512-lblUaxf1uAuIz5jm6PYtcJ+rXNNVkqyFWTIMx6g6gW/mYvm8GNx1G/0MLZE7E6CuDGaO9dkLSY2bB1uqyKHidA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 '@react-stately/utils@3.10.4': resolution: {integrity: sha512-gBEQEIMRh5f60KCm7QKQ2WfvhB2gLUr9b72sqUdIZ2EG+xuPgaIlCBeSicvjmjBvYZwOjoOEnmIkcx2GHp/HWw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/virtualizer@4.1.0': - resolution: {integrity: sha512-MOaqpY3NloXrpCBvVUb3HL1p3Bh4YRtUq8D2ufC909u5vM6n6G5Swk1XPJ9KHfaftGhb5serwLkm2/Aha5CTbA==} + '@react-stately/utils@3.10.5': + resolution: {integrity: sha512-iMQSGcpaecghDIh3mZEpZfoFH3ExBwTtuBEcvZ2XnGzCgQjeYXcMdIUwAfVQLXFTdHUHGF6Gu6/dFrYsCzySBQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/accordion@3.0.0-alpha.24': - resolution: {integrity: sha512-hwDT4TJH7aHCG8m9QsTP+7xgW7x7k2TY+WHlMRr6qDS6WhTCwd41dCdagxC0SZtulzZuWqISBxZifVrh4Tynew==} + '@react-stately/virtualizer@4.2.0': + resolution: {integrity: sha512-aTMpa9AQoz/xLqn8AI1BR/caUUY7/OUo9GbuF434w2u5eGCL7+SAn3Fmq7WSCwqYyDsO+jEIERek4JTX7pEW0A==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/breadcrumbs@3.7.8': - resolution: {integrity: sha512-+BW2a+PrY8ArZ+pKecz13oJFrUAhthvXx17o3x0BhWUhRpAdtmTYt2hjw8zNanm2j0Kvgo1HYKgvtskCRxYcOA==} + '@react-types/breadcrumbs@3.7.9': + resolution: {integrity: sha512-eARYJo8J+VfNV8vP4uw3L2Qliba9wLV2bx9YQCYf5Lc/OE5B/y4gaTLz+Y2P3Rtn6gBPLXY447zCs5i7gf+ICg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 '@react-types/button@3.10.0': resolution: {integrity: sha512-rAyU+N9VaHLBdZop4zasn8IDwf9I5Q1EzHUKMtzIFf5aUlMUW+K460zI/l8UESWRSWAXK9/WPSXGxfcoCEjvAA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/calendar@3.4.10': - resolution: {integrity: sha512-PyjqxwJxSW2IpQx6y0D9O34fRCWn1gv9q0qFhgaIigIQrPg8zTE/CC7owHLxAtgCnnCt8exJ5rqi414csaHKlA==} + '@react-types/button@3.10.1': + resolution: {integrity: sha512-XTtap8o04+4QjPNAshFWOOAusUTxQlBjU2ai0BTVLShQEjHhRVDBIWsI2B2FKJ4KXT6AZ25llaxhNrreWGonmA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/checkbox@3.8.4': - resolution: {integrity: sha512-fvZrlQmlFNsYHZpl7GVmyYQlKdUtO5MczMSf8z3TlSiCb5Kl3ha9PsZgLhJqGuVnzB2ArIBz0eZrYa3k0PhcpA==} + '@react-types/calendar@3.5.0': + resolution: {integrity: sha512-O3IRE7AGwAWYnvJIJ80cOy7WwoJ0m8GtX/qSmvXQAjC4qx00n+b5aFNBYAQtcyc3RM5QpW6obs9BfwGetFiI8w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/color@3.0.0': - resolution: {integrity: sha512-VUH8CROAM69GsMBilrJ1xyAdVsWL01nXQYrkZJxAEApv1OrcpIGSdsXLcGrjsrhjjiNVXxWFnqYRMsKkLzIl7g==} + '@react-types/checkbox@3.9.0': + resolution: {integrity: sha512-9hbHx0Oo2Hp5a8nV8Q75LQR0DHtvOIJbFaeqESSopqmV9EZoYjtY/h0NS7cZetgahQgnqYWQi44XGooMDCsmxA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/combobox@3.13.0': - resolution: {integrity: sha512-kH/a+Fjpr54M2JbHg9RXwMjZ9O+XVsdOuE5JCpWRibJP1Mfl1md8gY6y6zstmVY8COrSqFvMZWB+PzwaTWjTGw==} + '@react-types/color@3.0.1': + resolution: {integrity: sha512-KemFziO3GbmT3HEKrgOGdqNA6Gsmy9xrwFO3f8qXSG7gVz6M27Ic4R9HVQv4iAjap5uti6W13/pk2bc/jLVcEA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/datepicker@3.8.3': - resolution: {integrity: sha512-Y4qfPRBB6uzocosCOWSYMuwiZ3YXwLWQYiFB4KCglkvHyltbNz76LgoBEnclYA5HjwosIk4XywiXvHSYry8JnQ==} + '@react-types/combobox@3.13.1': + resolution: {integrity: sha512-7xr+HknfhReN4QPqKff5tbKTe2kGZvH+DGzPYskAtb51FAAiZsKo+WvnNAvLwg3kRoC9Rkn4TAiVBp/HgymRDw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/dialog@3.5.13': - resolution: {integrity: sha512-9k8daVcAqQsySkzDY6NIVlyGxtpEip4TKuLyzAehthbv78GQardD5fHdjQ6eXPRS4I2qZrmytrFFrlOnwWVGHw==} + '@react-types/datepicker@3.9.0': + resolution: {integrity: sha512-dbKL5Qsm2MQwOTtVQdOcKrrphcXAqDD80WLlSQrBLg+waDuuQ7H+TrvOT0thLKloNBlFUGnZZfXGRHINpih/0g==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/form@3.7.7': - resolution: {integrity: sha512-CVRjCawPhYRHi/LuikOC2kz5vgvmjjKmF4/wUgR2QzD1Ok4wY1ZGSx9M9EZptCIZAt2mToR6woyLUdtzy+foeQ==} + '@react-types/dialog@3.5.14': + resolution: {integrity: sha512-OXWMjrALwrlgw8aHD8SeRm/s3tbAssdaEh2h73KUSeFau3fU3n5mfKv+WnFqsEaOtN261o48l7hTlS6615H9AA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/grid@3.2.9': - resolution: {integrity: sha512-eMw0d2UIZ4QTzGgD1wGGPw0cv67KjAOCp4TcwWjgDV7Wa5SVV/UvOmpnIVDyfhkG/4KRI5OR9h+isy76B726qA==} + '@react-types/form@3.7.8': + resolution: {integrity: sha512-0wOS97/X0ijTVuIqik1lHYTZnk13QkvMTKvIEhM7c6YMU3vPiirBwLbT2kJiAdwLiymwcCkrBdDF1NTRG6kPFA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/link@3.5.8': - resolution: {integrity: sha512-l/YGXddgAbLnIT7ekftXrK1D4n8NlLQwx0d4usyZpaxP1KwPzuwng20DxynamLc1atoKBqbUtZAnz32pe7vYgw==} + '@react-types/grid@3.2.10': + resolution: {integrity: sha512-Z5cG0ITwqjUE4kWyU5/7VqiPl4wqMJ7kG/ZP7poAnLmwRsR8Ai0ceVn+qzp5nTA19cgURi8t3LsXn3Ar1FBoog==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/listbox@3.5.2': - resolution: {integrity: sha512-ML/Bt/MeO0FiixcuFQ+smpu1WguxTOqHDjSnhc1vcNxVQFWQOhyVy01LAY2J/T9TjfjyYGD41vyMTI0f6fcLEQ==} + '@react-types/link@3.5.9': + resolution: {integrity: sha512-JcKDiDMqrq/5Vpn+BdWQEuXit4KN4HR/EgIi3yKnNbYkLzxBoeQZpQgvTaC7NEQeZnSqkyXQo3/vMUeX/ZNIKw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/menu@3.9.12': - resolution: {integrity: sha512-1SPnkHKJdvOfwv9fEgK1DI6DYRs4D3hW2XcWlLhVXSjaC68CzOHGwFhKIKvZiDTW/11L770PRSEloIxHR09uFQ==} + '@react-types/listbox@3.5.3': + resolution: {integrity: sha512-v1QXd9/XU3CCKr2Vgs7WLcTr6VMBur7CrxHhWZQQFExsf9bgJ/3wbUdjy4aThY/GsYHiaS38EKucCZFr1QAfqA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/meter@3.4.4': - resolution: {integrity: sha512-0SEmPkShByC1gYkW7l+iJPg8QfEe2VrgwTciAtTfC4KIqAYmJVQtq6L+4d72EMxOh8RpQHePaY/RFHEJXAh72A==} + '@react-types/menu@3.9.13': + resolution: {integrity: sha512-7SuX6E2tDsqQ+HQdSvIda1ji/+ujmR86dtS9CUu5yWX91P25ufRjZ72EvLRqClWNQsj1Xl4+2zBDLWlceznAjw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/numberfield@3.8.6': - resolution: {integrity: sha512-VtWEMAXUO1S9EEZI8whc7xv6DVccxhbWsRthMCg/LxiwU3U5KAveadNc2c5rtXkRpd3cnD5xFzz3dExXdmHkAg==} + '@react-types/meter@3.4.5': + resolution: {integrity: sha512-04w1lEtvP/c3Ep8ND8hhH2rwjz2MtQ8o8SNLhahen3u0rX3jKOgD4BvHujsyvXXTMjj1Djp74sGzNawb4Ppi9w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/overlays@3.8.10': - resolution: {integrity: sha512-IcnB+VYfAJazRjWhBKZTmVMh3KTp/B1rRbcKkPx6t8djP9UQhKcohP7lAALxjJ56Jjz/GFC6rWyUcnYH0NFVRA==} + '@react-types/numberfield@3.8.7': + resolution: {integrity: sha512-KccMPi39cLoVkB2T0V7HW6nsxQVAwt89WWCltPZJVGzsebv/k0xTQlPVAgrUake4kDLoE687e3Fr/Oe3+1bDhw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/progress@3.5.7': - resolution: {integrity: sha512-EqMDHmlpoZUZzTjdejGIkSM0pS2LBI9NdadHf3bDNTycHv+5L1xpMHUg8RGOW8a3sRVLRvfN1aO9l75QZkyj+w==} + '@react-types/overlays@3.8.11': + resolution: {integrity: sha512-aw7T0rwVI3EuyG5AOaEIk8j7dZJQ9m34XAztXJVZ/W2+4pDDkLDbJ/EAPnuo2xGYRGhowuNDn4tDju01eHYi+w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/radio@3.8.4': - resolution: {integrity: sha512-GCuOwQL19iwKa74NAIk9hv4ivyI8oW1+ZCuc2fzyDdeQjzTIlv3qrIyShwpVy1IoI7/4DYTMZm/YXPoKhu5TTA==} + '@react-types/progress@3.5.8': + resolution: {integrity: sha512-PR0rN5mWevfblR/zs30NdZr+82Gka/ba7UHmYOW9/lkKlWeD7PHgl1iacpd/3zl/jUF22evAQbBHmk1mS6Mpqw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/searchfield@3.5.9': - resolution: {integrity: sha512-c/x8BWpH1Zq+fWpeBtzw2AhQhGi7ahWPicV7PlnqwIGO0MrH/QCjX0dj+I+1xpcAh8Eq6ECa79HE74Rw6aJmFg==} + '@react-types/radio@3.8.5': + resolution: {integrity: sha512-gSImTPid6rsbJmwCkTliBIU/npYgJHOFaI3PNJo7Y0QTAnFelCtYeFtBiWrFodSArSv7ASqpLLUEj9hZu/rxIg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/select@3.9.7': - resolution: {integrity: sha512-Jva4ixfB4EEdy+WmZkUoLiQI7vVfHPxM73VuL7XDxvAO+YKiIztDTcU720QVNhxTMmQvCxfRBXWar8aodCjLiw==} + '@react-types/searchfield@3.5.10': + resolution: {integrity: sha512-7wW4pJzbReawoGPu8a4l+CODTCDN088EN/ysUzl622ewim57PjArjix+lpO4+aEtJqS9HKpq8UEbjwo9axpcUA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/select@3.9.8': + resolution: {integrity: sha512-RGsYj2oFjXpLnfcvWMBQnkcDuKkwT43xwYWZGI214/gp/B64tJiIUgTM5wFTRAeGDX23EePkhCQF+9ctnqFd6g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 '@react-types/shared@3.25.0': resolution: {integrity: sha512-OZSyhzU6vTdW3eV/mz5i6hQwQUhkRs7xwY2d1aqPvTdMe0+2cY7Fwp45PAiwYLEj73i9ro2FxF9qC4DvHGSCgQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/slider@3.7.6': - resolution: {integrity: sha512-z72wnEzSge6qTD9TUoUPp1A4j4jXk/MVii6rGE78XeE/Pq7HyyjU5bCagryMr9PC9MKa/oTiHcshKqWBDf57GA==} + '@react-types/shared@3.26.0': + resolution: {integrity: sha512-6FuPqvhmjjlpEDLTiYx29IJCbCNWPlsyO+ZUmCUXzhUv2ttShOXfw8CmeHWHftT/b2KweAWuzqSlfeXPR76jpw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/switch@3.5.6': - resolution: {integrity: sha512-gJ8t2yTCgcitz4ON4ELcLLmtlDkn2MUjjfu3ez/cwA1X/NUluPYkhXj5Z6H+KOlnveqrKCZDRoTgK74cQ6Cvfg==} + '@react-types/slider@3.7.7': + resolution: {integrity: sha512-lYTR9zXQV2fSEm/G3gwDENWiki1IXd/oorsgf0zu1DBi2SQDbOsLsGUXiwvD24Xy6OkUuhAqjLPPexezo7+u9g==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/table@3.10.2': - resolution: {integrity: sha512-YzA4hcsYfnFFpA2UyGb1KKhLpWgaj5daApqjp126tCIosl8k1KxZmhKD50cwH0Jm19lALJseqo5VdlcJtcr4qg==} + '@react-types/switch@3.5.7': + resolution: {integrity: sha512-1IKiq510rPTHumEZuhxuazuXBa2Cuxz6wBIlwf3NCVmgWEvU+uk1ETG0sH2yymjwCqhtJDKXi+qi9HSgPEDwAg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/tabs@3.3.10': - resolution: {integrity: sha512-s/Bw/HCIdWJPBw4O703ghKqhjGsIerRMIDxA88hbQYzfTDD6bkFDjCnsP2Tyy1G8Dg2rSPFUEE+k+PpLzqeEfQ==} + '@react-types/table@3.10.3': + resolution: {integrity: sha512-Ac+W+m/zgRzlTU8Z2GEg26HkuJFswF9S6w26r+R3MHwr8z2duGPvv37XRtE1yf3dbpRBgHEAO141xqS2TqGwNg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/textfield@3.9.7': - resolution: {integrity: sha512-vU5+QCOF9HgWGjAmmy+cpJibVW5voFomC5POmYHokm7kivYcMMjlonsgWwg/0xXrqE2qosH3tpz4jFoEuig1NQ==} + '@react-types/tabs@3.3.11': + resolution: {integrity: sha512-BjF2TqBhZaIcC4lc82R5pDJd1F7kstj1K0Nokhz99AGYn8C0ITdp6lR+DPVY9JZRxKgP9R2EKfWGI90Lo7NQdA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - '@react-types/tooltip@3.4.12': - resolution: {integrity: sha512-FwsdSQ3UDIDORanQMGMLyzSUabw4AkKhwcRdPv4d5OT8GmJr7mBdZynfcsrKLJ0fzskIypMqspoutZidsI0MQg==} + '@react-types/textfield@3.10.0': + resolution: {integrity: sha512-ShU3d6kLJGQjPXccVFjM3KOXdj3uyhYROqH9YgSIEVxgA9W6LRflvk/IVBamD9pJYTPbwmVzuP0wQkTDupfZ1w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + + '@react-types/tooltip@3.4.13': + resolution: {integrity: sha512-KPekFC17RTT8kZlk7ZYubueZnfsGTDOpLw7itzolKOXGddTXsrJGBzSB4Bb060PBVllaDO0MOrhPap8OmrIl1Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 '@redux-saga/core@1.3.0': resolution: {integrity: sha512-L+i+qIGuyWn7CIg7k1MteHGfttKPmxwZR5E7OsGikCL2LzYA0RERlaUY00Y3P3ZV2EYgrsYlBrGs6cJP5OKKqA==} @@ -11376,11 +11430,11 @@ packages: apollo-datasource@3.3.2: resolution: {integrity: sha512-L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg==} engines: {node: '>=12.0'} - deprecated: The `apollo-datasource` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. + deprecated: The `apollo-datasource` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. apollo-reporting-protobuf@3.4.0: resolution: {integrity: sha512-h0u3EbC/9RpihWOmcSsvTW2O6RXVaD/mPEjfrPkxRPTEPWqncsgOoRJw+wih4OqfH3PvTJvoEIf4LwKrUaqWog==} - deprecated: The `apollo-reporting-protobuf` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/usage-reporting-protobuf` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. + deprecated: The `apollo-reporting-protobuf` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/usage-reporting-protobuf` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. apollo-server-core@3.13.0: resolution: {integrity: sha512-v/g6DR6KuHn9DYSdtQijz8dLOkP78I5JSVJzPkARhDbhpH74QNwrQ2PP2URAPPEDJ2EeZNQDX8PvbYkAKqg+kg==} @@ -11392,12 +11446,12 @@ packages: apollo-server-env@4.2.1: resolution: {integrity: sha512-vm/7c7ld+zFMxibzqZ7SSa5tBENc4B0uye9LTfjJwGoQFY5xsUPH5FpO5j0bMUDZ8YYNbrF9SNtzc5Cngcr90g==} engines: {node: '>=12.0'} - deprecated: The `apollo-server-env` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/utils.fetcher` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. + deprecated: The `apollo-server-env` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/utils.fetcher` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. apollo-server-errors@3.3.1: resolution: {integrity: sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==} engines: {node: '>=12.0'} - deprecated: The `apollo-server-errors` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. + deprecated: The `apollo-server-errors` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: graphql: ^15.3.0 || ^16.0.0 @@ -11412,14 +11466,14 @@ packages: apollo-server-plugin-base@3.7.2: resolution: {integrity: sha512-wE8dwGDvBOGehSsPTRZ8P/33Jan6/PmL0y0aN/1Z5a5GcbFhDaaJCjK5cav6npbbGL2DPKK0r6MPXi3k3N45aw==} engines: {node: '>=12.0'} - deprecated: The `apollo-server-plugin-base` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. + deprecated: The `apollo-server-plugin-base` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: graphql: ^15.3.0 || ^16.0.0 apollo-server-types@3.8.0: resolution: {integrity: sha512-ZI/8rTE4ww8BHktsVpb91Sdq7Cb71rdSkXELSwdSR0eXu600/sY+1UXhTWdiJvk+Eq5ljqoHLwLbY2+Clq2b9A==} engines: {node: '>=12.0'} - deprecated: The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now deprecated (end-of-life October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. + deprecated: The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details. peerDependencies: graphql: ^15.3.0 || ^16.0.0 @@ -19557,17 +19611,17 @@ packages: resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true - react-aria-components@1.4.0: - resolution: {integrity: sha512-CpeSeGI2FVT3hOzA28fhIGkrPPQPtz3gVHBfMWkXSuLUBaKFZQhdCLBXlpO5MoZV1RrC+e7mhOVREkw6DvlxKw==} + react-aria-components@1.5.0: + resolution: {integrity: sha512-wzf0g6cvWrqAJd4FkisAfFnslx6AJREgOd/NEmVE/RGuDxGTzss4awcwbo98rIVmqbTTFApiygy0SyWGrRZfDA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 - react-aria@3.35.0: - resolution: {integrity: sha512-cbbd3iIveLDRnpVrpc1iuz8OMlDdH6u8EjncW3MQuYOiEGaho9xcDtWMKiSEIZASEnd7LK4Rgm5iVPr2O+cssw==} + react-aria@3.36.0: + resolution: {integrity: sha512-AK5XyIhAN+e5HDlwlF+YwFrOrVI7RYmZ6kg/o7ZprQjkYqYKapXeUpWscmNm/3H2kDboE5Z4ymUnK6ZhobLqOw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 react-colorful@5.6.1: resolution: {integrity: sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==} @@ -19707,10 +19761,10 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-stately@3.33.0: - resolution: {integrity: sha512-DNPOxYAPuhuXwSuE1s1K7iSgqG2QOBUZq3bsLAd4gUUZje6Qepkhe7TzK2LWarQYAZ3gC9Xhmnz8ie1fdCo0GA==} + react-stately@3.34.0: + resolution: {integrity: sha512-0N9tZ8qQ/CxpJH7ao0O6gr+8955e7VrOskg9N+TIxkFknPetwOCtgppMYhnTfteBV8WfM/vv4OC1NbkgYTqXJA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1 react-transition-group@4.4.5: resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} @@ -23924,19 +23978,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 @@ -24008,19 +24049,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 @@ -24068,13 +24096,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 @@ -24263,16 +24284,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 @@ -24313,16 +24324,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 @@ -24369,15 +24370,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 @@ -24394,13 +24386,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 @@ -24444,15 +24429,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 @@ -24690,16 +24666,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 @@ -24716,12 +24682,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 @@ -24746,11 +24706,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 @@ -24774,12 +24729,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 @@ -24792,12 +24741,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 @@ -24810,12 +24753,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 @@ -24831,15 +24768,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 @@ -24855,12 +24783,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 @@ -24883,15 +24805,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 @@ -25008,11 +24921,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 @@ -25038,11 +24946,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 @@ -25143,11 +25046,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 @@ -25293,11 +25191,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 @@ -25346,11 +25239,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 @@ -25431,15 +25319,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 @@ -25494,11 +25373,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 @@ -25622,18 +25496,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 @@ -25676,12 +25538,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 @@ -25713,11 +25569,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 @@ -25839,12 +25690,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 @@ -25917,15 +25762,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 @@ -25978,11 +25814,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 @@ -26103,15 +25934,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 @@ -26223,12 +26045,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 @@ -26395,11 +26211,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 @@ -26425,11 +26236,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 @@ -26467,14 +26273,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 @@ -26522,15 +26320,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 @@ -26590,11 +26379,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 @@ -26620,11 +26404,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 @@ -26635,11 +26414,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 @@ -26683,17 +26457,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 @@ -26791,18 +26554,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 @@ -26840,11 +26591,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 @@ -26888,14 +26634,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 @@ -26929,11 +26667,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 @@ -27008,17 +26741,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 @@ -27098,12 +26820,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 @@ -28897,18 +28613,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-rc-603e6108-20241029))(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' @@ -31344,19 +31060,36 @@ snapshots: dependencies: '@swc/helpers': 0.5.13 + '@internationalized/date@3.6.0': + dependencies: + '@swc/helpers': 0.5.13 + '@internationalized/message@3.1.5': dependencies: '@swc/helpers': 0.5.13 intl-messageformat: 10.5.14 + '@internationalized/message@3.1.6': + dependencies: + '@swc/helpers': 0.5.13 + intl-messageformat: 10.5.14 + '@internationalized/number@3.5.4': dependencies: '@swc/helpers': 0.5.13 + '@internationalized/number@3.6.0': + dependencies: + '@swc/helpers': 0.5.13 + '@internationalized/string@3.2.4': dependencies: '@swc/helpers': 0.5.13 + '@internationalized/string@3.2.5': + dependencies: + '@swc/helpers': 0.5.13 + '@ipld/dag-pb@2.1.18': dependencies: multiformats: 9.9.0 @@ -32855,22 +32588,22 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/sdk-install-modal-web@0.26.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': + '@metamask/sdk-install-modal-web@0.26.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)': dependencies: i18next: 22.5.1 qr-code-styling: 1.6.0-rc.1 - react-i18next: 13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + react-i18next: 13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) optionalDependencies: react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) + react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) - '@metamask/sdk@0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)': + '@metamask/sdk@0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10)': dependencies: '@metamask/onboarding': 1.0.1 '@metamask/providers': 15.0.0 '@metamask/sdk-communication-layer': 0.26.0(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@metamask/sdk-install-modal-web': 0.26.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + '@metamask/sdk-install-modal-web': 0.26.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) '@types/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 cross-fetch: 4.0.0(encoding@0.1.13) @@ -32883,7 +32616,7 @@ snapshots: obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 - react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) + react-native-webview: 11.26.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029) readable-stream: 3.6.2 rollup-plugin-visualizer: 5.12.0 socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -33247,9 +32980,9 @@ snapshots: '@next/swc-win32-x64-msvc@15.0.3': 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.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)': 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) + 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 third-party-capital: 1.0.20 @@ -34420,316 +34153,283 @@ snapshots: dependencies: '@babel/runtime': 7.25.7 - '@react-aria/accordion@3.0.0-alpha.34(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/breadcrumbs@3.5.19(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/accordion': 3.0.0-alpha.24(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - react-dom: 18.3.1(react@18.3.1) - '@react-aria/accordion@3.0.0-alpha.34(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/button@3.11.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/accordion': 3.0.0-alpha.24(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@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/breadcrumbs@3.5.18(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/link': 3.7.6(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/breadcrumbs': 3.7.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 - - '@react-aria/button@3.10.1(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@swc/helpers': 0.5.13 - react: 19.0.0-rc-603e6108-20241029 - - '@react-aria/calendar@3.5.13(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@internationalized/date': 3.5.6 - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/calendar': 3.5.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/calendar@3.6.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + 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/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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/calendar@3.5.13(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@internationalized/date': 3.5.6 - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/calendar': 3.5.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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)': + 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/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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/checkbox@3.14.8(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/toggle': 3.10.9(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/checkbox': 3.6.9(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/collections@3.0.0-alpha.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/collections@3.0.0-alpha.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': 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.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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/collections@3.0.0-alpha.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/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)': 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.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) '@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.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/numberfield': 3.11.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/slider': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) - '@react-stately/color': 3.8.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/color': 3.0.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/color@3.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/numberfield': 3.11.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/slider': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.9(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) - '@react-stately/color': 3.8.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/color': 3.0.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/combobox@3.10.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/combobox': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/combobox': 3.13.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/combobox@3.11.0(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/listbox': 3.13.6(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/combobox@3.10.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/menu': 3.15.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.23.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/combobox': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/combobox': 3.13.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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)': + 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/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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/datepicker@3.11.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@internationalized/date': 3.5.6 - '@internationalized/number': 3.5.4 - '@internationalized/string': 3.2.4 - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/datepicker': 3.10.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/datepicker': 3.8.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/dialog': 3.5.13(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/datepicker@3.12.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + 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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/datepicker@3.11.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@internationalized/date': 3.5.6 - '@internationalized/number': 3.5.4 - '@internationalized/string': 3.2.4 - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.9(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/datepicker': 3.10.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/datepicker': 3.8.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/dialog': 3.5.13(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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)': + 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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/dialog@3.5.19(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)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/dialog': 3.5.13(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/dialog@3.5.19(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@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)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.23.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/dialog': 3.5.13(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/disclosure@3.0.0-alpha.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/disclosure@3.0.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/disclosure': 3.0.0-alpha.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/disclosure@3.0.0-alpha.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-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/disclosure': 3.0.0-alpha.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@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/dnd@3.7.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@internationalized/string': 3.2.4 - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/dnd': 3.4.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/dnd@3.8.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + 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/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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/dnd@3.7.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@internationalized/string': 3.2.4 - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/overlays': 3.23.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/dnd': 3.4.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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)': + 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/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) '@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) @@ -34743,79 +34443,88 @@ snapshots: clsx: 2.1.1 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/form@3.0.10(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/focus@3.19.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 + clsx: 2.1.1 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/grid@3.10.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/form@3.0.11(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/grid': 3.9.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) + '@swc/helpers': 0.5.13 + 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)': + 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/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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/grid@3.10.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/grid': 3.9.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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)': + 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/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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/gridlist@3.9.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/grid': 3.10.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/gridlist@3.9.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/grid': 3.10.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@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) @@ -34832,6 +34541,18 @@ snapshots: '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 + '@react-aria/i18n@3.12.4(react@19.0.0-rc-603e6108-20241029)': + 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) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 + '@react-aria/interactions@3.22.3(react@19.0.0-rc-603e6108-20241029)': dependencies: '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) @@ -34848,10 +34569,18 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/label@3.7.12(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/interactions@3.22.5(react@19.0.0-rc-603e6108-20241029)': 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/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) + '@swc/helpers': 0.5.13 + react: 19.0.0-rc-603e6108-20241029 + + '@react-aria/label@3.7.13(react@19.0.0-rc-603e6108-20241029)': + 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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 @@ -34863,292 +34592,294 @@ snapshots: react: 19.0.0-rc-603e6108-20241029 use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) - '@react-aria/link@3.7.6(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/link@3.7.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/link': 3.5.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/listbox@3.13.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/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.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/listbox': 3.5.2(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/listbox@3.13.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@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)': dependencies: - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/listbox': 3.5.2(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer@3.4.0': + '@react-aria/live-announcer@3.4.1': dependencies: '@swc/helpers': 0.5.13 - '@react-aria/menu@3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/menu': 3.8.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/menu': 3.9.12(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/menu@3.15.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.23.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/menu': 3.8.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/menu': 3.9.12(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/meter@3.4.17(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/meter@3.4.18(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/progress': 3.4.17(react@19.0.0-rc-603e6108-20241029) - '@react-types/meter': 3.4.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/numberfield@3.11.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/numberfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/numberfield': 3.8.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/numberfield@3.11.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/spinbutton': 3.6.9(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/numberfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/numberfield': 3.8.6(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays@3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/overlays@3.23.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/progress@3.4.17(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/progress@3.4.18(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/progress': 3.5.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/radio@3.10.9(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/radio': 3.10.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/radio': 3.8.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/searchfield@3.7.10(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/searchfield@3.7.11(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/searchfield': 3.5.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/searchfield': 3.5.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/select@3.14.11(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) - '@react-stately/select': 3.6.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/select': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/select@3.14.11(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/menu': 3.15.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) - '@react-stately/select': 3.6.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/select': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@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/selection@3.20.1(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)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/selection@3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@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)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/separator@3.4.3(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/separator@3.4.4(react@19.0.0-rc-603e6108-20241029)': 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.26.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/slider@3.7.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.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/slider': 3.5.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/slider': 3.7.6(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/spinbutton@3.6.9(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/spinbutton@3.6.10(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/spinbutton@3.6.9(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/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)': dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-aria/i18n': 3.12.4(react@19.0.0-rc-603e6108-20241029) + '@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) '@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) @@ -35158,121 +34889,126 @@ snapshots: '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/switch@3.6.9(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/ssr@3.9.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/toggle': 3.10.9(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/switch': 3.5.6(react@19.0.0-rc-603e6108-20241029) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/table@3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/switch@3.6.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/grid': 3.10.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/flags': 3.0.4 - '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + '@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) + '@swc/helpers': 0.5.13 + 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)': + 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/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-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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/table@3.15.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/grid': 3.10.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/flags': 3.0.4 - '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + '@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)': + 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/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-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) '@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.7(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)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tabs': 3.6.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/tabs': 3.3.10(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/tabs@3.9.7(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': + '@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)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tabs': 3.6.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/tabs': 3.3.10(react@19.0.0-rc-603e6108-20241029) + '@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) '@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.7(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/gridlist': 3.9.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/tag@3.4.7(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@react-aria/gridlist': 3.9.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield@3.14.10(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/textfield@3.15.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/form': 3.0.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/textfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 @@ -35288,59 +35024,59 @@ snapshots: '@swc/helpers': 0.5.11 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/toggle@3.10.9(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/toggle@3.10.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/toolbar@3.0.0-beta.9(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/toolbar@3.0.0-beta.11(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/tooltip@3.7.9(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/tooltip@3.7.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tooltip': 3.4.13(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/tooltip': 3.4.12(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/tree@3.0.0-beta.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/tree@3.0.0-beta.2(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/gridlist': 3.9.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/tree@3.0.0-beta.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/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)': dependencies: - '@react-aria/gridlist': 3.9.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/button': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@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) @@ -35354,33 +35090,42 @@ snapshots: clsx: 2.1.1 react: 19.0.0-rc-603e6108-20241029 - '@react-aria/virtualizer@4.0.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/utils@3.26.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/virtualizer': 4.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) + '@swc/helpers': 0.5.13 + clsx: 2.1.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-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/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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 react-dom: 18.3.1(react@18.3.1) - '@react-aria/virtualizer@4.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-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)': dependencies: - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/virtualizer': 4.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@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/visually-hidden@3.8.17(react@19.0.0-rc-603e6108-20241029)': + '@react-aria/visually-hidden@3.8.18(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 @@ -35404,12 +35149,6 @@ snapshots: react-native: 0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) optional: true - '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))': - dependencies: - merge-options: 3.0.4 - react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) - optional: true - '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10))': dependencies: merge-options: 3.0.4 @@ -35578,13 +35317,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)) @@ -35641,55 +35373,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 @@ -35752,19 +35435,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 @@ -35800,28 +35470,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) @@ -35881,16 +35529,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 @@ -35921,15 +35559,6 @@ snapshots: optionalDependencies: '@types/react': types-react@19.0.0-rc.1 - '@react-native/virtualized-lists@0.74.84(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)': - dependencies: - invariant: 2.2.4 - nullthrows: 1.1.1 - react: 19.0.0-rc-603e6108-20241029 - react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) - optionalDependencies: - '@types/react': types-react@19.0.0-rc.1 - '@react-native/virtualized-lists@0.74.84(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)': dependencies: invariant: 2.2.4 @@ -35939,212 +35568,212 @@ snapshots: optionalDependencies: '@types/react': types-react@19.0.0-rc.1 - '@react-stately/calendar@3.5.5(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/calendar@3.6.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@internationalized/date': 3.5.6 - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/checkbox@3.6.9(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/checkbox@3.6.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/collections@3.11.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/collections@3.12.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/color@3.8.0(react@19.0.0-rc-603e6108-20241029)': - dependencies: - '@internationalized/number': 3.5.4 - '@internationalized/string': 3.2.4 - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/numberfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-stately/slider': 3.5.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/color': 3.0.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-stately/color@3.8.1(react@19.0.0-rc-603e6108-20241029)': + 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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/combobox@3.10.0(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.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) - '@react-stately/select': 3.6.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/combobox': 3.13.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/data@3.11.7(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/data@3.12.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/datepicker@3.10.3(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/datepicker@3.11.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@internationalized/date': 3.5.6 - '@internationalized/string': 3.2.4 - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/datepicker': 3.8.3(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/disclosure@3.0.0-alpha.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/disclosure@3.0.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@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-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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/dnd@3.4.3(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/dnd@3.5.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/flags@3.0.4': + '@react-stately/flags@3.0.5': dependencies: '@swc/helpers': 0.5.13 - '@react-stately/form@3.0.6(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/form@3.1.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/grid@3.9.3(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/grid@3.10.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/layout@4.0.3(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/layout@4.1.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/virtualizer': 4.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/list@3.11.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/list@3.11.1(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/menu@3.8.3(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/menu@3.9.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/menu': 3.9.12(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/numberfield@3.9.7(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/numberfield@3.9.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@internationalized/number': 3.5.4 - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/numberfield': 3.8.6(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/overlays@3.6.11(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/overlays@3.6.12(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/radio@3.10.8(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/radio@3.10.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/radio': 3.8.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/searchfield@3.5.7(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/searchfield@3.5.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/searchfield': 3.5.9(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/select@3.6.8(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/select@3.6.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/select': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/selection@3.17.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/selection@3.18.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/slider@3.5.8(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/slider@3.6.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/slider': 3.7.6(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/table@3.12.3(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/table@3.13.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/flags': 3.0.4 - '@react-stately/grid': 3.9.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + '@react-stately/collections': 3.12.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/tabs@3.6.10(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/tabs@3.7.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/tabs': 3.3.10(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 @@ -36154,26 +35783,27 @@ snapshots: react: 19.0.0-rc-603e6108-20241029 use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle@3.7.8(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/toggle@3.8.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/checkbox': 3.8.4(react@19.0.0-rc-603e6108-20241029) + '@react-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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/tooltip@3.4.13(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/tooltip@3.5.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) - '@react-types/tooltip': 3.4.12(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/tree@3.8.5(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/tree@3.8.6(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 @@ -36182,22 +35812,22 @@ snapshots: '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-stately/virtualizer@4.1.0(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/utils@3.10.5(react@19.0.0-rc-603e6108-20241029)': 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) '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-types/accordion@3.0.0-alpha.24(react@19.0.0-rc-603e6108-20241029)': + '@react-stately/virtualizer@4.2.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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) + '@swc/helpers': 0.5.13 react: 19.0.0-rc-603e6108-20241029 - '@react-types/breadcrumbs@3.7.8(react@19.0.0-rc-603e6108-20241029)': + '@react-types/breadcrumbs@3.7.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/link': 3.5.8(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-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/button@3.10.0(react@19.0.0-rc-603e6108-20241029)': @@ -36205,138 +35835,147 @@ snapshots: '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) react: 19.0.0-rc-603e6108-20241029 - '@react-types/calendar@3.4.10(react@19.0.0-rc-603e6108-20241029)': + '@react-types/button@3.10.1(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@internationalized/date': 3.5.6 - '@react-types/shared': 3.25.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-rc-603e6108-20241029 - '@react-types/checkbox@3.8.4(react@19.0.0-rc-603e6108-20241029)': + '@react-types/calendar@3.5.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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/color@3.0.0(react@19.0.0-rc-603e6108-20241029)': + '@react-types/checkbox@3.9.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/slider': 3.7.6(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) react: 19.0.0-rc-603e6108-20241029 - '@react-types/combobox@3.13.0(react@19.0.0-rc-603e6108-20241029)': + '@react-types/color@3.0.1(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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-rc-603e6108-20241029 - '@react-types/datepicker@3.8.3(react@19.0.0-rc-603e6108-20241029)': + '@react-types/combobox@3.13.1(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@internationalized/date': 3.5.6 - '@react-types/calendar': 3.4.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) react: 19.0.0-rc-603e6108-20241029 - '@react-types/dialog@3.5.13(react@19.0.0-rc-603e6108-20241029)': + '@react-types/datepicker@3.9.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@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/form@3.7.7(react@19.0.0-rc-603e6108-20241029)': + '@react-types/dialog@3.5.14(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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/grid@3.2.9(react@19.0.0-rc-603e6108-20241029)': + '@react-types/form@3.7.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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-rc-603e6108-20241029 - '@react-types/link@3.5.8(react@19.0.0-rc-603e6108-20241029)': + '@react-types/grid@3.2.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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-rc-603e6108-20241029 - '@react-types/listbox@3.5.2(react@19.0.0-rc-603e6108-20241029)': + '@react-types/link@3.5.9(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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-rc-603e6108-20241029 - '@react-types/menu@3.9.12(react@19.0.0-rc-603e6108-20241029)': + '@react-types/listbox@3.5.3(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) react: 19.0.0-rc-603e6108-20241029 - '@react-types/meter@3.4.4(react@19.0.0-rc-603e6108-20241029)': + '@react-types/menu@3.9.13(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/progress': 3.5.7(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/numberfield@3.8.6(react@19.0.0-rc-603e6108-20241029)': + '@react-types/meter@3.4.5(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/progress': 3.5.8(react@19.0.0-rc-603e6108-20241029) react: 19.0.0-rc-603e6108-20241029 - '@react-types/overlays@3.8.10(react@19.0.0-rc-603e6108-20241029)': + '@react-types/numberfield@3.8.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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-rc-603e6108-20241029 - '@react-types/progress@3.5.7(react@19.0.0-rc-603e6108-20241029)': + '@react-types/overlays@3.8.11(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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-rc-603e6108-20241029 - '@react-types/radio@3.8.4(react@19.0.0-rc-603e6108-20241029)': + '@react-types/progress@3.5.8(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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-rc-603e6108-20241029 - '@react-types/searchfield@3.5.9(react@19.0.0-rc-603e6108-20241029)': + '@react-types/radio@3.8.5(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/textfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) react: 19.0.0-rc-603e6108-20241029 - '@react-types/select@3.9.7(react@19.0.0-rc-603e6108-20241029)': + '@react-types/searchfield@3.5.10(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(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-rc-603e6108-20241029 + + '@react-types/select@3.9.8(react@19.0.0-rc-603e6108-20241029)': + 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.25.0(react@19.0.0-rc-603e6108-20241029)': dependencies: react: 19.0.0-rc-603e6108-20241029 - '@react-types/slider@3.7.6(react@19.0.0-rc-603e6108-20241029)': + '@react-types/shared@3.26.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) react: 19.0.0-rc-603e6108-20241029 - '@react-types/switch@3.5.6(react@19.0.0-rc-603e6108-20241029)': + '@react-types/slider@3.7.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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-rc-603e6108-20241029 - '@react-types/table@3.10.2(react@19.0.0-rc-603e6108-20241029)': + '@react-types/switch@3.5.7(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) react: 19.0.0-rc-603e6108-20241029 - '@react-types/tabs@3.3.10(react@19.0.0-rc-603e6108-20241029)': + '@react-types/table@3.10.3(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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: 19.0.0-rc-603e6108-20241029 - '@react-types/textfield@3.9.7(react@19.0.0-rc-603e6108-20241029)': + '@react-types/tabs@3.3.11(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/shared': 3.25.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-rc-603e6108-20241029 - '@react-types/tooltip@3.4.12(react@19.0.0-rc-603e6108-20241029)': + '@react-types/textfield@3.10.0(react@19.0.0-rc-603e6108-20241029)': dependencies: - '@react-types/overlays': 3.8.10(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + '@react-types/shared': 3.26.0(react@19.0.0-rc-603e6108-20241029) + react: 19.0.0-rc-603e6108-20241029 + + '@react-types/tooltip@3.4.13(react@19.0.0-rc-603e6108-20241029)': + 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 '@redux-saga/core@1.3.0': @@ -41545,14 +41184,14 @@ snapshots: '@vue/shared@3.4.34': {} - '@wagmi/connectors@5.0.16(276lu6ucw5vl7m53grscpa4fqq)': + '@wagmi/connectors@5.0.16(c6fifzb677vjk75d7sjyei2p2e)': dependencies: '@coinbase/wallet-sdk': 4.0.3 - '@metamask/sdk': 0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10) + '@metamask/sdk': 0.26.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10) '@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8) '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8) '@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) - '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) + '@walletconnect/ethereum-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) '@walletconnect/modal': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) cbw-sdk: '@coinbase/wallet-sdk@3.9.3' viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8) @@ -41707,21 +41346,21 @@ snapshots: - uWebSockets.js - utf-8-validate - '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@walletconnect/core@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.10 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) events: 3.3.0 isomorphic-unfetch: 3.1.0(encoding@0.1.13) lodash.isequal: 4.5.0 @@ -41749,17 +41388,17 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/modal': 2.6.2(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) - '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) - '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -41868,28 +41507,6 @@ snapshots: - ioredis - uWebSockets.js - '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))': - dependencies: - '@walletconnect/safe-json': 1.0.2 - idb-keyval: 6.2.1 - unstorage: 1.10.2(idb-keyval@6.2.1) - optionalDependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)) - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@upstash/redis' - - '@vercel/kv' - - ioredis - - uWebSockets.js - '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/safe-json': 1.0.2 @@ -42032,16 +41649,16 @@ snapshots: - uWebSockets.js - utf-8-validate - '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@walletconnect/sign-client@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -42116,12 +41733,12 @@ snapshots: - ioredis - uWebSockets.js - '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))': + '@walletconnect/types@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: @@ -42140,16 +41757,16 @@ snapshots: - ioredis - uWebSockets.js - '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': + '@walletconnect/universal-provider@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13) '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) - '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/sign-client': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -42234,7 +41851,7 @@ snapshots: - ioredis - uWebSockets.js - '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))': + '@walletconnect/utils@2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -42244,7 +41861,7 @@ snapshots: '@walletconnect/relay-api': 1.0.10 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) + '@walletconnect/types': 2.13.0(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -43313,20 +42930,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 @@ -43448,14 +43051,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 @@ -43515,14 +43110,14 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-styled-components@2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029))(supports-color@5.5.0): + babel-plugin-styled-components@2.1.4(@babel/core@7.25.8)(styled-components@5.3.11(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029))(supports-color@5.5.0): dependencies: '@babel/helper-annotate-as-pure': 7.24.7 '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0) - '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.7) + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.8) lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029) + styled-components: 5.3.11(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029) transitivePeerDependencies: - '@babel/core' - supports-color @@ -43533,12 +43128,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) @@ -43583,13 +43172,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 @@ -44669,7 +44251,7 @@ snapshots: transitivePeerDependencies: - supports-color - connectkit@1.8.2(@babel/core@7.24.7)(@tanstack/react-query@5.45.1(react@19.0.0-rc-603e6108-20241029))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.10.4(slso2y5si5ebobzw4pa64fwb3i)): + connectkit@1.8.2(@babel/core@7.25.8)(@tanstack/react-query@5.45.1(react@19.0.0-rc-603e6108-20241029))(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq)): dependencies: '@tanstack/react-query': 5.45.1(react@19.0.0-rc-603e6108-20241029) buffer: 6.0.3 @@ -44681,9 +44263,9 @@ snapshots: react-transition-state: 1.1.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) react-use-measure: 2.1.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) resize-observer-polyfill: 1.5.1 - styled-components: 5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029) + styled-components: 5.3.11(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029) viem: 2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8) - wagmi: 2.10.4(slso2y5si5ebobzw4pa64fwb3i) + wagmi: 2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq) transitivePeerDependencies: - '@babel/core' - react-is @@ -52237,31 +51819,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 @@ -54109,32 +53666,6 @@ snapshots: next-tick@1.1.0: {} - next@14.2.15(@babel/core@7.24.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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@19.0.0-rc-603e6108-20241029))(react@18.3.1)(sass@1.80.7): dependencies: '@next/env': 14.2.15 @@ -54187,32 +53718,6 @@ snapshots: - '@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): - 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-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 @@ -56148,163 +55653,165 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-aria-components@1.4.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): - dependencies: - '@internationalized/date': 3.5.6 - '@internationalized/string': 3.2.4 - '@react-aria/accordion': 3.0.0-alpha.34(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/collections': 3.0.0-alpha.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/color': 3.0.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/disclosure': 3.0.0-alpha.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/dnd': 3.7.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/toolbar': 3.0.0-beta.9(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tree': 3.0.0-beta.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/virtualizer': 4.0.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-stately/color': 3.8.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/disclosure': 3.0.0-alpha.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/layout': 4.0.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/menu': 3.8.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-stately/virtualizer': 4.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/color': 3.0.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/form': 3.7.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + react-aria-components@1.5.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): + 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/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) '@swc/helpers': 0.5.13 client-only: 0.0.1 react: 19.0.0-rc-603e6108-20241029 - react-aria: 3.35.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) + react-aria: 3.36.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) react-dom: 18.3.1(react@18.3.1) - react-stately: 3.33.0(react@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-aria-components@1.4.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): - dependencies: - '@internationalized/date': 3.5.6 - '@internationalized/string': 3.2.4 - '@react-aria/accordion': 3.0.0-alpha.34(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.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/color': 3.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/disclosure': 3.0.0-alpha.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.7.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/live-announcer': 3.4.0 - '@react-aria/menu': 3.15.5(react-dom@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.9(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tree': 3.0.0-beta.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.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/virtualizer': 4.0.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-stately/color': 3.8.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/disclosure': 3.0.0-alpha.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/layout': 4.0.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/menu': 3.8.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/utils': 3.10.4(react@19.0.0-rc-603e6108-20241029) - '@react-stately/virtualizer': 4.1.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/color': 3.0.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/form': 3.7.7(react@19.0.0-rc-603e6108-20241029) - '@react-types/grid': 3.2.9(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) - '@react-types/table': 3.10.2(react@19.0.0-rc-603e6108-20241029) + 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): + 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/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) '@swc/helpers': 0.5.13 client-only: 0.0.1 react: 19.0.0-rc-603e6108-20241029 - react-aria: 3.35.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) + 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.33.0(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-aria@3.35.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): - dependencies: - '@internationalized/string': 3.2.4 - '@react-aria/breadcrumbs': 3.5.18(react@19.0.0-rc-603e6108-20241029) - '@react-aria/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-aria/calendar': 3.5.13(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/checkbox': 3.14.8(react@19.0.0-rc-603e6108-20241029) - '@react-aria/color': 3.0.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/combobox': 3.10.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/datepicker': 3.11.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/dialog': 3.5.19(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/dnd': 3.7.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/gridlist': 3.9.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/link': 3.7.6(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/menu': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/meter': 3.4.17(react@19.0.0-rc-603e6108-20241029) - '@react-aria/numberfield': 3.11.8(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.23.4(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/progress': 3.4.17(react@19.0.0-rc-603e6108-20241029) - '@react-aria/radio': 3.10.9(react@19.0.0-rc-603e6108-20241029) - '@react-aria/searchfield': 3.7.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/select': 3.14.11(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/separator': 3.4.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/slider': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) - '@react-aria/switch': 3.6.9(react@19.0.0-rc-603e6108-20241029) - '@react-aria/table': 3.15.5(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tabs': 3.9.7(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tag': 3.4.7(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tooltip': 3.7.9(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + react-aria@3.36.0(react-dom@18.3.1(react@18.3.1))(react@19.0.0-rc-603e6108-20241029): + 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-dom: 18.3.1(react@18.3.1) - react-aria@3.35.0(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029): - dependencies: - '@internationalized/string': 3.2.4 - '@react-aria/breadcrumbs': 3.5.18(react@19.0.0-rc-603e6108-20241029) - '@react-aria/button': 3.10.1(react@19.0.0-rc-603e6108-20241029) - '@react-aria/calendar': 3.5.13(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/checkbox': 3.14.8(react@19.0.0-rc-603e6108-20241029) - '@react-aria/color': 3.0.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/combobox': 3.10.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/datepicker': 3.11.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/dialog': 3.5.19(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/dnd': 3.7.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/focus': 3.18.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/gridlist': 3.9.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/i18n': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/interactions': 3.22.4(react@19.0.0-rc-603e6108-20241029) - '@react-aria/label': 3.7.12(react@19.0.0-rc-603e6108-20241029) - '@react-aria/link': 3.7.6(react@19.0.0-rc-603e6108-20241029) - '@react-aria/listbox': 3.13.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/menu': 3.15.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/meter': 3.4.17(react@19.0.0-rc-603e6108-20241029) - '@react-aria/numberfield': 3.11.8(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/overlays': 3.23.4(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/progress': 3.4.17(react@19.0.0-rc-603e6108-20241029) - '@react-aria/radio': 3.10.9(react@19.0.0-rc-603e6108-20241029) - '@react-aria/searchfield': 3.7.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/select': 3.14.11(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/selection': 3.20.1(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/separator': 3.4.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/slider': 3.7.13(react@19.0.0-rc-603e6108-20241029) - '@react-aria/ssr': 3.9.6(react@19.0.0-rc-603e6108-20241029) - '@react-aria/switch': 3.6.9(react@19.0.0-rc-603e6108-20241029) - '@react-aria/table': 3.15.5(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tabs': 3.9.7(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tag': 3.4.7(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react@19.0.0-rc-603e6108-20241029) - '@react-aria/textfield': 3.14.10(react@19.0.0-rc-603e6108-20241029) - '@react-aria/tooltip': 3.7.9(react@19.0.0-rc-603e6108-20241029) - '@react-aria/utils': 3.25.3(react@19.0.0-rc-603e6108-20241029) - '@react-aria/visually-hidden': 3.8.17(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + react-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): + 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) @@ -56416,7 +55923,7 @@ snapshots: transitivePeerDependencies: - csstype - react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029): + react-i18next@13.5.0(i18next@22.5.1)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029): dependencies: '@babel/runtime': 7.25.7 html-parse-stringify: 3.0.1 @@ -56424,7 +55931,7 @@ snapshots: react: 19.0.0-rc-603e6108-20241029 optionalDependencies: react-dom: 19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029) - react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) + react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) react-is@16.13.1: {} @@ -56462,12 +55969,12 @@ snapshots: react-lifecycles-compat: 3.0.4 warning: 4.0.3 - react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029): + react-native-webview@11.26.1(react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029): dependencies: escape-string-regexp: 2.0.0 invariant: 2.2.4 react: 19.0.0-rc-603e6108-20241029 - react-native: 0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) + react-native: 0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10) react-native@0.74.2(@babel/core@7.24.0)(@babel/preset-env@7.24.7(@babel/core@7.24.0))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10): dependencies: @@ -56519,56 +56026,6 @@ snapshots: - supports-color - utf-8-validate - react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10): - dependencies: - '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 13.6.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@react-native-community/cli-platform-android': 13.6.8(encoding@0.1.13) - '@react-native-community/cli-platform-ios': 13.6.8(encoding@0.1.13) - '@react-native/assets-registry': 0.74.84 - '@react-native/codegen': 0.74.84(@babel/preset-env@7.24.7(@babel/core@7.24.7)) - '@react-native/community-cli-plugin': 0.74.84(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10) - '@react-native/gradle-plugin': 0.74.84 - '@react-native/js-polyfills': 0.74.84 - '@react-native/normalize-colors': 0.74.84 - '@react-native/virtualized-lists': 0.74.84(react-native@0.74.2(@babel/core@7.24.7)(@babel/preset-env@7.24.7(@babel/core@7.24.7))(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(utf-8-validate@5.0.10))(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1) - abort-controller: 3.0.0 - anser: 1.4.10 - ansi-regex: 5.0.1 - base64-js: 1.5.1 - chalk: 4.1.2 - event-target-shim: 5.0.1 - flow-enums-runtime: 0.0.6 - invariant: 2.2.4 - jest-environment-node: 29.7.0 - jsc-android: 250231.0.0 - memoize-one: 5.2.1 - metro-runtime: 0.80.12 - metro-source-map: 0.80.12 - mkdirp: 0.5.6 - nullthrows: 1.1.1 - pretty-format: 26.6.2 - promise: 8.3.0 - react: 19.0.0-rc-603e6108-20241029 - react-devtools-core: 5.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - react-refresh: 0.14.2 - react-shallow-renderer: 16.15.0(react@19.0.0-rc-603e6108-20241029) - regenerator-runtime: 0.13.11 - scheduler: 0.24.0-canary-efb381bbf-20230505 - stacktrace-parser: 0.1.10 - whatwg-fetch: 3.6.20 - ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) - yargs: 17.7.2 - optionalDependencies: - '@types/react': types-react@19.0.0-rc.1 - transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' - - bufferutil - - encoding - - supports-color - - utf-8-validate - react-native@0.74.2(@babel/core@7.25.8)(@babel/preset-env@7.24.7(@babel/core@7.25.8))(@types/react@18.3.11)(bufferutil@4.0.8)(encoding@0.1.13)(react@19.0.0-rc-603e6108-20241029)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 @@ -56693,32 +56150,33 @@ snapshots: 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.33.0(react@19.0.0-rc-603e6108-20241029): - dependencies: - '@react-stately/calendar': 3.5.5(react@19.0.0-rc-603e6108-20241029) - '@react-stately/checkbox': 3.6.9(react@19.0.0-rc-603e6108-20241029) - '@react-stately/collections': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/color': 3.8.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/combobox': 3.10.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/data': 3.11.7(react@19.0.0-rc-603e6108-20241029) - '@react-stately/datepicker': 3.10.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/dnd': 3.4.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/form': 3.0.6(react@19.0.0-rc-603e6108-20241029) - '@react-stately/list': 3.11.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/menu': 3.8.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/numberfield': 3.9.7(react@19.0.0-rc-603e6108-20241029) - '@react-stately/overlays': 3.6.11(react@19.0.0-rc-603e6108-20241029) - '@react-stately/radio': 3.10.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/searchfield': 3.5.7(react@19.0.0-rc-603e6108-20241029) - '@react-stately/select': 3.6.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/selection': 3.17.0(react@19.0.0-rc-603e6108-20241029) - '@react-stately/slider': 3.5.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/table': 3.12.3(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tabs': 3.6.10(react@19.0.0-rc-603e6108-20241029) - '@react-stately/toggle': 3.7.8(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tooltip': 3.4.13(react@19.0.0-rc-603e6108-20241029) - '@react-stately/tree': 3.8.5(react@19.0.0-rc-603e6108-20241029) - '@react-types/shared': 3.25.0(react@19.0.0-rc-603e6108-20241029) + react-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): @@ -58262,14 +57720,14 @@ snapshots: hey-listen: 1.0.8 tslib: 2.8.0 - styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029): + styled-components@5.3.11(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029): dependencies: '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0) '@babel/traverse': 7.24.7(supports-color@5.5.0) '@emotion/is-prop-valid': 1.2.2 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.4(@babel/core@7.24.7)(styled-components@5.3.11(@babel/core@7.24.7)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029))(supports-color@5.5.0) + babel-plugin-styled-components: 2.1.4(@babel/core@7.25.8)(styled-components@5.3.11(@babel/core@7.25.8)(react-dom@19.0.0-rc-603e6108-20241029(react@19.0.0-rc-603e6108-20241029))(react-is@18.3.1)(react@19.0.0-rc-603e6108-20241029))(supports-color@5.5.0) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 react: 19.0.0-rc-603e6108-20241029 @@ -58280,13 +57738,6 @@ snapshots: transitivePeerDependencies: - '@babel/core' - styled-jsx@5.1.1(@babel/core@7.24.7)(react@18.3.1): - dependencies: - client-only: 0.0.1 - react: 18.3.1 - optionalDependencies: - '@babel/core': 7.24.7 - styled-jsx@5.1.1(@babel/core@7.25.8)(react@18.3.1): dependencies: client-only: 0.0.1 @@ -58301,13 +57752,6 @@ snapshots: 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): dependencies: client-only: 0.0.1 @@ -59316,12 +58760,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 @@ -59330,43 +58774,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 @@ -59374,12 +58818,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 @@ -60662,10 +60106,10 @@ snapshots: dependencies: xml-name-validator: 4.0.0 - wagmi@2.10.4(slso2y5si5ebobzw4pa64fwb3i): + wagmi@2.10.4(2zybmpkgivtkk3e4xdbpxyo3aq): dependencies: '@tanstack/react-query': 5.45.1(react@19.0.0-rc-603e6108-20241029) - '@wagmi/connectors': 5.0.16(276lu6ucw5vl7m53grscpa4fqq) + '@wagmi/connectors': 5.0.16(c6fifzb677vjk75d7sjyei2p2e) '@wagmi/core': 2.11.4(@tanstack/query-core@5.45.0)(bufferutil@4.0.8)(immer@9.0.21)(react@19.0.0-rc-603e6108-20241029)(types-react@19.0.0-rc.1)(typescript@5.5.2)(utf-8-validate@5.0.10)(viem@2.21.35(bufferutil@4.0.8)(typescript@5.5.2)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8) react: 19.0.0-rc-603e6108-20241029 use-sync-external-store: 1.2.0(react@19.0.0-rc-603e6108-20241029) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 1f5361c18e..e86b76b668 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -60,6 +60,7 @@ catalog: "@types/react-dom": npm:types-react-dom@19.0.0-rc.1 autoprefixer: 10.4.20 bcp-47: 2.1.0 + bs58: 6.0.0 clsx: 2.1.1 cryptocurrency-icons: 0.18.1 css-loader: 7.1.2 @@ -75,8 +76,8 @@ catalog: postcss-loader: 8.1.1 postcss: 8.4.47 prettier: 3.3.3 - react-aria-components: 1.4.0 - react-aria: 3.35.0 + react-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 sass-loader: 16.0.3 @@ -85,6 +86,7 @@ catalog: style-loader: 4.0.0 stylelint-config-standard-scss: 13.1.0 stylelint: 16.10.0 + swr: 2.2.5 tailwindcss-animate: 1.0.7 tailwindcss-react-aria-components: 1.1.6 tailwindcss: 3.4.14