diff --git a/.changeset/famous-falcons-punch.md b/.changeset/famous-falcons-punch.md
new file mode 100644
index 00000000..b4f8bd82
--- /dev/null
+++ b/.changeset/famous-falcons-punch.md
@@ -0,0 +1,9 @@
+---
+"@fuel-connectors/fuel-development-wallet": minor
+"@fuel-connectors/walletconnect-connector": minor
+"@fuel-connectors/solana-connector": minor
+"@fuel-connectors/evm-connector": minor
+"@fuel-connectors/fuel-wallet": minor
+---
+
+Added/Modified connector's name so it'll appear correctly in the web wallet
diff --git a/.changeset/little-crabs-travel.md b/.changeset/little-crabs-travel.md
new file mode 100644
index 00000000..32359481
--- /dev/null
+++ b/.changeset/little-crabs-travel.md
@@ -0,0 +1,5 @@
+---
+"@fuels/react": minor
+---
+
+Added a new hook to fetch the current connected connector `useCurrentConnector`
diff --git a/.changeset/poor-beers-march.md b/.changeset/poor-beers-march.md
new file mode 100644
index 00000000..74996fc3
--- /dev/null
+++ b/.changeset/poor-beers-march.md
@@ -0,0 +1,5 @@
+---
+"@fuels/react": minor
+---
+
+Added a component "WebWallet" to increase UX when using connectors
diff --git a/.changeset/weak-pots-fetch.md b/.changeset/weak-pots-fetch.md
new file mode 100644
index 00000000..2126e127
--- /dev/null
+++ b/.changeset/weak-pots-fetch.md
@@ -0,0 +1,5 @@
+---
+"docs": minor
+---
+
+Added a new section on the docs for the hook `useCurrentConnector`
diff --git a/examples/react-app/package.json b/examples/react-app/package.json
index 2c7e2201..688a105c 100644
--- a/examples/react-app/package.json
+++ b/examples/react-app/package.json
@@ -19,12 +19,12 @@
"@wagmi/core": "2.13.4",
"clsx": "2.1.1",
"fuels": "0.94.8",
- "react": "18.3.1",
- "react-dom": "18.3.1"
+ "react": "18.2.0",
+ "react-dom": "18.2.0"
},
"devDependencies": {
"@tanstack/react-query-devtools": "5.35.1",
- "@types/react": "18.3.1",
+ "@types/react": "18.2.54",
"@types/react-dom": "18.3.0",
"@vitejs/plugin-react": "4.2.1",
"autoprefixer": "10.4.19",
diff --git a/examples/react-app/src/main.tsx b/examples/react-app/src/main.tsx
index 1eb0626f..a4b7b221 100644
--- a/examples/react-app/src/main.tsx
+++ b/examples/react-app/src/main.tsx
@@ -71,7 +71,12 @@ const FUEL_CONFIG = {
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
-
+
-
+
,
);
diff --git a/examples/react-next/package.json b/examples/react-next/package.json
index f89fd832..6054ef84 100644
--- a/examples/react-next/package.json
+++ b/examples/react-next/package.json
@@ -21,7 +21,7 @@
"devDependencies": {
"@tanstack/react-query-devtools": "5.35.1",
"@types/node": "20.12.11",
- "@types/react": "18.3.1",
+ "@types/react": "18.2.54",
"@types/react-dom": "18.3.0",
"typescript": "5.4.5"
}
diff --git a/packages/fuel-development-wallet/src/FuelWalletDevelopmentConnector.ts b/packages/fuel-development-wallet/src/FuelWalletDevelopmentConnector.ts
index ed529cfd..714651d8 100644
--- a/packages/fuel-development-wallet/src/FuelWalletDevelopmentConnector.ts
+++ b/packages/fuel-development-wallet/src/FuelWalletDevelopmentConnector.ts
@@ -2,6 +2,7 @@ import { FuelWalletConnector } from '@fuel-connectors/fuel-wallet';
import type { ConnectorMetadata } from 'fuels';
export class FuelWalletDevelopmentConnector extends FuelWalletConnector {
+ name = 'Fuel Wallet Development';
metadata: ConnectorMetadata = {
image: '/connectors/fuel-wallet-dev.svg',
install: {
diff --git a/packages/fuel-wallet/src/FuelWalletConnector.ts b/packages/fuel-wallet/src/FuelWalletConnector.ts
index b1930f9a..031f567b 100644
--- a/packages/fuel-wallet/src/FuelWalletConnector.ts
+++ b/packages/fuel-wallet/src/FuelWalletConnector.ts
@@ -30,7 +30,7 @@ import {
} from './types';
export class FuelWalletConnector extends FuelConnector {
- name = '';
+ name = 'Fuel Wallet';
connected = false;
installed = false;
external = false;
diff --git a/packages/react/package.json b/packages/react/package.json
index c95e2d71..54bb04fd 100644
--- a/packages/react/package.json
+++ b/packages/react/package.json
@@ -20,6 +20,7 @@
}
}
},
+ "files": ["dist"],
"scripts": {
"build": "pnpm ts:check && tsup",
"build:watch": "tsup --watch",
@@ -31,17 +32,25 @@
"react": ">=18.0.0"
},
"dependencies": {
- "@radix-ui/react-dialog": "1.1.1",
- "events": "3.3.0"
+ "@fuels/ui": "0.1.2",
+ "@tabler/icons-react": "2.47.0",
+ "events": "^3.3.0",
+ "tailwind-variants": "0.1.20"
},
"devDependencies": {
"@tanstack/react-query": "5.35.1",
- "@types/react": "18.3.1",
- "compare-versions": "6.1.0",
+ "@types/react": "18.2.54",
+ "compare-versions": "^6.1.0",
"fuels": "0.94.8",
- "react": "18.3.1",
+ "react": "^18.2.0",
+ "styled-components": "6.1.12",
+ "tailwindcss": "3.4.4",
+ "@radix-ui/react-dialog": "1.1.1",
+ "events": "3.3.0",
"tsup": "7.3.0",
"tsx": "4.9.3",
- "typescript": "5.4.5"
+ "typescript": "5.4.5",
+ "postcss": "8.4.35",
+ "postcss-import": "16.0.1"
}
}
diff --git a/packages/react/postcss.config.js b/packages/react/postcss.config.js
new file mode 100644
index 00000000..e569373f
--- /dev/null
+++ b/packages/react/postcss.config.js
@@ -0,0 +1,8 @@
+module.exports = {
+ plugins: {
+ 'postcss-import': {},
+ 'tailwindcss/nesting': {},
+ tailwindcss: {},
+ autoprefixer: {},
+ },
+};
diff --git a/packages/react/src/hooks/index.ts b/packages/react/src/hooks/index.ts
index b3da396b..d179166c 100644
--- a/packages/react/src/hooks/index.ts
+++ b/packages/react/src/hooks/index.ts
@@ -7,6 +7,7 @@ export * from './useBalance';
export * from './useChain';
export * from './useConnect';
export * from './useContractRead';
+export * from './useCurrentConnector';
export * from './useConnectors';
export * from './useDisconnect';
export * from './useIsConnected';
diff --git a/packages/react/src/providers/FuelProvider.tsx b/packages/react/src/providers/FuelProvider.tsx
index 612097e0..de8fae5e 100644
--- a/packages/react/src/providers/FuelProvider.tsx
+++ b/packages/react/src/providers/FuelProvider.tsx
@@ -7,6 +7,7 @@ import type { NetworkConfig, UIConfig } from '../types';
import { BridgeDialog } from '../ui/Connect/components/Bridge/BridgeDialog';
import { NetworkDialog } from '../ui/Connect/components/Network/NetworkDialog';
import { useNetworkConfigs } from '../ui/Connect/hooks/useNetworkConfigs';
+import { WebWallet } from '../ui/WebWallet';
import { FuelHooksProvider } from './FuelHooksProvider';
import { FuelUIProvider, type FuelUIProviderProps } from './FuelUIProvider';
@@ -15,6 +16,7 @@ export { useConnectUI } from './FuelUIProvider';
type FuelProviderProps = {
ui?: boolean;
+ showWebWallet?: boolean;
uiConfig?: UIConfig;
fuelConfig?: FuelConfig;
networks?: Array;
@@ -26,6 +28,7 @@ export function FuelProvider({
fuelConfig,
uiConfig: _uiConfig,
ui = true,
+ showWebWallet = false,
networks: _networks,
}: FuelProviderProps) {
const theme = _theme || 'light';
@@ -49,6 +52,7 @@ export function FuelProvider({
uiConfig={uiConfig}
>
+ {showWebWallet && }
{networks != null && }
{uiConfig.suggestBridge && }
{children}
diff --git a/packages/react/src/providers/FuelUIProvider.tsx b/packages/react/src/providers/FuelUIProvider.tsx
index 5ab7d17e..c50a7726 100644
--- a/packages/react/src/providers/FuelUIProvider.tsx
+++ b/packages/react/src/providers/FuelUIProvider.tsx
@@ -9,11 +9,11 @@ import {
useState,
} from 'react';
-import { useConnect } from '../hooks/useConnect';
-import { useConnectors } from '../hooks/useConnectors';
-
+import { Theme, type ThemeProps } from '@fuels/ui';
import { NATIVE_CONNECTORS } from '../config';
import { useIsConnected } from '../hooks';
+import { useConnect } from '../hooks/useConnect';
+import { useConnectors } from '../hooks/useConnectors';
import type { UIConfig } from '../types';
import { isNativeConnector } from '../utils';
@@ -174,6 +174,10 @@ export function FuelUIProvider({
return isLoadingConnectors || hasLoadedConnectors;
}, [connectors, isLoadingConnectors, fuelConfig]);
+ const _dsTheme: ThemeProps = {
+ hasBackground: false,
+ appearance: theme === 'dark' ? 'dark' : 'light',
+ };
const handleConnect = useCallback(() => {
setConnector(null);
setError(null);
diff --git a/packages/react/src/ui/WebWallet/components/Anchor/index.tsx b/packages/react/src/ui/WebWallet/components/Anchor/index.tsx
new file mode 100644
index 00000000..cdad4fbf
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/components/Anchor/index.tsx
@@ -0,0 +1,32 @@
+import { Button } from '@fuels/ui';
+import { IconWallet } from '@tabler/icons-react';
+import React from 'react';
+
+export interface AnchorProps {
+ address: string;
+ onClick?: () => void;
+ isLoading: boolean;
+ isConnected: boolean;
+}
+
+const AnchorComponent = (
+ { address, onClick, isLoading, isConnected }: AnchorProps,
+ ref: React.ForwardedRef | null,
+) => {
+ return (
+
+ );
+};
+
+export const Anchor = React.forwardRef(AnchorComponent);
diff --git a/packages/react/src/ui/WebWallet/components/Assets/index.tsx b/packages/react/src/ui/WebWallet/components/Assets/index.tsx
new file mode 100644
index 00000000..472c273d
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/components/Assets/index.tsx
@@ -0,0 +1,86 @@
+import {
+ Card,
+ EntityItem,
+ EntityItemInfo,
+ EntityItemSlot,
+ HStack,
+ Icon,
+ Text,
+ Tooltip,
+ VStack,
+} from '@fuels/ui';
+import { IconCoins } from '@tabler/icons-react';
+import { useBalanceFormat } from '../../hooks/useBalanceFormat';
+import type { IAssetsBalance } from '../../types';
+import { AvatarGenerated } from '../AvatarGenerated';
+
+export interface AssetsProps {
+ assets: IAssetsBalance[];
+ hideAmount: boolean;
+}
+
+export const Assets = ({ assets, hideAmount }: AssetsProps) => {
+ return (
+
+
+
+
+ Assets
+
+
+
+ {assets.map((asset) => {
+ const { formattedBalance, formattedBalanceFull } = useBalanceFormat(
+ asset.amount,
+ asset.decimals,
+ );
+ const valueOrHidden = hideAmount ? '•'.repeat(5) : formattedBalance;
+ const tokenOrId = asset.symbol === 'UNK' ? asset.id : asset.symbol;
+
+ return (
+
+
+
+
+
+
+
+ {asset.name}
+
+ ) as string & React.ReactElement
+ }
+ />
+
+
+
+
+ {valueOrHidden}
+
+
+
+
+ );
+ })}
+
+
+ );
+};
diff --git a/packages/react/src/ui/WebWallet/components/AvatarGenerated/index.tsx b/packages/react/src/ui/WebWallet/components/AvatarGenerated/index.tsx
new file mode 100644
index 00000000..8f458d1d
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/components/AvatarGenerated/index.tsx
@@ -0,0 +1,24 @@
+import { Avatar, type AvatarProps } from '@fuels/ui';
+import { useGenerateBackground } from '../../hooks/useGenerateBackground';
+
+export type AvatarGeneratedProps = { hash: string } & Omit<
+ AvatarProps,
+ 'fallback'
+>;
+
+const GeneratedFallback = ({ hash }: { hash: string }) => {
+ return (
+
+ );
+};
+
+export const AvatarGenerated = ({ hash, ...props }: AvatarGeneratedProps) => {
+ return (
+ } />
+ );
+};
diff --git a/packages/react/src/ui/WebWallet/components/Balance/index.tsx b/packages/react/src/ui/WebWallet/components/Balance/index.tsx
new file mode 100644
index 00000000..4076bc00
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/components/Balance/index.tsx
@@ -0,0 +1,72 @@
+import { HStack, Icon, Text, Tooltip, VStack } from '@fuels/ui';
+import { IconEye, IconEyeClosed } from '@tabler/icons-react';
+import type { BN } from 'fuels';
+import { useBalanceFormat } from '../../hooks/useBalanceFormat';
+
+export interface BalanceProps {
+ value: BN;
+ decimals: number;
+ toggleHideAmount: () => void;
+ hideAmount: boolean;
+}
+
+export const Balance = ({
+ value,
+ decimals,
+ toggleHideAmount,
+ hideAmount,
+}: BalanceProps) => {
+ const { formattedBalance, formattedBalanceFull } = useBalanceFormat(
+ value,
+ decimals,
+ );
+ const normalProps = {
+ value: formattedBalance,
+ icon: IconEye,
+ tooltip: formattedBalanceFull,
+ };
+ const hiddenProps = {
+ value: '•'.repeat(5),
+ icon: IconEyeClosed,
+ tooltip: 'Hidden balance',
+ };
+ const props = hideAmount ? hiddenProps : normalProps;
+
+ return (
+
+
+ Balance
+
+
+
+ ETH
+
+
+
+ {props.value}
+
+
+
+
+
+ );
+};
diff --git a/packages/react/src/ui/WebWallet/components/DisconnectButton/index.tsx b/packages/react/src/ui/WebWallet/components/DisconnectButton/index.tsx
new file mode 100644
index 00000000..f0856c8d
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/components/DisconnectButton/index.tsx
@@ -0,0 +1,21 @@
+import { Button } from '@fuels/ui';
+import { IconLogout } from '@tabler/icons-react';
+
+export interface DisconnectButtonProps {
+ disconnect: () => void;
+}
+
+export const DisconnectButton = ({ disconnect }: DisconnectButtonProps) => {
+ return (
+
+ );
+};
diff --git a/packages/react/src/ui/WebWallet/components/Footer/index.tsx b/packages/react/src/ui/WebWallet/components/Footer/index.tsx
new file mode 100644
index 00000000..82658e33
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/components/Footer/index.tsx
@@ -0,0 +1,21 @@
+import { Container, Flex, Icon } from '@fuels/ui';
+import { IconX } from '@tabler/icons-react';
+import { DisconnectButton } from '../DisconnectButton';
+import { HistoryButton } from '../HistoryButton';
+
+export interface FooterProps {
+ address: string;
+ disconnect: () => void;
+}
+
+export const Footer = ({ address, disconnect }: FooterProps) => {
+ return (
+
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react/src/ui/WebWallet/components/Header/index.tsx b/packages/react/src/ui/WebWallet/components/Header/index.tsx
new file mode 100644
index 00000000..6c3edb07
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/components/Header/index.tsx
@@ -0,0 +1,18 @@
+import { EntityItem, EntityItemInfo, EntityItemSlot } from '@fuels/ui';
+import { AvatarGenerated } from '../AvatarGenerated';
+
+export interface HeaderProps {
+ address: string;
+ title?: string;
+}
+
+export const Header = ({ address, title }: HeaderProps) => {
+ return (
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react/src/ui/WebWallet/components/HistoryButton/index.tsx b/packages/react/src/ui/WebWallet/components/HistoryButton/index.tsx
new file mode 100644
index 00000000..ce60f372
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/components/HistoryButton/index.tsx
@@ -0,0 +1,20 @@
+import { Button } from '@fuels/ui';
+import { IconHistory } from '@tabler/icons-react';
+
+export const HistoryButton = ({ address }: { address: string }) => {
+ return (
+
+ );
+};
diff --git a/packages/react/src/ui/WebWallet/components/ScrollableContent/index.tsx b/packages/react/src/ui/WebWallet/components/ScrollableContent/index.tsx
new file mode 100644
index 00000000..2baf94b7
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/components/ScrollableContent/index.tsx
@@ -0,0 +1,34 @@
+import { Inset, ScrollArea, Separator, VStack } from '@fuels/ui';
+import type { IAssetsBalance } from '../../types';
+import { Assets } from '../Assets';
+import { Balance } from '../Balance';
+
+export interface ScrollableContentProps {
+ mainAsset: IAssetsBalance;
+ assetsBalances: IAssetsBalance[];
+ hideAmount: boolean;
+ toggleHideAmount: () => void;
+}
+export const ScrollableContent = ({
+ mainAsset,
+ hideAmount,
+ toggleHideAmount,
+ assetsBalances,
+}: ScrollableContentProps) => {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react/src/ui/WebWallet/components/index.tsx b/packages/react/src/ui/WebWallet/components/index.tsx
new file mode 100644
index 00000000..91e4009c
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/components/index.tsx
@@ -0,0 +1,9 @@
+export * from './Anchor';
+export * from './Assets';
+export * from './AvatarGenerated';
+export * from './Balance';
+export * from './DisconnectButton';
+export * from './Footer';
+export * from './Header';
+export * from './HistoryButton';
+export * from './ScrollableContent';
diff --git a/packages/react/src/ui/WebWallet/hooks/index.ts b/packages/react/src/ui/WebWallet/hooks/index.ts
new file mode 100644
index 00000000..fef19af3
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/hooks/index.ts
@@ -0,0 +1,3 @@
+export * from './useAssetsBalance';
+export * from './useBalanceFormat';
+export * from './useGenerateBackground';
diff --git a/packages/react/src/ui/WebWallet/hooks/useAssetsBalance.ts b/packages/react/src/ui/WebWallet/hooks/useAssetsBalance.ts
new file mode 100644
index 00000000..c24667b9
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/hooks/useAssetsBalance.ts
@@ -0,0 +1,48 @@
+import {
+ assets as AssetsSDK,
+ bn,
+ getAssetFuel,
+ getDefaultChainId,
+} from 'fuels';
+import { useNamedQuery } from '../../../core/useNamedQuery';
+import { useFuel } from '../../../providers';
+import { QUERY_KEYS } from '../../../utils';
+import type { IAssetsBalance } from '../types';
+
+export const useAssetsBalance = () => {
+ const { fuel } = useFuel();
+
+ return useNamedQuery('assetsBalance', {
+ queryKey: QUERY_KEYS.assetsBalance(),
+ queryFn: async () => {
+ try {
+ const [assets, wallet] = await Promise.all([
+ fuel.assets(),
+ fuel.getWallet((await fuel.currentAccount()) ?? ''),
+ ]);
+ const provider = wallet.provider;
+
+ const fullAssets = [...assets, ...AssetsSDK];
+ const { balances } = await wallet.getBalances();
+ const chainId = provider.getChainId() ?? getDefaultChainId('fuel');
+
+ return balances.map((balance) => {
+ const asset = fullAssets
+ .map((a) => getAssetFuel(a, chainId))
+ .find((a) => a?.assetId === balance.assetId);
+ return {
+ name: asset?.name ?? 'Unknown',
+ symbol: asset?.symbol ?? 'UNK',
+ icon: asset?.icon ?? '',
+ amount: balance.amount ?? bn(0),
+ id: balance.assetId,
+ decimals: asset?.decimals ?? 0,
+ } as IAssetsBalance;
+ });
+ } catch (_error: unknown) {
+ return [];
+ }
+ },
+ initialData: [],
+ });
+};
diff --git a/packages/react/src/ui/WebWallet/hooks/useBalanceFormat.ts b/packages/react/src/ui/WebWallet/hooks/useBalanceFormat.ts
new file mode 100644
index 00000000..f8013def
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/hooks/useBalanceFormat.ts
@@ -0,0 +1,29 @@
+import { type BN, type FormatConfig, format } from 'fuels';
+import { useMemo } from 'react';
+
+export const DEFAULT_MIN_PRECISION = 3;
+export const DECIMAL_UNITS = 9;
+export const formatOpts: FormatConfig = {
+ units: DECIMAL_UNITS,
+ precision: DECIMAL_UNITS,
+};
+
+export type IBalanceFormat = {
+ formattedBalance: string;
+ formattedBalanceFull: string;
+};
+export const useBalanceFormat = (value: BN, decimals: number) =>
+ useMemo(
+ () => ({
+ formattedBalance: value.format({
+ ...formatOpts,
+ precision: value.isZero() ? 1 : DEFAULT_MIN_PRECISION,
+ units: decimals,
+ }),
+ formattedBalanceFull: format(value, {
+ ...formatOpts,
+ units: decimals,
+ }),
+ }),
+ [value, decimals],
+ );
diff --git a/packages/react/src/ui/WebWallet/hooks/useGenerateBackground.ts b/packages/react/src/ui/WebWallet/hooks/useGenerateBackground.ts
new file mode 100644
index 00000000..5aa0cf1a
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/hooks/useGenerateBackground.ts
@@ -0,0 +1,41 @@
+function getFixedGradientDirection(hash: string) {
+ const sum = hash
+ .slice(4, 7)
+ .split('')
+ .reduce((acc, char) => {
+ return acc + char.charCodeAt(0);
+ }, 0);
+
+ return `${sum}deg`;
+}
+
+function hashToGradient(hash: string): string {
+ let fixedHex = '';
+ const length = hash?.length || 0;
+ if (length === 0) {
+ return '$cardBg';
+ }
+
+ for (let i = 0; i < length; i++) {
+ const char = hash.charAt(i);
+ if (/\d/.test(char)) {
+ fixedHex += char;
+ }
+ }
+
+ if (fixedHex.length < 12) {
+ const diff = 12 - fixedHex.length;
+ for (let i = 0; i < diff; i++) {
+ fixedHex += '0';
+ }
+ }
+
+ const color1 = fixedHex.slice(0, 6);
+ const color2 = fixedHex.slice(6, 12);
+ const direction = getFixedGradientDirection(hash);
+ return `linear-gradient(${direction}, #${color1}, #${color2})`;
+}
+
+export function useGenerateBackground(hash: string) {
+ return hashToGradient(hash);
+}
diff --git a/packages/react/src/ui/WebWallet/index.css b/packages/react/src/ui/WebWallet/index.css
new file mode 100644
index 00000000..ed4a38d6
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/index.css
@@ -0,0 +1,29 @@
+
+/* Fix for popper content wrapper */
+[data-radix-popper-content-wrapper] {
+ @media (max-width: 1024px) {
+ transform: none !important;
+ bottom: 0px;
+ top: auto !important;
+
+ & > .fuel-PopoverContent {
+ --radius-factor: 1.5;
+ --radius-full: 0px;
+ --radius-thumb: 9999px;
+ border-radius: var(--radius-6) var(--radius-6) 0 0;
+ height: 70vh;
+ max-height: 70vh;
+ width: 100vw;
+ max-width: 100%;
+ }
+ }
+
+ @media (min-width: 1025px) {
+ & > .fuel-PopoverContent {
+ height: 50vh;
+ max-height: 50vh;
+ width: 370px;
+ max-width: 370px;
+ }
+ }
+}
diff --git a/packages/react/src/ui/WebWallet/index.tsx b/packages/react/src/ui/WebWallet/index.tsx
new file mode 100644
index 00000000..5c1f4bae
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/index.tsx
@@ -0,0 +1,124 @@
+import { Inset, Popover, Separator, VStack, shortAddress } from '@fuels/ui';
+import { useEffect, useState } from 'react';
+import {
+ useAccount,
+ useCurrentConnector,
+ useDisconnect,
+ useIsConnected,
+} from '../../hooks';
+import { Anchor, Footer, Header, ScrollableContent } from './components';
+import { useAssetsBalance } from './hooks';
+import { Overlay } from './styles';
+import type { IAssetsBalance } from './types';
+
+import '@fuels/ui/styles.css';
+import './index.css';
+
+export const WebWallet = () => {
+ const [address, setAddress] = useState('');
+ const [mainAsset, setMainAsset] = useState({} as IAssetsBalance);
+ const [hideAmount, setHideAmount] = useState(false);
+ const [isFetchedBalance, setFetchedBalance] = useState(false);
+
+ const { isConnected } = useIsConnected();
+ const { disconnect } = useDisconnect();
+ const {
+ account,
+ isFetched: isFetchedAccount,
+ refetch: refetchAccount,
+ } = useAccount();
+
+ const {
+ assetsBalance,
+ isFetched: isFetchedAssetsBalance,
+ refetch: refetchAssetsBalance,
+ } = useAssetsBalance();
+
+ const {
+ currentConnector: connector,
+ isFetched: isFetchedConnector,
+ refetch,
+ } = useCurrentConnector();
+
+ const toggleHideAmount = () => {
+ setHideAmount(!hideAmount);
+ };
+
+ useEffect(() => {
+ if (!isConnected) {
+ setAddress('');
+ setMainAsset({} as IAssetsBalance);
+ setFetchedBalance(false);
+ } else {
+ refetch();
+ refetchAccount();
+ refetchAssetsBalance();
+ setFetchedBalance(false);
+ }
+ }, [isConnected, refetch, refetchAccount, refetchAssetsBalance]);
+
+ useEffect(() => {
+ if (assetsBalance.length > 0 && !isFetchedBalance) {
+ const asset =
+ assetsBalance.find((ab) => ab.symbol === 'ETH') ?? assetsBalance[0];
+ setMainAsset(asset);
+ setFetchedBalance(true);
+ }
+ }, [assetsBalance, isFetchedBalance]);
+
+ useEffect(() => {
+ if (isFetchedAccount && account && address === '') {
+ setAddress(account);
+ }
+ }, [account, isFetchedAccount, address]);
+
+ const isLoading =
+ !isFetchedAccount ||
+ !isFetchedAssetsBalance ||
+ !isFetchedConnector ||
+ !isFetchedBalance;
+
+ // Fixes an issue where the Tooltip would be the focused element
+ const preventAutoFocus = (e: Event) => {
+ e.preventDefault();
+ };
+
+ if (!isConnected) {
+ return null;
+ }
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react/src/ui/WebWallet/styles.tsx b/packages/react/src/ui/WebWallet/styles.tsx
new file mode 100644
index 00000000..a88b5115
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/styles.tsx
@@ -0,0 +1,8 @@
+import { styled } from 'styled-components';
+
+export const Overlay = styled.div`
+ position: fixed;
+ bottom: 1rem;
+ right: 0.5rem;
+ z-index: 2;
+`;
diff --git a/packages/react/src/ui/WebWallet/types.ts b/packages/react/src/ui/WebWallet/types.ts
new file mode 100644
index 00000000..146853b4
--- /dev/null
+++ b/packages/react/src/ui/WebWallet/types.ts
@@ -0,0 +1,10 @@
+import type { BN } from 'fuels';
+
+export interface IAssetsBalance {
+ id: string;
+ name: string;
+ symbol: string;
+ icon: string;
+ amount: BN;
+ decimals: number;
+}
diff --git a/packages/react/src/utils/queryKeys.ts b/packages/react/src/utils/queryKeys.ts
index d6163be1..50ec27da 100644
--- a/packages/react/src/utils/queryKeys.ts
+++ b/packages/react/src/utils/queryKeys.ts
@@ -1,11 +1,5 @@
import type { QueryKey } from '@tanstack/react-query';
-import type {
- BytesLike,
- FuelConnector,
- Network,
- Provider,
- SelectNetworkArguments,
-} from 'fuels';
+import type { Asset, BytesLike, Network, Provider } from 'fuels';
export const QUERY_KEYS = {
base: ['fuel'] as QueryKey,
@@ -18,6 +12,11 @@ export const QUERY_KEYS = {
assets: (): QueryKey => {
return QUERY_KEYS.base.concat('assets');
},
+ assetsBalance: (assets?: Asset[]): QueryKey => {
+ const queryKey = QUERY_KEYS.base.concat('assetsBalance');
+ if (assets) queryKey.push(assets);
+ return queryKey;
+ },
contract: (
address: string,
chainId: number | undefined,
diff --git a/packages/react/tailwind.config.ts b/packages/react/tailwind.config.ts
new file mode 100644
index 00000000..8997bb2d
--- /dev/null
+++ b/packages/react/tailwind.config.ts
@@ -0,0 +1,9 @@
+// @ts-ignore
+import preset from '@fuels/ui/tailwind-preset';
+import type { Config } from 'tailwindcss';
+
+export default {
+ darkMode: 'selector',
+ presets: [preset],
+ content: ['./src/**/*.{js,jsx,ts,tsx}', '@fuels/ui/index.esm.js'],
+} satisfies Config;
diff --git a/packages/react/tsconfig.json b/packages/react/tsconfig.json
index 5ac08b1e..cb1babaf 100644
--- a/packages/react/tsconfig.json
+++ b/packages/react/tsconfig.json
@@ -1,6 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
+ "jsx": "react-jsx",
"outDir": "./dist",
"baseUrl": ".",
"paths": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f1747d3e..221a898d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -32,7 +32,7 @@ importers:
version: 0.20.0(tsup@8.0.2(@microsoft/api-extractor@7.43.0(@types/node@20.12.11))(postcss@8.4.41)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))(typescript@5.4.5))
'@vitest/coverage-v8':
specifier: 2.0.2
- version: 2.0.2(vitest@2.0.2(@types/node@20.12.11)(jsdom@24.0.0)(terser@5.31.0))
+ version: 2.0.2(vitest@2.0.2(@types/node@20.12.11)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.31.0))
compare-versions:
specifier: 6.1.0
version: 6.1.0
@@ -50,7 +50,7 @@ importers:
version: 2.0.11
vitest:
specifier: 2.0.2
- version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0)(terser@5.31.0)
+ version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.31.0)
examples/react-app:
dependencies:
@@ -62,16 +62,16 @@ importers:
version: link:../../packages/react
'@radix-ui/react-toast':
specifier: 1.1.5
- version: 1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.1.5(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@tanstack/react-query':
specifier: 5.35.1
- version: 5.35.1(react@18.3.1)
+ version: 5.35.1(react@18.2.0)
'@wagmi/connectors':
specifier: 5.1.7
- version: 5.1.7(@types/react@18.3.1)(@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.3.1)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
+ version: 5.1.7(@types/react@18.2.54)(@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
'@wagmi/core':
specifier: 2.13.4
- version: 2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.3.1)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))
+ version: 2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))
clsx:
specifier: 2.1.1
version: 2.1.1
@@ -79,18 +79,18 @@ importers:
specifier: 0.94.8
version: 0.94.8
react:
- specifier: 18.3.1
- version: 18.3.1
+ specifier: 18.2.0
+ version: 18.2.0
react-dom:
- specifier: 18.3.1
- version: 18.3.1(react@18.3.1)
+ specifier: 18.2.0
+ version: 18.2.0(react@18.2.0)
devDependencies:
'@tanstack/react-query-devtools':
specifier: 5.35.1
- version: 5.35.1(@tanstack/react-query@5.35.1(react@18.3.1))(react@18.3.1)
+ version: 5.35.1(@tanstack/react-query@5.35.1(react@18.2.0))(react@18.2.0)
'@types/react':
- specifier: 18.3.1
- version: 18.3.1
+ specifier: 18.2.54
+ version: 18.2.54
'@types/react-dom':
specifier: 18.3.0
version: 18.3.0
@@ -126,7 +126,7 @@ importers:
version: 5.35.1(react@18.3.1)
'@wagmi/connectors':
specifier: 5.1.7
- version: 5.1.7(@types/react@18.3.1)(@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.3.1)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
+ version: 5.1.7(@types/react@18.2.54)(@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
fuels:
specifier: 0.94.8
version: 0.94.8
@@ -141,7 +141,7 @@ importers:
version: 18.3.1(react@18.3.1)
wagmi:
specifier: 2.12.7
- version: 2.12.7(@tanstack/query-core@5.35.1)(@tanstack/react-query@5.35.1(react@18.3.1))(@types/react@18.3.1)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
+ version: 2.12.7(@tanstack/query-core@5.35.1)(@tanstack/react-query@5.35.1(react@18.3.1))(@types/react@18.2.54)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
devDependencies:
'@tanstack/react-query-devtools':
specifier: 5.35.1
@@ -150,8 +150,8 @@ importers:
specifier: 20.12.11
version: 20.12.11
'@types/react':
- specifier: 18.3.1
- version: 18.3.1
+ specifier: 18.2.54
+ version: 18.2.54
'@types/react-dom':
specifier: 18.3.0
version: 18.3.0
@@ -203,7 +203,7 @@ importers:
version: 3.9.1(@types/node@20.12.11)(rollup@4.20.0)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.11)(terser@5.31.0))
vitest:
specifier: 2.0.2
- version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0)(terser@5.31.0)
+ version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.31.0)
packages/common:
dependencies:
@@ -243,7 +243,7 @@ importers:
version: 5.4.5
vitest:
specifier: 2.0.2
- version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0)(terser@5.31.0)
+ version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.31.0)
packages/connectors:
dependencies:
@@ -423,7 +423,7 @@ importers:
version: 4.3.2(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.11)(terser@5.31.0))
vitest:
specifier: 2.0.2
- version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0)(terser@5.31.0)
+ version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.31.0)
packages/evm-predicates:
devDependencies:
@@ -509,31 +509,52 @@ importers:
packages/react:
dependencies:
- '@radix-ui/react-dialog':
- specifier: 1.1.1
- version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@fuels/ui':
+ specifier: 0.1.2
+ version: 0.1.2(@types/react-dom@18.3.0)(@types/react@18.2.54)(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))(utf-8-validate@5.0.10)
+ '@tabler/icons-react':
+ specifier: 2.47.0
+ version: 2.47.0(react@18.3.1)
events:
- specifier: 3.3.0
+ specifier: ^3.3.0
version: 3.3.0
+ tailwind-variants:
+ specifier: 0.1.20
+ version: 0.1.20(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5)))
devDependencies:
+ '@radix-ui/react-dialog':
+ specifier: 1.1.1
+ version: 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
'@tanstack/react-query':
specifier: 5.35.1
version: 5.35.1(react@18.3.1)
'@types/react':
- specifier: 18.3.1
- version: 18.3.1
+ specifier: 18.2.54
+ version: 18.2.54
compare-versions:
- specifier: 6.1.0
+ specifier: ^6.1.0
version: 6.1.0
fuels:
specifier: 0.94.8
version: 0.94.8
+ postcss:
+ specifier: 8.4.35
+ version: 8.4.35
+ postcss-import:
+ specifier: 16.0.1
+ version: 16.0.1(postcss@8.4.35)
react:
- specifier: 18.3.1
+ specifier: ^18.2.0
version: 18.3.1
+ styled-components:
+ specifier: 6.1.12
+ version: 6.1.12(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ tailwindcss:
+ specifier: 3.4.4
+ version: 3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))
tsup:
specifier: 7.3.0
- version: 7.3.0(postcss@8.4.41)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))(typescript@5.4.5)
+ version: 7.3.0(postcss@8.4.35)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))(typescript@5.4.5)
tsx:
specifier: 4.9.3
version: 4.9.3
@@ -606,7 +627,7 @@ importers:
version: 3.9.1(@types/node@20.12.11)(rollup@4.20.0)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.11)(terser@5.31.0))
vitest:
specifier: 2.0.2
- version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0)(terser@5.31.0)
+ version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.31.0)
packages/walletconnect-connector:
dependencies:
@@ -673,13 +694,16 @@ importers:
version: 3.9.1(@types/node@20.12.11)(rollup@4.20.0)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.11)(terser@5.31.0))
vitest:
specifier: 2.0.2
- version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0)(terser@5.31.0)
+ version: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.31.0)
packages:
'@adraffy/ens-normalize@1.10.0':
resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==}
+ '@adraffy/ens-normalize@1.10.1':
+ resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==}
+
'@algolia/autocomplete-core@1.9.3':
resolution: {integrity: sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL7A6fP6PPw==}
@@ -1602,6 +1626,21 @@ packages:
search-insights:
optional: true
+ '@emotion/is-prop-valid@0.8.8':
+ resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
+
+ '@emotion/is-prop-valid@1.2.2':
+ resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
+
+ '@emotion/memoize@0.7.4':
+ resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
+
+ '@emotion/memoize@0.8.1':
+ resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
+
+ '@emotion/unitless@0.8.1':
+ resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==}
+
'@esbuild/aix-ppc64@0.19.12':
resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
engines: {node: '>=12'}
@@ -2338,6 +2377,36 @@ packages:
'@ethersproject/sha2@5.7.0':
resolution: {integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==}
+ '@floating-ui/core@1.6.8':
+ resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
+
+ '@floating-ui/dom@1.6.11':
+ resolution: {integrity: sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==}
+
+ '@floating-ui/react-dom@2.1.2':
+ resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+
+ '@floating-ui/utils@0.2.8':
+ resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
+
+ '@formatjs/ecma402-abstract@2.0.0':
+ resolution: {integrity: sha512-rRqXOqdFmk7RYvj4khklyqzcfQl9vEL/usogncBHRZfZBDOwMGuSRNFl02fu5KGHXdbinju+YXyuR+Nk8xlr/g==}
+
+ '@formatjs/fast-memoize@2.2.0':
+ resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==}
+
+ '@formatjs/icu-messageformat-parser@2.7.8':
+ resolution: {integrity: sha512-nBZJYmhpcSX0WeJ5SDYUkZ42AgR3xiyhNCsQweFx3cz/ULJjym8bHAzWKvG5e2+1XO98dBYC0fWeeAECAVSwLA==}
+
+ '@formatjs/icu-skeleton-parser@1.8.2':
+ resolution: {integrity: sha512-k4ERKgw7aKGWJZgTarIcNEmvyTVD9FYh0mTrrBMHZ1b8hUu6iOJ4SzsZlo3UNAvHYa+PnvntIwRPt1/vy4nA9Q==}
+
+ '@formatjs/intl-localematcher@0.5.4':
+ resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==}
+
'@fuel-ts/abi-coder@0.94.8':
resolution: {integrity: sha512-tyqDHfGyHyEOrH+CjgoMLuoBHBmHJgcsqdR6jGWw4gvvctvo8j0GIk2H9HBc4t9mK5+IGCCnURSvUvAdh5S8bQ==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
@@ -2351,6 +2420,10 @@ packages:
resolution: {integrity: sha512-Ftr1wZ/9Tc5UZRGRDiANPMaqFrM3TD0EMq5clb/dj3ECnUaalLUqAbAIGgIMSOuR37BLEXPeBPOVbQJL9DBHQg==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
+ '@fuel-ts/address@0.76.0':
+ resolution: {integrity: sha512-J6vhEvfs0EcAW/V7V2eMsKa3/6h3fiAtMkaRPPwX+SybEbnI+3e17JXXD1yGt1UqaS9OWQuaDtnXlXU3UklSZQ==}
+ engines: {node: ^18.18.2 || ^20.0.0}
+
'@fuel-ts/address@0.94.8':
resolution: {integrity: sha512-dXFztzCGNsIuMAgd0XRK9DCJ5L4KWYYeGsbhYLttdsctK2SUw6z4iY/tHKiDNC7Q6AAeCccvma4aVtiXHS2c4Q==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
@@ -2359,10 +2432,22 @@ packages:
resolution: {integrity: sha512-2mXtQT7OABaDwsiRYqf8161+6zJnL8R8tKIYcY9Y6Mr+CdLZt8SmZ9QGE8A/XCtQU/drTCCP8xa/BSpkmqGhOw==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
+ '@fuel-ts/crypto@0.76.0':
+ resolution: {integrity: sha512-CsZxuyCE0qVt3SATYBXwYQUgp8lB/h9RvIi4ZWAO1Fx+kVGHDgn7aVEn2QQbKvelYKk1HAgled8hMyqaDRk4cQ==}
+ engines: {node: ^18.18.2 || ^20.0.0}
+
'@fuel-ts/crypto@0.94.8':
resolution: {integrity: sha512-DrsfbPXFd0LAZd9Pus4nm58OPv3+qpBPFEh465P8FnsnZ+RxjwtWgWe1vjTPre0P6/QHscAr0G5aVag3eUWtGw==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
+ '@fuel-ts/errors@0.76.0':
+ resolution: {integrity: sha512-X67pOvTtTqf1TB1EnsH1UDNULgEAxDvSJ6KRHoNKchS5xwSwNM/VeDqzFlNYaNJDq/5HYaGY91Bnjep10zXmSA==}
+ engines: {node: ^18.18.2 || ^20.0.0}
+
+ '@fuel-ts/errors@0.76.12':
+ resolution: {integrity: sha512-N1QYoKnJsHnQAVYqZ4NbJucrBS7jhull9imb38Ptr4H4Qrn+sfinPY2DrIzamaRTKR8Pd6gL5kAY0UN4FOJlOQ==}
+ engines: {node: ^18.18.2 || ^20.0.0}
+
'@fuel-ts/errors@0.93.0':
resolution: {integrity: sha512-izR2qVKA1XlB3FDmpFZFF5CSCknC3InouuulF/dbX1mEsGMkYAcCykDezBc32JgyiVM0vXfs5bTHpICoeg3dQg==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
@@ -2375,10 +2460,22 @@ packages:
resolution: {integrity: sha512-h0iuDE7MMcquS/Wo2pDrfln6VpkwN+SNLpLZrTTQAVWzAHcQmQqtHvr5TkzzboYMT4uEahaxrncBfMikot4Smg==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
+ '@fuel-ts/interfaces@0.76.0':
+ resolution: {integrity: sha512-ysdQUUU2UP1/f1YzrkVOqhVqBOPrEd8kyTMPbNV0x0hqs7t3z6UqZYtNNHdTYNMOPyYYxxVzREKSaNN42j8FBA==}
+ engines: {node: ^18.18.2 || ^20.0.0}
+
+ '@fuel-ts/interfaces@0.76.12':
+ resolution: {integrity: sha512-TkuwdfPC6Gt6RufQZHOCtJ7/tkpxtkfZHNGHmYcehn7gUDltRVQSyCm/YVE6Zl32+fyiZ8QOowSNDA0g5wPhPQ==}
+ engines: {node: ^18.18.2 || ^20.0.0}
+
'@fuel-ts/interfaces@0.94.8':
resolution: {integrity: sha512-gSkp6cp0g+vYK7yzoBwvW7x43AzJL6EoPE7HTHoJWUMbLPWhgqOGJtWoNnobGRO1Pxl0etmBLaVyZmrhJdVQqQ==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
+ '@fuel-ts/math@0.76.0':
+ resolution: {integrity: sha512-WjxErOHpPQZAJel4kCys1MCIQo0HUfv7z4Vy1Dy3P4/iG4jGa1s4zOghX5QRJMEyZwMyu5Do7BVfa2fT/2insA==}
+ engines: {node: ^18.18.2 || ^20.0.0}
+
'@fuel-ts/math@0.94.8':
resolution: {integrity: sha512-bYmYXk6g1INk1RtqsOPK65tZ+nOYecc/lwSdEZswagg6KPR+l0ckc3D1o8i3BA2JxQDWzuwDWNZ+ZVHYpTVVyQ==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
@@ -2399,10 +2496,24 @@ packages:
resolution: {integrity: sha512-qE+gpEu5QEVBBTPfVuO0k4dnwR6ZwFLquWIWLYE47wPt2gkSf2uY76Fv9PHP+ouxp5V1LAFL/k3ZotXoe/Om7A==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
+ '@fuel-ts/utils@0.76.12':
+ resolution: {integrity: sha512-H2mEpZ8pCxkrh0ZoKhJHkQlpV9wFZmeHCEpIvQh5xCmr/DZraekMjf3gEGA6PrIhxdy/f+l8JC8turIAQs0ipA==}
+ engines: {node: ^18.18.2 || ^20.0.0}
+
'@fuel-ts/utils@0.94.8':
resolution: {integrity: sha512-AvsM/fNDR4u3urQMbFVkxTusmd6eEQZ4ZAOitytu+8VeOEuzYvQV8T4NwFgs0WeN3SfW0lFLrI6SR2Pkh9qFgg==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
+ '@fuel-ts/versions@0.76.0':
+ resolution: {integrity: sha512-Y8+RXEEd3Nj+fLmGclb04l8lFmWgPrxrJ7WUYmA+pr0YoWmUn2C9y8NPIfDakaER4wx8DDcxiIShZ8xnrz8AxQ==}
+ engines: {node: ^18.18.2 || ^20.0.0}
+ hasBin: true
+
+ '@fuel-ts/versions@0.76.12':
+ resolution: {integrity: sha512-x3pC7UdJaZOJygdqkPlF4wAQu5ctPQ4er9o8ZaE/J8svnEY1GOoyAT5lrIJlDP8ku8HIkaDHdVlYg8Y+jicu+A==}
+ engines: {node: ^18.18.2 || ^20.0.0}
+ hasBin: true
+
'@fuel-ts/versions@0.93.0':
resolution: {integrity: sha512-3215zKyFxe2yPT25noagYBdfqLdYRNuCyH0+1waL87TDLcTIywdaNRLZ9G4CZMuTGv40CBKN5kv+tymXzs4o6g==}
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
@@ -2413,6 +2524,9 @@ packages:
engines: {node: ^18.20.3 || ^20.0.0 || ^22.0.0}
hasBin: true
+ '@fuels/assets@0.20.0':
+ resolution: {integrity: sha512-pIVzHCEXkIIKXlIvvrISrFyaRRjbxEMnypjV/UZOI9dr99woUgXV1MZnMsq44uhQ/T3VXiTu2cXo4/SSE5ny2g==}
+
'@fuels/ts-config@0.20.0':
resolution: {integrity: sha512-wFPifVVz2z/YXuYJ/qLFRKIAVq98ZtrrX9TlcKuL5E4ar32VGLRFTtoujEwFVcWRWmdkxA9ulcCiV3fEojdqlQ==}
peerDependencies:
@@ -2423,6 +2537,9 @@ packages:
peerDependencies:
tsup: ^7.2.0
+ '@fuels/ui@0.1.2':
+ resolution: {integrity: sha512-PCdvboOtkEPL0qZYXl2VBarYFH70727hl2KcKrvmHBlF//WIxxxy/ZNKaoCb8aqXy1v9fqWhc6CdG0jXPK5GbQ==}
+
'@fuels/vm-asm@0.57.1':
resolution: {integrity: sha512-+TSJSfamSaHrG4j274NEDW0ndZXLEXfNq5TvgjA4HN4JTnGudm41pFM7+Xgrfi0AxkpxJCaZLBTycGj6SZNmBw==}
@@ -2437,6 +2554,18 @@ packages:
'@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
+ '@internationalized/date@3.5.5':
+ resolution: {integrity: sha512-H+CfYvOZ0LTJeeLOqm19E3uj/4YjrmOFtBufDHPfvtI80hFAMqtrp7oCACpe4Cil5l8S0Qu/9dYfZc/5lY8WQQ==}
+
+ '@internationalized/message@3.1.4':
+ resolution: {integrity: sha512-Dygi9hH1s7V9nha07pggCkvmRfDd3q2lWnMGvrJyrOwYMe1yj4D2T9BoH9I6MGR7xz0biQrtLPsqUkqXzIrBOw==}
+
+ '@internationalized/number@3.5.3':
+ resolution: {integrity: sha512-rd1wA3ebzlp0Mehj5YTuTI50AQEx80gWFyHcQu+u91/5NgdwBecO8BH6ipPfE+lmQ9d63vpB3H9SHoIUiupllw==}
+
+ '@internationalized/string@3.2.3':
+ resolution: {integrity: sha512-9kpfLoA8HegiWTeCbR2livhdVeKobCnVv8tlJ6M2jF+4tcMqDo94ezwlnrUANBWPgd8U7OXIHCk2Ov2qhk4KXw==}
+
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
@@ -2644,63 +2773,123 @@ packages:
resolution: {integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==}
deprecated: Motion One for Vue is deprecated. Use Oku Motion instead https://oku-ui.com/motion
+ '@next/env@14.1.0':
+ resolution: {integrity: sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw==}
+
'@next/env@14.2.3':
resolution: {integrity: sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA==}
+ '@next/swc-darwin-arm64@14.1.0':
+ resolution: {integrity: sha512-nUDn7TOGcIeyQni6lZHfzNoo9S0euXnu0jhsbMOmMJUBfgsnESdjN97kM7cBqQxZa8L/bM9om/S5/1dzCrW6wQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
'@next/swc-darwin-arm64@14.2.3':
resolution: {integrity: sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
+ '@next/swc-darwin-x64@14.1.0':
+ resolution: {integrity: sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
'@next/swc-darwin-x64@14.2.3':
resolution: {integrity: sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
+ '@next/swc-linux-arm64-gnu@14.1.0':
+ resolution: {integrity: sha512-RHo7Tcj+jllXUbK7xk2NyIDod3YcCPDZxj1WLIYxd709BQ7WuRYl3OWUNG+WUfqeQBds6kvZYlc42NJJTNi4tQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
'@next/swc-linux-arm64-gnu@14.2.3':
resolution: {integrity: sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ '@next/swc-linux-arm64-musl@14.1.0':
+ resolution: {integrity: sha512-v6kP8sHYxjO8RwHmWMJSq7VZP2nYCkRVQ0qolh2l6xroe9QjbgV8siTbduED4u0hlk0+tjS6/Tuy4n5XCp+l6g==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
'@next/swc-linux-arm64-musl@14.2.3':
resolution: {integrity: sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ '@next/swc-linux-x64-gnu@14.1.0':
+ resolution: {integrity: sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
'@next/swc-linux-x64-gnu@14.2.3':
resolution: {integrity: sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ '@next/swc-linux-x64-musl@14.1.0':
+ resolution: {integrity: sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
'@next/swc-linux-x64-musl@14.2.3':
resolution: {integrity: sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ '@next/swc-win32-arm64-msvc@14.1.0':
+ resolution: {integrity: sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
'@next/swc-win32-arm64-msvc@14.2.3':
resolution: {integrity: sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
+ '@next/swc-win32-ia32-msvc@14.1.0':
+ resolution: {integrity: sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw==}
+ engines: {node: '>= 10'}
+ cpu: [ia32]
+ os: [win32]
+
'@next/swc-win32-ia32-msvc@14.2.3':
resolution: {integrity: sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
+ '@next/swc-win32-x64-msvc@14.1.0':
+ resolution: {integrity: sha512-9WEbVRRAqJ3YFVqEZIxUqkiO8l1nool1LmNxygr5HWF8AcSYsEpneUDhmjUVJEzO2A04+oPtZdombzzPPkTtgg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
'@next/swc-win32-x64-msvc@14.2.3':
resolution: {integrity: sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
+ '@noble/curves@1.2.0':
+ resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==}
+
'@noble/curves@1.4.0':
resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==}
@@ -2714,6 +2903,10 @@ packages:
resolution: {integrity: sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==}
engines: {node: ^14.21.3 || >=16}
+ '@noble/hashes@1.3.2':
+ resolution: {integrity: sha512-MVC8EAQp7MvEcm30KWENFjgR+Mkmf+D189XJTkFIlwohU5hcBbn1ZkKq7KVTi2Hme3PMGF390DaL52beVrIihQ==}
+ engines: {node: '>= 16'}
+
'@noble/hashes@1.4.0':
resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==}
engines: {node: '>= 16'}
@@ -2820,14 +3013,33 @@ packages:
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
+ '@radix-ui/colors@3.0.0':
+ resolution: {integrity: sha512-FUOsGBkHrYJwCSEtWRCIfQbZG7q1e6DgxCIOe1SUQzDe/7rXXeA47s8yCn6fuTNQAj1Zq4oTFi9Yjp3wzElcxg==}
+
+ '@radix-ui/number@1.1.0':
+ resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
+
'@radix-ui/primitive@1.0.1':
resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
'@radix-ui/primitive@1.1.0':
resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==}
- '@radix-ui/react-collection@1.0.3':
- resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
+ '@radix-ui/react-accessible-icon@1.1.0':
+ resolution: {integrity: sha512-i9Zg4NOSXlfUva0agzI2DjWrvFJm9uO4L6CMW7nmMa5CIOOX/Yin894W7WwjodFQWPwe5kmAJ4JF33R8slKI2g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-accordion@1.1.2':
+ resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2839,44 +3051,60 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-compose-refs@1.0.1':
- resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
+ '@radix-ui/react-alert-dialog@1.1.1':
+ resolution: {integrity: sha512-wmCoJwj7byuVuiLKqDLlX7ClSUU0vd9sdCeM+2Ls+uf13+cpSJoMgwysHq1SGVVkJj5Xn0XWi1NoRCdkMpr6Mw==}
peerDependencies:
'@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
+ '@types/react-dom':
+ optional: true
- '@radix-ui/react-compose-refs@1.1.0':
- resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
+ '@radix-ui/react-arrow@1.1.0':
+ resolution: {integrity: sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==}
peerDependencies:
'@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
+ '@types/react-dom':
+ optional: true
- '@radix-ui/react-context@1.0.1':
- resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
+ '@radix-ui/react-aspect-ratio@1.1.0':
+ resolution: {integrity: sha512-dP87DM/Y7jFlPgUZTlhx6FF5CEzOiaxp2rBCKlaXlpH5Ip/9Fg5zZ9lDOQ5o/MOfUlf36eak14zoWYpgcgGoOg==}
peerDependencies:
'@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
+ '@types/react-dom':
+ optional: true
- '@radix-ui/react-context@1.1.0':
- resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==}
+ '@radix-ui/react-avatar@1.1.0':
+ resolution: {integrity: sha512-Q/PbuSMk/vyAd/UoIShVGZ7StHHeRFYU7wXmi5GV+8cLXflZAEpHL/F697H1klrzxKXNtZ97vWiC0q3RKUH8UA==}
peerDependencies:
'@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
+ '@types/react-dom':
+ optional: true
- '@radix-ui/react-dialog@1.1.1':
- resolution: {integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==}
+ '@radix-ui/react-checkbox@1.1.0':
+ resolution: {integrity: sha512-3+kSzVfMONtP3B6CvaOrXLVTyGYws7tGmG5kOY0AfyH9sexkLytIwciNwjZhY0RoGOEbxI7bMS21XYB8H5itWQ==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2888,8 +3116,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-dismissable-layer@1.0.5':
- resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
+ '@radix-ui/react-collapsible@1.0.3':
+ resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2901,8 +3129,21 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-dismissable-layer@1.1.0':
- resolution: {integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==}
+ '@radix-ui/react-collection@1.0.3':
+ resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-collection@1.1.0':
+ resolution: {integrity: sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2914,8 +3155,17 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-focus-guards@1.1.0':
- resolution: {integrity: sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==}
+ '@radix-ui/react-compose-refs@1.0.1':
+ resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-compose-refs@1.1.0':
+ resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -2923,8 +3173,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-focus-scope@1.1.0':
- resolution: {integrity: sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==}
+ '@radix-ui/react-context-menu@2.2.1':
+ resolution: {integrity: sha512-wvMKKIeb3eOrkJ96s722vcidZ+2ZNfcYZWBPRHIB1VWrF+fiF851Io6LX0kmK5wTDQFKdulCCKJk2c3SBaQHvA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2936,30 +3186,26 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-id@1.1.0':
- resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
+ '@radix-ui/react-context@1.0.1':
+ resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@radix-ui/react-portal@1.0.4':
- resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
+ '@radix-ui/react-context@1.1.0':
+ resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-portal@1.1.1':
- resolution: {integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==}
+ '@radix-ui/react-dialog@1.1.1':
+ resolution: {integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -2971,34 +3217,26 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-presence@1.0.1':
- resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
+ '@radix-ui/react-direction@1.0.1':
+ resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-presence@1.1.0':
- resolution: {integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==}
+ '@radix-ui/react-direction@1.1.0':
+ resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
peerDependencies:
'@types/react': '*'
- '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@types/react-dom':
- optional: true
- '@radix-ui/react-primitive@1.0.3':
- resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
+ '@radix-ui/react-dismissable-layer@1.0.5':
+ resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3010,8 +3248,8 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-primitive@2.0.0':
- resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==}
+ '@radix-ui/react-dismissable-layer@1.1.0':
+ resolution: {integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
@@ -3023,17 +3261,21 @@ packages:
'@types/react-dom':
optional: true
- '@radix-ui/react-slot@1.0.2':
- resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
+ '@radix-ui/react-dropdown-menu@2.1.1':
+ resolution: {integrity: sha512-y8E+x9fBq9qvteD2Zwa4397pUVhYsh9iq44b5RD5qu1GMJWBCBuVg1hMyItbc6+zH00TxGRqd9Iot4wzf3OoBQ==}
peerDependencies:
'@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
+ '@types/react-dom':
+ optional: true
- '@radix-ui/react-slot@1.1.0':
- resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
+ '@radix-ui/react-focus-guards@1.1.0':
+ resolution: {integrity: sha512-w6XZNUPVv6xCpZUqb/yN9DL6auvpGX3C/ee6Hdi16v2UUy25HV2Q5bcflsiDyT/g5RwbPQ/GIT1vLkeRb+ITBw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -3041,39 +3283,47 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-toast@1.1.5':
- resolution: {integrity: sha512-fRLn227WHIBRSzuRzGJ8W+5YALxofH23y0MlPLddaIpLpCDqdE0NZlS2NRQDRiptfxDeeCjgFIpexB1/zkxDlw==}
+ '@radix-ui/react-focus-scope@1.1.0':
+ resolution: {integrity: sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==}
peerDependencies:
'@types/react': '*'
'@types/react-dom': '*'
- react: ^16.8 || ^17.0 || ^18.0
- react-dom: ^16.8 || ^17.0 || ^18.0
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
'@types/react-dom':
optional: true
- '@radix-ui/react-use-callback-ref@1.0.1':
- resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
+ '@radix-ui/react-form@0.1.0':
+ resolution: {integrity: sha512-1/oVYPDjbFILOLIarcGcMKo+y6SbTVT/iUKVEw59CF4offwZgBgC3ZOeSBewjqU0vdA6FWTPWTN63obj55S/tQ==}
peerDependencies:
'@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
+ '@types/react-dom':
+ optional: true
- '@radix-ui/react-use-callback-ref@1.1.0':
- resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
+ '@radix-ui/react-hover-card@1.1.1':
+ resolution: {integrity: sha512-IwzAOP97hQpDADYVKrEEHUH/b2LA+9MgB0LgdmnbFO2u/3M5hmEofjjr2M6CyzUblaAqJdFm6B7oFtU72DPXrA==}
peerDependencies:
'@types/react': '*'
+ '@types/react-dom': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
+ '@types/react-dom':
+ optional: true
- '@radix-ui/react-use-controllable-state@1.0.1':
- resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
+ '@radix-ui/react-id@1.0.1':
+ resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0
@@ -3081,8 +3331,8 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-controllable-state@1.1.0':
- resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
+ '@radix-ui/react-id@1.1.0':
+ resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -3090,17 +3340,401 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-escape-keydown@1.0.3':
- resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
+ '@radix-ui/react-label@2.1.0':
+ resolution: {integrity: sha512-peLblDlFw/ngk3UWq0VnYaOLy6agTZZ+MUO/WhVfm14vJGML+xH4FAl2XQGLqdefjNb7ApRg6Yn7U42ZhmYXdw==}
peerDependencies:
'@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-menu@2.1.1':
+ resolution: {integrity: sha512-oa3mXRRVjHi6DZu/ghuzdylyjaMXLymx83irM7hTxutQbD+7IhPKdMdRHD26Rm+kHRrWcrUkkRPv5pd47a2xFQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-navigation-menu@1.2.0':
+ resolution: {integrity: sha512-OQ8tcwAOR0DhPlSY3e4VMXeHiol7la4PPdJWhhwJiJA+NLX0SaCaonOkRnI3gCDHoZ7Fo7bb/G6q25fRM2Y+3Q==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-popover@1.1.1':
+ resolution: {integrity: sha512-3y1A3isulwnWhvTTwmIreiB8CF4L+qRjZnK1wYLO7pplddzXKby/GnZ2M7OZY3qgnl6p9AodUIHRYGXNah8Y7g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-popper@1.2.0':
+ resolution: {integrity: sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-portal@1.0.4':
+ resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-portal@1.1.1':
+ resolution: {integrity: sha512-A3UtLk85UtqhzFqtoC8Q0KvR2GbXF3mtPgACSazajqq6A41mEQgo53iPzY4i6BwDxlIFqWIhiQ2G729n+2aw/g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-presence@1.0.1':
+ resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-presence@1.1.0':
+ resolution: {integrity: sha512-Gq6wuRN/asf9H/E/VzdKoUtT8GC9PQc9z40/vEr0VCJ4u5XvvhWIrSsCB6vD2/cH7ugTdSfYq9fLJCcM00acrQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-primitive@1.0.3':
+ resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-primitive@2.0.0':
+ resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-progress@1.1.0':
+ resolution: {integrity: sha512-aSzvnYpP725CROcxAOEBVZZSIQVQdHgBr2QQFKySsaD14u8dNT0batuXI+AAGDdAHfXH8rbnHmjYFqVJ21KkRg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-radio-group@1.2.0':
+ resolution: {integrity: sha512-yv+oiLaicYMBpqgfpSPw6q+RyXlLdIpQWDHZbUKURxe+nEh53hFXPPlfhfQQtYkS5MMK/5IWIa76SksleQZSzw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-roving-focus@1.1.0':
+ resolution: {integrity: sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-scroll-area@1.1.0':
+ resolution: {integrity: sha512-9ArIZ9HWhsrfqS765h+GZuLoxaRHD/j0ZWOWilsCvYTpYJp8XwCqNG7Dt9Nu/TItKOdgLGkOPCodQvDc+UMwYg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-select@2.1.1':
+ resolution: {integrity: sha512-8iRDfyLtzxlprOo9IicnzvpsO1wNCkuwzzCM+Z5Rb5tNOpCdMvcc2AkzX0Fz+Tz9v6NJ5B/7EEgyZveo4FBRfQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-slider@1.2.0':
+ resolution: {integrity: sha512-dAHCDA4/ySXROEPaRtaMV5WHL8+JB/DbtyTbJjYkY0RXmKMO2Ln8DFZhywG5/mVQ4WqHDBc8smc14yPXPqZHYA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-slot@1.0.2':
+ resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-slot@1.1.0':
+ resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-switch@1.1.0':
+ resolution: {integrity: sha512-OBzy5WAj641k0AOSpKQtreDMe+isX0MQJ1IVyF03ucdF3DunOnROVrjWs8zsXUxC3zfZ6JL9HFVCUlMghz9dJw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-tabs@1.1.0':
+ resolution: {integrity: sha512-bZgOKB/LtZIij75FSuPzyEti/XBhJH52ExgtdVqjCIh+Nx/FW+LhnbXtbCzIi34ccyMsyOja8T0thCzoHFXNKA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toast@1.1.5':
+ resolution: {integrity: sha512-fRLn227WHIBRSzuRzGJ8W+5YALxofH23y0MlPLddaIpLpCDqdE0NZlS2NRQDRiptfxDeeCjgFIpexB1/zkxDlw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toast@1.2.1':
+ resolution: {integrity: sha512-5trl7piMXcZiCq7MW6r8YYmu0bK5qDpTWz+FdEPdKyft2UixkspheYbjbrLXVN5NGKHFbOP7lm8eD0biiSqZqg==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toggle-group@1.1.0':
+ resolution: {integrity: sha512-PpTJV68dZU2oqqgq75Uzto5o/XfOVgkrJ9rulVmfTKxWp3HfUjHE6CP/WLRR4AzPX9HWxw7vFow2me85Yu+Naw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toggle@1.1.0':
+ resolution: {integrity: sha512-gwoxaKZ0oJ4vIgzsfESBuSgJNdc0rv12VhHgcqN0TEJmmZixXG/2XpsLK8kzNWYcnaoRIEEQc0bEi3dIvdUpjw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-tooltip@1.1.1':
+ resolution: {integrity: sha512-LLE8nzNE4MzPMw3O2zlVlkLFid3y9hMUs7uCbSHyKSo+tCN4yMCf+ZCCcfrYgsOC0TiHBPQ1mtpJ2liY3ZT3SQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-use-callback-ref@1.0.1':
+ resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-callback-ref@1.1.0':
+ resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-controllable-state@1.0.1':
+ resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-controllable-state@1.1.0':
+ resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-escape-keydown@1.0.3':
+ resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-escape-keydown@1.1.0':
+ resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-layout-effect@1.0.1':
+ resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
peerDependenciesMeta:
'@types/react':
optional: true
- '@radix-ui/react-use-escape-keydown@1.1.0':
- resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
+ '@radix-ui/react-use-layout-effect@1.1.0':
+ resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -3108,17 +3742,26 @@ packages:
'@types/react':
optional: true
- '@radix-ui/react-use-layout-effect@1.0.1':
- resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
+ '@radix-ui/react-use-previous@1.1.0':
+ resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
peerDependencies:
'@types/react': '*'
- react: ^16.8 || ^17.0 || ^18.0
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
'@types/react':
optional: true
- '@radix-ui/react-use-layout-effect@1.1.0':
- resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
+ '@radix-ui/react-use-rect@1.1.0':
+ resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-size@1.1.0':
+ resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
peerDependencies:
'@types/react': '*'
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
@@ -3139,6 +3782,256 @@ packages:
'@types/react-dom':
optional: true
+ '@radix-ui/react-visually-hidden@1.1.0':
+ resolution: {integrity: sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/rect@1.1.0':
+ resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
+
+ '@radix-ui/themes@3.1.1':
+ resolution: {integrity: sha512-G+j+x+7kyqQXnn+ftlNPgk1DdZ8h/vVZnLsG4hZB0Mxw4fdKCh1tThQuXDSBNWhFt/vTG79BMzRMiflovENrmA==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: 16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: 16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@react-aria/breadcrumbs@3.5.16':
+ resolution: {integrity: sha512-OXLKKu4SmjnSaSHkk4kow5/aH/SzlHWPJt+Uq3xec9TwDOr/Ob8aeFVGFoY0HxfGozuQlUz+4e+d29vfA0jNWg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/button@3.9.8':
+ resolution: {integrity: sha512-MdbMQ3t5KSCkvKtwYd/Z6sgw0v+r1VQFRYOZ4L53xOkn+u140z8vBpNeWKZh/45gxGv7SJn9s2KstLPdCWmIxw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/calendar@3.5.11':
+ resolution: {integrity: sha512-VLhBovLVu3uJXBkHbgEippmo/K58QLcc/tSJQ0aJUNyHsrvPgHEcj484cb+Uj/yOirXEIzaoW6WEvhcdKrb49Q==}
+ 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-aria/checkbox@3.14.6':
+ resolution: {integrity: sha512-LICY1PR3WsW/VbuLMjZbxo75+poeo3XCXGcUnk6hxMlWfp/Iy/XHVsHlGu9stRPKRF8BSuOGteaHWVn6IXfwtA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/combobox@3.10.3':
+ resolution: {integrity: sha512-EdDwr2Rp1xy7yWjOYHt2qF1IpAtUrkaNKZJzlIw1XSwcqizQY6E8orNPdZr6ZwD6/tgujxF1N71JTKyffrR0Xw==}
+ 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-aria/datepicker@3.11.2':
+ resolution: {integrity: sha512-6sbLln3VXSBcBRDgSACBzIzF/5KV5NlNOhZvXPFE6KqFw6GbevjZQTv5BNDXiwA3CQoawIRF7zgRvTANw8HkNA==}
+ 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-aria/dialog@3.5.17':
+ resolution: {integrity: sha512-lvfEgaqg922J1hurscqCS600OZQVitGtdpo81kAefJaUzMnCxzrYviyT96aaW0simHOlimbYF5js8lxBLZJRaw==}
+ 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-aria/dnd@3.7.2':
+ resolution: {integrity: sha512-NuE3EGqoBbe9aXAO9mDfbu4kMO7S4MCgkjkCqYi16TWfRUf38ajQbIlqodCx91b3LVN3SYvNbE3D4Tj5ebkljw==}
+ 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-aria/focus@3.16.2':
+ resolution: {integrity: sha512-Rqo9ummmgotESfypzFjI3uh58yMpL+E+lJBbQuXkBM0u0cU2YYzu0uOrFrq3zcHk997udZvq1pGK/R+2xk9B7g==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
+
+ '@react-aria/focus@3.18.2':
+ resolution: {integrity: sha512-Jc/IY+StjA3uqN73o6txKQ527RFU7gnG5crEl5Xy3V+gbYp2O5L3ezAo/E0Ipi2cyMbG6T5Iit1IDs7hcGu8aw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/form@3.0.8':
+ resolution: {integrity: sha512-8S2QiyUdAgK43M3flohI0R+2rTyzH088EmgeRArA8euvJTL16cj/oSOKMEgWVihjotJ9n6awPb43ZhKboyNsMg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/grid@3.10.3':
+ resolution: {integrity: sha512-l0r9mz05Gwjq3t6JOTNQOf+oAoWN0bXELPJtIr8m0XyXMPFCQe1xsTaX8igVQdrDmXyBc75RAWS0BJo2JF2fIA==}
+ 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-aria/gridlist@3.9.3':
+ resolution: {integrity: sha512-bb9GnKKeuL6NljoVUcHxr9F0cy/2WDOXRYeMikTnviRw6cuX95oojrhFfCUvz2d6ID22Btrvh7LkE+oIPVuc+g==}
+ 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-aria/i18n@3.12.2':
+ resolution: {integrity: sha512-PvEyC6JWylTpe8dQEWqQwV6GiA+pbTxHQd//BxtMSapRW3JT9obObAnb/nFhj3HthkUvqHyj0oO1bfeN+mtD8A==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/interactions@3.22.2':
+ resolution: {integrity: sha512-xE/77fRVSlqHp2sfkrMeNLrqf2amF/RyuAS6T5oDJemRSgYM3UoxTbWjucPhfnoW7r32pFPHHgz4lbdX8xqD/g==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/label@3.7.11':
+ resolution: {integrity: sha512-REgejE5Qr8cXG/b8H2GhzQmjQlII/0xQW/4eDzydskaTLvA7lF5HoJUE6biYTquH5va38d8XlH465RPk+bvHzA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/link@3.7.4':
+ resolution: {integrity: sha512-E8SLDuS9ssm/d42+3sDFNthfMcNXMUrT2Tq1DIZt22EsMcuEzmJ9B0P7bDP5RgvIw05xVGqZ20nOpU4mKTxQtA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/listbox@3.13.3':
+ resolution: {integrity: sha512-htluPyDfFtn66OEYaJdIaFCYH9wGCNk30vOgZrQkPul9F9Cjce52tTyPVR0ERsf14oCUsjjS5qgeq3dGidRqEw==}
+ 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-aria/live-announcer@3.3.4':
+ resolution: {integrity: sha512-w8lxs35QrRrn6pBNzVfyGOeqWdxeVKf9U6bXIVwhq7rrTqRULL8jqy8RJIMfIs1s8G5FpwWYjyBOjl2g5Cu1iA==}
+
+ '@react-aria/menu@3.15.3':
+ resolution: {integrity: sha512-vvUmVjJwIg3h2r+7isQXTwlmoDlPAFBckHkg94p3afrT1kNOTHveTsaVl17mStx/ymIioaAi3PrIXk/PZXp1jw==}
+ 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-aria/meter@3.4.16':
+ resolution: {integrity: sha512-hJqKnEE6mmK2Psx5kcI7NZ44OfTg0Bp7DatQSQ4zZE4yhnykRRwxqSKjze37tPR63cCqgRXtQ5LISfBfG54c0Q==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/numberfield@3.11.6':
+ resolution: {integrity: sha512-nvEWiQcWRwj6O2JXmkXEeWoBX/GVZT9zumFJcew3XknGTWJUr3h2AOymIQFt9g4mpag8IgOFEpSIlwhtZHdp1A==}
+ 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-aria/overlays@3.23.2':
+ resolution: {integrity: sha512-vjlplr953YAuJfHiP4O+CyrTlr6OaFgXAGrzWq4MVMjnpV/PT5VRJWYFHR0sUGlHTPqeKS4NZbi/xCSgl/3pGQ==}
+ 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-aria/progress@3.4.16':
+ resolution: {integrity: sha512-RbDIFQg4+/LG+KYZeLAijt2zH7K2Gp0CY9RKWdho3nU5l3/w57Fa7NrfDGWtpImrt7bR2nRmXMA6ESfr7THfrg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/radio@3.10.7':
+ resolution: {integrity: sha512-o2tqIe7xd1y4HeCBQfz/sXIwLJuI6LQbVoCQ1hgk/5dGhQ0LiuXohRYitGRl9zvxW8jYdgLULmOEDt24IflE8A==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/searchfield@3.7.8':
+ resolution: {integrity: sha512-SsF5xwH8Us548QgzivvbM7nhFbw7pu23xnRRIuhlP3MwOR3jRUFh17NKxf3Z0jvrDv/u0xfm3JKHIgaUN0KJ2A==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/select@3.14.9':
+ resolution: {integrity: sha512-tiNgMyA2G9nKnFn3pB/lMSgidNToxSFU7r6l4OcG+Vyr63J7B/3dF2lTXq8IYhlfOR3K3uQkjroSx52CmC3NDw==}
+ 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-aria/selection@3.19.3':
+ resolution: {integrity: sha512-GYoObXCXlmGK08hp7Qfl6Bk0U+bKP5YDWSsX+MzNjJsqzQSLm4S06tRB9ACM7gIo9dDCvL4IRxdSYTJAlJc6bw==}
+ 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-aria/separator@3.4.2':
+ resolution: {integrity: sha512-Xql9Kg3VlGesEUC7QheE+L5b3KgBv0yxiUU+/4JP8V2vfU/XSz4xmprHEeq7KVQVOetn38iiXU8gA5g26SEsUA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/slider@3.7.11':
+ resolution: {integrity: sha512-2WAwjANXPsA2LHJ5nxxV4c7ihFAzz2spaBz8+FJ7MDYE7WroYnE8uAXElea1aGo+Lk0DTiAdepLpBkggqPNanw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/spinbutton@3.6.8':
+ resolution: {integrity: sha512-OJMAYRIZ0WrWE+5tZsywrSg4t+aOwl6vl/e1+J64YcGMM+p+AKd61KGG5T0OgNSORXjoVIZOmj6wZ6Od4xfPMw==}
+ 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-aria/ssr@3.9.5':
+ resolution: {integrity: sha512-xEwGKoysu+oXulibNUSkXf8itW0npHHTa6c4AyYeZIJyRoegeteYuFpZUBPtIDE8RfHdNsSmE1ssOkxRnwbkuQ==}
+ engines: {node: '>= 12'}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/switch@3.6.7':
+ resolution: {integrity: sha512-yBNvKylhc3ZRQ0+7mD0mIenRRe+1yb8YaqMMZr8r3Bf87LaiFtQyhRFziq6ZitcwTJz5LEWjBihxbSVvUrf49w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/table@3.15.3':
+ resolution: {integrity: sha512-nQCLjlEvyJHyuijHw8ESqnA9fxNJfQHx0WPcl08VDEb8VxcE/MVzSAIedSWaqjG5k9Oflz6o/F/zHtzw4AFAow==}
+ 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-aria/tabs@3.9.5':
+ resolution: {integrity: sha512-aQZGAoOIg1B16qlvXIy6+rHbNBNVcWkGjOjeyvqTTPMjXt/FmElkICnqckI7MRJ1lTqzyppCOBitYOHSXRo8Uw==}
+ 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-aria/tag@3.4.5':
+ resolution: {integrity: sha512-iyJuATQ8t2cdLC7hiZm143eeZze/MtgxaMq0OewlI9TUje54bkw2Q+CjERdgisIo3Eemf55JJgylGrTcalEJAg==}
+ 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-aria/textfield@3.14.8':
+ resolution: {integrity: sha512-FHEvsHdE1cMR2B7rlf+HIneITrC40r201oLYbHAp3q26jH/HUujzFBB9I20qhXjyBohMWfQLqJhSwhs1VW1RJQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/toggle@3.10.7':
+ resolution: {integrity: sha512-/RJQU8QlPZXRElZ3Tt10F5K5STgUBUGPpfuFUGuwF3Kw3GpPxYsA1YAVjxXz2MMGwS0+y6+U/J1xIs1AF0Jwzg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/tooltip@3.7.7':
+ resolution: {integrity: sha512-UOTTDbbUz7OaE48VjNSWl+XQbYCUs5Gss4I3Tv1pfRLXzVtGYXv3ur/vRayvZR0xd12ANY26fZPNkSmCFpmiXw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/utils@3.25.2':
+ resolution: {integrity: sha512-GdIvG8GBJJZygB4L2QJP1Gabyn2mjFsha73I2wSe+o4DYeGWoJiMZRM06PyTIxLH4S7Sn7eVDtsSBfkc2VY/NA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-aria/visually-hidden@3.8.15':
+ resolution: {integrity: sha512-l+sJ7xTdD5Sd6+rDNDaeJCSPnHOsI+BaJyApvb/YcVgHa7rB47lp6TXCWUCDItcPY4JqRGyeByRJVrtzBFTWCw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
'@react-native-community/cli-clean@14.0.0':
resolution: {integrity: sha512-kvHthZTNur/wLLx8WL5Oh+r04zzzFAX16r8xuaLhu9qGTE6Th1JevbsIuiQb5IJqD8G/uZDKgIZ2a0/lONcbJg==}
@@ -3243,6 +4136,254 @@ packages:
'@types/react':
optional: true
+ '@react-stately/calendar@3.5.4':
+ resolution: {integrity: sha512-R2011mtFSXIjzMXaA+CZ1sflPm9XkTBMqVk77Bnxso2ZsG7FUX8nqFmaDavxwTuHFC6OUexAGSMs8bP9KycTNg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/checkbox@3.6.8':
+ resolution: {integrity: sha512-c8TWjU67XHHBCpqj6+FXXhQUWGr2Pil1IKggX81pkedhWiJl3/7+WHJuZI0ivGnRjp3aISNOG8UNVlBEjS9E8A==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/collections@3.10.9':
+ resolution: {integrity: sha512-plyrng6hOQMG8LrjArMA6ts/DgWyXln3g90/hFNbqe/hdVYF53sDVsj8Jb+5LtoYTpiAlV6eOvy1XR0vPZUf8w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/combobox@3.9.2':
+ resolution: {integrity: sha512-ZsbAcD58IvxZqwYxg9d2gOf8R/k5RUB2TPUiGKD6wgWfEKH6SDzY3bgRByHGOyMCyJB62cHjih/ZShizNTguqA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/data@3.11.6':
+ resolution: {integrity: sha512-S8q1Ejuhijl8SnyVOdDNFrMrWWnLk/Oh1ZT3KHSbTdpfMRtvhi5HukoiP06jlzz75phnpSPQL40npDtUB/kk3Q==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/datepicker@3.10.2':
+ resolution: {integrity: sha512-pa5IZUw+49AyOnddwu4XwU2kI5eo/1thbiIVNHP8uDpbbBrBkquSk3zVFDAGX1cu/I1U2VUkt64U/dxgkwaMQw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/dnd@3.4.2':
+ resolution: {integrity: sha512-VrHmNoNdVGrx5JHdz/zewmN+N8rlZe+vL/iAOLmvQ74RRLEz8KDFnHdlhgKg1AZqaSg3JJ18BlHEkS7oL1n+tA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/flags@3.0.3':
+ resolution: {integrity: sha512-/ha7XFA0RZTQsbzSPwu3KkbNMgbvuM0GuMTYLTBWpgBrovBNTM+QqI/PfZTdHg8PwCYF4H5Y8gjdSpdulCvJFw==}
+
+ '@react-stately/form@3.0.5':
+ resolution: {integrity: sha512-J3plwJ63HQz109OdmaTqTA8Qhvl3gcYYK7DtgKyNP6mc/Me2Q4tl2avkWoA+22NRuv5m+J8TpBk4AVHUEOwqeQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/grid@3.9.2':
+ resolution: {integrity: sha512-2gK//sqAqg2Xaq6UITTFQwFUJnBRgcW+cKBVbFt+F8d152xB6UwwTS/K79E5PUkOotwqZgTEpkrSFs/aVxCLpw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/list@3.10.8':
+ resolution: {integrity: sha512-rHCiPLXd+Ry3ztR9DkLA5FPQeH4Zd4/oJAEDWJ77W3oBBOdiMp3ZdHDLP7KBRh17XGNLO/QruYoHWAQTPiMF4g==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/menu@3.8.2':
+ resolution: {integrity: sha512-lt6hIHmSixMzkKx1rKJf3lbAf01EmEvvIlENL20GLiU9cRbpPnPJ1aJMZ5Ad5ygglA7wAemAx+daPhlTQfF2rg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/numberfield@3.9.6':
+ resolution: {integrity: sha512-p2R9admGLI439qZzB39dyANhkruprJJtZwuoGVtxW/VD0ficw6BrPVqAaKG25iwKPkmveleh9p8o+yRqjGedcQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/overlays@3.6.10':
+ resolution: {integrity: sha512-XxZ2qScT5JPwGk9qiVJE4dtVh3AXTcYwGRA5RsHzC26oyVVsegPqY2PmNJGblAh6Q57VyodoVUyebE0Eo5CzRw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/radio@3.10.7':
+ resolution: {integrity: sha512-ZwGzFR+sGd42DxRlDTp3G2vLZyhMVtgHkwv2BxazPHxPMvLO9yYl7+3PPNxAmhMB4tg2u9CrzffpGX2rmEJEXA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/searchfield@3.5.6':
+ resolution: {integrity: sha512-gVzU0FeWiLYD8VOYRgWlk79Qn7b2eirqOnWhtI5VNuGN8WyNaCIuBp6SkXTW2dY8hs2Hzn8HlMbgy1MIc7130Q==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/select@3.6.7':
+ resolution: {integrity: sha512-hCUIddw0mPxVy1OH6jhyaDwgNea9wESjf+MYdnnTG/abRB+OZv/dWScd87OjzVsHTHWcw7CN4ZzlJoXm0FJbKQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/selection@3.16.2':
+ resolution: {integrity: sha512-C4eSKw7BIZHJLPzwqGqCnsyFHiUIEyryVQZTJDt6d0wYBOHU6k1pW+Q4VhrZuzSv+IMiI2RkiXeJKc55f0ZXrg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/slider@3.5.7':
+ resolution: {integrity: sha512-gEIGTcpBLcXixd8LYiLc8HKrBiGQJltrrEGoOvvTP8KVItXQxmeL+JiSsh8qgOoUdRRpzmAoFNUKGEg2/gtN8A==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/table@3.12.2':
+ resolution: {integrity: sha512-dUcsrdALylhWz6exqIoqtR/dnrzjIAptMyAUPT378Y/mCYs4PxKkHSvtPEQrZhdQS1ALIIgfeg9KUVIempoXPw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/tabs@3.6.9':
+ resolution: {integrity: sha512-YZDqZng3HrRX+uXmg6u78x73Oi24G5ICpiXVqDKKDkO333XCA5H8MWItiuPZkYB2h3SbaCaLqSobLkvCoWYpNQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/toggle@3.7.7':
+ resolution: {integrity: sha512-AS+xB4+hHWa3wzYkbS6pwBkovPfIE02B9SnuYTe0stKcuejpWKo5L3QMptW0ftFYsW3ZPCXuneImfObEw2T01A==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/tooltip@3.4.12':
+ resolution: {integrity: sha512-QKYT/cze7n9qaBsk7o5ais3jRfhYCzcVRfps+iys/W+/9FFbbhjfQG995Lwi6b+vGOHWfXxXpwmyIO2tzM1Iog==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/tree@3.8.4':
+ resolution: {integrity: sha512-HFNclIXJ/3QdGQWxXbj+tdlmIX/XwCfzAMB5m26xpJ6HtJhia6dtx3GLfcdyHNjmuRbAsTBsAAnnVKBmNRUdIQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-stately/utils@3.10.3':
+ resolution: {integrity: sha512-moClv7MlVSHpbYtQIkm0Cx+on8Pgt1XqtPx6fy9rQFb2DNc9u1G3AUVnqA17buOkH1vLxAtX4MedlxMWyRCYYA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/breadcrumbs@3.7.7':
+ resolution: {integrity: sha512-ZmhXwD2LLzfEA2OvOCp/QvXu8A/Edsrn5q0qUDGsmOZj9SCVeT82bIv8P+mQnATM13mi2gyoik6102Jc1OscJA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/button@3.9.6':
+ resolution: {integrity: sha512-8lA+D5JLbNyQikf8M/cPP2cji91aVTcqjrGpDqI7sQnaLFikM8eFR6l1ZWGtZS5MCcbfooko77ha35SYplSQvw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/calendar@3.4.9':
+ resolution: {integrity: sha512-O/PS9c21HgO9qzxOyZ7/dTccxabFZdF6tj3UED4DrBw7AN3KZ7JMzwzYbwHinOcO7nUcklGgNoAIHk45UAKR9g==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/checkbox@3.8.3':
+ resolution: {integrity: sha512-f4c1mnLEt0iS1NMkyZXgT3q3AgcxzDk7w6MSONOKydcnh0xG5L2oefY14DhVDLkAuQS7jThlUFwiAs+MxiO3MA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/combobox@3.12.1':
+ resolution: {integrity: sha512-bd5YwHZWtgnJx4jGbplWbYzXj7IbO5w3IY5suNR7r891rx6IktquZ8GQwyYH0pQ/x+X5LdK2xI59i6+QC2PmlA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/datepicker@3.8.2':
+ resolution: {integrity: sha512-Ih4F0bNVGrEuwCD8XmmBAspuuOBsj/Svn/pDFtC2RyAZjXfWh+sI+n4XLz/sYKjvARh5TUI8GNy9smYS4vYXug==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/dialog@3.5.12':
+ resolution: {integrity: sha512-JmpQbSpXltqEyYfEwoqDolABIiojeExkqolHNdQlayIsfFuSxZxNwXZPOpz58Ri/iwv21JP7K3QF0Gb2Ohxl9w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/grid@3.2.8':
+ resolution: {integrity: sha512-6PJrpukwMqlv3IhJSDkJuVbhHM8Oe6hd2supWqd9adMXrlSP7QHt9a8SgFcFblCCTx8JzUaA0PvY5sTudcEtOQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/link@3.5.7':
+ resolution: {integrity: sha512-2WyaVmm1qr9UrSG3Dq6iz+2ziuVp+DH8CsYZ9CA6aNNb6U18Hxju3LTPb4a5gM0eC7W0mQGNBmrgGlAdDZEJOw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/listbox@3.5.1':
+ resolution: {integrity: sha512-n5bOgD9lgfK1qaLtag9WPnu151SwXBCNn/OgGY/Br9mWRl+nPUEYtFcPX+2VCld7uThf54kwrTmzlFnaraIlcw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/menu@3.9.11':
+ resolution: {integrity: sha512-IguQVF70d7aHXgWB1Rd2a/PiIuLZ2Nt7lyayJshLcy/NLOYmgpTmTyn2WCtlA5lTfQwmQrNFf4EvnWkeljJXdA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/meter@3.4.3':
+ resolution: {integrity: sha512-Y2fX5CTAPGRKxVSeepbeyN6/K+wlF9pMRcNxTSU2qDwdoFqNCtTWMcWuCsU/Y2L/zU0jFWu4x0Vo7WkrcsgcMA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/numberfield@3.8.5':
+ resolution: {integrity: sha512-LVWggkxwd1nyVZomXBPfQA1E4I4/i4PBifjcDs2AfcV7q5RE9D+DVIDXsYucVOBxPlDOxiAq/T9ypobspWSwHw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/overlays@3.8.9':
+ resolution: {integrity: sha512-9ni9upQgXPnR+K9cWmbYWvm3ll9gH8P/XsEZprqIV5zNLMF334jADK48h4jafb1X9RFnj0WbHo6BqcSObzjTig==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/progress@3.5.6':
+ resolution: {integrity: sha512-Nh43sjQ5adyN1bTHBPRaIPhXUdBqP0miYeJpeMY3V/KUl4qmouJLwDnccwFG4xLm6gBfYe22lgbbV7nAfNnuTQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/radio@3.8.3':
+ resolution: {integrity: sha512-fUVJt4Bb6jOReFqnhHVNxWXH7t6c60uSFfoPKuXt/xI9LL1i2jhpur0ggpTfIn3qLIAmNBU6bKBCWAdr4KjeVQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/searchfield@3.5.8':
+ resolution: {integrity: sha512-EcdqalHNIC6BJoRfmqUhAvXRd3aHkWlV1cFCz57JJKgUEFYyXPNrXd1b73TKLzTXEk+X/D6LKV15ILYpEaxu8w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/select@3.9.6':
+ resolution: {integrity: sha512-cVSFR0eJLup/ht1Uto+y8uyLmHO89J6wNh65SIHb3jeVz9oLBAedP3YNI2qB+F9qFMUcA8PBSLXIIuT6gXzLgQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/shared@3.24.1':
+ resolution: {integrity: sha512-AUQeGYEm/zDTN6zLzdXolDxz3Jk5dDL7f506F07U8tBwxNNI3WRdhU84G0/AaFikOZzDXhOZDr3MhQMzyE7Ydw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/slider@3.7.5':
+ resolution: {integrity: sha512-bRitwQRQjQoOcKEdPMljnvm474dwrmsc6pdsVQDh/qynzr+KO9IHuYc3qPW53WVE2hMQJDohlqtCAWQXWQ5Vcg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/switch@3.5.5':
+ resolution: {integrity: sha512-SZx1Bd+COhAOs/RTifbZG+uq/llwba7VAKx7XBeX4LeIz1dtguy5bigOBgFTMQi4qsIVCpybSWEEl+daj4XFPw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/table@3.10.1':
+ resolution: {integrity: sha512-xsNh0Gm4GtNeSknZqkMsfGvc94fycmfhspGO+FzQKim2hB5k4yILwd+lHYQ2UKW6New9GVH/zN2Pd3v67IeZ2g==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/tabs@3.3.9':
+ resolution: {integrity: sha512-3Q9kRVvg/qDyeJR/W1+C2z2OyvDWQrSLvOCvAezX5UKzww4rBEAA8OqBlyDwn7q3fiwrh/m64l6p+dbln+RdxQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/textfield@3.9.6':
+ resolution: {integrity: sha512-0uPqjJh4lYp1aL1HL9IlV8Cgp8eT0PcsNfdoCktfkLytvvBPmox2Pfm57W/d0xTtzZu2CjxhYNTob+JtGAOeXA==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
+ '@react-types/tooltip@3.4.11':
+ resolution: {integrity: sha512-WPikHQxeT5Lb09yJEaW6Ja3ecE0g1YM6ukWYS2v/iZLUPn5YlYrGytspuCYQNSh/u7suCz4zRLEHYCl7OCigjw==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0
+
'@rollup/pluginutils@5.1.0':
resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
engines: {node: '>=14.0.0'}
@@ -3528,9 +4669,25 @@ packages:
'@swc/helpers@0.5.12':
resolution: {integrity: sha512-KMZNXiGibsW9kvZAO1Pam2JPTDBm+KSHMMHWdsyI/1DbIZjT2A6Gy3hblVXUMEDvUAKq+e0vL0X0o54owWji7g==}
+ '@swc/helpers@0.5.2':
+ resolution: {integrity: sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==}
+
'@swc/helpers@0.5.5':
resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==}
+ '@tabler/icons-react@2.47.0':
+ resolution: {integrity: sha512-iqly2FvCF/qUbgmvS8E40rVeYY7laltc5GUjRxQj59DuX0x/6CpKHTXt86YlI2whg4czvd/c8Ce8YR08uEku0g==}
+ peerDependencies:
+ react: ^16.5.1 || ^17.0.0 || ^18.0.0
+
+ '@tabler/icons@2.47.0':
+ resolution: {integrity: sha512-4w5evLh+7FUUiA1GucvGj2ReX2TvOjEr4ejXdwL/bsjoSkof6r1gQmzqI+VHrE2CpJpB3al7bCTulOkFa/RcyA==}
+
+ '@tailwindcss/typography@0.5.10':
+ resolution: {integrity: sha512-Pe8BuPJQJd3FfRnm6H0ulKIGoMEQS+Vq01R6M5aCrFB/ccR/shT+0kXLjouGC1gFLm9hopTFN+DMP0pfwRWzPw==}
+ peerDependencies:
+ tailwindcss: '>=3.0.0 || insiders'
+
'@tanstack/query-core@5.35.1':
resolution: {integrity: sha512-0Dnpybqb8+ps6WgqBnqFEC+1F/xLvUosRAq+wiGisTgolOZzqZfkE2995dEXmhuzINiTM7/a6xSGznU0NIvBkw==}
@@ -3611,6 +4768,9 @@ packages:
'@types/istanbul-reports@3.0.4':
resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
+ '@types/js-cookie@2.2.7':
+ resolution: {integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==}
+
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -3641,6 +4801,9 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+ '@types/node@18.15.13':
+ resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==}
+
'@types/node@20.12.11':
resolution: {integrity: sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw==}
@@ -3653,9 +4816,15 @@ packages:
'@types/react-dom@18.3.0':
resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
+ '@types/react@18.2.54':
+ resolution: {integrity: sha512-039k+vrVJymDoe2y+HLk3O3oI3sa+C8KNjuDKofqrIJK26ramnqLNj9VJTaxAzFGMvpW/79HrrAJapHzpQ9fGQ==}
+
'@types/react@18.3.1':
resolution: {integrity: sha512-V0kuGBX3+prX+DQ/7r2qsv1NsdfnCLnTgnRJ1pYnxykBhGMz+qj+box5lq7XsO5mtZsBqpjwwTu/7wszPfMBcw==}
+ '@types/scheduler@0.23.0':
+ resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==}
+
'@types/secp256k1@4.0.6':
resolution: {integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==}
@@ -3665,6 +4834,9 @@ packages:
'@types/stack-utils@2.0.3':
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
+ '@types/stylis@4.2.5':
+ resolution: {integrity: sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==}
+
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
@@ -4160,6 +5332,9 @@ packages:
'@webassemblyjs/wast-printer@1.12.1':
resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
+ '@xobotyi/scrollbar-width@1.9.5':
+ resolution: {integrity: sha512-N8tkAACJx2ww8vFMneJmaAgmjAG1tnVBZJRLRcx061tmsLRZHSEZSLuGWnwPtunsSLvSqXQ2wfp7Mgqg1I+2dQ==}
+
'@xtuc/ieee754@1.2.0':
resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==}
@@ -4203,6 +5378,9 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ aes-js@4.0.0-beta.5:
+ resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==}
+
agent-base@7.1.1:
resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}
engines: {node: '>= 14'}
@@ -4547,6 +5725,9 @@ packages:
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
engines: {node: '>=10'}
+ camelize@1.0.1:
+ resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
+
caniuse-lite@1.0.30001651:
resolution: {integrity: sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==}
@@ -4599,6 +5780,9 @@ packages:
citty@0.1.6:
resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==}
+ classnames@2.3.2:
+ resolution: {integrity: sha512-CSbhY4cFEJRe6/GQzIk5qXZ4Jeg5pcsP7b5peFSDpffpe1cqjASH/n9UTjBwOp6XpMSTwQ8Za2K5V02ueA7Tmw==}
+
cli-cursor@3.1.0:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
@@ -4648,6 +5832,10 @@ packages:
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
engines: {node: '>=6'}
+ clsx@2.1.0:
+ resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
+ engines: {node: '>=6'}
+
clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
@@ -4665,6 +5853,13 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ color-string@1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+
+ color@4.2.3:
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
+
colorette@1.4.0:
resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
@@ -4793,6 +5988,20 @@ packages:
uWebSockets.js:
optional: true
+ css-color-keywords@1.0.0:
+ resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
+ engines: {node: '>=4'}
+
+ css-in-js-utils@3.1.0:
+ resolution: {integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==}
+
+ css-to-react-native@3.2.0:
+ resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
+
+ css-tree@1.1.3:
+ resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
+ engines: {node: '>=8.0.0'}
+
cssesc@3.0.0:
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
engines: {node: '>=4'}
@@ -5234,6 +6443,10 @@ packages:
ethereum-cryptography@2.2.1:
resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==}
+ ethers@6.13.2:
+ resolution: {integrity: sha512-9VkriTTed+/27BGuY1s0hf441kqwHJ1wtN2edksEtiRvXx+soxRX3iSXTfFqq2+YwrOqbDoTHjIhQnjJRlzKmg==}
+ engines: {node: '>=14.0.0'}
+
event-emitter@0.3.5:
resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==}
@@ -5304,6 +6517,9 @@ packages:
fast-safe-stringify@2.1.1:
resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==}
+ fast-shallow-equal@1.0.0:
+ resolution: {integrity: sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw==}
+
fast-stable-stringify@1.0.0:
resolution: {integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==}
@@ -5311,6 +6527,9 @@ packages:
resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
hasBin: true
+ fastest-stable-stringify@2.0.2:
+ resolution: {integrity: sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==}
+
fastq@1.17.1:
resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
@@ -5385,6 +6604,17 @@ packages:
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
+ framer-motion@11.0.5:
+ resolution: {integrity: sha512-Lb0EYbQcSK/pgyQUJm+KzsQrKrJRX9sFRyzl9hSr9gFG4Mk8yP7BjhuxvRXzblOM/+JxycrJdCDVmOQBsjpYlw==}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-dom:
+ optional: true
+
fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
@@ -5424,6 +6654,11 @@ packages:
resolution: {integrity: sha512-SewY5KdMpaoCeh7jachEWFsh1nNlaDjNHZXWqL5IGwtpEYHTgkr2+AMCgNwKWkcc0wpSYrZfR7he4WdmHFtDxQ==}
engines: {node: '>=8'}
+ geist@1.2.2:
+ resolution: {integrity: sha512-uRDrxhvdnPwWJmh+K5+/5LXSKwvJzaYCl9tDXgiBi4hj7hB4K7+n/WLcvJMFs5btvyn0r9OSwCd1s6CmqAsxEw==}
+ peerDependencies:
+ next: '>=13.2.0 <15'
+
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -5638,6 +6873,9 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ hyphenate-style-name@1.1.0:
+ resolution: {integrity: sha512-WDC/ui2VVRrz3jOVi+XtjqkDjiVjTtFaAGiW37k6b+ohyQ5wYDOGkvCZa8+H0nx3gyvv0+BST9xuOgIyGQ00gw==}
+
i18next-browser-languagedetector@7.1.0:
resolution: {integrity: sha512-cr2k7u1XJJ4HTOjM9GyOMtbOA47RtUoWRAtt52z43r3AoMs2StYKyjS3URPhzHaf+mn10hY9dZWamga5WPQjhA==}
@@ -5697,10 +6935,16 @@ packages:
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
+ inline-style-prefixer@7.0.1:
+ resolution: {integrity: sha512-lhYo5qNTQp3EvSSp3sRvXMbVQTLrvGV6DycRMJ5dm2BLMiJ30wpXKdDdgX+GmJZ5uQMucwRKHamXSst3Sj/Giw==}
+
internal-slot@1.0.7:
resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
engines: {node: '>= 0.4'}
+ intl-messageformat@10.5.14:
+ resolution: {integrity: sha512-IjC6sI0X7YRjjyVH9aUgdftcmZK7WXdHeil4KwbjDnRWjnVitKpAx3rr6t6di1joFp5188VqKcobOPA6mCLG/w==}
+
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
@@ -5718,6 +6962,9 @@ packages:
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ is-arrayish@0.3.2:
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+
is-bigint@1.0.4:
resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
@@ -5981,6 +7228,9 @@ packages:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
+ js-cookie@2.2.1:
+ resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -6062,6 +7312,9 @@ packages:
resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==}
engines: {'0': node >= 0.2.0}
+ just-unique@4.2.0:
+ resolution: {integrity: sha512-cxQGGUiit6CGUpuuiezY8N4m1wgF4o7127rXEXDFcxeDUFfdV7gSkwA26Fe2wWBiNQq2SZOgN4gSmMxB/StA8Q==}
+
keccak@3.0.4:
resolution: {integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==}
engines: {node: '>=10.0.0'}
@@ -6170,6 +7423,9 @@ packages:
lodash.camelcase@4.3.0:
resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
+ lodash.castarray@4.4.0:
+ resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
+
lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
@@ -6179,6 +7435,15 @@ packages:
lodash.isequal@4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
+ lodash.isplainobject@4.0.6:
+ resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
+
+ lodash.merge@4.6.2:
+ resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
+
+ lodash.mergewith@4.6.2:
+ resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==}
+
lodash.sortby@4.7.0:
resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
@@ -6276,6 +7541,9 @@ packages:
marky@1.2.5:
resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==}
+ mdn-data@2.0.14:
+ resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
+
mdurl@1.0.1:
resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
@@ -6476,6 +7744,10 @@ packages:
mlly@1.7.1:
resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==}
+ modern-normalize@2.0.0:
+ resolution: {integrity: sha512-CxBoEVKh5U4DH3XuNbc5ONLF6dQBc8dSc7pdZ1957FGbIO5JBqGqqchhET9dTexri8/pk9xBL6+5ceOtCIp1QA==}
+ engines: {node: '>=6'}
+
motion@10.16.2:
resolution: {integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==}
@@ -6501,6 +7773,12 @@ packages:
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
+ nano-css@5.6.2:
+ resolution: {integrity: sha512-+6bHaC8dSDGALM1HJjOHVXpuastdu2xFoZlC77Jh4cg+33Zcgm+Gxd+1xsnpZK14eyHObSp82+ll5y3SX75liw==}
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+
nanoid@3.3.7:
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
@@ -6516,6 +7794,21 @@ packages:
next-tick@1.1.0:
resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==}
+ next@14.1.0:
+ resolution: {integrity: sha512-wlzrsbfeSU48YQBjZhDzOwhWhGsy+uQycR8bHAOt1LY1bn3zZEcDyHQOEoN3aWzQ8LHCAJ1nqrWCc9XF2+O45Q==}
+ engines: {node: '>=18.17.0'}
+ hasBin: true
+ peerDependencies:
+ '@opentelemetry/api': ^1.1.0
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ sass: ^1.3.0
+ peerDependenciesMeta:
+ '@opentelemetry/api':
+ optional: true
+ sass:
+ optional: true
+
next@14.2.3:
resolution: {integrity: sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A==}
engines: {node: '>=18.17.0'}
@@ -6877,6 +8170,12 @@ packages:
peerDependencies:
postcss: ^8.0.0
+ postcss-import@16.0.1:
+ resolution: {integrity: sha512-i2Pci0310NaLHr/5JUFSw1j/8hf1CzwMY13g6ZDxgOavmRHQi2ba3PmUHoihO+sjaum+KmCNzskNsw7JDrg03g==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ postcss: ^8.0.0
+
postcss-js@4.0.1:
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
@@ -6901,6 +8200,10 @@ packages:
peerDependencies:
postcss: ^8.2.14
+ postcss-selector-parser@6.0.10:
+ resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==}
+ engines: {node: '>=4'}
+
postcss-selector-parser@6.1.2:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
@@ -6912,6 +8215,10 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.4.35:
+ resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==}
+ engines: {node: ^10 || ^12 || >=14}
+
postcss@8.4.38:
resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
engines: {node: ^10 || ^12 || >=14}
@@ -6956,6 +8263,9 @@ packages:
resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==}
engines: {node: '>= 6'}
+ prop-types@15.8.1:
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
+
property-expr@2.0.6:
resolution: {integrity: sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==}
@@ -7030,6 +8340,9 @@ packages:
radix3@1.1.2:
resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==}
+ ramda@0.29.1:
+ resolution: {integrity: sha512-OfxIeWzd4xdUNxlWhgFazxsA/nl3mS4/jGZI5n00uWOoSSFRhC1b6gl6xvmzUamgmqELraWp0J/qqVlXYPDPyA==}
+
ramda@0.30.1:
resolution: {integrity: sha512-tEF5I22zJnuclswcZMc8bDIrwRHRzf+NqVEmqg50ShAZMP7MWeR/RGDthfM/p+BlqvF2fXAzpn8i+SJcYD3alw==}
@@ -7040,14 +8353,28 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
+ react-aria@3.32.1:
+ resolution: {integrity: sha512-7KCJg4K5vlRqiXdGjgCT05Du8RhGBYC+2ok4GOh/Znmg8aMwOk7t0YwxaT5i1z30+fmDcJS/pk/ipUPUg28CXg==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
+ react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
+
react-devtools-core@5.3.1:
resolution: {integrity: sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw==}
+ react-dom@18.2.0:
+ resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
+ peerDependencies:
+ react: ^18.2.0
+
react-dom@18.3.1:
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
react: ^18.3.1
+ react-is@16.13.1:
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
+
react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
@@ -7075,6 +8402,16 @@ packages:
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
+ react-remove-scroll-bar@2.3.4:
+ resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
react-remove-scroll-bar@2.3.6:
resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==}
engines: {node: '>=10'}
@@ -7095,6 +8432,11 @@ packages:
'@types/react':
optional: true
+ react-stately@3.29.1:
+ resolution: {integrity: sha512-hc4ZHy/ahvMwr6z7XMjYJ7EgzNVrXhzM4l2Qj17rdRhERo7/ovWmQencf9pF7K8kD5TraEHxPHLrYzGN4fxfUQ==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0
+
react-style-singleton@2.2.1:
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
@@ -7105,6 +8447,22 @@ packages:
'@types/react':
optional: true
+ react-universal-interface@0.6.2:
+ resolution: {integrity: sha512-dg8yXdcQmvgR13RIlZbTRQOoUrDciFVoSBZILwjE2LFISxZZ8loVJKAkuzswl5js8BHda79bIb2b84ehU8IjXw==}
+ peerDependencies:
+ react: '*'
+ tslib: '*'
+
+ react-use@17.5.0:
+ resolution: {integrity: sha512-PbfwSPMwp/hoL847rLnm/qkjg3sTRCvn6YhUZiHaUa3FA6/aNoFX79ul5Xt70O1rK+9GxSVqkY0eTwMdsR/bWg==}
+ peerDependencies:
+ react: '*'
+ react-dom: '*'
+
+ react@18.2.0:
+ resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
+ engines: {node: '>=0.10.0'}
+
react@18.3.1:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
@@ -7193,6 +8551,9 @@ packages:
requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ resize-observer-polyfill@1.5.1:
+ resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
+
resolve-from@3.0.0:
resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
engines: {node: '>=4'}
@@ -7269,6 +8630,9 @@ packages:
rrweb-cssom@0.6.0:
resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}
+ rtl-css-js@1.16.1:
+ resolution: {integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==}
+
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
@@ -7307,6 +8671,10 @@ packages:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
+ screenfull@5.2.0:
+ resolution: {integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==}
+ engines: {node: '>=0.10.0'}
+
search-insights@2.16.3:
resolution: {integrity: sha512-hSHy/s4Zk2xibhj9XTCACB+1PqS+CaJxepGNBhKc/OsHRpqvHAUAm5+uZ6kJJbGXn0pb3XqekHjg6JAqPExzqg==}
@@ -7362,6 +8730,10 @@ packages:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
+ set-harmonic-interval@1.0.1:
+ resolution: {integrity: sha512-AhICkFV84tBP1aWqPwLZqFvAwqEoVA9kxNMniGEUvzOlm4vLmOFLiTT3UZ6bziJTy4bOVpzWGTfSCbmaayGx8g==}
+ engines: {node: '>=6.9'}
+
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
@@ -7373,6 +8745,9 @@ packages:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
+ shallowequal@1.1.0:
+ resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
+
shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
@@ -7412,6 +8787,9 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
+ simple-swizzle@0.2.2:
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+
simple-update-notifier@2.0.0:
resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==}
engines: {node: '>=10'}
@@ -7458,6 +8836,10 @@ packages:
source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
+ source-map@0.5.6:
+ resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==}
+ engines: {node: '>=0.10.0'}
+
source-map@0.5.7:
resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
engines: {node: '>=0.10.0'}
@@ -7504,6 +8886,9 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+ stack-generator@2.0.10:
+ resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==}
+
stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
@@ -7514,6 +8899,12 @@ packages:
stackframe@1.3.4:
resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==}
+ stacktrace-gps@3.1.2:
+ resolution: {integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==}
+
+ stacktrace-js@2.0.2:
+ resolution: {integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==}
+
stacktrace-parser@0.1.10:
resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
engines: {node: '>=6'}
@@ -7618,6 +9009,13 @@ packages:
strnum@1.0.5:
resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
+ styled-components@6.1.12:
+ resolution: {integrity: sha512-n/O4PzRPhbYI0k1vKKayfti3C/IGcPf+DqcrOB7O/ab9x4u/zjqraneT5N45+sIe87cxrCApXM8Bna7NYxwoTA==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ react: '>= 16.8.0'
+ react-dom: '>= 16.8.0'
+
styled-jsx@5.1.1:
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
@@ -7631,6 +9029,12 @@ packages:
babel-plugin-macros:
optional: true
+ stylis@4.3.2:
+ resolution: {integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==}
+
+ stylis@4.3.4:
+ resolution: {integrity: sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==}
+
sucrase@3.35.0:
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -7676,11 +9080,38 @@ packages:
tabbable@6.2.0:
resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==}
+ tailwind-merge@1.14.0:
+ resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==}
+
+ tailwind-variants@0.1.20:
+ resolution: {integrity: sha512-AMh7x313t/V+eTySKB0Dal08RHY7ggYK0MSn/ad8wKWOrDUIzyiWNayRUm2PIJ4VRkvRnfNuyRuKbLV3EN+ewQ==}
+ engines: {node: '>=16.x', pnpm: '>=7.x'}
+ peerDependencies:
+ tailwindcss: '*'
+
+ tailwindcss-animate@1.0.7:
+ resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
+ peerDependencies:
+ tailwindcss: '>=3.0.0 || insiders'
+
+ tailwindcss-radix@3.0.3:
+ resolution: {integrity: sha512-uueKWJIY98tU4Fip2FTL2eXBqX428e5HBwbu+8rqqJ9H3NuhkcAGS66wNHZjeix56f6nNBhkhMLpQeIrmVxH/w==}
+
+ tailwindcss-themer@4.0.0:
+ resolution: {integrity: sha512-kngKDW+z36JtjvaNziX0aesO95r8f5+3FFdANVFDt1uzNHZsL6XLla1YDK6EBAYFqPichoPDbO4lrrTyB+UAbA==}
+ peerDependencies:
+ tailwindcss: ^3.1.0
+
tailwindcss@3.4.3:
resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==}
engines: {node: '>=14.0.0'}
hasBin: true
+ tailwindcss@3.4.4:
+ resolution: {integrity: sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+
tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
@@ -7734,6 +9165,10 @@ packages:
throat@5.0.0:
resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==}
+ throttle-debounce@3.0.1:
+ resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==}
+ engines: {node: '>=10'}
+
through2@2.0.5:
resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
@@ -7816,6 +9251,9 @@ packages:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
+ ts-easing@0.2.0:
+ resolution: {integrity: sha512-Z86EW+fFFh/IFB1fqQ3/+7Zpf9t2ebOAxNI/V6Wo7r5gqiqtxmgTlQ1qbqQcjLKYeSHPTsEmvlJUDg/EuL0uHQ==}
+
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
@@ -7853,6 +9291,12 @@ packages:
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+ tslib@2.4.0:
+ resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
+
+ tslib@2.6.2:
+ resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+
tslib@2.6.3:
resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
@@ -8027,11 +9471,6 @@ packages:
ufo@1.5.4:
resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
- uglify-js@3.19.2:
- resolution: {integrity: sha512-S8KA6DDI47nQXJSi2ctQ629YzwOVs+bQML6DAtvy0wgNdpi+0ySpQK0g2pxBq2xfF2z3YCscu7NNA8nXT9PlIQ==}
- engines: {node: '>=0.8.0'}
- hasBin: true
-
uglify-js@3.19.3:
resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
@@ -8689,6 +10128,8 @@ snapshots:
'@adraffy/ens-normalize@1.10.0': {}
+ '@adraffy/ens-normalize@1.10.1': {}
+
'@algolia/autocomplete-core@1.9.3(@algolia/client-search@5.0.0)(algoliasearch@4.24.0)(search-insights@2.16.3)':
dependencies:
'@algolia/autocomplete-plugin-algolia-insights': 1.9.3(@algolia/client-search@5.0.0)(algoliasearch@4.24.0)(search-insights@2.16.3)
@@ -9970,6 +11411,22 @@ snapshots:
transitivePeerDependencies:
- '@algolia/client-search'
+ '@emotion/is-prop-valid@0.8.8':
+ dependencies:
+ '@emotion/memoize': 0.7.4
+ optional: true
+
+ '@emotion/is-prop-valid@1.2.2':
+ dependencies:
+ '@emotion/memoize': 0.8.1
+
+ '@emotion/memoize@0.7.4':
+ optional: true
+
+ '@emotion/memoize@0.8.1': {}
+
+ '@emotion/unitless@0.8.1': {}
+
'@esbuild/aix-ppc64@0.19.12':
optional: true
@@ -10360,6 +11817,47 @@ snapshots:
'@ethersproject/logger': 5.7.0
hash.js: 1.1.7
+ '@floating-ui/core@1.6.8':
+ dependencies:
+ '@floating-ui/utils': 0.2.8
+
+ '@floating-ui/dom@1.6.11':
+ dependencies:
+ '@floating-ui/core': 1.6.8
+ '@floating-ui/utils': 0.2.8
+
+ '@floating-ui/react-dom@2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@floating-ui/dom': 1.6.11
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@floating-ui/utils@0.2.8': {}
+
+ '@formatjs/ecma402-abstract@2.0.0':
+ dependencies:
+ '@formatjs/intl-localematcher': 0.5.4
+ tslib: 2.6.3
+
+ '@formatjs/fast-memoize@2.2.0':
+ dependencies:
+ tslib: 2.6.3
+
+ '@formatjs/icu-messageformat-parser@2.7.8':
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.0.0
+ '@formatjs/icu-skeleton-parser': 1.8.2
+ tslib: 2.6.3
+
+ '@formatjs/icu-skeleton-parser@1.8.2':
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.0.0
+ tslib: 2.6.3
+
+ '@formatjs/intl-localematcher@0.5.4':
+ dependencies:
+ tslib: 2.6.3
+
'@fuel-ts/abi-coder@0.94.8':
dependencies:
'@fuel-ts/crypto': 0.94.8
@@ -10406,6 +11904,19 @@ snapshots:
transitivePeerDependencies:
- encoding
+ '@fuel-ts/address@0.76.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@fuel-ts/crypto': 0.76.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@fuel-ts/errors': 0.76.0
+ '@fuel-ts/interfaces': 0.76.0
+ '@fuel-ts/utils': 0.76.12
+ '@fuel-ts/versions': 0.76.0
+ bech32: 2.0.0
+ ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
'@fuel-ts/address@0.94.8':
dependencies:
'@fuel-ts/crypto': 0.94.8
@@ -10434,6 +11945,16 @@ snapshots:
transitivePeerDependencies:
- encoding
+ '@fuel-ts/crypto@0.76.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@fuel-ts/errors': 0.76.0
+ '@fuel-ts/utils': 0.76.12
+ ethereum-cryptography: 2.2.1
+ ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
'@fuel-ts/crypto@0.94.8':
dependencies:
'@fuel-ts/errors': 0.94.8
@@ -10442,6 +11963,14 @@ snapshots:
'@fuel-ts/utils': 0.94.8
'@noble/hashes': 1.5.0
+ '@fuel-ts/errors@0.76.0':
+ dependencies:
+ '@fuel-ts/versions': 0.76.0
+
+ '@fuel-ts/errors@0.76.12':
+ dependencies:
+ '@fuel-ts/versions': 0.76.12
+
'@fuel-ts/errors@0.93.0':
dependencies:
'@fuel-ts/versions': 0.93.0
@@ -10457,8 +11986,18 @@ snapshots:
'@fuel-ts/utils': 0.94.8
'@noble/hashes': 1.5.0
+ '@fuel-ts/interfaces@0.76.0': {}
+
+ '@fuel-ts/interfaces@0.76.12': {}
+
'@fuel-ts/interfaces@0.94.8': {}
+ '@fuel-ts/math@0.76.0':
+ dependencies:
+ '@fuel-ts/errors': 0.76.0
+ '@types/bn.js': 5.1.6
+ bn.js: 5.2.1
+
'@fuel-ts/math@0.94.8':
dependencies:
'@fuel-ts/errors': 0.94.8
@@ -10509,6 +12048,13 @@ snapshots:
'@fuel-ts/math': 0.94.8
'@fuel-ts/utils': 0.94.8
+ '@fuel-ts/utils@0.76.12':
+ dependencies:
+ '@fuel-ts/errors': 0.76.12
+ '@fuel-ts/interfaces': 0.76.12
+ ramda: 0.29.1
+ rimraf: 3.0.2
+
'@fuel-ts/utils@0.94.8':
dependencies:
'@fuel-ts/errors': 0.94.8
@@ -10517,6 +12063,16 @@ snapshots:
'@fuel-ts/versions': 0.94.8
fflate: 0.8.2
+ '@fuel-ts/versions@0.76.0':
+ dependencies:
+ chalk: 4.1.2
+ cli-table: 0.3.11
+
+ '@fuel-ts/versions@0.76.12':
+ dependencies:
+ chalk: 4.1.2
+ cli-table: 0.3.11
+
'@fuel-ts/versions@0.93.0':
dependencies:
chalk: 4.1.2
@@ -10527,6 +12083,8 @@ snapshots:
chalk: 4.1.2
cli-table: 0.3.11
+ '@fuels/assets@0.20.0': {}
+
'@fuels/ts-config@0.20.0(typescript@5.4.5)':
dependencies:
typescript: 5.4.5
@@ -10538,6 +12096,49 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
tsup: 8.0.2(@microsoft/api-extractor@7.43.0(@types/node@20.12.11))(postcss@8.4.41)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))(typescript@5.4.5)
+ '@fuels/ui@0.1.2(@types/react-dom@18.3.0)(@types/react@18.2.54)(bufferutil@4.0.8)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))(utf-8-validate@5.0.10)':
+ dependencies:
+ '@fuel-ts/address': 0.76.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@fuel-ts/math': 0.76.0
+ '@fuels/assets': 0.20.0
+ '@radix-ui/colors': 3.0.0
+ '@radix-ui/react-accordion': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-aspect-ratio': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-toast': 1.2.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/themes': 3.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/focus': 3.16.2(react@18.2.0)
+ '@tabler/icons-react': 2.47.0(react@18.2.0)
+ '@tailwindcss/typography': 0.5.10(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5)))
+ clsx: 2.1.0
+ csstype: 3.1.3
+ framer-motion: 11.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ geist: 1.2.2(next@14.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))
+ modern-normalize: 2.0.0
+ next: 14.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-aria: 3.32.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react-dom: 18.2.0(react@18.2.0)
+ react-stately: 3.29.1(react@18.2.0)
+ react-use: 17.5.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ tailwind-variants: 0.1.20(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5)))
+ tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))
+ tailwindcss-animate: 1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5)))
+ tailwindcss-radix: 3.0.3
+ tailwindcss-themer: 4.0.0(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5)))
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@opentelemetry/api'
+ - '@types/react'
+ - '@types/react-dom'
+ - babel-plugin-macros
+ - bufferutil
+ - sass
+ - ts-node
+ - utf-8-validate
+
'@fuels/vm-asm@0.57.1': {}
'@graphql-typed-document-node/core@3.2.0(graphql@16.9.0)':
@@ -10550,6 +12151,23 @@ snapshots:
dependencies:
'@hapi/hoek': 9.3.0
+ '@internationalized/date@3.5.5':
+ dependencies:
+ '@swc/helpers': 0.5.12
+
+ '@internationalized/message@3.1.4':
+ dependencies:
+ '@swc/helpers': 0.5.12
+ intl-messageformat: 10.5.14
+
+ '@internationalized/number@3.5.3':
+ dependencies:
+ '@swc/helpers': 0.5.12
+
+ '@internationalized/string@3.2.3':
+ dependencies:
+ '@swc/helpers': 0.5.12
+
'@isaacs/cliui@8.0.2':
dependencies:
string-width: 5.1.2
@@ -10749,33 +12367,121 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/safe-event-emitter@2.0.0': {}
-
- '@metamask/safe-event-emitter@3.1.1': {}
-
- '@metamask/sdk-communication-layer@0.27.0(cross-fetch@4.0.0)(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))':
+ '@metamask/safe-event-emitter@2.0.0': {}
+
+ '@metamask/safe-event-emitter@3.1.1': {}
+
+ '@metamask/sdk-communication-layer@0.27.0(cross-fetch@4.0.0)(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))':
+ dependencies:
+ bufferutil: 4.0.8
+ cross-fetch: 4.0.0
+ date-fns: 2.30.0
+ debug: 4.3.6(supports-color@5.5.0)
+ eciesjs: 0.3.19
+ eventemitter2: 6.4.9
+ readable-stream: 3.6.2
+ socket.io-client: 4.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ utf-8-validate: 5.0.10
+ uuid: 8.3.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@metamask/sdk-install-modal-web@0.26.5(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.2.0)':
+ dependencies:
+ i18next: 23.11.5
+ qr-code-styling: 1.6.0-rc.1
+ optionalDependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-native: 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10)
+
+ '@metamask/sdk-install-modal-web@0.26.5(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)':
+ dependencies:
+ i18next: 23.11.5
+ qr-code-styling: 1.6.0-rc.1
+ optionalDependencies:
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-native: 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
+
+ '@metamask/sdk-install-modal-web@0.26.5(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)':
+ dependencies:
+ i18next: 23.11.5
+ qr-code-styling: 1.6.0-rc.1
+ optionalDependencies:
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-native: 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
+
+ '@metamask/sdk@0.27.0(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.20.0)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@metamask/onboarding': 1.0.1
+ '@metamask/providers': 16.1.0
+ '@metamask/sdk-communication-layer': 0.27.0(cross-fetch@4.0.0)(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))
+ '@metamask/sdk-install-modal-web': 0.26.5(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.2.0)
+ '@types/dom-screen-wake-lock': 1.0.3
+ bowser: 2.11.0
+ cross-fetch: 4.0.0
+ debug: 4.3.6(supports-color@5.5.0)
+ eciesjs: 0.3.19
+ eth-rpc-errors: 4.0.3
+ eventemitter2: 6.4.9
+ i18next: 23.11.5
+ i18next-browser-languagedetector: 7.1.0
+ obj-multiplex: 1.0.0
+ pump: 3.0.0
+ qrcode-terminal-nooctal: 0.12.1
+ react-native-webview: 11.26.1(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.2.0)
+ readable-stream: 3.6.2
+ rollup-plugin-visualizer: 5.12.0(rollup@4.20.0)
+ socket.io-client: 4.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ util: 0.12.5
+ uuid: 8.3.2
+ optionalDependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - react-native
+ - rollup
+ - supports-color
+ - utf-8-validate
+
+ '@metamask/sdk@0.27.0(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(utf-8-validate@5.0.10)':
dependencies:
- bufferutil: 4.0.8
+ '@metamask/onboarding': 1.0.1
+ '@metamask/providers': 16.1.0
+ '@metamask/sdk-communication-layer': 0.27.0(cross-fetch@4.0.0)(eciesjs@0.3.19)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))
+ '@metamask/sdk-install-modal-web': 0.26.5(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@types/dom-screen-wake-lock': 1.0.3
+ bowser: 2.11.0
cross-fetch: 4.0.0
- date-fns: 2.30.0
debug: 4.3.6(supports-color@5.5.0)
eciesjs: 0.3.19
+ eth-rpc-errors: 4.0.3
eventemitter2: 6.4.9
+ i18next: 23.11.5
+ i18next-browser-languagedetector: 7.1.0
+ obj-multiplex: 1.0.0
+ pump: 3.0.0
+ qrcode-terminal-nooctal: 0.12.1
+ react-native-webview: 11.26.1(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
readable-stream: 3.6.2
+ rollup-plugin-visualizer: 5.12.0(rollup@4.20.0)
socket.io-client: 4.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- utf-8-validate: 5.0.10
+ util: 0.12.5
uuid: 8.3.2
- transitivePeerDependencies:
- - supports-color
-
- '@metamask/sdk-install-modal-web@0.26.5(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)':
- dependencies:
- i18next: 23.11.5
- qr-code-styling: 1.6.0-rc.1
optionalDependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - react-native
+ - rollup
+ - supports-color
+ - utf-8-validate
'@metamask/sdk@0.27.0(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(utf-8-validate@5.0.10)':
dependencies:
@@ -10932,35 +12638,68 @@ snapshots:
'@motionone/dom': 10.18.0
tslib: 2.6.3
+ '@next/env@14.1.0': {}
+
'@next/env@14.2.3': {}
+ '@next/swc-darwin-arm64@14.1.0':
+ optional: true
+
'@next/swc-darwin-arm64@14.2.3':
optional: true
+ '@next/swc-darwin-x64@14.1.0':
+ optional: true
+
'@next/swc-darwin-x64@14.2.3':
optional: true
+ '@next/swc-linux-arm64-gnu@14.1.0':
+ optional: true
+
'@next/swc-linux-arm64-gnu@14.2.3':
optional: true
+ '@next/swc-linux-arm64-musl@14.1.0':
+ optional: true
+
'@next/swc-linux-arm64-musl@14.2.3':
optional: true
+ '@next/swc-linux-x64-gnu@14.1.0':
+ optional: true
+
'@next/swc-linux-x64-gnu@14.2.3':
optional: true
+ '@next/swc-linux-x64-musl@14.1.0':
+ optional: true
+
'@next/swc-linux-x64-musl@14.2.3':
optional: true
+ '@next/swc-win32-arm64-msvc@14.1.0':
+ optional: true
+
'@next/swc-win32-arm64-msvc@14.2.3':
optional: true
+ '@next/swc-win32-ia32-msvc@14.1.0':
+ optional: true
+
'@next/swc-win32-ia32-msvc@14.2.3':
optional: true
+ '@next/swc-win32-x64-msvc@14.1.0':
+ optional: true
+
'@next/swc-win32-x64-msvc@14.2.3':
optional: true
+ '@noble/curves@1.2.0':
+ dependencies:
+ '@noble/hashes': 1.3.2
+
'@noble/curves@1.4.0':
dependencies:
'@noble/hashes': 1.4.0
@@ -10977,6 +12716,8 @@ snapshots:
dependencies:
'@noble/hashes': 1.5.0
+ '@noble/hashes@1.3.2': {}
+
'@noble/hashes@1.4.0': {}
'@noble/hashes@1.5.0': {}
@@ -11017,325 +12758,1544 @@ snapshots:
'@parcel/watcher-linux-x64-glibc@2.4.1':
optional: true
- '@parcel/watcher-linux-x64-musl@2.4.1':
- optional: true
+ '@parcel/watcher-linux-x64-musl@2.4.1':
+ optional: true
+
+ '@parcel/watcher-wasm@2.4.1':
+ dependencies:
+ is-glob: 4.0.3
+ micromatch: 4.0.7
+
+ '@parcel/watcher-win32-arm64@2.4.1':
+ optional: true
+
+ '@parcel/watcher-win32-ia32@2.4.1':
+ optional: true
+
+ '@parcel/watcher-win32-x64@2.4.1':
+ optional: true
+
+ '@parcel/watcher@2.4.1':
+ dependencies:
+ detect-libc: 1.0.3
+ is-glob: 4.0.3
+ micromatch: 4.0.7
+ node-addon-api: 7.1.1
+ optionalDependencies:
+ '@parcel/watcher-android-arm64': 2.4.1
+ '@parcel/watcher-darwin-arm64': 2.4.1
+ '@parcel/watcher-darwin-x64': 2.4.1
+ '@parcel/watcher-freebsd-x64': 2.4.1
+ '@parcel/watcher-linux-arm-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-glibc': 2.4.1
+ '@parcel/watcher-linux-arm64-musl': 2.4.1
+ '@parcel/watcher-linux-x64-glibc': 2.4.1
+ '@parcel/watcher-linux-x64-musl': 2.4.1
+ '@parcel/watcher-win32-arm64': 2.4.1
+ '@parcel/watcher-win32-ia32': 2.4.1
+ '@parcel/watcher-win32-x64': 2.4.1
+
+ '@pkgjs/parseargs@0.11.0':
+ optional: true
+
+ '@radix-ui/colors@3.0.0': {}
+
+ '@radix-ui/number@1.1.0': {}
+
+ '@radix-ui/primitive@1.0.1':
+ dependencies:
+ '@babel/runtime': 7.25.0
+
+ '@radix-ui/primitive@1.1.0': {}
+
+ '@radix-ui/react-accessible-icon@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-accordion@1.1.2(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-alert-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-aspect-ratio@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-avatar@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-checkbox@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-collection@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-context-menu@2.2.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-menu': 2.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-context@1.0.1(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-context@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-context@1.1.0(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ aria-hidden: 1.2.4
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.7(@types/react@18.2.54)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ aria-hidden: 1.2.4
+ react: 18.3.1
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.7(@types/react@18.2.54)(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-direction@1.0.1(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-direction@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-dropdown-menu@2.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-menu': 2.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-focus-guards@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-focus-guards@1.1.0(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ react: 18.3.1
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-form@0.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-label': 2.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-hover-card@1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-id@1.0.1(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-id@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
- '@parcel/watcher-wasm@2.4.1':
+ '@radix-ui/react-id@1.1.0(@types/react@18.2.54)(react@18.3.1)':
dependencies:
- is-glob: 4.0.3
- micromatch: 4.0.7
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ react: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.2.54
- '@parcel/watcher-win32-arm64@2.4.1':
- optional: true
+ '@radix-ui/react-label@2.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@parcel/watcher-win32-ia32@2.4.1':
- optional: true
+ '@radix-ui/react-menu@2.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ aria-hidden: 1.2.4
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.7(@types/react@18.2.54)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@parcel/watcher-win32-x64@2.4.1':
- optional: true
+ '@radix-ui/react-navigation-menu@1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@parcel/watcher@2.4.1':
+ '@radix-ui/react-popover@1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- detect-libc: 1.0.3
- is-glob: 4.0.3
- micromatch: 4.0.7
- node-addon-api: 7.1.1
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ aria-hidden: 1.2.4
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.7(@types/react@18.2.54)(react@18.2.0)
optionalDependencies:
- '@parcel/watcher-android-arm64': 2.4.1
- '@parcel/watcher-darwin-arm64': 2.4.1
- '@parcel/watcher-darwin-x64': 2.4.1
- '@parcel/watcher-freebsd-x64': 2.4.1
- '@parcel/watcher-linux-arm-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-musl': 2.4.1
- '@parcel/watcher-linux-x64-glibc': 2.4.1
- '@parcel/watcher-linux-x64-musl': 2.4.1
- '@parcel/watcher-win32-arm64': 2.4.1
- '@parcel/watcher-win32-ia32': 2.4.1
- '@parcel/watcher-win32-x64': 2.4.1
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@pkgjs/parseargs@0.11.0':
- optional: true
+ '@radix-ui/react-popper@1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-arrow': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/rect': 1.1.0
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@radix-ui/primitive@1.0.1':
+ '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@babel/runtime': 7.25.0
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@radix-ui/primitive@1.1.0': {}
+ '@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.3.1)
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.1)(react@18.3.1)':
+ '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@babel/runtime': 7.25.0
- react: 18.3.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@radix-ui/react-compose-refs@1.1.0(@types/react@18.3.1)(react@18.3.1)':
+ '@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
dependencies:
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.3.1)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.3.1)
react: 18.3.1
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@radix-ui/react-context@1.0.1(@types/react@18.3.1)(react@18.3.1)':
+ '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@babel/runtime': 7.25.0
- react: 18.3.1
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@radix-ui/react-context@1.1.0(@types/react@18.3.1)(react@18.3.1)':
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- react: 18.3.1
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@radix-ui/react-dialog@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.3.1))(react@18.3.1)':
dependencies:
- '@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-context': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-id': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- aria-hidden: 1.2.4
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.3.1)
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.5.7(@types/react@18.3.1)(react@18.3.1)
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-progress@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-radio-group@1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@radix-ui/primitive': 1.1.0
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-focus-guards@1.1.0(@types/react@18.3.1)(react@18.3.1)':
+ '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- react: 18.3.1
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-scroll-area@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-id@1.1.0(@types/react@18.3.1)(react@18.3.1)':
+ '@radix-ui/react-select@2.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ aria-hidden: 1.2.4
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.7(@types/react@18.2.54)(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-slider@1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
- '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-slot@1.0.2(@types/react@18.2.54)(react@18.2.0)':
dependencies:
'@babel/runtime': 7.25.0
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-slot@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-slot@1.1.0(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.3.1)
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-switch@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-portal@1.1.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-tabs@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-toast@1.1.5(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-presence@1.1.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-toast@1.2.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-toggle-group@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-toggle': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-toggle@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@radix-ui/react-slot': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-tooltip@1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
'@types/react-dom': 18.3.0
- '@radix-ui/react-slot@1.0.2(@types/react@18.3.1)(react@18.3.1)':
+ '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.54)(react@18.2.0)':
dependencies:
'@babel/runtime': 7.25.0
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
- '@radix-ui/react-slot@1.1.0(@types/react@18.3.1)(react@18.3.1)':
+ '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.54)(react@18.2.0)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.3.1)(react@18.3.1)
+ '@babel/runtime': 7.25.0
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.3.1)
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
- '@radix-ui/react-toast@1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.54)(react@18.2.0)':
dependencies:
'@babel/runtime': 7.25.0
- '@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.3.1)
react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.1
- '@types/react-dom': 18.3.0
+ '@types/react': 18.2.54
- '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.1)(react@18.3.1)':
+ '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.54)(react@18.2.0)':
dependencies:
'@babel/runtime': 7.25.0
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
react: 18.3.1
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-previous@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-rect@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/rect': 1.1.0
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-use-size@1.1.0(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@radix-ui/rect@1.1.0': {}
+
+ '@radix-ui/themes@3.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/colors': 3.0.0
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-accessible-icon': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-alert-dialog': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-aspect-ratio': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-avatar': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-checkbox': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-context-menu': 2.2.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-dropdown-menu': 2.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-form': 0.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-hover-card': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-navigation-menu': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-popover': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-progress': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-radio-group': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-scroll-area': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-select': 2.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slider': 1.2.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-switch': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-tabs': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-toggle-group': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-tooltip': 1.1.1(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.54)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.3.0)(@types/react@18.2.54)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ classnames: 2.3.2
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.54)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ '@types/react-dom': 18.3.0
+
+ '@react-aria/breadcrumbs@3.5.16(react@18.2.0)':
+ dependencies:
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/link': 3.7.4(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/breadcrumbs': 3.7.7(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/button@3.9.8(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/toggle': 3.7.7(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/calendar@3.5.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@internationalized/date': 3.5.5
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/live-announcer': 3.3.4
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/calendar': 3.5.4(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/calendar': 3.4.9(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/checkbox@3.14.6(react@18.2.0)':
+ dependencies:
+ '@react-aria/form': 3.0.8(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/label': 3.7.11(react@18.2.0)
+ '@react-aria/toggle': 3.10.7(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/checkbox': 3.6.8(react@18.2.0)
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-stately/toggle': 3.7.7(react@18.2.0)
+ '@react-types/checkbox': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/combobox@3.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/listbox': 3.13.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/live-announcer': 3.3.4
+ '@react-aria/menu': 3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/overlays': 3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/textfield': 3.14.8(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/combobox': 3.9.2(react@18.2.0)
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/combobox': 3.12.1(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/datepicker@3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@internationalized/date': 3.5.5
+ '@internationalized/number': 3.5.3
+ '@internationalized/string': 3.2.3
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/form': 3.0.8(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/label': 3.7.11(react@18.2.0)
+ '@react-aria/spinbutton': 3.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/datepicker': 3.10.2(react@18.2.0)
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/calendar': 3.4.9(react@18.2.0)
+ '@react-types/datepicker': 3.8.2(react@18.2.0)
+ '@react-types/dialog': 3.5.12(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/dialog@3.5.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/overlays': 3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/dialog': 3.5.12(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/dnd@3.7.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@internationalized/string': 3.2.3
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/live-announcer': 3.3.4
+ '@react-aria/overlays': 3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/dnd': 3.4.2(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/focus@3.16.2(react@18.2.0)':
+ dependencies:
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ clsx: 2.1.1
+ react: 18.2.0
+
+ '@react-aria/focus@3.18.2(react@18.2.0)':
+ dependencies:
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ clsx: 2.1.1
+ react: 18.2.0
+
+ '@react-aria/form@3.0.8(react@18.2.0)':
+ dependencies:
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/grid@3.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/live-announcer': 3.3.4
+ '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/grid': 3.9.2(react@18.2.0)
+ '@react-stately/selection': 3.16.2(react@18.2.0)
+ '@react-types/checkbox': 3.8.3(react@18.2.0)
+ '@react-types/grid': 3.2.8(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/gridlist@3.9.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/grid': 3.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/list': 3.10.8(react@18.2.0)
+ '@react-stately/tree': 3.8.4(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/i18n@3.12.2(react@18.2.0)':
+ dependencies:
+ '@internationalized/date': 3.5.5
+ '@internationalized/message': 3.1.4
+ '@internationalized/number': 3.5.3
+ '@internationalized/string': 3.2.3
+ '@react-aria/ssr': 3.9.5(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/interactions@3.22.2(react@18.2.0)':
+ dependencies:
+ '@react-aria/ssr': 3.9.5(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/label@3.7.11(react@18.2.0)':
+ dependencies:
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/link@3.7.4(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/link': 3.5.7(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/listbox@3.13.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/label': 3.7.11(react@18.2.0)
+ '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/list': 3.10.8(react@18.2.0)
+ '@react-types/listbox': 3.5.1(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/live-announcer@3.3.4':
+ dependencies:
+ '@swc/helpers': 0.5.12
+
+ '@react-aria/menu@3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/overlays': 3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/menu': 3.8.2(react@18.2.0)
+ '@react-stately/tree': 3.8.4(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/menu': 3.9.11(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/meter@3.4.16(react@18.2.0)':
+ dependencies:
+ '@react-aria/progress': 3.4.16(react@18.2.0)
+ '@react-types/meter': 3.4.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/numberfield@3.11.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/spinbutton': 3.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/textfield': 3.14.8(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-stately/numberfield': 3.9.6(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/numberfield': 3.8.5(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/overlays@3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/ssr': 3.9.5(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-aria/visually-hidden': 3.8.15(react@18.2.0)
+ '@react-stately/overlays': 3.6.10(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/overlays': 3.8.9(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/progress@3.4.16(react@18.2.0)':
+ dependencies:
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/label': 3.7.11(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/progress': 3.5.6(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/radio@3.10.7(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/form': 3.0.8(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/label': 3.7.11(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/radio': 3.10.7(react@18.2.0)
+ '@react-types/radio': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/searchfield@3.7.8(react@18.2.0)':
+ dependencies:
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/textfield': 3.14.8(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/searchfield': 3.5.6(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/searchfield': 3.5.8(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/select@3.14.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/form': 3.0.8(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/label': 3.7.11(react@18.2.0)
+ '@react-aria/listbox': 3.13.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/menu': 3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-aria/visually-hidden': 3.8.15(react@18.2.0)
+ '@react-stately/select': 3.6.7(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/select': 3.9.6(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/selection@3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/selection': 3.16.2(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.1)(react@18.3.1)':
+ '@react-aria/separator@3.4.2(react@18.2.0)':
dependencies:
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.1
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/slider@3.7.11(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/label': 3.7.11(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/slider': 3.5.7(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@react-types/slider': 3.7.5(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
- '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.1)(react@18.3.1)':
+ '@react-aria/spinbutton@3.6.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.1
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/live-announcer': 3.3.4
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.3.1)(react@18.3.1)':
+ '@react-aria/ssr@3.9.5(react@18.2.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.1
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
- '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.1)(react@18.3.1)':
+ '@react-aria/switch@3.6.7(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.1
+ '@react-aria/toggle': 3.10.7(react@18.2.0)
+ '@react-stately/toggle': 3.7.7(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@react-types/switch': 3.5.5(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-aria/table@3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/grid': 3.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/live-announcer': 3.3.4
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-aria/visually-hidden': 3.8.15(react@18.2.0)
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/flags': 3.0.3
+ '@react-stately/table': 3.12.2(react@18.2.0)
+ '@react-types/checkbox': 3.8.3(react@18.2.0)
+ '@react-types/grid': 3.2.8(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@react-types/table': 3.10.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/tabs@3.9.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/tabs': 3.6.9(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@react-types/tabs': 3.3.9(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/tag@3.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@react-aria/gridlist': 3.9.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/label': 3.7.11(react@18.2.0)
+ '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/list': 3.10.8(react@18.2.0)
+ '@react-types/button': 3.9.6(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@react-aria/textfield@3.14.8(react@18.2.0)':
+ dependencies:
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/form': 3.0.8(react@18.2.0)
+ '@react-aria/label': 3.7.11(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@react-types/textfield': 3.9.6(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.3.1)(react@18.3.1)':
+ '@react-aria/toggle@3.10.7(react@18.2.0)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.3.1)(react@18.3.1)
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.1
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/toggle': 3.7.7(react@18.2.0)
+ '@react-types/checkbox': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
- '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.1)(react@18.3.1)':
+ '@react-aria/tooltip@3.7.7(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.0
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.1
+ '@react-aria/focus': 3.18.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-stately/tooltip': 3.4.12(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@react-types/tooltip': 3.4.11(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.1)(react@18.3.1)':
+ '@react-aria/utils@3.25.2(react@18.2.0)':
dependencies:
- react: 18.3.1
- optionalDependencies:
- '@types/react': 18.3.1
+ '@react-aria/ssr': 3.9.5(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ clsx: 2.1.1
+ react: 18.2.0
- '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@react-aria/visually-hidden@3.8.15(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.25.0
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- optionalDependencies:
- '@types/react': 18.3.1
- '@types/react-dom': 18.3.0
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
'@react-native-community/cli-clean@14.0.0':
dependencies:
@@ -11629,6 +14589,24 @@ snapshots:
'@react-native/normalize-colors@0.75.0': {}
+ '@react-native/virtualized-lists@0.75.0(@types/react@18.2.54)(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.2.0)':
+ dependencies:
+ invariant: 2.2.4
+ nullthrows: 1.1.1
+ react: 18.2.0
+ react-native: 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ '@react-native/virtualized-lists@0.75.0(@types/react@18.2.54)(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)':
+ dependencies:
+ invariant: 2.2.4
+ nullthrows: 1.1.1
+ react: 18.3.1
+ react-native: 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ '@types/react': 18.2.54
+
'@react-native/virtualized-lists@0.75.0(@types/react@18.3.1)(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
invariant: 2.2.4
@@ -11638,6 +14616,345 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.1
+ '@react-stately/calendar@3.5.4(react@18.2.0)':
+ dependencies:
+ '@internationalized/date': 3.5.5
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/calendar': 3.4.9(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/checkbox@3.6.8(react@18.2.0)':
+ dependencies:
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/checkbox': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/collections@3.10.9(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/combobox@3.9.2(react@18.2.0)':
+ dependencies:
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-stately/list': 3.10.8(react@18.2.0)
+ '@react-stately/overlays': 3.6.10(react@18.2.0)
+ '@react-stately/select': 3.6.7(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/combobox': 3.12.1(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/data@3.11.6(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/datepicker@3.10.2(react@18.2.0)':
+ dependencies:
+ '@internationalized/date': 3.5.5
+ '@internationalized/string': 3.2.3
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-stately/overlays': 3.6.10(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/datepicker': 3.8.2(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/dnd@3.4.2(react@18.2.0)':
+ dependencies:
+ '@react-stately/selection': 3.16.2(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/flags@3.0.3':
+ dependencies:
+ '@swc/helpers': 0.5.12
+
+ '@react-stately/form@3.0.5(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/grid@3.9.2(react@18.2.0)':
+ dependencies:
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/selection': 3.16.2(react@18.2.0)
+ '@react-types/grid': 3.2.8(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/list@3.10.8(react@18.2.0)':
+ dependencies:
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/selection': 3.16.2(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/menu@3.8.2(react@18.2.0)':
+ dependencies:
+ '@react-stately/overlays': 3.6.10(react@18.2.0)
+ '@react-types/menu': 3.9.11(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/numberfield@3.9.6(react@18.2.0)':
+ dependencies:
+ '@internationalized/number': 3.5.3
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/numberfield': 3.8.5(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/overlays@3.6.10(react@18.2.0)':
+ dependencies:
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/overlays': 3.8.9(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/radio@3.10.7(react@18.2.0)':
+ dependencies:
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/radio': 3.8.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/searchfield@3.5.6(react@18.2.0)':
+ dependencies:
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/searchfield': 3.5.8(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/select@3.6.7(react@18.2.0)':
+ dependencies:
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-stately/list': 3.10.8(react@18.2.0)
+ '@react-stately/overlays': 3.6.10(react@18.2.0)
+ '@react-types/select': 3.9.6(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/selection@3.16.2(react@18.2.0)':
+ dependencies:
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/slider@3.5.7(react@18.2.0)':
+ dependencies:
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@react-types/slider': 3.7.5(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/table@3.12.2(react@18.2.0)':
+ dependencies:
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/flags': 3.0.3
+ '@react-stately/grid': 3.9.2(react@18.2.0)
+ '@react-stately/selection': 3.16.2(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/grid': 3.2.8(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@react-types/table': 3.10.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/tabs@3.6.9(react@18.2.0)':
+ dependencies:
+ '@react-stately/list': 3.10.8(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@react-types/tabs': 3.3.9(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/toggle@3.7.7(react@18.2.0)':
+ dependencies:
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/checkbox': 3.8.3(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/tooltip@3.4.12(react@18.2.0)':
+ dependencies:
+ '@react-stately/overlays': 3.6.10(react@18.2.0)
+ '@react-types/tooltip': 3.4.11(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/tree@3.8.4(react@18.2.0)':
+ dependencies:
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/selection': 3.16.2(react@18.2.0)
+ '@react-stately/utils': 3.10.3(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-stately/utils@3.10.3(react@18.2.0)':
+ dependencies:
+ '@swc/helpers': 0.5.12
+ react: 18.2.0
+
+ '@react-types/breadcrumbs@3.7.7(react@18.2.0)':
+ dependencies:
+ '@react-types/link': 3.5.7(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/button@3.9.6(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/calendar@3.4.9(react@18.2.0)':
+ dependencies:
+ '@internationalized/date': 3.5.5
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/checkbox@3.8.3(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/combobox@3.12.1(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/datepicker@3.8.2(react@18.2.0)':
+ dependencies:
+ '@internationalized/date': 3.5.5
+ '@react-types/calendar': 3.4.9(react@18.2.0)
+ '@react-types/overlays': 3.8.9(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/dialog@3.5.12(react@18.2.0)':
+ dependencies:
+ '@react-types/overlays': 3.8.9(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/grid@3.2.8(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/link@3.5.7(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/listbox@3.5.1(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/menu@3.9.11(react@18.2.0)':
+ dependencies:
+ '@react-types/overlays': 3.8.9(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/meter@3.4.3(react@18.2.0)':
+ dependencies:
+ '@react-types/progress': 3.5.6(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/numberfield@3.8.5(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/overlays@3.8.9(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/progress@3.5.6(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/radio@3.8.3(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/searchfield@3.5.8(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ '@react-types/textfield': 3.9.6(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/select@3.9.6(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/shared@3.24.1(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+
+ '@react-types/slider@3.7.5(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/switch@3.5.5(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/table@3.10.1(react@18.2.0)':
+ dependencies:
+ '@react-types/grid': 3.2.8(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/tabs@3.3.9(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/textfield@3.9.6(react@18.2.0)':
+ dependencies:
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ '@react-types/tooltip@3.4.11(react@18.2.0)':
+ dependencies:
+ '@react-types/overlays': 3.8.9(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
'@rollup/pluginutils@5.1.0(rollup@4.20.0)':
dependencies:
'@types/estree': 1.0.5
@@ -12026,21 +15343,58 @@ snapshots:
dependencies:
tslib: 2.6.3
+ '@swc/helpers@0.5.2':
+ dependencies:
+ tslib: 2.6.3
+
'@swc/helpers@0.5.5':
dependencies:
'@swc/counter': 0.1.3
tslib: 2.6.3
+ '@tabler/icons-react@2.47.0(react@18.2.0)':
+ dependencies:
+ '@tabler/icons': 2.47.0
+ prop-types: 15.8.1
+ react: 18.2.0
+
+ '@tabler/icons-react@2.47.0(react@18.3.1)':
+ dependencies:
+ '@tabler/icons': 2.47.0
+ prop-types: 15.8.1
+ react: 18.3.1
+
+ '@tabler/icons@2.47.0': {}
+
+ '@tailwindcss/typography@0.5.10(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5)))':
+ dependencies:
+ lodash.castarray: 4.4.0
+ lodash.isplainobject: 4.0.6
+ lodash.merge: 4.6.2
+ postcss-selector-parser: 6.0.10
+ tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))
+
'@tanstack/query-core@5.35.1': {}
'@tanstack/query-devtools@5.32.1': {}
+ '@tanstack/react-query-devtools@5.35.1(@tanstack/react-query@5.35.1(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@tanstack/query-devtools': 5.32.1
+ '@tanstack/react-query': 5.35.1(react@18.2.0)
+ react: 18.2.0
+
'@tanstack/react-query-devtools@5.35.1(@tanstack/react-query@5.35.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@tanstack/query-devtools': 5.32.1
'@tanstack/react-query': 5.35.1(react@18.3.1)
react: 18.3.1
+ '@tanstack/react-query@5.35.1(react@18.2.0)':
+ dependencies:
+ '@tanstack/query-core': 5.35.1
+ react: 18.2.0
+
'@tanstack/react-query@5.35.1(react@18.3.1)':
dependencies:
'@tanstack/query-core': 5.35.1
@@ -12119,6 +15473,8 @@ snapshots:
dependencies:
'@types/istanbul-lib-report': 3.0.3
+ '@types/js-cookie@2.2.7': {}
+
'@types/json-schema@7.0.15': {}
'@types/linkify-it@5.0.0': {}
@@ -12147,6 +15503,8 @@ snapshots:
'@types/node@12.20.55': {}
+ '@types/node@18.15.13': {}
+
'@types/node@20.12.11':
dependencies:
undici-types: 5.26.5
@@ -12157,12 +15515,21 @@ snapshots:
'@types/react-dom@18.3.0':
dependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+
+ '@types/react@18.2.54':
+ dependencies:
+ '@types/prop-types': 15.7.12
+ '@types/scheduler': 0.23.0
+ csstype: 3.1.3
'@types/react@18.3.1':
dependencies:
'@types/prop-types': 15.7.12
csstype: 3.1.3
+ optional: true
+
+ '@types/scheduler@0.23.0': {}
'@types/secp256k1@4.0.6':
dependencies:
@@ -12172,6 +15539,8 @@ snapshots:
'@types/stack-utils@2.0.3': {}
+ '@types/stylis@4.2.5': {}
+
'@types/trusted-types@2.0.7': {}
'@types/unist@3.0.2': {}
@@ -12214,7 +15583,7 @@ snapshots:
vite: 5.4.0(@types/node@20.12.11)(terser@5.31.0)
vue: 3.4.37(typescript@5.4.5)
- '@vitest/coverage-v8@2.0.2(vitest@2.0.2(@types/node@20.12.11)(jsdom@24.0.0)(terser@5.31.0))':
+ '@vitest/coverage-v8@2.0.2(vitest@2.0.2(@types/node@20.12.11)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.31.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
@@ -12229,7 +15598,7 @@ snapshots:
strip-literal: 2.1.0
test-exclude: 7.0.1
tinyrainbow: 1.2.0
- vitest: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0)(terser@5.31.0)
+ vitest: 2.0.2(@types/node@20.12.11)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.31.0)
transitivePeerDependencies:
- supports-color
@@ -12381,27 +15750,105 @@ snapshots:
- '@vue/composition-api'
- vue
- '@vueuse/integrations@10.11.1(focus-trap@7.5.4)(idb-keyval@6.2.1)(qrcode@1.5.3)(vue@3.4.37(typescript@5.4.5))':
+ '@vueuse/integrations@10.11.1(focus-trap@7.5.4)(idb-keyval@6.2.1)(qrcode@1.5.3)(vue@3.4.37(typescript@5.4.5))':
+ dependencies:
+ '@vueuse/core': 10.11.1(vue@3.4.37(typescript@5.4.5))
+ '@vueuse/shared': 10.11.1(vue@3.4.37(typescript@5.4.5))
+ vue-demi: 0.14.10(vue@3.4.37(typescript@5.4.5))
+ optionalDependencies:
+ focus-trap: 7.5.4
+ idb-keyval: 6.2.1
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+
+ '@vueuse/metadata@10.11.1': {}
+
+ '@vueuse/shared@10.11.1(vue@3.4.37(typescript@5.4.5))':
+ dependencies:
+ vue-demi: 0.14.10(vue@3.4.37(typescript@5.4.5))
+ transitivePeerDependencies:
+ - '@vue/composition-api'
+ - vue
+
+ '@wagmi/connectors@5.1.7(@types/react@18.2.54)(@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)':
+ dependencies:
+ '@coinbase/wallet-sdk': 4.0.4
+ '@metamask/sdk': 0.27.0(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@4.20.0)(utf-8-validate@5.0.10)
+ '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)
+ '@wagmi/core': 2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))
+ '@walletconnect/ethereum-provider': 2.15.1(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)
+ '@walletconnect/modal': 2.6.2(@types/react@18.2.54)(react@18.2.0)
+ cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
+ viem: 2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)
+ optionalDependencies:
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - bufferutil
+ - encoding
+ - ioredis
+ - react
+ - react-dom
+ - react-native
+ - rollup
+ - supports-color
+ - uWebSockets.js
+ - utf-8-validate
+ - zod
+
+ '@wagmi/connectors@5.1.7(@types/react@18.2.54)(@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)':
dependencies:
- '@vueuse/core': 10.11.1(vue@3.4.37(typescript@5.4.5))
- '@vueuse/shared': 10.11.1(vue@3.4.37(typescript@5.4.5))
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.4.5))
+ '@coinbase/wallet-sdk': 4.0.4
+ '@metamask/sdk': 0.27.0(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(utf-8-validate@5.0.10)
+ '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)
+ '@wagmi/core': 2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))
+ '@walletconnect/ethereum-provider': 2.15.1(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@walletconnect/modal': 2.6.2(@types/react@18.2.54)(react@18.3.1)
+ cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
+ viem: 2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)
optionalDependencies:
- focus-trap: 7.5.4
- idb-keyval: 6.2.1
- qrcode: 1.5.3
- transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
-
- '@vueuse/metadata@10.11.1': {}
-
- '@vueuse/shared@10.11.1(vue@3.4.37(typescript@5.4.5))':
- dependencies:
- vue-demi: 0.14.10(vue@3.4.37(typescript@5.4.5))
+ typescript: 5.4.5
transitivePeerDependencies:
- - '@vue/composition-api'
- - vue
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - bufferutil
+ - encoding
+ - ioredis
+ - react
+ - react-dom
+ - react-native
+ - rollup
+ - supports-color
+ - uWebSockets.js
+ - utf-8-validate
+ - zod
'@wagmi/connectors@5.1.7(@types/react@18.3.1)(@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.3.1)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)':
dependencies:
@@ -12442,6 +15889,34 @@ snapshots:
- utf-8-validate
- zod
+ '@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.2.0)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))':
+ dependencies:
+ eventemitter3: 5.0.1
+ mipd: 0.0.7(typescript@5.4.5)
+ viem: 2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)
+ zustand: 4.4.1(@types/react@18.2.54)(react@18.2.0)
+ optionalDependencies:
+ '@tanstack/query-core': 5.35.1
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - react
+
+ '@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))':
+ dependencies:
+ eventemitter3: 5.0.1
+ mipd: 0.0.7(typescript@5.4.5)
+ viem: 2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)
+ zustand: 4.4.1(@types/react@18.2.54)(react@18.3.1)
+ optionalDependencies:
+ '@tanstack/query-core': 5.35.1
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - react
+
'@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.3.1)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))':
dependencies:
eventemitter3: 5.0.1
@@ -12661,6 +16136,72 @@ snapshots:
- uWebSockets.js
- utf-8-validate
+ '@walletconnect/ethereum-provider@2.15.1(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/modal': 2.6.2(@types/react@18.2.54)(react@18.2.0)
+ '@walletconnect/sign-client': 2.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.15.1
+ '@walletconnect/universal-provider': 2.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.15.1
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - bufferutil
+ - encoding
+ - ioredis
+ - react
+ - uWebSockets.js
+ - utf-8-validate
+
+ '@walletconnect/ethereum-provider@2.15.1(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-provider': 1.0.14
+ '@walletconnect/jsonrpc-types': 1.0.4
+ '@walletconnect/jsonrpc-utils': 1.0.8
+ '@walletconnect/modal': 2.6.2(@types/react@18.2.54)(react@18.3.1)
+ '@walletconnect/sign-client': 2.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.15.1
+ '@walletconnect/universal-provider': 2.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/utils': 2.15.1
+ events: 3.3.0
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - bufferutil
+ - encoding
+ - ioredis
+ - react
+ - uWebSockets.js
+ - utf-8-validate
+
'@walletconnect/ethereum-provider@2.15.1(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/jsonrpc-http-connection': 1.0.8
@@ -12785,6 +16326,20 @@ snapshots:
'@walletconnect/mobile-registry@1.4.0': {}
+ '@walletconnect/modal-core@2.6.2(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ valtio: 1.11.2(@types/react@18.2.54)(react@18.2.0)
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
+ '@walletconnect/modal-core@2.6.2(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
+ valtio: 1.11.2(@types/react@18.2.54)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
'@walletconnect/modal-core@2.6.2(@types/react@18.3.1)(react@18.3.1)':
dependencies:
valtio: 1.11.2(@types/react@18.3.1)(react@18.3.1)
@@ -12792,6 +16347,26 @@ snapshots:
- '@types/react'
- react
+ '@walletconnect/modal-ui@2.6.2(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@walletconnect/modal-core': 2.6.2(@types/react@18.2.54)(react@18.2.0)
+ lit: 2.8.0
+ motion: 10.16.2
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
+ '@walletconnect/modal-ui@2.6.2(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
+ '@walletconnect/modal-core': 2.6.2(@types/react@18.2.54)(react@18.3.1)
+ lit: 2.8.0
+ motion: 10.16.2
+ qrcode: 1.5.3
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
'@walletconnect/modal-ui@2.6.2(@types/react@18.3.1)(react@18.3.1)':
dependencies:
'@walletconnect/modal-core': 2.6.2(@types/react@18.3.1)(react@18.3.1)
@@ -12802,6 +16377,22 @@ snapshots:
- '@types/react'
- react
+ '@walletconnect/modal@2.6.2(@types/react@18.2.54)(react@18.2.0)':
+ dependencies:
+ '@walletconnect/modal-core': 2.6.2(@types/react@18.2.54)(react@18.2.0)
+ '@walletconnect/modal-ui': 2.6.2(@types/react@18.2.54)(react@18.2.0)
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
+ '@walletconnect/modal@2.6.2(@types/react@18.2.54)(react@18.3.1)':
+ dependencies:
+ '@walletconnect/modal-core': 2.6.2(@types/react@18.2.54)(react@18.3.1)
+ '@walletconnect/modal-ui': 2.6.2(@types/react@18.2.54)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - react
+
'@walletconnect/modal@2.6.2(@types/react@18.3.1)(react@18.3.1)':
dependencies:
'@walletconnect/modal-core': 2.6.2(@types/react@18.3.1)(react@18.3.1)
@@ -13641,6 +17232,8 @@ snapshots:
'@webassemblyjs/ast': 1.12.1
'@xtuc/long': 4.2.2
+ '@xobotyi/scrollbar-width@1.9.5': {}
+
'@xtuc/ieee754@1.2.0': {}
'@xtuc/long@4.2.2': {}
@@ -13674,6 +17267,8 @@ snapshots:
acorn@8.12.1: {}
+ aes-js@4.0.0-beta.5: {}
+
agent-base@7.1.1:
dependencies:
debug: 4.3.6(supports-color@5.5.0)
@@ -14036,6 +17631,8 @@ snapshots:
camelcase@6.3.0: {}
+ camelize@1.0.1: {}
+
caniuse-lite@1.0.30001651: {}
chai@5.1.1:
@@ -14105,6 +17702,8 @@ snapshots:
dependencies:
consola: 3.2.3
+ classnames@2.3.2: {}
+
cli-cursor@3.1.0:
dependencies:
restore-cursor: 3.1.0
@@ -14160,6 +17759,8 @@ snapshots:
clsx@1.2.1: {}
+ clsx@2.1.0: {}
+
clsx@2.1.1: {}
color-convert@1.9.3:
@@ -14174,6 +17775,16 @@ snapshots:
color-name@1.1.4: {}
+ color-string@1.9.1:
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+
+ color@4.2.3:
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
+
colorette@1.4.0: {}
colorette@2.0.20: {}
@@ -14297,6 +17908,23 @@ snapshots:
crossws@0.2.4: {}
+ css-color-keywords@1.0.0: {}
+
+ css-in-js-utils@3.1.0:
+ dependencies:
+ hyphenate-style-name: 1.1.0
+
+ css-to-react-native@3.2.0:
+ dependencies:
+ camelize: 1.0.1
+ css-color-keywords: 1.0.0
+ postcss-value-parser: 4.2.0
+
+ css-tree@1.1.3:
+ dependencies:
+ mdn-data: 2.0.14
+ source-map: 0.6.1
+
cssesc@3.0.0: {}
cssstyle@4.0.1:
@@ -14859,6 +18487,19 @@ snapshots:
'@scure/bip32': 1.4.0
'@scure/bip39': 1.3.0
+ ethers@6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ dependencies:
+ '@adraffy/ens-normalize': 1.10.1
+ '@noble/curves': 1.2.0
+ '@noble/hashes': 1.3.2
+ '@types/node': 18.15.13
+ aes-js: 4.0.0-beta.5
+ tslib: 2.4.0
+ ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
event-emitter@0.3.5:
dependencies:
d: 1.0.2
@@ -14937,12 +18578,16 @@ snapshots:
fast-safe-stringify@2.1.1: {}
+ fast-shallow-equal@1.0.0: {}
+
fast-stable-stringify@1.0.0: {}
fast-xml-parser@4.4.1:
dependencies:
strnum: 1.0.5
+ fastest-stable-stringify@2.0.2: {}
+
fastq@1.17.1:
dependencies:
reusify: 1.0.4
@@ -15031,6 +18676,14 @@ snapshots:
fraction.js@4.3.7: {}
+ framer-motion@11.0.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ tslib: 2.6.3
+ optionalDependencies:
+ '@emotion/is-prop-valid': 0.8.8
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
fresh@0.5.2: {}
fs-extra@7.0.1:
@@ -15098,6 +18751,10 @@ snapshots:
futoin-hkdf@1.5.3: {}
+ geist@1.2.2(next@14.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)):
+ dependencies:
+ next: 14.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5: {}
@@ -15225,7 +18882,7 @@ snapshots:
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.19.2
+ uglify-js: 3.19.3
hard-rejection@2.1.0: {}
@@ -15324,6 +18981,8 @@ snapshots:
husky@9.0.11: {}
+ hyphenate-style-name@1.1.0: {}
+
i18next-browser-languagedetector@7.1.0:
dependencies:
'@babel/runtime': 7.25.0
@@ -15375,12 +19034,23 @@ snapshots:
inherits@2.0.4: {}
+ inline-style-prefixer@7.0.1:
+ dependencies:
+ css-in-js-utils: 3.1.0
+
internal-slot@1.0.7:
dependencies:
es-errors: 1.3.0
hasown: 2.0.2
side-channel: 1.0.6
+ intl-messageformat@10.5.14:
+ dependencies:
+ '@formatjs/ecma402-abstract': 2.0.0
+ '@formatjs/fast-memoize': 2.2.0
+ '@formatjs/icu-messageformat-parser': 2.7.8
+ tslib: 2.6.3
+
invariant@2.2.4:
dependencies:
loose-envify: 1.4.0
@@ -15399,6 +19069,8 @@ snapshots:
is-arrayish@0.2.1: {}
+ is-arrayish@0.3.2: {}
+
is-bigint@1.0.4:
dependencies:
has-bigints: 1.0.2
@@ -15671,6 +19343,8 @@ snapshots:
joycon@3.1.1: {}
+ js-cookie@2.2.1: {}
+
js-tokens@4.0.0: {}
js-tokens@9.0.0: {}
@@ -15772,6 +19446,8 @@ snapshots:
jsonparse@1.3.1: {}
+ just-unique@4.2.0: {}
+
keccak@3.0.4:
dependencies:
node-addon-api: 2.0.2
@@ -15918,12 +19594,20 @@ snapshots:
lodash.camelcase@4.3.0: {}
+ lodash.castarray@4.4.0: {}
+
lodash.debounce@4.0.8: {}
lodash.get@4.4.2: {}
lodash.isequal@4.5.0: {}
+ lodash.isplainobject@4.0.6: {}
+
+ lodash.merge@4.6.2: {}
+
+ lodash.mergewith@4.6.2: {}
+
lodash.sortby@4.7.0: {}
lodash.startcase@4.4.0: {}
@@ -16032,6 +19716,8 @@ snapshots:
marky@1.2.5: {}
+ mdn-data@2.0.14: {}
+
mdurl@1.0.1: {}
mdurl@2.0.0: {}
@@ -16338,6 +20024,8 @@ snapshots:
pkg-types: 1.1.3
ufo: 1.5.4
+ modern-normalize@2.0.0: {}
+
motion@10.16.2:
dependencies:
'@motionone/animation': 10.18.0
@@ -16365,6 +20053,19 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
+ nano-css@5.6.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+ css-tree: 1.1.3
+ csstype: 3.1.3
+ fastest-stable-stringify: 2.0.2
+ inline-style-prefixer: 7.0.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ rtl-css-js: 1.16.1
+ stacktrace-js: 2.0.2
+ stylis: 4.3.4
+
nanoid@3.3.7: {}
negotiator@0.6.3: {}
@@ -16373,6 +20074,31 @@ snapshots:
next-tick@1.1.0: {}
+ next@14.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ '@next/env': 14.1.0
+ '@swc/helpers': 0.5.2
+ busboy: 1.6.0
+ caniuse-lite: 1.0.30001651
+ graceful-fs: 4.2.11
+ postcss: 8.4.31
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ styled-jsx: 5.1.1(react@18.2.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 14.1.0
+ '@next/swc-darwin-x64': 14.1.0
+ '@next/swc-linux-arm64-gnu': 14.1.0
+ '@next/swc-linux-arm64-musl': 14.1.0
+ '@next/swc-linux-x64-gnu': 14.1.0
+ '@next/swc-linux-x64-musl': 14.1.0
+ '@next/swc-win32-arm64-msvc': 14.1.0
+ '@next/swc-win32-ia32-msvc': 14.1.0
+ '@next/swc-win32-x64-msvc': 14.1.0
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
next@14.2.3(@babel/core@7.25.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 14.2.3
@@ -16709,11 +20435,26 @@ snapshots:
read-cache: 1.0.0
resolve: 1.22.8
+ postcss-import@16.0.1(postcss@8.4.35):
+ dependencies:
+ postcss: 8.4.35
+ postcss-value-parser: 4.2.0
+ read-cache: 1.0.0
+ resolve: 1.22.8
+
postcss-js@4.0.1(postcss@8.4.38):
dependencies:
camelcase-css: 2.0.1
postcss: 8.4.38
+ postcss-load-config@4.0.2(postcss@8.4.35)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5)):
+ dependencies:
+ lilconfig: 3.1.2
+ yaml: 2.5.0
+ optionalDependencies:
+ postcss: 8.4.35
+ ts-node: 10.9.2(@types/node@20.12.11)(typescript@5.4.5)
+
postcss-load-config@4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5)):
dependencies:
lilconfig: 3.1.2
@@ -16743,6 +20484,11 @@ snapshots:
postcss: 8.4.38
postcss-selector-parser: 6.1.2
+ postcss-selector-parser@6.0.10:
+ dependencies:
+ cssesc: 3.0.0
+ util-deprecate: 1.0.2
+
postcss-selector-parser@6.1.2:
dependencies:
cssesc: 3.0.0
@@ -16750,7 +20496,13 @@ snapshots:
postcss-value-parser@4.2.0: {}
- postcss@8.4.31:
+ postcss@8.4.31:
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.1
+ source-map-js: 1.2.0
+
+ postcss@8.4.35:
dependencies:
nanoid: 3.3.7
picocolors: 1.0.1
@@ -16807,6 +20559,12 @@ snapshots:
kleur: 3.0.3
sisteransi: 1.0.5
+ prop-types@15.8.1:
+ dependencies:
+ loose-envify: 1.4.0
+ object-assign: 4.1.1
+ react-is: 16.13.1
+
property-expr@2.0.6: {}
proxy-compare@2.5.1: {}
@@ -16874,6 +20632,8 @@ snapshots:
radix3@1.1.2: {}
+ ramda@0.29.1: {}
+
ramda@0.30.1: {}
randombytes@2.1.0:
@@ -16882,6 +20642,48 @@ snapshots:
range-parser@1.2.1: {}
+ react-aria@3.32.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ '@internationalized/string': 3.2.3
+ '@react-aria/breadcrumbs': 3.5.16(react@18.2.0)
+ '@react-aria/button': 3.9.8(react@18.2.0)
+ '@react-aria/calendar': 3.5.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/checkbox': 3.14.6(react@18.2.0)
+ '@react-aria/combobox': 3.10.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/datepicker': 3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/dialog': 3.5.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/dnd': 3.7.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/focus': 3.16.2(react@18.2.0)
+ '@react-aria/gridlist': 3.9.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/i18n': 3.12.2(react@18.2.0)
+ '@react-aria/interactions': 3.22.2(react@18.2.0)
+ '@react-aria/label': 3.7.11(react@18.2.0)
+ '@react-aria/link': 3.7.4(react@18.2.0)
+ '@react-aria/listbox': 3.13.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/menu': 3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/meter': 3.4.16(react@18.2.0)
+ '@react-aria/numberfield': 3.11.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/overlays': 3.23.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/progress': 3.4.16(react@18.2.0)
+ '@react-aria/radio': 3.10.7(react@18.2.0)
+ '@react-aria/searchfield': 3.7.8(react@18.2.0)
+ '@react-aria/select': 3.14.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/selection': 3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/separator': 3.4.2(react@18.2.0)
+ '@react-aria/slider': 3.7.11(react@18.2.0)
+ '@react-aria/ssr': 3.9.5(react@18.2.0)
+ '@react-aria/switch': 3.6.7(react@18.2.0)
+ '@react-aria/table': 3.15.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/tabs': 3.9.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/tag': 3.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@react-aria/textfield': 3.14.8(react@18.2.0)
+ '@react-aria/tooltip': 3.7.7(react@18.2.0)
+ '@react-aria/utils': 3.25.2(react@18.2.0)
+ '@react-aria/visually-hidden': 3.8.15(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
react-devtools-core@5.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
shell-quote: 1.8.1
@@ -16890,16 +20692,38 @@ snapshots:
- bufferutil
- utf-8-validate
+ react-dom@18.2.0(react@18.2.0):
+ dependencies:
+ loose-envify: 1.4.0
+ react: 18.2.0
+ scheduler: 0.23.2
+
react-dom@18.3.1(react@18.3.1):
dependencies:
loose-envify: 1.4.0
react: 18.3.1
scheduler: 0.23.2
+ react-is@16.13.1: {}
+
react-is@17.0.2: {}
react-is@18.3.1: {}
+ react-native-webview@11.26.1(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.2.0):
+ dependencies:
+ escape-string-regexp: 2.0.0
+ invariant: 2.2.4
+ react: 18.2.0
+ react-native: 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10)
+
+ react-native-webview@11.26.1(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1):
+ dependencies:
+ escape-string-regexp: 2.0.0
+ invariant: 2.2.4
+ react: 18.3.1
+ react-native: 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
+
react-native-webview@11.26.1(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1):
dependencies:
escape-string-regexp: 2.0.0
@@ -16907,6 +20731,110 @@ snapshots:
react: 18.3.1
react-native: 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
+ react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10):
+ dependencies:
+ '@jest/create-cache-key-function': 29.7.0
+ '@react-native-community/cli': 14.0.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-platform-android': 14.0.0
+ '@react-native-community/cli-platform-ios': 14.0.0
+ '@react-native/assets-registry': 0.75.0
+ '@react-native/codegen': 0.75.0(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ '@react-native/community-cli-plugin': 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@react-native/gradle-plugin': 0.75.0
+ '@react-native/js-polyfills': 0.75.0
+ '@react-native/normalize-colors': 0.75.0
+ '@react-native/virtualized-lists': 0.75.0(@types/react@18.2.54)(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.2.0)
+ 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
+ glob: 7.2.3
+ invariant: 2.2.4
+ jest-environment-node: 29.7.0
+ jsc-android: 250231.0.0
+ memoize-one: 5.2.1
+ metro-runtime: 0.80.10
+ metro-source-map: 0.80.10
+ mkdirp: 0.5.6
+ nullthrows: 1.1.1
+ pretty-format: 26.6.2
+ promise: 8.3.0
+ react: 18.2.0
+ react-devtools-core: 5.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ react-refresh: 0.14.2
+ regenerator-runtime: 0.13.11
+ scheduler: 0.24.0-canary-efb381bbf-20230505
+ semver: 7.6.3
+ stacktrace-parser: 0.1.10
+ whatwg-fetch: 3.6.20
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ yargs: 17.7.2
+ optionalDependencies:
+ '@types/react': 18.2.54
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - bufferutil
+ - encoding
+ - supports-color
+ - typescript
+ - utf-8-validate
+
+ react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10):
+ dependencies:
+ '@jest/create-cache-key-function': 29.7.0
+ '@react-native-community/cli': 14.0.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-platform-android': 14.0.0
+ '@react-native-community/cli-platform-ios': 14.0.0
+ '@react-native/assets-registry': 0.75.0
+ '@react-native/codegen': 0.75.0(@babel/preset-env@7.25.3(@babel/core@7.25.2))
+ '@react-native/community-cli-plugin': 0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@react-native/gradle-plugin': 0.75.0
+ '@react-native/js-polyfills': 0.75.0
+ '@react-native/normalize-colors': 0.75.0
+ '@react-native/virtualized-lists': 0.75.0(@types/react@18.2.54)(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.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
+ glob: 7.2.3
+ invariant: 2.2.4
+ jest-environment-node: 29.7.0
+ jsc-android: 250231.0.0
+ memoize-one: 5.2.1
+ metro-runtime: 0.80.10
+ metro-source-map: 0.80.10
+ mkdirp: 0.5.6
+ nullthrows: 1.1.1
+ pretty-format: 26.6.2
+ promise: 8.3.0
+ react: 18.3.1
+ react-devtools-core: 5.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ react-refresh: 0.14.2
+ regenerator-runtime: 0.13.11
+ scheduler: 0.24.0-canary-efb381bbf-20230505
+ semver: 7.6.3
+ stacktrace-parser: 0.1.10
+ whatwg-fetch: 3.6.20
+ ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ yargs: 17.7.2
+ optionalDependencies:
+ '@types/react': 18.2.54
+ transitivePeerDependencies:
+ - '@babel/core'
+ - '@babel/preset-env'
+ - bufferutil
+ - encoding
+ - supports-color
+ - typescript
+ - utf-8-validate
+
react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
@@ -16961,33 +20889,124 @@ snapshots:
react-refresh@0.14.2: {}
- react-remove-scroll-bar@2.3.6(@types/react@18.3.1)(react@18.3.1):
+ react-remove-scroll-bar@2.3.4(@types/react@18.2.54)(react@18.2.0):
+ dependencies:
+ react: 18.2.0
+ react-style-singleton: 2.2.1(@types/react@18.2.54)(react@18.2.0)
+ tslib: 2.6.3
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ react-remove-scroll-bar@2.3.6(@types/react@18.2.54)(react@18.2.0):
+ dependencies:
+ react: 18.2.0
+ react-style-singleton: 2.2.1(@types/react@18.2.54)(react@18.2.0)
+ tslib: 2.6.3
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ react-remove-scroll-bar@2.3.6(@types/react@18.2.54)(react@18.3.1):
dependencies:
react: 18.3.1
- react-style-singleton: 2.2.1(@types/react@18.3.1)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.2.54)(react@18.3.1)
tslib: 2.6.3
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+
+ react-remove-scroll@2.5.7(@types/react@18.2.54)(react@18.2.0):
+ dependencies:
+ react: 18.2.0
+ react-remove-scroll-bar: 2.3.6(@types/react@18.2.54)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.54)(react@18.2.0)
+ tslib: 2.6.3
+ use-callback-ref: 1.3.2(@types/react@18.2.54)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.2.54)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
- react-remove-scroll@2.5.7(@types/react@18.3.1)(react@18.3.1):
+ react-remove-scroll@2.5.7(@types/react@18.2.54)(react@18.3.1):
dependencies:
react: 18.3.1
- react-remove-scroll-bar: 2.3.6(@types/react@18.3.1)(react@18.3.1)
- react-style-singleton: 2.2.1(@types/react@18.3.1)(react@18.3.1)
+ react-remove-scroll-bar: 2.3.6(@types/react@18.2.54)(react@18.3.1)
+ react-style-singleton: 2.2.1(@types/react@18.2.54)(react@18.3.1)
tslib: 2.6.3
- use-callback-ref: 1.3.2(@types/react@18.3.1)(react@18.3.1)
- use-sidecar: 1.1.2(@types/react@18.3.1)(react@18.3.1)
+ use-callback-ref: 1.3.2(@types/react@18.2.54)(react@18.3.1)
+ use-sidecar: 1.1.2(@types/react@18.2.54)(react@18.3.1)
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+
+ react-stately@3.29.1(react@18.2.0):
+ dependencies:
+ '@react-stately/calendar': 3.5.4(react@18.2.0)
+ '@react-stately/checkbox': 3.6.8(react@18.2.0)
+ '@react-stately/collections': 3.10.9(react@18.2.0)
+ '@react-stately/combobox': 3.9.2(react@18.2.0)
+ '@react-stately/data': 3.11.6(react@18.2.0)
+ '@react-stately/datepicker': 3.10.2(react@18.2.0)
+ '@react-stately/dnd': 3.4.2(react@18.2.0)
+ '@react-stately/form': 3.0.5(react@18.2.0)
+ '@react-stately/list': 3.10.8(react@18.2.0)
+ '@react-stately/menu': 3.8.2(react@18.2.0)
+ '@react-stately/numberfield': 3.9.6(react@18.2.0)
+ '@react-stately/overlays': 3.6.10(react@18.2.0)
+ '@react-stately/radio': 3.10.7(react@18.2.0)
+ '@react-stately/searchfield': 3.5.6(react@18.2.0)
+ '@react-stately/select': 3.6.7(react@18.2.0)
+ '@react-stately/selection': 3.16.2(react@18.2.0)
+ '@react-stately/slider': 3.5.7(react@18.2.0)
+ '@react-stately/table': 3.12.2(react@18.2.0)
+ '@react-stately/tabs': 3.6.9(react@18.2.0)
+ '@react-stately/toggle': 3.7.7(react@18.2.0)
+ '@react-stately/tooltip': 3.4.12(react@18.2.0)
+ '@react-stately/tree': 3.8.4(react@18.2.0)
+ '@react-types/shared': 3.24.1(react@18.2.0)
+ react: 18.2.0
+
+ react-style-singleton@2.2.1(@types/react@18.2.54)(react@18.2.0):
+ dependencies:
+ get-nonce: 1.0.1
+ invariant: 2.2.4
+ react: 18.2.0
+ tslib: 2.6.3
+ optionalDependencies:
+ '@types/react': 18.2.54
- react-style-singleton@2.2.1(@types/react@18.3.1)(react@18.3.1):
+ react-style-singleton@2.2.1(@types/react@18.2.54)(react@18.3.1):
dependencies:
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.3.1
tslib: 2.6.3
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+
+ react-universal-interface@0.6.2(react@18.2.0)(tslib@2.6.3):
+ dependencies:
+ react: 18.2.0
+ tslib: 2.6.3
+
+ react-use@17.5.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ '@types/js-cookie': 2.2.7
+ '@xobotyi/scrollbar-width': 1.9.5
+ copy-to-clipboard: 3.3.3
+ fast-deep-equal: 3.1.3
+ fast-shallow-equal: 1.0.0
+ js-cookie: 2.2.1
+ nano-css: 5.6.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-universal-interface: 0.6.2(react@18.2.0)(tslib@2.6.3)
+ resize-observer-polyfill: 1.5.1
+ screenfull: 5.2.0
+ set-harmonic-interval: 1.0.1
+ throttle-debounce: 3.0.1
+ ts-easing: 0.2.0
+ tslib: 2.6.3
+
+ react@18.2.0:
+ dependencies:
+ loose-envify: 1.4.0
react@18.3.1:
dependencies:
@@ -17099,6 +21118,8 @@ snapshots:
requires-port@1.0.0: {}
+ resize-observer-polyfill@1.5.1: {}
+
resolve-from@3.0.0: {}
resolve-from@4.0.0: {}
@@ -17199,6 +21220,10 @@ snapshots:
rrweb-cssom@0.6.0: {}
+ rtl-css-js@1.16.1:
+ dependencies:
+ '@babel/runtime': 7.25.0
+
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
@@ -17242,6 +21267,8 @@ snapshots:
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
+ screenfull@5.2.0: {}
+
search-insights@2.16.3: {}
secp256k1@5.0.0:
@@ -17316,6 +21343,8 @@ snapshots:
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
+ set-harmonic-interval@1.0.1: {}
+
setprototypeof@1.2.0: {}
sha.js@2.4.11:
@@ -17327,6 +21356,8 @@ snapshots:
dependencies:
kind-of: 6.0.3
+ shallowequal@1.1.0: {}
+
shebang-command@1.2.0:
dependencies:
shebang-regex: 1.0.0
@@ -17366,6 +21397,10 @@ snapshots:
signal-exit@4.1.0: {}
+ simple-swizzle@0.2.2:
+ dependencies:
+ is-arrayish: 0.3.2
+
simple-update-notifier@2.0.0:
dependencies:
semver: 7.6.3
@@ -17428,6 +21463,8 @@ snapshots:
buffer-from: 1.1.2
source-map: 0.6.1
+ source-map@0.5.6: {}
+
source-map@0.5.7: {}
source-map@0.6.1: {}
@@ -17465,6 +21502,10 @@ snapshots:
sprintf-js@1.0.3: {}
+ stack-generator@2.0.10:
+ dependencies:
+ stackframe: 1.3.4
+
stack-utils@2.0.6:
dependencies:
escape-string-regexp: 2.0.0
@@ -17473,6 +21514,17 @@ snapshots:
stackframe@1.3.4: {}
+ stacktrace-gps@3.1.2:
+ dependencies:
+ source-map: 0.5.6
+ stackframe: 1.3.4
+
+ stacktrace-js@2.0.2:
+ dependencies:
+ error-stack-parser: 2.1.4
+ stack-generator: 2.0.10
+ stacktrace-gps: 3.1.2
+
stacktrace-parser@0.1.10:
dependencies:
type-fest: 0.7.1
@@ -17576,6 +21628,20 @@ snapshots:
strnum@1.0.5: {}
+ styled-components@6.1.12(react-dom@18.2.0(react@18.3.1))(react@18.3.1):
+ dependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ '@emotion/unitless': 0.8.1
+ '@types/stylis': 4.2.5
+ css-to-react-native: 3.2.0
+ csstype: 3.1.3
+ postcss: 8.4.38
+ react: 18.3.1
+ react-dom: 18.2.0(react@18.2.0)
+ shallowequal: 1.1.0
+ stylis: 4.3.2
+ tslib: 2.6.2
+
styled-jsx@5.1.1(@babel/core@7.25.2)(react@18.3.1):
dependencies:
client-only: 0.0.1
@@ -17583,6 +21649,15 @@ snapshots:
optionalDependencies:
'@babel/core': 7.25.2
+ styled-jsx@5.1.1(react@18.2.0):
+ dependencies:
+ client-only: 0.0.1
+ react: 18.2.0
+
+ stylis@4.3.2: {}
+
+ stylis@4.3.4: {}
+
sucrase@3.35.0:
dependencies:
'@jridgewell/gen-mapping': 0.3.5
@@ -17623,6 +21698,27 @@ snapshots:
tabbable@6.2.0: {}
+ tailwind-merge@1.14.0: {}
+
+ tailwind-variants@0.1.20(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))):
+ dependencies:
+ tailwind-merge: 1.14.0
+ tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))
+
+ tailwindcss-animate@1.0.7(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))):
+ dependencies:
+ tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))
+
+ tailwindcss-radix@3.0.3: {}
+
+ tailwindcss-themer@4.0.0(tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))):
+ dependencies:
+ color: 4.2.3
+ just-unique: 4.2.0
+ lodash.merge: 4.6.2
+ lodash.mergewith: 4.6.2
+ tailwindcss: 3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))
+
tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5)):
dependencies:
'@alloc/quick-lru': 5.2.0
@@ -17650,6 +21746,33 @@ snapshots:
transitivePeerDependencies:
- ts-node
+ tailwindcss@3.4.4(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5)):
+ dependencies:
+ '@alloc/quick-lru': 5.2.0
+ arg: 5.0.2
+ chokidar: 3.6.0
+ didyoumean: 1.2.2
+ dlv: 1.1.3
+ fast-glob: 3.3.2
+ glob-parent: 6.0.2
+ is-glob: 4.0.3
+ jiti: 1.21.6
+ lilconfig: 2.1.0
+ micromatch: 4.0.7
+ normalize-path: 3.0.0
+ object-hash: 3.0.0
+ picocolors: 1.0.1
+ postcss: 8.4.38
+ postcss-import: 15.1.0(postcss@8.4.38)
+ postcss-js: 4.0.1(postcss@8.4.38)
+ postcss-load-config: 4.0.2(postcss@8.4.38)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))
+ postcss-nested: 6.2.0(postcss@8.4.38)
+ postcss-selector-parser: 6.1.2
+ resolve: 1.22.8
+ sucrase: 3.35.0
+ transitivePeerDependencies:
+ - ts-node
+
tapable@2.2.1: {}
temp@0.8.4:
@@ -17696,6 +21819,8 @@ snapshots:
throat@5.0.0: {}
+ throttle-debounce@3.0.1: {}
+
through2@2.0.5:
dependencies:
readable-stream: 2.3.8
@@ -17761,6 +21886,8 @@ snapshots:
trim-newlines@3.0.1: {}
+ ts-easing@0.2.0: {}
+
ts-interface-checker@0.1.13: {}
ts-loader@9.5.1(typescript@5.4.5)(webpack@5.93.0):
@@ -17816,9 +21943,13 @@ snapshots:
tslib@1.14.1: {}
+ tslib@2.4.0: {}
+
+ tslib@2.6.2: {}
+
tslib@2.6.3: {}
- tsup@7.3.0(postcss@8.4.41)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))(typescript@5.4.5):
+ tsup@7.3.0(postcss@8.4.35)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))(typescript@5.4.5):
dependencies:
bundle-require: 4.2.1(esbuild@0.19.12)
cac: 6.7.14
@@ -17828,14 +21959,14 @@ snapshots:
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss-load-config: 4.0.2(postcss@8.4.41)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))
+ postcss-load-config: 4.0.2(postcss@8.4.35)(ts-node@10.9.2(@types/node@20.12.11)(typescript@5.4.5))
resolve-from: 5.0.0
rollup: 4.20.0
source-map: 0.8.0-beta.0
sucrase: 3.35.0
tree-kill: 1.2.2
optionalDependencies:
- postcss: 8.4.41
+ postcss: 8.4.35
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
@@ -18017,9 +22148,6 @@ snapshots:
ufo@1.5.4: {}
- uglify-js@3.19.2:
- optional: true
-
uglify-js@3.19.3: {}
uint8arrays@3.1.0:
@@ -18114,20 +22242,39 @@ snapshots:
querystringify: 2.2.0
requires-port: 1.0.0
- use-callback-ref@1.3.2(@types/react@18.3.1)(react@18.3.1):
+ use-callback-ref@1.3.2(@types/react@18.2.54)(react@18.2.0):
+ dependencies:
+ react: 18.2.0
+ tslib: 2.6.3
+ optionalDependencies:
+ '@types/react': 18.2.54
+
+ use-callback-ref@1.3.2(@types/react@18.2.54)(react@18.3.1):
dependencies:
react: 18.3.1
tslib: 2.6.3
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+
+ use-sidecar@1.1.2(@types/react@18.2.54)(react@18.2.0):
+ dependencies:
+ detect-node-es: 1.1.0
+ react: 18.2.0
+ tslib: 2.6.3
+ optionalDependencies:
+ '@types/react': 18.2.54
- use-sidecar@1.1.2(@types/react@18.3.1)(react@18.3.1):
+ use-sidecar@1.1.2(@types/react@18.2.54)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
react: 18.3.1
tslib: 2.6.3
optionalDependencies:
- '@types/react': 18.3.1
+ '@types/react': 18.2.54
+
+ use-sync-external-store@1.2.0(react@18.2.0):
+ dependencies:
+ react: 18.2.0
use-sync-external-store@1.2.0(react@18.3.1):
dependencies:
@@ -18162,6 +22309,22 @@ snapshots:
validator@13.12.0: {}
+ valtio@1.11.2(@types/react@18.2.54)(react@18.2.0):
+ dependencies:
+ proxy-compare: 2.5.1
+ use-sync-external-store: 1.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ react: 18.2.0
+
+ valtio@1.11.2(@types/react@18.2.54)(react@18.3.1):
+ dependencies:
+ proxy-compare: 2.5.1
+ use-sync-external-store: 1.2.0(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ react: 18.3.1
+
valtio@1.11.2(@types/react@18.3.1)(react@18.3.1):
dependencies:
proxy-compare: 2.5.1
@@ -18313,7 +22476,7 @@ snapshots:
- typescript
- universal-cookie
- vitest@2.0.2(@types/node@20.12.11)(jsdom@24.0.0)(terser@5.31.0):
+ vitest@2.0.2(@types/node@20.12.11)(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(terser@5.31.0):
dependencies:
'@ampproject/remapping': 2.3.0
'@vitest/expect': 2.0.2
@@ -18382,11 +22545,11 @@ snapshots:
dependencies:
xml-name-validator: 5.0.0
- wagmi@2.12.7(@tanstack/query-core@5.35.1)(@tanstack/react-query@5.35.1(react@18.3.1))(@types/react@18.3.1)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4):
+ wagmi@2.12.7(@tanstack/query-core@5.35.1)(@tanstack/react-query@5.35.1(react@18.3.1))(@types/react@18.2.54)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4):
dependencies:
'@tanstack/react-query': 5.35.1(react@18.3.1)
- '@wagmi/connectors': 5.1.7(@types/react@18.3.1)(@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.3.1)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.3.1)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
- '@wagmi/core': 2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.3.1)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))
+ '@wagmi/connectors': 5.1.7(@types/react@18.2.54)(@wagmi/core@2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.0(@babel/core@7.25.2)(@babel/preset-env@7.25.3(@babel/core@7.25.2))(@types/react@18.2.54)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.20.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)
+ '@wagmi/core': 2.13.4(@tanstack/query-core@5.35.1)(@types/react@18.2.54)(react@18.3.1)(typescript@5.4.5)(viem@2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4))
react: 18.3.1
use-sync-external-store: 1.2.0(react@18.3.1)
viem: 2.20.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.22.4)
@@ -18694,6 +22857,20 @@ snapshots:
zod@3.22.4: {}
+ zustand@4.4.1(@types/react@18.2.54)(react@18.2.0):
+ dependencies:
+ use-sync-external-store: 1.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ react: 18.2.0
+
+ zustand@4.4.1(@types/react@18.2.54)(react@18.3.1):
+ dependencies:
+ use-sync-external-store: 1.2.0(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.2.54
+ react: 18.3.1
+
zustand@4.4.1(@types/react@18.3.1)(react@18.3.1):
dependencies:
use-sync-external-store: 1.2.0(react@18.3.1)