diff --git a/.changeset/five-llamas-bake.md b/.changeset/five-llamas-bake.md
new file mode 100644
index 000000000..6f2b81748
--- /dev/null
+++ b/.changeset/five-llamas-bake.md
@@ -0,0 +1,7 @@
+---
+'@status-im/components': minor
+'@status-im/wallet': minor
+'wallet': minor
+---
+
+add import wallet flow
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 196450acf..b4c74d1bd 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,6 +1,9 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"npm.packageManager": "pnpm",
+ "editor.codeActionsOnSave": {
+ "source.fixAll.eslint": "explicit"
+ },
"eslint.useESLintClass": true,
"eslint.workingDirectories": [
"./packages/colors",
@@ -17,6 +20,14 @@
"#comment": "See https://github.com/microsoft/vscode-eslint/issues/1161 for reason (i.e. multiple .eslintrc config files)"
}
],
+ "eslint.validate": [
+ // "markdown",
+ // "mdx",
+ "javascript",
+ "javascriptreact",
+ "typescript",
+ "typescriptreact"
+ ],
"tailwindCSS.experimental.classRegex": [
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
diff --git a/apps/wallet/package.json b/apps/wallet/package.json
index 8deb47d2a..8533d2703 100644
--- a/apps/wallet/package.json
+++ b/apps/wallet/package.json
@@ -43,6 +43,9 @@
"@trpc/server": "10.45.2",
"@trustwallet/wallet-core": "^4.2.10",
"@wxt-dev/storage": "^1.1.0",
+ "@zxcvbn-ts/core": "^3.0.4",
+ "@zxcvbn-ts/language-common": "^3.0.4",
+ "@zxcvbn-ts/language-en": "^3.0.2",
"bitcoinjs-lib": "^6.1.7",
"bitcore-lib": "^10.8.0",
"buffer": "^6.0.3",
diff --git a/apps/wallet/src/assets/Illustration.png b/apps/wallet/src/assets/Illustration.png
new file mode 100644
index 000000000..cea8aa2aa
Binary files /dev/null and b/apps/wallet/src/assets/Illustration.png differ
diff --git a/apps/wallet/src/data/api.test.ts b/apps/wallet/src/data/api.test.ts
index 7aceb2047..9874e95d9 100644
--- a/apps/wallet/src/data/api.test.ts
+++ b/apps/wallet/src/data/api.test.ts
@@ -82,7 +82,7 @@ test('should add wallet', async () => {
})
expect(addedWallet.mnemonic).toBeDefined()
-}, 6000)
+}, 7000)
test('should import wallet', async () => {
await createAPI()
@@ -98,7 +98,7 @@ test('should import wallet', async () => {
})
expect(importedWallet.mnemonic).toBe(mnemonic)
-}, 6000)
+}, 7000)
test('should get wallet', async () => {
await createAPI()
@@ -119,4 +119,4 @@ test('should get wallet', async () => {
})
expect(returnedWallet.mnemonic).toBe(mnemonic)
-}, 6000)
+}, 7000)
diff --git a/apps/wallet/src/routes/__root.tsx b/apps/wallet/src/routes/__root.tsx
index 94fbf8533..83a21b0d0 100644
--- a/apps/wallet/src/routes/__root.tsx
+++ b/apps/wallet/src/routes/__root.tsx
@@ -10,6 +10,7 @@ import {
Link,
// Navigate,
Outlet,
+ redirect,
} from '@tanstack/react-router'
import { TanStackRouterDevtools } from '@tanstack/router-devtools'
@@ -19,6 +20,7 @@ import { TanStackRouterDevtools } from '@tanstack/router-devtools'
// import { QueryClientProvider } from '../../../portfolio/src/app/_providers/query-client-provider'
// import { StatusProvider } from '../../../portfolio/src/app/_providers/status-provider'
import { WagmiProvider } from '../../../portfolio/src/app/_providers/wagmi-provider'
+import { apiClient } from '../providers/api-client'
import { WalletProvider } from '../providers/wallet-context'
// import { Inter } from 'next/font/google'
@@ -34,6 +36,26 @@ import type { QueryClient } from '@tanstack/react-query'
export const Route = createRootRouteWithContext<{
queryClient: QueryClient
}>()({
+ beforeLoad: async ({ location }) => {
+ const wallets = await apiClient.wallet.all.query()
+ const hasWallets = wallets && wallets.length > 0
+
+ if (location.pathname === '/') {
+ if (hasWallets) {
+ throw redirect({ to: '/portfolio' })
+ } else {
+ throw redirect({ to: '/onboarding' })
+ }
+ }
+
+ if (location.pathname.startsWith('/portfolio') && !hasWallets) {
+ throw redirect({ to: '/onboarding' })
+ }
+
+ if (location.pathname.startsWith('/onboarding') && hasWallets) {
+ throw redirect({ to: '/portfolio' })
+ }
+ },
head: () => ({
meta: [
{
@@ -52,7 +74,6 @@ export const Route = createRootRouteWithContext<{
})
function RootComponent() {
- const pathname = window.location.pathname
return (
<>
{/*
@@ -79,7 +100,7 @@ function RootComponent() {
{/*
*/}
-
+
diff --git a/apps/wallet/src/routes/index.tsx b/apps/wallet/src/routes/index.tsx
index 1bb24ca6a..04f8acf2d 100644
--- a/apps/wallet/src/routes/index.tsx
+++ b/apps/wallet/src/routes/index.tsx
@@ -1,6 +1,4 @@
-import { createFileRoute, redirect } from '@tanstack/react-router'
-
-import { apiClient } from '../providers/api-client'
+import { createFileRoute } from '@tanstack/react-router'
export const Route = createFileRoute('/')({
component: RouteComponent,
@@ -11,12 +9,6 @@ export const Route = createFileRoute('/')({
},
],
}),
- beforeLoad: async () => {
- const wallets = await apiClient.wallet.all.query()
- if (wallets && wallets.length > 0) {
- throw redirect({ to: '/portfolio' })
- } else throw redirect({ to: '/onboarding' })
- },
})
function RouteComponent() {
diff --git a/apps/wallet/src/routes/onboarding/_layout.tsx b/apps/wallet/src/routes/onboarding/_layout.tsx
index 458d0be3c..527e92da8 100644
--- a/apps/wallet/src/routes/onboarding/_layout.tsx
+++ b/apps/wallet/src/routes/onboarding/_layout.tsx
@@ -1,21 +1,33 @@
-import { createFileRoute, Outlet, redirect } from '@tanstack/react-router'
-
-import { apiClient } from '../../providers/api-client'
+import { BlurredCircle } from '@status-im/wallet/components'
+import { createFileRoute, Outlet } from '@tanstack/react-router'
export const Route = createFileRoute('/onboarding')({
component: RouteComponent,
- beforeLoad: async () => {
- const wallets = await apiClient.wallet.all.query()
- if (wallets && wallets.length > 0) {
- throw redirect({ to: '/portfolio' })
- }
- },
})
function RouteComponent() {
return (
-
-
+
)
}
diff --git a/apps/wallet/src/routes/onboarding/import.tsx b/apps/wallet/src/routes/onboarding/import.tsx
index 5ce68cbac..4a42d7b31 100644
--- a/apps/wallet/src/routes/onboarding/import.tsx
+++ b/apps/wallet/src/routes/onboarding/import.tsx
@@ -1,11 +1,19 @@
-import { useState } from 'react'
+import { useState, useTransition } from 'react'
-import { Button, Input } from '@status-im/components'
-import { createFileRoute } from '@tanstack/react-router'
-import { useForm } from 'react-hook-form'
+import { Button, Text } from '@status-im/components'
+import { ArrowLeftIcon } from '@status-im/icons/20'
+import {
+ CreatePasswordForm,
+ type CreatePasswordFormValues,
+ ImportRecoveryPhraseForm,
+ type ImportRecoveryPhraseFormValues,
+} from '@status-im/wallet/components'
+import { createFileRoute, useNavigate } from '@tanstack/react-router'
import { useImportWallet } from '../../hooks/use-import-wallet'
+import type { SubmitHandler } from 'react-hook-form'
+
export const Route = createFileRoute('/onboarding/import')({
component: RouteComponent,
})
@@ -27,112 +35,115 @@ function RouteComponent() {
})
return (
-
+
{onboardingState.type === 'import-wallet' && (
+ onNext={(mnemonic: string) => {
setOnboardingState({ type: 'create-password', mnemonic })
- }
+ }}
/>
)}
{onboardingState.type === 'create-password' && (
-
+
+ setOnboardingState({
+ type: 'import-wallet',
+ mnemonic: '',
+ })
+ }
+ />
)}
)
}
function ImportWallet({ onNext }: { onNext: (mnemonic: string) => void }) {
- const {
- register,
- handleSubmit,
- formState: { errors },
- } = useForm({
- defaultValues: {
- mnemonic: '',
- },
- })
+ const [isPending, startTransition] = useTransition()
- const onSubmit = handleSubmit(data => {
- onNext(data.mnemonic)
- })
+ const onSubmit: SubmitHandler<
+ ImportRecoveryPhraseFormValues
+ > = async data => {
+ try {
+ startTransition(async () => {
+ onNext(data.mnemonic)
+ })
+ } catch (error) {
+ console.error(error)
+ }
+ }
return (
-
-
- {errors.mnemonic && (
-
{errors.mnemonic.message}
- )}
-
+
+
+ }
+ aria-label="Back"
+ size="32"
+ />
+
+
+ Import via recovery phrase
+
+
+ Type or paste your 12, 15, 18, 21 or 24 words Ethereum recovery phrase
+
+
+
)
}
-function CreatePassword({ mnemonic }: { mnemonic: string }) {
- const {
- register,
- handleSubmit,
- formState: { errors },
- watch,
- } = useForm({
- defaultValues: {
- password: '',
- confirmPassword: '',
- },
- })
-
+function CreatePassword({
+ mnemonic,
+ onBack,
+}: {
+ mnemonic: string
+ onBack: () => void
+}) {
const { importWalletAsync } = useImportWallet()
+ const navigate = useNavigate()
+ const [isPending, startTransition] = useTransition()
- const onSubmit = handleSubmit(async data => {
- await importWalletAsync({
- mnemonic,
- password: data.password,
- })
- })
+ const handleSubmit: SubmitHandler
= async data => {
+ try {
+ startTransition(async () => {
+ await importWalletAsync({
+ mnemonic,
+ password: data.password,
+ })
+ navigate({ to: '/portfolio' })
+ })
+ } catch (error) {
+ console.error(error)
+ }
+ }
return (
- {/* @ts-expect-error: fixme: Types of property 'onChange' are incompatible. */}
-
- {errors.password && (
-
{errors.password.message}
- )}
- {/* @ts-expect-error: fixme: Types of property 'onChange' are incompatible. */}
-
- value === watch('password') || 'Passwords do not match',
- })}
+
+ }
+ aria-label="Back"
+ size="32"
+ />
+
+
+
Create password
+
+ To unlock the extension and sign transactions, the password is stored
+ only on your device. Status can't recover it.
+
+
+
- {errors.confirmPassword && (
-
- {errors.confirmPassword.message}
-
- )}
-
)
}
diff --git a/apps/wallet/src/routes/onboarding/new.tsx b/apps/wallet/src/routes/onboarding/new.tsx
index 7fef3ef0b..1f9b58d7c 100644
--- a/apps/wallet/src/routes/onboarding/new.tsx
+++ b/apps/wallet/src/routes/onboarding/new.tsx
@@ -31,7 +31,7 @@ function RouteComponent() {
}
return (
-
+
diff --git a/packages/wallet/src/components/import-recovery-phrase-form/index.tsx b/packages/wallet/src/components/import-recovery-phrase-form/index.tsx
new file mode 100644
index 000000000..b0ae1beeb
--- /dev/null
+++ b/packages/wallet/src/components/import-recovery-phrase-form/index.tsx
@@ -0,0 +1,78 @@
+import { zodResolver } from '@hookform/resolvers/zod'
+import { validateMnemonic } from '@scure/bip39'
+import { wordlist as english } from '@scure/bip39/wordlists/english'
+import { Button } from '@status-im/components'
+import { AlertIcon, LoadingIcon } from '@status-im/icons/20'
+import { FormProvider, useForm } from 'react-hook-form'
+import { z } from 'zod'
+
+import { RecoveryPhraseTextarea } from '../recovery-phrase-textarea'
+
+const mnemonicSchema = z.object({
+ mnemonic: z.string().refine(value => validateMnemonic(value, english), {
+ message: 'Invalid phrase. Check word count and spelling.',
+ }),
+})
+
+type FormValues = z.infer
+
+type ImportRecoveryPhraseFormProps = {
+ onSubmit: (data: FormValues) => void
+ loading: boolean
+}
+
+const ImportRecoveryPhraseForm = ({
+ onSubmit,
+ loading = false,
+}: ImportRecoveryPhraseFormProps) => {
+ const form = useForm({
+ resolver: zodResolver(mnemonicSchema),
+ mode: 'onChange',
+ defaultValues: {
+ mnemonic: '',
+ },
+ })
+
+ const {
+ formState: { errors },
+ } = form
+
+ return (
+
+
+
+ )
+}
+
+export { ImportRecoveryPhraseForm }
+export type { FormValues as ImportRecoveryPhraseFormValues }
diff --git a/packages/wallet/src/components/index.tsx b/packages/wallet/src/components/index.tsx
index 6fd4c508f..adfb413fb 100644
--- a/packages/wallet/src/components/index.tsx
+++ b/packages/wallet/src/components/index.tsx
@@ -3,6 +3,7 @@ export * from '../utils/variants'
export { AccountMenu } from './account-menu'
export { type Account, Address, type AddressProps } from './address'
export { AssetsList } from './assets-list'
+export { BlurredCircle } from './blurred-circle'
export {
CreatePasswordForm,
type CreatePasswordFormValues,
@@ -10,12 +11,17 @@ export {
export { CurrencyAmount } from './currency-amount'
export { DeleteAddressAlert } from './delete-address-alert'
export { Image, type ImageProps } from './image'
+export {
+ ImportRecoveryPhraseForm,
+ type ImportRecoveryPhraseFormValues,
+} from './import-recovery-phrase-form'
export { Logo, type LogoProps } from './logo'
export { Navbar } from './nav-bar'
export { NetworkExplorerLogo } from './network-explorer-logo'
export { NetworkLogo } from './network-logo'
export { PercentageChange } from './percentage-change'
export { PinExtension } from './pin-extension'
+export { RecoveryPhraseTextarea } from './recovery-phrase-textarea'
export { SettingsPopover } from './settings-popover'
export {
ShortenAddress,
diff --git a/packages/wallet/src/components/recovery-phrase-textarea/index.tsx b/packages/wallet/src/components/recovery-phrase-textarea/index.tsx
new file mode 100644
index 000000000..5e750cd89
--- /dev/null
+++ b/packages/wallet/src/components/recovery-phrase-textarea/index.tsx
@@ -0,0 +1,27 @@
+import { Textarea } from '@status-im/components'
+import { useController } from 'react-hook-form'
+
+import type { UseControllerProps } from 'react-hook-form'
+
+export type Props = React.ComponentPropsWithoutRef<'textarea'> &
+ UseControllerProps & {
+ label: string
+ placeholder?: string
+ }
+
+function RecoveryPhraseTextarea(props: Props) {
+ const { label, placeholder } = props
+ const { field, fieldState } = useController(props)
+ const invalid = fieldState.invalid
+
+ return (
+
+ )
+}
+
+export { RecoveryPhraseTextarea }
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 19453cc6e..eb51652bd 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -95,13 +95,13 @@ importers:
version: 10.45.2(@trpc/server@10.45.2)
'@trpc/next':
specifier: 10.45.2
- version: 10.45.2(@tanstack/react-query@5.75.5(react@19.1.0))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/react-query@11.1.0(@tanstack/react-query@5.75.5(react@19.1.0))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(@trpc/server@10.45.2)(next@15.3.0(@babel/core@7.27.1)(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.80.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 10.45.2(@tanstack/react-query@5.75.5(react@19.1.0))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/react-query@11.1.0(@tanstack/react-query@5.75.5(react@19.1.0))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(@trpc/server@10.45.2)(next@15.3.0(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.80.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@trpc/server':
specifier: 10.45.2
version: 10.45.2
next:
specifier: 15.3.0
- version: 15.3.0(@babel/core@7.27.1)(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.80.4)
+ version: 15.3.0(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.80.4)
react:
specifier: ^19.0.0
version: 19.1.0
@@ -891,6 +891,15 @@ importers:
'@wxt-dev/storage':
specifier: ^1.1.0
version: 1.1.1
+ '@zxcvbn-ts/core':
+ specifier: ^3.0.4
+ version: 3.0.4
+ '@zxcvbn-ts/language-common':
+ specifier: ^3.0.4
+ version: 3.0.4
+ '@zxcvbn-ts/language-en':
+ specifier: ^3.0.2
+ version: 3.0.2
bitcoinjs-lib:
specifier: ^6.1.7
version: 6.1.7
@@ -1308,7 +1317,7 @@ importers:
dependencies:
'@hookform/resolvers':
specifier: ^3.3.4
- version: 3.10.0(react-hook-form@7.57.0(react@18.3.1))
+ version: 3.10.0(react-hook-form@7.58.0(react@18.3.1))
'@radix-ui/react-accordion':
specifier: ^1.2.0
version: 1.2.0(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -1342,6 +1351,9 @@ importers:
'@radix-ui/react-tooltip':
specifier: ^1.1.2
version: 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@scure/bip39':
+ specifier: ^1.2.0
+ version: 1.6.0
'@status-im/colors':
specifier: workspace:*
version: link:../colors
@@ -1377,7 +1389,7 @@ importers:
version: 2.30.0
next:
specifier: 15.1.6
- version: 15.1.6(@babel/core@7.27.1)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.4)
+ version: 15.1.6(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.4)
qrcode.react:
specifier: ^3.1.0
version: 3.2.0(react@18.3.1)
@@ -1389,7 +1401,7 @@ importers:
version: 8.7.1(date-fns@2.30.0)(react@18.3.1)
react-hook-form:
specifier: ^7.57.0
- version: 7.57.0(react@18.3.1)
+ version: 7.58.0(react@18.3.1)
react-swipeable:
specifier: ^7.0.1
version: 7.0.2(react@18.3.1)
@@ -1588,10 +1600,6 @@ packages:
resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.7':
- resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-module-imports@7.27.1':
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
@@ -8707,6 +8715,12 @@ packages:
'@zxcvbn-ts/core@3.0.4':
resolution: {integrity: sha512-aQeiT0F09FuJaAqNrxynlAwZ2mW/1MdXakKWNmGM1Qp/VaY6CnB/GfnMS2T8gB2231Esp1/maCWd8vTG4OuShw==}
+ '@zxcvbn-ts/language-common@3.0.4':
+ resolution: {integrity: sha512-viSNNnRYtc7ULXzxrQIVUNwHAPSXRtoIwy/Tq4XQQdIknBzw4vz36lQLF6mvhMlTIlpjoN/Z1GFu/fwiAlUSsw==}
+
+ '@zxcvbn-ts/language-en@3.0.2':
+ resolution: {integrity: sha512-Zp+zL+I6Un2Bj0tRXNs6VUBq3Djt+hwTwUz4dkt2qgsQz47U0/XthZ4ULrT/RxjwJRl5LwiaKOOZeOtmixHnjg==}
+
'@zxing/text-encoding@0.9.0':
resolution: {integrity: sha512-U/4aVJ2mxI0aDNI8Uq0wEhMgY+u4CNtEb0om3+y3+niDAsoTCOB33UF0sxpzqzdqXLqmvc+vZyAt4O8pPdfkwA==}
@@ -9502,10 +9516,6 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
- chokidar@4.0.1:
- resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
- engines: {node: '>= 14.16.0'}
-
chokidar@4.0.3:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
@@ -15199,8 +15209,8 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
- react-hook-form@7.57.0:
- resolution: {integrity: sha512-RbEks3+cbvTP84l/VXGUZ+JMrKOS8ykQCRYdm5aYsxnDquL0vspsyNhGRO7pcH6hsZqWlPOjLye7rJqdtdAmlg==}
+ react-hook-form@7.58.0:
+ resolution: {integrity: sha512-zGijmEed35oNfOfy7ub99jfjkiLhHwA3dl5AgyKdWC6QQzhnc7tkWewSa+T+A2EpLrc6wo5DUoZctS9kufWJjA==}
engines: {node: '>=18.0.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18 || ^19
@@ -18028,8 +18038,8 @@ snapshots:
'@babel/generator': 7.25.6
'@babel/parser': 7.25.6
'@babel/runtime': 7.27.1
- '@babel/traverse': 7.25.6(supports-color@5.5.0)
- '@babel/types': 7.25.6
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
+ '@babel/types': 7.27.1
babel-preset-fbjs: 3.4.0(@babel/core@7.25.2)
chalk: 4.1.2
fb-watchman: 2.0.2
@@ -18065,7 +18075,7 @@ snapshots:
'@babel/code-frame@7.24.7':
dependencies:
'@babel/highlight': 7.24.7
- picocolors: 1.1.0
+ picocolors: 1.1.1
'@babel/code-frame@7.27.1':
dependencies:
@@ -18087,10 +18097,10 @@ snapshots:
'@babel/helpers': 7.25.6
'@babel/parser': 7.25.6
'@babel/template': 7.25.0
- '@babel/traverse': 7.25.6(supports-color@5.5.0)
+ '@babel/traverse': 7.25.6
'@babel/types': 7.25.6
convert-source-map: 2.0.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -18107,10 +18117,10 @@ snapshots:
'@babel/helpers': 7.27.1
'@babel/parser': 7.27.2
'@babel/template': 7.27.2
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
'@babel/types': 7.27.1
convert-source-map: 2.0.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.4.0(supports-color@5.5.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -18160,28 +18170,21 @@ snapshots:
'@babel/helper-optimise-call-expression': 7.27.1
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.25.2)
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
'@babel/helper-member-expression-to-functions@7.27.1':
dependencies:
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
'@babel/types': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.24.7(supports-color@5.5.0)':
+ '@babel/helper-module-imports@7.27.1(supports-color@5.5.0)':
dependencies:
- '@babel/traverse': 7.25.6(supports-color@5.5.0)
- '@babel/types': 7.25.6
- transitivePeerDependencies:
- - supports-color
-
- '@babel/helper-module-imports@7.27.1':
- dependencies:
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
'@babel/types': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -18189,28 +18192,28 @@ snapshots:
'@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
+ '@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
'@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.6(supports-color@5.5.0)
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
'@babel/helper-module-transforms@7.27.1(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
'@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
'@babel/helper-module-transforms@7.27.1(@babel/core@7.27.1)':
dependencies:
'@babel/core': 7.27.1
- '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
'@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
@@ -18227,20 +18230,20 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
'@babel/helper-simple-access@7.24.7':
dependencies:
- '@babel/traverse': 7.25.6(supports-color@5.5.0)
- '@babel/types': 7.25.6
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
+ '@babel/types': 7.27.1
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
'@babel/types': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -18260,7 +18263,7 @@ snapshots:
'@babel/helpers@7.25.6':
dependencies:
'@babel/template': 7.25.0
- '@babel/types': 7.25.6
+ '@babel/types': 7.27.1
'@babel/helpers@7.27.1':
dependencies:
@@ -18269,7 +18272,7 @@ snapshots:
'@babel/highlight@7.24.7':
dependencies:
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-validator-identifier': 7.27.1
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.1.1
@@ -18356,7 +18359,7 @@ snapshots:
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.25.2)
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -18391,7 +18394,7 @@ snapshots:
'@babel/core': 7.25.2
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
@@ -18460,7 +18463,7 @@ snapshots:
dependencies:
'@babel/core': 7.25.2
'@babel/helper-annotate-as-pure': 7.27.1
- '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.25.2)
'@babel/types': 7.27.1
@@ -18497,9 +18500,9 @@ snapshots:
'@babel/template@7.25.0':
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.27.1
'@babel/parser': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/types': 7.27.1
'@babel/template@7.27.2':
dependencies:
@@ -18507,26 +18510,26 @@ snapshots:
'@babel/parser': 7.27.2
'@babel/types': 7.27.1
- '@babel/traverse@7.25.6(supports-color@5.5.0)':
+ '@babel/traverse@7.25.6':
dependencies:
'@babel/code-frame': 7.24.7
'@babel/generator': 7.25.6
'@babel/parser': 7.25.6
'@babel/template': 7.25.0
'@babel/types': 7.25.6
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/traverse@7.27.1':
+ '@babel/traverse@7.27.1(supports-color@5.5.0)':
dependencies:
'@babel/code-frame': 7.27.1
'@babel/generator': 7.27.1
'@babel/parser': 7.27.2
'@babel/template': 7.27.2
'@babel/types': 7.27.1
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.4.0(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -18716,7 +18719,7 @@ snapshots:
'@libp2p/peer-id': 3.0.5
'@noble/ciphers': 0.4.0
'@noble/curves': 1.2.0
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.8.0
it-byte-stream: 1.0.1
it-length-prefixed: 9.0.3(patch_hash=qmuwtv474nwwchmh5i4hyi27hm)
it-length-prefixed-stream: 1.0.2
@@ -18736,7 +18739,7 @@ snapshots:
'@changesets/apply-release-plan@6.1.4':
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
'@changesets/config': 2.3.1
'@changesets/get-version-range-type': 0.3.2
'@changesets/git': 2.0.0
@@ -18752,7 +18755,7 @@ snapshots:
'@changesets/assemble-release-plan@5.2.4':
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
'@changesets/errors': 0.1.4
'@changesets/get-dependents-graph': 1.3.6
'@changesets/types': 5.2.1
@@ -18823,7 +18826,7 @@ snapshots:
'@changesets/get-release-plan@3.0.17':
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
'@changesets/assemble-release-plan': 5.2.4
'@changesets/config': 2.3.1
'@changesets/pre': 1.0.14
@@ -18835,7 +18838,7 @@ snapshots:
'@changesets/git@2.0.0':
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
'@changesets/errors': 0.1.4
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
@@ -18854,7 +18857,7 @@ snapshots:
'@changesets/pre@1.0.14':
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
'@changesets/errors': 0.1.4
'@changesets/types': 5.2.1
'@manypkg/get-packages': 1.1.3
@@ -18862,7 +18865,7 @@ snapshots:
'@changesets/read@0.5.9':
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
'@changesets/git': 2.0.0
'@changesets/logger': 0.0.5
'@changesets/parse': 0.3.16
@@ -18877,7 +18880,7 @@ snapshots:
'@changesets/write@0.2.3':
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
'@changesets/types': 5.2.1
fs-extra: 7.0.1
human-id: 1.0.2
@@ -19028,7 +19031,7 @@ snapshots:
'@devicefarmer/adbkit-monkey': 1.2.1
bluebird: 3.7.2
commander: 9.5.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
node-forge: 1.3.1
split: 1.0.1
transitivePeerDependencies:
@@ -19103,7 +19106,7 @@ snapshots:
'@emnapi/core@0.45.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.1
optional: true
'@emnapi/core@1.4.3':
@@ -19114,7 +19117,7 @@ snapshots:
'@emnapi/runtime@0.45.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.1
optional: true
'@emnapi/runtime@1.4.3':
@@ -19129,7 +19132,7 @@ snapshots:
'@emotion/babel-plugin@11.13.5':
dependencies:
- '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
'@babel/runtime': 7.27.1
'@emotion/hash': 0.9.2
'@emotion/memoize': 0.9.0
@@ -19289,7 +19292,7 @@ snapshots:
'@esbuild-plugins/node-resolve@0.1.4(esbuild@0.19.12)':
dependencies:
'@types/resolve': 1.20.4
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
esbuild: 0.19.12
escape-string-regexp: 4.0.0
resolve: 1.22.8
@@ -19593,7 +19596,7 @@ snapshots:
'@eslint/config-array@0.18.0':
dependencies:
'@eslint/object-schema': 2.1.4
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -19603,7 +19606,7 @@ snapshots:
'@eslint/eslintrc@3.1.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
espree: 10.3.0
globals: 14.0.0
ignore: 5.3.2
@@ -19705,26 +19708,26 @@ snapshots:
'@formatjs/ecma402-abstract@1.18.2':
dependencies:
'@formatjs/intl-localematcher': 0.5.4
- tslib: 2.7.0
+ tslib: 2.8.1
'@formatjs/fast-memoize@2.2.0':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.1
'@formatjs/icu-messageformat-parser@2.7.5':
dependencies:
'@formatjs/ecma402-abstract': 1.18.2
'@formatjs/icu-skeleton-parser': 1.7.2
- tslib: 2.7.0
+ tslib: 2.8.1
'@formatjs/icu-skeleton-parser@1.7.2':
dependencies:
'@formatjs/ecma402-abstract': 1.18.2
- tslib: 2.7.0
+ tslib: 2.8.1
'@formatjs/intl-localematcher@0.5.4':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.1
'@foxglove/crc@0.0.3': {}
@@ -20141,7 +20144,7 @@ snapshots:
'@babel/core': 7.27.1
'@babel/parser': 7.27.2
'@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.1)
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
'@babel/types': 7.27.1
'@graphql-tools/utils': 10.8.6(graphql@16.11.0)
graphql: 16.11.0
@@ -20195,7 +20198,7 @@ snapshots:
'@types/js-yaml': 4.0.9
'@whatwg-node/fetch': 0.10.6
chalk: 4.1.2
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
dotenv: 16.5.0
graphql: 16.11.0
graphql-request: 6.1.0(graphql@16.11.0)
@@ -20352,9 +20355,9 @@ snapshots:
dependencies:
react-hook-form: 7.56.3(react@19.1.0)
- '@hookform/resolvers@3.10.0(react-hook-form@7.57.0(react@18.3.1))':
+ '@hookform/resolvers@3.10.0(react-hook-form@7.58.0(react@18.3.1))':
dependencies:
- react-hook-form: 7.57.0(react@18.3.1)
+ react-hook-form: 7.58.0(react@18.3.1)
'@humanfs/core@0.19.1': {}
@@ -20374,7 +20377,7 @@ snapshots:
'@babel/core': 7.25.2
'@babel/generator': 7.25.6
'@babel/parser': 7.25.6
- '@babel/traverse': 7.25.6(supports-color@5.5.0)
+ '@babel/traverse': 7.25.6
'@babel/types': 7.25.6
prettier: 3.2.4
semver: 7.6.3
@@ -20388,7 +20391,7 @@ snapshots:
'@babel/core': 7.25.2
'@babel/generator': 7.25.6
'@babel/parser': 7.25.6
- '@babel/traverse': 7.25.6(supports-color@5.5.0)
+ '@babel/traverse': 7.25.6
'@babel/types': 7.25.6
prettier: 3.3.3
semver: 7.6.3
@@ -20403,7 +20406,7 @@ snapshots:
'@babel/core': 7.25.2
'@babel/generator': 7.25.6
'@babel/parser': 7.25.6
- '@babel/traverse': 7.25.6(supports-color@5.5.0)
+ '@babel/traverse': 7.25.6
'@babel/types': 7.25.6
prettier: 3.5.3
semver: 7.6.3
@@ -20669,7 +20672,7 @@ snapshots:
dependencies:
'@libp2p/interface': 0.1.6
'@noble/curves': 1.2.0
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.8.0
multiformats: 12.1.3
node-forge: 1.3.1
protons-runtime: 5.4.0
@@ -20680,7 +20683,7 @@ snapshots:
dependencies:
'@libp2p/interface': 1.1.4
'@noble/curves': 1.2.0
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.8.0
multiformats: 13.1.0
node-forge: 1.3.1
protons-runtime: 5.4.0
@@ -20733,7 +20736,7 @@ snapshots:
dependencies:
'@libp2p/interface': 0.1.6
'@multiformats/multiaddr': 12.2.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
interface-datastore: 8.2.5
multiformats: 12.1.3
transitivePeerDependencies:
@@ -20936,14 +20939,14 @@ snapshots:
'@manypkg/find-root@1.1.0':
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
'@types/node': 12.20.55
find-up: 4.1.0
fs-extra: 8.1.0
'@manypkg/get-packages@1.1.3':
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
'@changesets/types': 4.1.0
'@manypkg/find-root': 1.1.0
fs-extra: 8.1.0
@@ -21108,7 +21111,7 @@ snapshots:
bufferutil: 4.0.9
cross-fetch: 4.1.0
date-fns: 2.30.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
eciesjs: 0.4.14
eventemitter2: 6.4.9
readable-stream: 3.6.2
@@ -21132,7 +21135,7 @@ snapshots:
'@paulmillr/qr': 0.2.1
bowser: 2.11.0
cross-fetch: 4.1.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
eciesjs: 0.4.14
eth-rpc-errors: 4.0.3
eventemitter2: 6.4.9
@@ -21155,7 +21158,7 @@ snapshots:
dependencies:
'@ethereumjs/tx': 4.2.0
'@types/debug': 4.1.12
- debug: 4.4.0
+ debug: 4.4.0(supports-color@5.5.0)
semver: 7.7.1
superstruct: 1.0.4
transitivePeerDependencies:
@@ -21165,12 +21168,12 @@ snapshots:
dependencies:
'@ethereumjs/tx': 4.2.0
'@metamask/superstruct': 3.2.1
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.8.0
'@scure/base': 1.2.5
'@types/debug': 4.1.12
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.4.0(supports-color@5.5.0)
pony-cause: 2.1.11
- semver: 7.6.3
+ semver: 7.7.1
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
@@ -21179,12 +21182,12 @@ snapshots:
dependencies:
'@ethereumjs/tx': 4.2.0
'@metamask/superstruct': 3.2.1
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.8.0
'@scure/base': 1.2.5
'@types/debug': 4.1.12
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.4.0(supports-color@5.5.0)
pony-cause: 2.1.11
- semver: 7.6.3
+ semver: 7.7.1
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
@@ -21206,7 +21209,7 @@ snapshots:
'@motionone/easing': 10.18.0
'@motionone/types': 10.17.1
'@motionone/utils': 10.18.0
- tslib: 2.7.0
+ tslib: 2.8.1
'@motionone/dom@10.12.0':
dependencies:
@@ -21220,13 +21223,13 @@ snapshots:
'@motionone/easing@10.18.0':
dependencies:
'@motionone/utils': 10.18.0
- tslib: 2.7.0
+ tslib: 2.8.1
'@motionone/generators@10.18.0':
dependencies:
'@motionone/types': 10.17.1
'@motionone/utils': 10.18.0
- tslib: 2.7.0
+ tslib: 2.8.1
'@motionone/types@10.17.1': {}
@@ -21234,7 +21237,7 @@ snapshots:
dependencies:
'@motionone/types': 10.17.1
hey-listen: 1.0.8
- tslib: 2.7.0
+ tslib: 2.8.1
'@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
optional: true
@@ -22752,7 +22755,7 @@ snapshots:
'@peculiar/json-schema@1.1.12':
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.1
'@peculiar/webcrypto@1.5.0':
dependencies:
@@ -23121,7 +23124,7 @@ snapshots:
'@radix-ui/popper@0.0.10':
dependencies:
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
csstype: 3.1.3
'@radix-ui/primitive@1.1.0': {}
@@ -26438,7 +26441,7 @@ snapshots:
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.27.1
entities: 4.4.0
'@svgr/plugin-jsx@6.5.1(@svgr/core@6.5.1)':
@@ -26718,7 +26721,7 @@ snapshots:
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.1)
'@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.1)
'@babel/template': 7.27.2
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
'@babel/types': 7.27.1
'@tanstack/router-core': 1.119.0
'@tanstack/router-generator': 1.120.2(@tanstack/react-router@1.120.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
@@ -26752,7 +26755,7 @@ snapshots:
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.27.1
'@babel/runtime': 7.27.1
'@types/aria-query': 5.0.1
aria-query: 5.3.0
@@ -26764,7 +26767,7 @@ snapshots:
'@testing-library/dom@9.3.3':
dependencies:
'@babel/code-frame': 7.24.7
- '@babel/runtime': 7.22.5
+ '@babel/runtime': 7.27.1
'@types/aria-query': 5.0.1
aria-query: 5.1.3
chalk: 4.1.2
@@ -26865,13 +26868,13 @@ snapshots:
'@trpc/server': 10.45.2
typescript: 5.8.3
- '@trpc/next@10.45.2(@tanstack/react-query@5.75.5(react@19.1.0))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/react-query@11.1.0(@tanstack/react-query@5.75.5(react@19.1.0))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(@trpc/server@10.45.2)(next@15.3.0(@babel/core@7.27.1)(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.80.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@trpc/next@10.45.2(@tanstack/react-query@5.75.5(react@19.1.0))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/react-query@11.1.0(@tanstack/react-query@5.75.5(react@19.1.0))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(@trpc/server@10.45.2)(next@15.3.0(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.80.4))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@tanstack/react-query': 5.75.5(react@19.1.0)
'@trpc/client': 10.45.2(@trpc/server@10.45.2)
'@trpc/react-query': 11.1.0(@tanstack/react-query@5.75.5(react@19.1.0))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
'@trpc/server': 10.45.2
- next: 15.3.0(@babel/core@7.27.1)(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.80.4)
+ next: 15.3.0(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.80.4)
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
@@ -26933,12 +26936,12 @@ snapshots:
'@types/babel__generator@7.6.4':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.27.1
'@types/babel__template@7.4.1':
dependencies:
'@babel/parser': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/types': 7.27.1
'@types/babel__template@7.4.4':
dependencies:
@@ -26947,7 +26950,7 @@ snapshots:
'@types/babel__traverse@7.20.3':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.27.1
'@types/babel__traverse@7.20.7':
dependencies:
@@ -27277,7 +27280,7 @@ snapshots:
'@typescript-eslint/types': 8.13.0
'@typescript-eslint/typescript-estree': 8.13.0(typescript@5.8.3)
'@typescript-eslint/visitor-keys': 8.13.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
eslint: 9.14.0(jiti@2.4.2)
optionalDependencies:
typescript: 5.8.3
@@ -27293,7 +27296,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 8.13.0(typescript@5.8.3)
'@typescript-eslint/utils': 8.13.0(eslint@9.14.0(jiti@2.4.2))(typescript@5.8.3)
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
ts-api-utils: 1.4.0(typescript@5.8.3)
optionalDependencies:
typescript: 5.8.3
@@ -27307,7 +27310,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 8.13.0
'@typescript-eslint/visitor-keys': 8.13.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
@@ -27336,7 +27339,7 @@ snapshots:
'@typescript/vfs@1.4.0':
dependencies:
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -27884,7 +27887,7 @@ snapshots:
'@vue/compiler-core@3.3.4':
dependencies:
- '@babel/parser': 7.25.6
+ '@babel/parser': 7.27.2
'@vue/shared': 3.3.4
estree-walker: 2.0.2
source-map-js: 1.2.1
@@ -27896,14 +27899,14 @@ snapshots:
'@vue/compiler-sfc@3.3.4':
dependencies:
- '@babel/parser': 7.25.6
+ '@babel/parser': 7.27.2
'@vue/compiler-core': 3.3.4
'@vue/compiler-dom': 3.3.4
'@vue/compiler-ssr': 3.3.4
'@vue/reactivity-transform': 3.3.4
'@vue/shared': 3.3.4
estree-walker: 2.0.2
- magic-string: 0.30.11
+ magic-string: 0.30.17
postcss: 8.5.3
source-map-js: 1.2.1
@@ -27914,11 +27917,11 @@ snapshots:
'@vue/reactivity-transform@3.3.4':
dependencies:
- '@babel/parser': 7.25.6
+ '@babel/parser': 7.27.2
'@vue/compiler-core': 3.3.4
'@vue/shared': 3.3.4
estree-walker: 2.0.2
- magic-string: 0.30.11
+ magic-string: 0.30.17
'@vue/reactivity@3.3.4':
dependencies:
@@ -27999,12 +28002,12 @@ snapshots:
'@waku/core@0.0.26(@multiformats/multiaddr@12.2.0)(libp2p@0.46.18)':
dependencies:
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.8.0
'@waku/enr': 0.0.20
'@waku/interfaces': 0.0.21
'@waku/proto': 0.0.6
'@waku/utils': 0.0.14
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
it-all: 3.0.4
it-length-prefixed: 9.0.4
it-pipe: 3.0.1
@@ -28021,7 +28024,7 @@ snapshots:
dependencies:
'@waku/enr': 0.0.20
'@waku/utils': 0.0.14
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
dns-query: 0.11.2
hi-base32: 0.5.1
uint8arrays: 4.0.6
@@ -28036,7 +28039,7 @@ snapshots:
'@multiformats/multiaddr': 12.2.0
'@noble/secp256k1': 1.7.1
'@waku/utils': 0.0.14
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
js-sha3: 0.9.2
transitivePeerDependencies:
- supports-color
@@ -28050,7 +28053,7 @@ snapshots:
'@waku/interfaces': 0.0.21
'@waku/proto': 0.0.6
'@waku/utils': 0.0.14
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
js-sha3: 0.9.2
uint8arrays: 5.0.2
transitivePeerDependencies:
@@ -28066,7 +28069,7 @@ snapshots:
'@waku/interfaces': 0.0.21
'@waku/proto': 0.0.6
'@waku/utils': 0.0.14
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
it-all: 3.0.4
it-length-prefixed: 9.0.3(patch_hash=qmuwtv474nwwchmh5i4hyi27hm)
it-pipe: 3.0.1
@@ -28082,13 +28085,13 @@ snapshots:
'@waku/relay@0.0.9(@multiformats/multiaddr@12.2.0)(libp2p@0.46.18)':
dependencies:
'@chainsafe/libp2p-gossipsub': 10.1.1
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.8.0
'@waku/core': 0.0.26(@multiformats/multiaddr@12.2.0)(libp2p@0.46.18)
'@waku/interfaces': 0.0.21
'@waku/proto': 0.0.6
'@waku/utils': 0.0.14
chai: 4.4.1
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
fast-check: 3.16.0
transitivePeerDependencies:
- '@multiformats/multiaddr'
@@ -28115,10 +28118,10 @@ snapshots:
'@waku/utils@0.0.14':
dependencies:
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.8.0
'@waku/interfaces': 0.0.21
chai: 4.4.1
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
uint8arrays: 4.0.6
transitivePeerDependencies:
- supports-color
@@ -28691,7 +28694,7 @@ snapshots:
'@fastify/busboy': 3.1.1
'@whatwg-node/disposablestack': 0.0.6
'@whatwg-node/promise-helpers': 1.3.1
- tslib: 2.7.0
+ tslib: 2.8.1
'@whatwg-node/promise-helpers@1.3.1':
dependencies:
@@ -28714,6 +28717,10 @@ snapshots:
dependencies:
fastest-levenshtein: 1.0.16
+ '@zxcvbn-ts/language-common@3.0.4': {}
+
+ '@zxcvbn-ts/language-en@3.0.2': {}
+
'@zxing/text-encoding@0.9.0':
optional: true
@@ -28994,7 +29001,7 @@ snapshots:
ast-types@0.16.1:
dependencies:
- tslib: 2.7.0
+ tslib: 2.8.1
astral-regex@2.0.0: {}
@@ -29085,7 +29092,7 @@ snapshots:
dependencies:
'@babel/core': 7.27.1
'@babel/parser': 7.25.6
- '@babel/traverse': 7.27.1
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
'@babel/types': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -29099,7 +29106,7 @@ snapshots:
babel-plugin-styled-components@2.1.4(@babel/core@7.25.2)(styled-components@5.3.11(@babel/core@7.25.2)(react-dom@19.1.0(react@19.1.0))(react-is@18.1.0)(react@19.1.0))(supports-color@5.5.0):
dependencies:
'@babel/helper-annotate-as-pure': 7.27.1
- '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
+ '@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.25.2)
lodash: 4.17.21
picomatch: 2.3.1
@@ -29214,7 +29221,7 @@ snapshots:
bip39@3.1.0:
dependencies:
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.8.0
bitcoinjs-lib@6.1.7:
dependencies:
@@ -29406,7 +29413,7 @@ snapshots:
bs58check@3.0.1:
dependencies:
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.8.0
bs58: 5.0.0
bser@2.1.1:
@@ -29445,7 +29452,7 @@ snapshots:
builtins@4.1.0:
dependencies:
- semver: 7.6.3
+ semver: 7.7.1
bundle-name@3.0.0:
dependencies:
@@ -29544,7 +29551,7 @@ snapshots:
capital-case@1.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.1
upper-case-first: 2.0.2
ccount@2.0.1: {}
@@ -29690,10 +29697,6 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- chokidar@4.0.1:
- dependencies:
- readdirp: 4.0.2
-
chokidar@4.0.3:
dependencies:
readdirp: 4.0.2
@@ -29950,7 +29953,7 @@ snapshots:
constant-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.1
upper-case: 2.0.2
constants-browserify@1.0.0: {}
@@ -30323,15 +30326,15 @@ snapshots:
dependencies:
ms: 2.1.2
- debug@4.3.7(supports-color@5.5.0):
+ debug@4.3.7:
dependencies:
ms: 2.1.3
- optionalDependencies:
- supports-color: 5.5.0
- debug@4.4.0:
+ debug@4.4.0(supports-color@5.5.0):
dependencies:
ms: 2.1.3
+ optionalDependencies:
+ supports-color: 5.5.0
decamelize-keys@1.1.1:
dependencies:
@@ -30677,7 +30680,7 @@ snapshots:
engine.io-client@6.6.3(bufferutil@4.0.8)(utf-8-validate@6.0.3):
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
engine.io-parser: 5.2.3
ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.3)
xmlhttprequest-ssl: 2.1.2
@@ -30922,14 +30925,14 @@ snapshots:
esbuild-register@3.5.0(esbuild@0.19.12):
dependencies:
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
esbuild: 0.19.12
transitivePeerDependencies:
- supports-color
esbuild-register@3.5.0(esbuild@0.23.1):
dependencies:
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
esbuild: 0.23.1
transitivePeerDependencies:
- supports-color
@@ -31095,7 +31098,7 @@ snapshots:
eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.13.0(eslint@9.14.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.14.0(jiti@2.4.2)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
enhanced-resolve: 5.17.1
eslint: 9.14.0(jiti@2.4.2)
eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.13.0(eslint@9.14.0(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@9.14.0(jiti@2.4.2))
@@ -31304,7 +31307,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
escape-string-regexp: 4.0.0
eslint-scope: 8.2.0
eslint-visitor-keys: 4.2.0
@@ -31619,7 +31622,7 @@ snapshots:
extract-zip@2.0.1:
dependencies:
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
get-stream: 5.2.0
yauzl: 2.10.0
optionalDependencies:
@@ -32562,7 +32565,7 @@ snapshots:
header-case@2.0.4:
dependencies:
capital-case: 1.0.4
- tslib: 2.7.0
+ tslib: 2.8.1
hey-listen@1.0.8: {}
@@ -32640,7 +32643,7 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.3
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -32662,7 +32665,7 @@ snapshots:
https-proxy-agent@7.0.6:
dependencies:
agent-base: 7.1.3
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -32817,7 +32820,7 @@ snapshots:
'@formatjs/ecma402-abstract': 1.18.2
'@formatjs/fast-memoize': 2.2.0
'@formatjs/icu-messageformat-parser': 2.7.5
- tslib: 2.7.0
+ tslib: 2.8.1
invariant@2.2.4:
dependencies:
@@ -33466,7 +33469,7 @@ snapshots:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.7.0
+ tslib: 2.8.1
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -33678,7 +33681,7 @@ snapshots:
dependencies:
chalk: 5.3.0
commander: 12.1.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
execa: 8.0.1
lilconfig: 3.1.2
listr2: 8.2.5
@@ -34956,7 +34959,7 @@ snapshots:
micromark@2.11.4:
dependencies:
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -34964,7 +34967,7 @@ snapshots:
micromark@3.2.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
micromark-core-commonmark: 1.1.0
micromark-factory-space: 1.1.0
@@ -34986,7 +34989,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.1
@@ -35245,7 +35248,7 @@ snapshots:
minimist: 1.2.8
next: 15.3.0(@babel/core@7.25.2)(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.80.4)
- next@15.1.6(@babel/core@7.27.1)(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.4):
+ next@15.1.6(@opentelemetry/api@1.9.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.80.4):
dependencies:
'@next/env': 15.1.6
'@swc/counter': 0.1.3
@@ -35255,7 +35258,7 @@ snapshots:
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.6(@babel/core@7.27.1)(react@18.3.1)
+ styled-jsx: 5.1.6(react@18.3.1)
optionalDependencies:
'@next/swc-darwin-arm64': 15.1.6
'@next/swc-darwin-x64': 15.1.6
@@ -35299,33 +35302,6 @@ snapshots:
- '@babel/core'
- babel-plugin-macros
- next@15.3.0(@babel/core@7.27.1)(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(sass@1.80.4):
- dependencies:
- '@next/env': 15.3.0
- '@swc/counter': 0.1.3
- '@swc/helpers': 0.5.15
- busboy: 1.6.0
- caniuse-lite: 1.0.30001660
- postcss: 8.4.31
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- styled-jsx: 5.1.6(@babel/core@7.27.1)(react@19.1.0)
- optionalDependencies:
- '@next/swc-darwin-arm64': 15.3.0
- '@next/swc-darwin-x64': 15.3.0
- '@next/swc-linux-arm64-gnu': 15.3.0
- '@next/swc-linux-arm64-musl': 15.3.0
- '@next/swc-linux-x64-gnu': 15.3.0
- '@next/swc-linux-x64-musl': 15.3.0
- '@next/swc-win32-arm64-msvc': 15.3.0
- '@next/swc-win32-x64-msvc': 15.3.0
- '@opentelemetry/api': 1.9.0
- sass: 1.80.4
- sharp: 0.34.1
- transitivePeerDependencies:
- - '@babel/core'
- - babel-plugin-macros
-
nlcst-is-literal@2.1.1:
dependencies:
'@types/nlcst': 1.0.4
@@ -35354,7 +35330,7 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.7.0
+ tslib: 2.8.1
node-abi@3.71.0:
dependencies:
@@ -35705,10 +35681,10 @@ snapshots:
ox@0.6.7(typescript@5.8.3)(zod@3.23.8):
dependencies:
'@adraffy/ens-normalize': 1.10.1
- '@noble/curves': 1.8.1
- '@noble/hashes': 1.7.1
- '@scure/bip32': 1.6.2
- '@scure/bip39': 1.5.4
+ '@noble/curves': 1.9.0
+ '@noble/hashes': 1.8.0
+ '@scure/bip32': 1.7.0
+ '@scure/bip39': 1.6.0
abitype: 1.0.8(typescript@5.8.3)(zod@3.23.8)
eventemitter3: 5.0.1
optionalDependencies:
@@ -35720,9 +35696,9 @@ snapshots:
dependencies:
'@adraffy/ens-normalize': 1.10.1
'@noble/curves': 1.8.2
- '@noble/hashes': 1.7.2
+ '@noble/hashes': 1.8.0
'@scure/bip32': 1.6.2
- '@scure/bip39': 1.5.4
+ '@scure/bip39': 1.6.0
abitype: 1.0.8(typescript@5.8.3)(zod@3.23.8)
eventemitter3: 5.0.1
optionalDependencies:
@@ -35819,7 +35795,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.1
parent-module@1.0.1:
dependencies:
@@ -35868,21 +35844,21 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.27.1
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
parse-json@6.0.2:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.27.1
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 2.0.4
parse-json@7.1.1:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.27.1
error-ex: 1.3.2
json-parse-even-better-errors: 3.0.2
lines-and-columns: 2.0.4
@@ -35918,7 +35894,7 @@ snapshots:
path-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.1
path-exists@3.0.0: {}
@@ -36658,7 +36634,7 @@ snapshots:
react-docgen@7.0.3:
dependencies:
'@babel/core': 7.25.2
- '@babel/traverse': 7.25.6(supports-color@5.5.0)
+ '@babel/traverse': 7.25.6
'@babel/types': 7.25.6
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.3
@@ -36713,7 +36689,7 @@ snapshots:
dependencies:
react: 19.1.0
- react-hook-form@7.57.0(react@18.3.1):
+ react-hook-form@7.58.0(react@18.3.1):
dependencies:
react: 18.3.1
@@ -36759,7 +36735,7 @@ snapshots:
dependencies:
react: 18.3.1
react-style-singleton: 2.2.3(@types/react@19.1.0)(react@18.3.1)
- tslib: 2.7.0
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.0
@@ -36767,7 +36743,7 @@ snapshots:
dependencies:
react: 19.1.0
react-style-singleton: 2.2.3(@types/react@19.1.0)(react@19.1.0)
- tslib: 2.7.0
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.0
@@ -36898,7 +36874,7 @@ snapshots:
dependencies:
get-nonce: 1.0.1
react: 18.3.1
- tslib: 2.7.0
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.0
@@ -36906,7 +36882,7 @@ snapshots:
dependencies:
get-nonce: 1.0.1
react: 19.1.0
- tslib: 2.7.0
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.0
@@ -38395,7 +38371,7 @@ snapshots:
sass@1.80.4:
dependencies:
'@parcel/watcher': 2.4.1
- chokidar: 4.0.1
+ chokidar: 4.0.3
immutable: 4.3.7
source-map-js: 1.2.1
@@ -38467,7 +38443,7 @@ snapshots:
sentence-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.7.0
+ tslib: 2.8.1
upper-case-first: 2.0.2
serialize-error@8.1.0:
@@ -38688,7 +38664,7 @@ snapshots:
socket.io-client@4.8.1(bufferutil@4.0.8)(utf-8-validate@6.0.3):
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
engine.io-client: 6.6.3(bufferutil@4.0.8)(utf-8-validate@6.0.3)
socket.io-parser: 4.2.4
transitivePeerDependencies:
@@ -38699,7 +38675,7 @@ snapshots:
socket.io-parser@4.2.4:
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -39005,8 +38981,8 @@ snapshots:
styled-components@5.3.11(@babel/core@7.25.2)(react-dom@19.1.0(react@19.1.0))(react-is@18.1.0)(react@19.1.0):
dependencies:
- '@babel/helper-module-imports': 7.24.7(supports-color@5.5.0)
- '@babel/traverse': 7.25.6(supports-color@5.5.0)
+ '@babel/helper-module-imports': 7.27.1(supports-color@5.5.0)
+ '@babel/traverse': 7.27.1(supports-color@5.5.0)
'@emotion/is-prop-valid': 1.3.1
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
@@ -39028,19 +39004,10 @@ snapshots:
optionalDependencies:
'@babel/core': 7.25.2
- styled-jsx@5.1.6(@babel/core@7.27.1)(react@18.3.1):
+ styled-jsx@5.1.6(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
- optionalDependencies:
- '@babel/core': 7.27.1
-
- styled-jsx@5.1.6(@babel/core@7.27.1)(react@19.1.0):
- dependencies:
- client-only: 0.0.1
- react: 19.1.0
- optionalDependencies:
- '@babel/core': 7.27.1
stylis@4.2.0: {}
@@ -39386,7 +39353,7 @@ snapshots:
bundle-require: 4.2.1(esbuild@0.18.20)
cac: 6.7.14
chokidar: 3.6.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
esbuild: 0.18.20
execa: 5.1.1
globby: 11.1.0
@@ -39621,7 +39588,7 @@ snapshots:
'@types/node': 18.19.99
'@types/unist': 2.0.11
concat-stream: 2.0.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
fault: 2.0.1
glob: 8.1.0
ignore: 5.3.2
@@ -39649,7 +39616,7 @@ snapshots:
'@types/node': 17.0.45
'@types/unist': 2.0.11
concat-stream: 2.0.0
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
fault: 2.0.1
glob: 7.2.3
ignore: 5.3.2
@@ -39899,13 +39866,13 @@ snapshots:
dependencies:
browserslist: 4.22.1
escalade: 3.2.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
update-browserslist-db@1.1.0(browserslist@4.23.3):
dependencies:
browserslist: 4.23.3
escalade: 3.2.0
- picocolors: 1.1.0
+ picocolors: 1.1.1
update-browserslist-db@1.1.3(browserslist@4.24.5):
dependencies:
@@ -39971,14 +39938,14 @@ snapshots:
use-callback-ref@1.3.3(@types/react@19.1.0)(react@18.3.1):
dependencies:
react: 18.3.1
- tslib: 2.7.0
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.0
use-callback-ref@1.3.3(@types/react@19.1.0)(react@19.1.0):
dependencies:
react: 19.1.0
- tslib: 2.7.0
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.0
@@ -40022,7 +39989,7 @@ snapshots:
dependencies:
detect-node-es: 1.1.0
react: 18.3.1
- tslib: 2.7.0
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.0
@@ -40030,7 +39997,7 @@ snapshots:
dependencies:
detect-node-es: 1.1.0
react: 19.1.0
- tslib: 2.7.0
+ tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.0
@@ -40208,7 +40175,7 @@ snapshots:
vite-node@3.1.4(@types/node@22.7.5)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.4)(tsx@4.19.4)(yaml@2.5.1):
dependencies:
cac: 6.7.14
- debug: 4.4.0
+ debug: 4.4.0(supports-color@5.5.0)
es-module-lexer: 1.7.0
pathe: 2.0.3
vite: 6.3.5(@types/node@22.7.5)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.4)(tsx@4.19.4)(yaml@2.5.1)
@@ -40236,7 +40203,7 @@ snapshots:
vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@6.3.5(@types/node@22.7.5)(jiti@2.4.2)(less@4.2.0)(lightningcss@1.27.0)(sass@1.80.4)(tsx@4.19.4)(yaml@2.5.1)):
dependencies:
- debug: 4.3.7(supports-color@5.5.0)
+ debug: 4.3.7
globrex: 0.1.2
tsconfck: 3.1.5(typescript@5.8.3)
optionalDependencies:
@@ -40273,7 +40240,7 @@ snapshots:
'@vitest/spy': 3.1.4
'@vitest/utils': 3.1.4
chai: 5.2.0
- debug: 4.4.0
+ debug: 4.4.0(supports-color@5.5.0)
expect-type: 1.2.1
magic-string: 0.30.17
pathe: 2.0.3
@@ -40413,7 +40380,7 @@ snapshots:
'@peculiar/json-schema': 1.1.12
asn1js: 3.0.6
pvtsutils: 1.3.6
- tslib: 2.7.0
+ tslib: 2.8.1
webextension-polyfill@0.10.0: {}