{
- void onAfterLoginSuccessful?.();
- }}
- onLoginFailure={() => {
- onLoginFailure();
- }}
- setShowCapsuleModal={setModalState}
- showCapsuleModal={modalState}
- theme={colorMode}
- />
+
+ {
+ void onAfterLoginSuccessful?.();
+ }}
+ onLoginFailure={() => {
+ onLoginFailure();
+ }}
+ setShowCapsuleModal={setModalState}
+ showCapsuleModal={modalState}
+ theme={colorMode}
+ />
+
);
};
diff --git a/example/starter/package.json b/example/starter/package.json
index cc12d28..77aa440 100644
--- a/example/starter/package.json
+++ b/example/starter/package.json
@@ -15,7 +15,7 @@
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@graz-sh/types": "^0.0.4",
- "@leapwallet/cosmos-social-login-capsule-provider-ui": "^0.0.50",
+ "@leapwallet/cosmos-social-login-capsule-provider-ui": "^0.0.58",
"bignumber.js": "^9.1.2",
"framer-motion": "^10.16.4",
"graz": "*",
diff --git a/example/starter/src/pages/index.tsx b/example/starter/src/pages/index.tsx
index b53a18a..daa77eb 100644
--- a/example/starter/src/pages/index.tsx
+++ b/example/starter/src/pages/index.tsx
@@ -3,6 +3,7 @@ import { useCapsule } from "graz";
import dynamic from "next/dynamic";
import { Card } from "src/ui/card/chain";
import { mainnetChains } from "src/utils/graz";
+import "@leapwallet/cosmos-social-login-capsule-provider-ui/styles.css";
const LeapSocialLogin = dynamic(
() => import("@leapwallet/cosmos-social-login-capsule-provider-ui").then((m) => m.CustomCapsuleModalView),
@@ -20,20 +21,22 @@ const HomePage = () => {
))}
- {
- void onAfterLoginSuccessful?.();
- }}
- onLoginFailure={() => {
- onLoginFailure();
- }}
- setShowCapsuleModal={setModalState}
- showCapsuleModal={modalState}
- theme={colorMode}
- />
+
+ {
+ void onAfterLoginSuccessful?.();
+ }}
+ onLoginFailure={() => {
+ onLoginFailure();
+ }}
+ setShowCapsuleModal={setModalState}
+ showCapsuleModal={modalState}
+ theme={colorMode}
+ />
+
>
);
};
diff --git a/packages/graz/package.json b/packages/graz/package.json
index 028f0a6..88b38d9 100644
--- a/packages/graz/package.json
+++ b/packages/graz/package.json
@@ -48,7 +48,7 @@
"@cosmjs/proto-signing": "*",
"@cosmjs/stargate": "*",
"@cosmjs/tendermint-rpc": "*",
- "@leapwallet/cosmos-social-login-capsule-provider": "^0.0.39",
+ "@leapwallet/cosmos-social-login-capsule-provider": "^0.0.41",
"react": ">=17"
},
"dependencies": {
diff --git a/packages/graz/src/actions/wallet/capsule.ts b/packages/graz/src/actions/wallet/capsule.ts
index d04750f..1fa4042 100644
--- a/packages/graz/src/actions/wallet/capsule.ts
+++ b/packages/graz/src/actions/wallet/capsule.ts
@@ -1,4 +1,10 @@
-import type { AminoSignResponse } from "@cosmjs/amino";
+import {
+ type AminoSignResponse,
+ encodeEd25519Pubkey,
+ encodeSecp256k1Pubkey,
+ pubkeyType,
+ StdSignature,
+} from "@cosmjs/amino";
import { fromBech32 } from "@cosmjs/encoding";
import type { DirectSignResponse } from "@cosmjs/proto-signing";
import type { Keplr, Key } from "@keplr-wallet/types";
@@ -146,6 +152,35 @@ export const getCapsule = (): Wallet => {
return client.signAmino(chainId, signer, signDoc, signOptions) as Promise;
};
+ const signArbitrary = async (chainId: string, signer: string, data: string | Uint8Array): Promise => {
+ const client = useGrazSessionStore.getState().capsuleClient;
+ if (!client) throw new Error("Capsule client is not initialized");
+ const account = await client.getAccount(chainId);
+ if (!account) {
+ throw new Error(`Wallet not connected to account ${signer}`);
+ }
+ const pubkey = (() => {
+ switch (account.algo) {
+ case "secp256k1":
+ return encodeSecp256k1Pubkey(account.pubkey);
+ case "ed25519":
+ return encodeEd25519Pubkey(account.pubkey);
+ default:
+ throw new Error("sr25519 public key algorithm is not supported");
+ }
+ })();
+
+ const signature = await client.signArbitrary(chainId, signer, data);
+
+ return {
+ signature,
+ pub_key: {
+ type: account.algo === "secp256k1" ? pubkeyType.secp256k1 : pubkeyType.ed25519,
+ value: pubkey.value,
+ },
+ };
+ };
+
const experimentalSuggestChain = async (..._args: Parameters) => {
await Promise.reject(new Error("Capsule does not support experimentalSuggestChain"));
};
@@ -159,6 +194,7 @@ export const getCapsule = (): Wallet => {
getOfflineSignerDirect,
signDirect,
signAmino,
+ signArbitrary,
experimentalSuggestChain,
// @ts-expect-error - CapsuleAminoSigner | OfflineDirectSigner
getOfflineSigner,
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c47b2e6..f307380 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -10,7 +10,7 @@ importers:
devDependencies:
'@graz-sh/style-guide':
specifier: ^4.0.1
- version: 4.0.1(eslint@8.49.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2)
+ version: 4.0.1(@types/eslint@8.40.0)(eslint@8.49.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2)
eslint:
specifier: ^8.49.0
version: 8.49.0
@@ -34,13 +34,13 @@ importers:
dependencies:
'@cmfcmf/docusaurus-search-local':
specifier: ^1.1.0
- version: 1.1.0(@docusaurus/core@2.4.1)(search-insights@2.8.2)
+ version: 1.1.0(@docusaurus/core@2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10))(search-insights@2.8.2)
'@docusaurus/core':
specifier: ^2.4.1
- version: 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
+ version: 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
'@docusaurus/preset-classic':
specifier: ^2.4.1
- version: 2.4.1(@algolia/client-search@4.19.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
+ version: 2.4.1(@algolia/client-search@4.17.1)(@types/react@18.2.21)(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
'@mdx-js/react':
specifier: ^1.6.22
version: 1.6.22(react@17.0.2)
@@ -59,7 +59,7 @@ importers:
devDependencies:
'@docusaurus/module-type-aliases':
specifier: ^2.4.1
- version: 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
+ version: 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
'@tsconfig/docusaurus':
specifier: ^1.0.7
version: 1.0.7
@@ -71,25 +71,25 @@ importers:
dependencies:
'@chakra-ui/react':
specifier: ^2.8.1
- version: 2.8.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.21)(framer-motion@10.16.4)(react-dom@18.2.0)(react@18.2.0)
+ version: 2.8.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@emotion/react':
specifier: ^11.11.1
version: 11.11.1(@types/react@18.2.21)(react@18.2.0)
'@emotion/styled':
specifier: ^11.11.0
- version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0)
+ version: 11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0)
'@leapwallet/cosmos-social-login-capsule-provider-ui':
- specifier: ^0.0.50
- version: 0.0.50(@cosmjs/proto-signing@0.30.1)(@types/react@18.2.21)(fp-ts@2.16.5)(framer-motion@10.16.4)(osmojs@15.2.1)(protobufjs@7.2.3)(react-dom@18.2.0)(stridejs@0.6.2)(zod@3.20.6)
+ specifier: ^0.0.58
+ version: 0.0.58(@cosmjs/proto-signing@0.31.3)(@types/react-dom@18.2.7)(@types/react@18.2.21)(csstype@3.1.2)(osmojs@15.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(protobufjs@7.2.3)(react-dom@18.2.0(react@18.2.0))(stridejs@0.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(tailwindcss@3.3.3)(zod@3.23.8)
framer-motion:
specifier: ^10.16.4
- version: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ version: 10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
graz:
specifier: '*'
- version: link:../../packages/graz
+ version: 0.1.20(@cosmjs/amino@0.31.3)(@cosmjs/cosmwasm-stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@cosmjs/launchpad@0.27.1)(@cosmjs/proto-signing@0.31.3)(@cosmjs/stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@cosmjs/tendermint-rpc@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@leapwallet/cosmos-social-login-capsule-provider@0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)(fp-ts@2.1.1))(@terra-money/feather.js@3.0.0-beta.2)(@types/react@18.2.21)(axios@1.6.8)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)
next:
specifier: ^13.4.19
- version: 13.4.19(@babel/core@7.22.15)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.4.19(@babel/core@7.22.15)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -102,7 +102,7 @@ importers:
devDependencies:
'@graz-sh/style-guide':
specifier: ^4.0.1
- version: 4.0.1(eslint@8.49.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2)
+ version: 4.0.1(@types/eslint@8.40.0)(eslint@8.49.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2)
'@types/node':
specifier: ^18.17.15
version: 18.17.15
@@ -117,34 +117,34 @@ importers:
dependencies:
'@chakra-ui/icons':
specifier: ^2.1.1
- version: 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ version: 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react':
specifier: ^2.8.1
- version: 2.8.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.21)(framer-motion@10.16.4)(react-dom@18.2.0)(react@18.2.0)
+ version: 2.8.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@emotion/react':
specifier: ^11.11.1
version: 11.11.1(@types/react@18.2.21)(react@18.2.0)
'@emotion/styled':
specifier: ^11.11.0
- version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0)
+ version: 11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0)
'@graz-sh/types':
specifier: ^0.0.4
- version: 0.0.4(long@4.0.0)
+ version: 0.0.4(long@5.2.3)
'@leapwallet/cosmos-social-login-capsule-provider-ui':
- specifier: ^0.0.50
- version: 0.0.50(@cosmjs/proto-signing@0.30.1)(@types/react@18.2.21)(fp-ts@2.16.5)(framer-motion@10.16.4)(osmojs@15.2.1)(protobufjs@7.2.3)(react-dom@18.2.0)(stridejs@0.6.2)(zod@3.20.6)
+ specifier: ^0.0.58
+ version: 0.0.58(@cosmjs/proto-signing@0.31.3)(@types/react-dom@18.2.7)(@types/react@18.2.21)(csstype@3.1.2)(osmojs@15.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(protobufjs@7.2.3)(react-dom@18.2.0(react@18.2.0))(stridejs@0.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(tailwindcss@3.3.3)(zod@3.23.8)
bignumber.js:
specifier: ^9.1.2
version: 9.1.2
framer-motion:
specifier: ^10.16.4
- version: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ version: 10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
graz:
specifier: '*'
- version: link:../../packages/graz
+ version: 0.1.20(@cosmjs/amino@0.31.3)(@cosmjs/cosmwasm-stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@cosmjs/launchpad@0.27.1)(@cosmjs/proto-signing@0.31.3)(@cosmjs/stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@cosmjs/tendermint-rpc@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@leapwallet/cosmos-social-login-capsule-provider@0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)(fp-ts@2.16.5))(@terra-money/feather.js@3.0.0-beta.2)(@types/react@18.2.21)(axios@1.6.8)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)
next:
specifier: ^13.4.19
- version: 13.4.19(@babel/core@7.22.15)(react-dom@18.2.0)(react@18.2.0)
+ version: 13.4.19(@babel/core@7.22.15)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -154,7 +154,7 @@ importers:
devDependencies:
'@graz-sh/style-guide':
specifier: ^4.0.1
- version: 4.0.1(eslint@8.49.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2)
+ version: 4.0.1(@types/eslint@8.40.0)(eslint@8.49.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2)
'@types/node':
specifier: ^18.17.15
version: 18.17.15
@@ -178,7 +178,7 @@ importers:
dependencies:
graz:
specifier: '*'
- version: link:../../packages/graz
+ version: 0.1.20(@cosmjs/amino@0.31.3)(@cosmjs/cosmwasm-stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@cosmjs/launchpad@0.27.1)(@cosmjs/proto-signing@0.31.3)(@cosmjs/stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@cosmjs/tendermint-rpc@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@leapwallet/cosmos-social-login-capsule-provider@0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)(fp-ts@2.16.5))(@terra-money/feather.js@3.0.0-beta.2)(@types/react@18.2.21)(axios@1.6.8)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -188,7 +188,7 @@ importers:
devDependencies:
'@graz-sh/style-guide':
specifier: ^4.0.1
- version: 4.0.1(eslint@8.49.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2)
+ version: 4.0.1(@types/eslint@8.40.0)(eslint@8.49.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2)
'@types/node':
specifier: ^18.17.15
version: 18.17.15
@@ -200,7 +200,7 @@ importers:
version: 18.2.7
'@vitejs/plugin-react':
specifier: ^4.0.4
- version: 4.0.4(vite@4.4.9)
+ version: 4.0.4(vite@4.4.9(@types/node@18.17.15)(terser@5.17.6))
node-stdlib-browser:
specifier: ^1.2.0
version: 1.2.0
@@ -209,10 +209,10 @@ importers:
version: 5.2.2
vite:
specifier: ^4.4.9
- version: 4.4.9(@types/node@18.17.15)
+ version: 4.4.9(@types/node@18.17.15)(terser@5.17.6)
vite-plugin-node-stdlib-browser:
specifier: ^0.2.1
- version: 0.2.1(node-stdlib-browser@1.2.0)(vite@4.4.9)
+ version: 0.2.1(node-stdlib-browser@1.2.0)(rollup@3.29.0)(vite@4.4.9(@types/node@18.17.15)(terser@5.17.6))
packages/graz:
dependencies:
@@ -221,7 +221,7 @@ importers:
version: 0.31.3
'@cosmjs/cosmwasm-stargate':
specifier: '*'
- version: 0.31.0
+ version: 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/launchpad':
specifier: '*'
version: 0.27.1
@@ -230,16 +230,16 @@ importers:
version: 0.31.0
'@cosmjs/stargate':
specifier: '*'
- version: 0.31.0
+ version: 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/tendermint-rpc':
specifier: '*'
- version: 0.31.0
+ version: 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmsnap/snapper':
specifier: ^0.1.29
version: 0.1.29
'@dao-dao/cosmiframe':
specifier: ^0.1.0
- version: 0.1.0
+ version: 0.1.0(@cosmjs/amino@0.31.3)(@cosmjs/proto-signing@0.31.0)
'@keplr-wallet/cosmos':
specifier: ^0.12.20
version: 0.12.20
@@ -247,23 +247,23 @@ importers:
specifier: ^0.12.23
version: 0.12.23
'@leapwallet/cosmos-social-login-capsule-provider':
- specifier: ^0.0.39
- version: 0.0.39(@cosmjs/encoding@0.31.3)(@cosmjs/proto-signing@0.31.0)(fp-ts@2.16.5)
+ specifier: ^0.0.41
+ version: 0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.0)(fp-ts@2.16.5)
'@metamask/providers':
specifier: ^12.0.0
version: 12.0.0
'@tanstack/react-query':
specifier: ^4.35.0
- version: 4.35.0(react@18.2.0)
+ version: 4.35.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@terra-money/station-connector':
specifier: ^1.1.0
- version: 1.1.0(@terra-money/feather.js@3.0.0-beta.2)(axios@0.27.2)
+ version: 1.1.0(@cosmjs/amino@0.31.3)(@terra-money/feather.js@3.0.0-beta.2)(axios@1.6.8)
'@vectis/extension-client':
specifier: ^0.7.2
version: 0.7.2
'@walletconnect/sign-client':
specifier: ^2.10.0
- version: 2.10.0
+ version: 2.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@walletconnect/types':
specifier: ^2.10.0
version: 2.10.0
@@ -281,7 +281,7 @@ importers:
version: 4.0.0
zustand:
specifier: ^4.5.2
- version: 4.5.2(@types/react@18.2.21)(react@18.2.0)
+ version: 4.5.2(@types/react@18.2.21)(immer@9.0.21)(react@18.2.0)
devDependencies:
'@initia/initia-registry-types':
specifier: ^0.0.20
@@ -361,9 +361,6 @@ packages:
'@algolia/cache-common@4.17.1':
resolution: {integrity: sha512-fvi1WT8aSiGAKrcTw8Qg3RYgcwW8GZMHcqEm4AyDBEy72JZlFBSY80cTQ75MslINjCHXLDT+9EN8AGI9WVY7uA==}
- '@algolia/cache-common@4.19.1':
- resolution: {integrity: sha512-XGghi3l0qA38HiqdoUY+wvGyBsGvKZ6U3vTiMBT4hArhP3fOGLXpIINgMiiGjTe4FVlTa5a/7Zf2bwlIHfRqqg==}
-
'@algolia/cache-in-memory@4.17.0':
resolution: {integrity: sha512-PT32ciC/xI8z919d0oknWVu3kMfTlhQn3MKxDln3pkn+yA7F7xrxSALysxquv+MhFfNAcrtQ/oVvQVBAQSHtdw==}
@@ -379,9 +376,6 @@ packages:
'@algolia/client-common@4.17.1':
resolution: {integrity: sha512-+r7kg4EgbFnGsDnoGSVNtXZO8xvZ0vzf1WAOV7sqV9PMf1bp6cpJP/3IuPrSk4t5w2KVl+pC8jfTM7HcFlfBEQ==}
- '@algolia/client-common@4.19.1':
- resolution: {integrity: sha512-3kAIVqTcPrjfS389KQvKzliC559x+BDRxtWamVJt8IVp7LGnjq+aVAXg4Xogkur1MUrScTZ59/AaUd5EdpyXgA==}
-
'@algolia/client-personalization@4.17.0':
resolution: {integrity: sha512-RMzN4dZLIta1YuwT7QC9o+OeGz2cU6eTOlGNE/6RcUBLOU3l9tkCOdln5dPE2jp8GZXPl2yk54b2nSs1+pAjqw==}
@@ -391,9 +385,6 @@ packages:
'@algolia/client-search@4.17.1':
resolution: {integrity: sha512-Q5YfT5gVkx60PZDQBqp/zH9aUbBdC7HVvxupiHUgnCKqRQsRZjOhLest7AI6FahepuZLBZS62COrO7v+JvKY7w==}
- '@algolia/client-search@4.19.1':
- resolution: {integrity: sha512-mBecfMFS4N+yK/p0ZbK53vrZbL6OtWMk8YmnOv1i0LXx4pelY8TFhqKoTit3NPVPwoSNN0vdSN9dTu1xr1XOVw==}
-
'@algolia/events@4.0.1':
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
@@ -403,9 +394,6 @@ packages:
'@algolia/logger-common@4.17.1':
resolution: {integrity: sha512-Us28Ot+fLEmX9M96sa65VZ8EyEEzhYPxfhV9aQyKDjfXbUdJlJxKt6wZpoEg9RAPSdO8IjK9nmuW2P8au3rRsg==}
- '@algolia/logger-common@4.19.1':
- resolution: {integrity: sha512-i6pLPZW/+/YXKis8gpmSiNk1lOmYCmRI6+x6d2Qk1OdfvX051nRVdalRbEcVTpSQX6FQAoyeaui0cUfLYW5Elw==}
-
'@algolia/logger-console@4.17.0':
resolution: {integrity: sha512-zMPvugQV/gbXUvWBCzihw6m7oxIKp48w37QBIUu/XqQQfxhjoOE9xyfJr1KldUt5FrYOKZJVsJaEjTsu+bIgQg==}
@@ -418,9 +406,6 @@ packages:
'@algolia/requester-common@4.17.1':
resolution: {integrity: sha512-HggXdjvVFQR0I5l7hM5WdHgQ1tqcRWeyXZz8apQ7zPWZhirmY2E9D6LVhDh/UnWQNEm7nBtM+eMFONJ3bZccIQ==}
- '@algolia/requester-common@4.19.1':
- resolution: {integrity: sha512-BisRkcWVxrDzF1YPhAckmi2CFYK+jdMT60q10d7z3PX+w6fPPukxHRnZwooiTUrzFe50UBmLItGizWHP5bDzVQ==}
-
'@algolia/requester-node-http@4.17.0':
resolution: {integrity: sha512-bpb/wDA1aC6WxxM8v7TsFspB7yBN3nqCGs2H1OADolQR/hiAIjAxusbuMxVbRFOdaUvAIqioIIkWvZdpYNIn8w==}
@@ -430,9 +415,6 @@ packages:
'@algolia/transporter@4.17.1':
resolution: {integrity: sha512-ZM+qhX47Vh46mWH8/U9ihvy98HdTYpYQDSlqBD7IbiUbbyoCMke+qmdSX2MGhR2FCcXBSxejsJKKVAfbpaLVgg==}
- '@algolia/transporter@4.19.1':
- resolution: {integrity: sha512-nkpvPWbpuzxo1flEYqNIbGz7xhfhGOKGAZS7tzC+TELgEmi7z99qRyTfNSUlW7LZmB3ACdnqAo+9A9KFBENviQ==}
-
'@alloc/quick-lru@5.2.0':
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
@@ -1180,10 +1162,6 @@ packages:
resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.22.15':
- resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==}
- engines: {node: '>=6.9.0'}
-
'@babel/runtime@7.22.3':
resolution: {integrity: sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==}
engines: {node: '>=6.9.0'}
@@ -1231,9 +1209,24 @@ packages:
'@celo/base@3.2.0':
resolution: {integrity: sha512-9wfZYiYv7dzt17a29fxU6sV7JssyXfpSQ9kPSpfOlsewPICXwfOMQ+25Jn6xZu20Vx9rmKebmLHiQyiuYEDOcQ==}
+ '@celo/base@6.1.0':
+ resolution: {integrity: sha512-R6ko2QCfEU32akBsaSNsDYduktgwIKHcJ61SbR7EsXA1VE31/44Qh8kMzfgeahyk375DUCe3pJIKwx5zg1tFHg==}
+
'@celo/utils@3.2.0':
resolution: {integrity: sha512-Om1mTzwsdV6FVPvraafcJeRnzz7Xv/lyGmyZaoEZ9fErRadu9ZrOsuDQniYe+lD78DQ0NATxJL04WjhEKVkn+A==}
+ '@celo/utils@6.0.1':
+ resolution: {integrity: sha512-X9iK4R4USSgHG87PxpLGHqgKL33bKtBiKZGgPwx4gMM7X+nwpB6Ify/YO1/I+mt9+NN9epPb8/kmYYoWOPYShw==}
+
+ '@chainsafe/as-sha256@0.3.1':
+ resolution: {integrity: sha512-hldFFYuf49ed7DAakWVXSJODuq3pzJEguD8tQ7h+sGkM18vja+OFoJI9krnGmgzyuZC2ETX0NOIcCTy31v2Mtg==}
+
+ '@chainsafe/persistent-merkle-tree@0.4.2':
+ resolution: {integrity: sha512-lLO3ihKPngXLTus/L7WHKaw9PnNJWizlOF1H9NNzHP6Xvh82vzg9F2bzkXhYIFshMZ2gTCEz8tq6STe7r5NDfQ==}
+
+ '@chainsafe/ssz@0.9.4':
+ resolution: {integrity: sha512-77Qtg2N1ayqs4Bg/wvnWfg5Bta7iy7IRh8XqXh7oNMeP2HBbBwx8m6yTpA8p0EHItWPEBkgZd5S5/LSlp3GXuQ==}
+
'@chakra-ui/accordion@2.3.1':
resolution: {integrity: sha512-FSXRm8iClFyU+gVaXisOSEw0/4Q+qZbFRiuhIAkVU6Boj0FxAMrlo9a8AV5TuF77rgaHytCdHk0Ng+cyUijrag==}
peerDependencies:
@@ -1783,6 +1776,9 @@ packages:
'@cosmjs/encoding@0.31.3':
resolution: {integrity: sha512-6IRtG0fiVYwyP7n+8e54uTx2pLYijO48V3t9TLiROERm5aUAIzIlz6Wp0NYaI5he9nh1lcEGJ1lkquVKFw3sUg==}
+ '@cosmjs/encoding@0.32.4':
+ resolution: {integrity: sha512-tjvaEy6ZGxJchiizzTn7HVRiyTg1i4CObRRaTRPknm5EalE13SV+TCHq38gIDfyUeden4fCuaBVEdBR5+ti7Hw==}
+
'@cosmjs/json-rpc@0.28.13':
resolution: {integrity: sha512-fInSvg7x9P6p+GWqet+TMhrMTM3OWWdLJOGS5w2ryubMjgpR1rLiAx77MdTNkArW+/6sUwku0sN4veM4ENQu6A==}
@@ -2432,6 +2428,10 @@ packages:
resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==}
engines: {node: '>=14'}
+ '@ethereumjs/util@8.0.5':
+ resolution: {integrity: sha512-259rXKK3b3D8HRVdRmlOEi6QFvwxdt304hhrEAmpZhsj7ufXEOTIc9JRZPMnXatKjECokdLNBcDOFBeBSzAIaw==}
+ engines: {node: '>=14'}
+
'@ethereumjs/util@8.1.0':
resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==}
engines: {node: '>=14'}
@@ -2439,6 +2439,9 @@ packages:
'@ethersproject/abi@5.0.7':
resolution: {integrity: sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==}
+ '@ethersproject/abi@5.7.0':
+ resolution: {integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==}
+
'@ethersproject/abstract-provider@5.7.0':
resolution: {integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==}
@@ -2490,6 +2493,21 @@ packages:
'@ethersproject/web@5.7.1':
resolution: {integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==}
+ '@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==}
+
'@graz-sh/style-guide@4.0.1':
resolution: {integrity: sha512-0vh1v2TbdmDyMT+9QWW2GIsAv81gnUhfBYqH9CzXkwvrbvlNQuo7lawoLQ83ph8TL2CP09q6ZzgQ2g6uzNjGrw==}
peerDependencies:
@@ -2609,11 +2627,11 @@ packages:
protobufjs: 7.2.3
stridejs: 0.6.2
- '@leapwallet/cosmos-social-login-capsule-provider-ui@0.0.50':
- resolution: {integrity: sha512-tZ7r783+H/oz1knLI0lh/wNTMgFLytpAYEPzG9GjB6PG91uhLRKUxskmGv0C98EcTa0DzdG8WFvNNrS/MHCk2w==}
+ '@leapwallet/cosmos-social-login-capsule-provider-ui@0.0.58':
+ resolution: {integrity: sha512-G42fhIoi55tfLzpq5qIGNfymHb84KKlz6/fdkkoppn6OQsd7YGSOqyQuz72NkB0fMqvsm0pQNfh3YEKwz9Q/Tw==}
- '@leapwallet/cosmos-social-login-capsule-provider@0.0.39':
- resolution: {integrity: sha512-7u9ZhiBHK7MeCNFNcnN4ttS11LITL5P6NtBwZ331MppAsGqRkexJQq6fofDZIiGaKiBqAp4qsFKEVM0fohOZBA==}
+ '@leapwallet/cosmos-social-login-capsule-provider@0.0.41':
+ resolution: {integrity: sha512-bspkrnc/1FPI2EV0ssCxbySgGPj8+huj5Qesm4wuGJvbr4WDjb4QZZn7j3f7ZQXbGz3jYuc75TVCXcOCFHkDAQ==}
'@leapwallet/cosmos-social-login-core@0.0.1':
resolution: {integrity: sha512-hGJrBYR8CQAVvmOOCvK2RmZ5ykSjxueXZfsRBXGNFyBw6YEo2oRXedJ2g4X9MDAL7pqQ6ExkltTbSkr+ea2uKg==}
@@ -2623,6 +2641,9 @@ packages:
peerDependencies:
zod: 3.20.6
+ '@leapwallet/react-ui@1.9.10':
+ resolution: {integrity: sha512-/yee99xugwdROyA38I55odnClig0YPkD2i53jk6zDEzGk+fO+1zwqNbu5qbiOXMMFdSYTZGBJFbyPmjIgOSFsQ==}
+
'@leichtgewicht/ip-codec@2.0.4':
resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==}
@@ -2763,6 +2784,9 @@ packages:
'@noble/curves@1.1.0':
resolution: {integrity: sha512-091oBExgENk/kGj3AZmtBDMpxQPDtxQABR2B9lb1JbVTs6ytdzZNwvhxQ4MWasRNEzlbEH8jCWFCwhF/Obj5AA==}
+ '@noble/hashes@1.2.0':
+ resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==}
+
'@noble/hashes@1.3.1':
resolution: {integrity: sha512-EbqwksQwz9xDRGfDST86whPBgM65E0OH/pCgqW0GBVzO22bNE+NuIbeTb714+IfSjU3aRk47EUvXIb5bTsenKA==}
engines: {node: '>= 16'}
@@ -2775,6 +2799,13 @@ packages:
resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==}
engines: {node: '>= 16'}
+ '@noble/hashes@1.5.0':
+ resolution: {integrity: sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==}
+ engines: {node: ^14.21.3 || >=16}
+
+ '@noble/secp256k1@1.7.1':
+ resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==}
+
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -2796,6 +2827,13 @@ packages:
'@osmonauts/lcd@0.6.0':
resolution: {integrity: sha512-vz9VavXrEfxZoXbSAfNfk90MLpn34XtBYPV3L9YilE+s56AhqYxUh83nne9J5somnTRfGnyR3oeV8C+lHkqiuA==}
+ '@phosphor-icons/react@2.1.5':
+ resolution: {integrity: sha512-B7vRm/w+P/+eavWZP5CB5Ul0ffK4Y7fpd/auWKuGvm+8pVgAJzbOK8O0s+DqzR+TwWkh5pHtJTuoAtaSvgCPzg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ react: '>= 16.8'
+ react-dom: '>= 16.8'
+
'@pkgr/utils@2.4.2':
resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
@@ -2836,165 +2874,832 @@ packages:
'@protobufjs/utf8@1.1.0':
resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==}
- '@rollup/plugin-inject@5.0.3':
- resolution: {integrity: sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA==}
- engines: {node: '>=14.0.0'}
+ '@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-accordion@1.2.0':
+ resolution: {integrity: sha512-HJOzSX8dQqtsp/3jVxCU3CXEONF7/2jlGAB28oX8TTw1Dz8JYbEI1UcL8355PuLBE41/IRRMvCw7VkiK/jcUOQ==}
peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0
+ '@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:
- rollup:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
optional: true
- '@rollup/pluginutils@5.0.2':
- resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
- engines: {node: '>=14.0.0'}
+ '@radix-ui/react-arrow@1.1.0':
+ resolution: {integrity: sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==}
peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0
+ '@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:
- rollup:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
optional: true
- '@rushstack/eslint-patch@1.3.3':
- resolution: {integrity: sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw==}
-
- '@scure/base@1.1.3':
- resolution: {integrity: sha512-/+SgoRjLq7Xlf0CWuLHq2LUZeL/w65kfzAPG5NH9pcmBhs+nunQTn4gvdwgMTIXnt9b2C/1SeL2XiysZEyIC9Q==}
-
- '@scure/bip32@1.3.1':
- resolution: {integrity: sha512-osvveYtyzdEVbt3OfwwXFr4P2iVBL5u1Q3q4ONBfDY/UpOuXmOlbgwc1xECEboY8wIays8Yt6onaWMUdUbfl0A==}
-
- '@scure/bip39@1.2.1':
- resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==}
-
- '@sideway/address@4.1.4':
- resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
-
- '@sideway/formula@3.0.1':
- resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
-
- '@sideway/pinpoint@2.0.0':
- resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
-
- '@sinclair/typebox@0.27.8':
- resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
-
- '@sindresorhus/is@0.14.0':
- resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==}
- engines: {node: '>=6'}
-
- '@slorber/static-site-generator-webpack-plugin@4.0.7':
- resolution: {integrity: sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==}
- engines: {node: '>=14'}
-
- '@stablelib/aead@1.0.1':
- resolution: {integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==}
-
- '@stablelib/binary@1.0.1':
- resolution: {integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==}
-
- '@stablelib/bytes@1.0.1':
- resolution: {integrity: sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ==}
-
- '@stablelib/chacha20poly1305@1.0.1':
- resolution: {integrity: sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==}
-
- '@stablelib/chacha@1.0.1':
- resolution: {integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==}
-
- '@stablelib/constant-time@1.0.1':
- resolution: {integrity: sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==}
-
- '@stablelib/ed25519@1.0.3':
- resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==}
-
- '@stablelib/hash@1.0.1':
- resolution: {integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==}
-
- '@stablelib/hkdf@1.0.1':
- resolution: {integrity: sha512-SBEHYE16ZXlHuaW5RcGk533YlBj4grMeg5TooN80W3NpcHRtLZLLXvKyX0qcRFxf+BGDobJLnwkvgEwHIDBR6g==}
-
- '@stablelib/hmac@1.0.1':
- resolution: {integrity: sha512-V2APD9NSnhVpV/QMYgCVMIYKiYG6LSqw1S65wxVoirhU/51ACio6D4yDVSwMzuTJXWZoVHbDdINioBwKy5kVmA==}
-
- '@stablelib/int@1.0.1':
- resolution: {integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==}
-
- '@stablelib/keyagreement@1.0.1':
- resolution: {integrity: sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==}
-
- '@stablelib/poly1305@1.0.1':
- resolution: {integrity: sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==}
+ '@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
- '@stablelib/random@1.0.2':
- resolution: {integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==}
+ '@radix-ui/react-checkbox@1.1.1':
+ resolution: {integrity: sha512-0i/EKJ222Afa1FE0C6pNJxDq1itzcl3HChE9DwskA4th4KRse8ojx8a1nVcOjwJdbpDLcz7uol77yYnQNMHdKw==}
+ 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
- '@stablelib/sha256@1.0.1':
- resolution: {integrity: sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==}
+ '@radix-ui/react-collapsible@1.1.0':
+ resolution: {integrity: sha512-zQY7Epa8sTL0mq4ajSJpjgn2YmCgyrG7RsQgLp3C0LQVkG7+Tf6Pv1CeNWZLyqMjhdPkBa5Lx7wYBeSu7uCSTA==}
+ 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
- '@stablelib/sha512@1.0.1':
- resolution: {integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==}
+ '@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
- '@stablelib/wipe@1.0.1':
- resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==}
+ '@radix-ui/react-collection@1.1.0':
+ resolution: {integrity: sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==}
+ 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
- '@stablelib/x25519@1.0.3':
- resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==}
+ '@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
- '@svgr/babel-plugin-add-jsx-attribute@6.5.1':
- resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
- engines: {node: '>=10'}
+ '@radix-ui/react-compose-refs@1.1.0':
+ resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0':
- resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
- engines: {node: '>=14'}
+ '@radix-ui/react-context@1.0.1':
+ resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0':
- resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
- engines: {node: '>=14'}
+ '@radix-ui/react-context@1.1.0':
+ resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1':
- resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
- engines: {node: '>=10'}
+ '@radix-ui/react-dialog@1.0.5':
+ resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@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
- '@svgr/babel-plugin-svg-dynamic-title@6.5.1':
- resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
- engines: {node: '>=10'}
+ '@radix-ui/react-dialog@1.1.1':
+ resolution: {integrity: sha512-zysS+iU4YP3STKNS6USvFVqI4qqx8EpiwmT5TuCApVEBca+eRCbONi4EgzfNSuVnOXvC5UPHHMjs8RXO6DH9Bg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@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
- '@svgr/babel-plugin-svg-em-dimensions@6.5.1':
- resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
- engines: {node: '>=10'}
+ '@radix-ui/react-direction@1.0.1':
+ resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@svgr/babel-plugin-transform-react-native-svg@6.5.1':
- resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
- engines: {node: '>=10'}
+ '@radix-ui/react-direction@1.1.0':
+ resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@svgr/babel-plugin-transform-svg-component@6.5.1':
- resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
- engines: {node: '>=12'}
+ '@radix-ui/react-dismissable-layer@1.0.5':
+ resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@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
- '@svgr/babel-preset@6.5.1':
- resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
- engines: {node: '>=10'}
+ '@radix-ui/react-dismissable-layer@1.1.0':
+ resolution: {integrity: sha512-/UovfmmXGptwGcBQawLzvn2jOfM0t4z3/uKffoBlj724+n3FvBbZ7M0aaBOmkp6pqFYpO4yx8tSVJjx3Fl2jig==}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@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
- '@svgr/core@6.5.1':
+ '@radix-ui/react-dropdown-menu@2.1.1':
+ resolution: {integrity: sha512-y8E+x9fBq9qvteD2Zwa4397pUVhYsh9iq44b5RD5qu1GMJWBCBuVg1hMyItbc6+zH00TxGRqd9Iot4wzf3OoBQ==}
+ 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-focus-guards@1.0.1':
+ resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@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
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-focus-scope@1.0.4':
+ resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
+ 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-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 || ^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-id@1.0.1':
+ resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@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
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-label@2.1.0':
+ resolution: {integrity: sha512-peLblDlFw/ngk3UWq0VnYaOLy6agTZZ+MUO/WhVfm14vJGML+xH4FAl2XQGLqdefjNb7ApRg6Yn7U42ZhmYXdw==}
+ 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-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-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-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.0.4':
+ resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
+ 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-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-separator@1.1.0':
+ resolution: {integrity: sha512-3uBAs+egzvJBDZAzvb/n4NxxOYpnspmWxO2u5NbZ8Y6FM/NdrGSF9bop3Cf6F6C71z1rTSn8KV0Fo2ZVd79lGA==}
+ 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.0.4':
+ resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==}
+ 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-tooltip@1.1.2':
+ resolution: {integrity: sha512-9XRsLwe6Yb9B/tlnYCPVUd/TFS4J7HuOZW345DCeC6vKIxQGMZdx21RK4VoZauPD5frgkXTYVS5y90L+3YBn4w==}
+ 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-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
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-previous@1.1.0':
+ resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
+ 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-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
+ peerDependenciesMeta:
+ '@types/react':
+ 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==}
+
+ '@rollup/plugin-inject@5.0.3':
+ resolution: {integrity: sha512-411QlbL+z2yXpRWFXSmw/teQRMkXcAAC8aYTemc15gwJRpvEVDQwoe+N/HTFD8RFG8+88Bme9DK2V9CVm7hJdA==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/pluginutils@5.0.2':
+ resolution: {integrity: sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rushstack/eslint-patch@1.3.3':
+ resolution: {integrity: sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw==}
+
+ '@scure/base@1.1.3':
+ resolution: {integrity: sha512-/+SgoRjLq7Xlf0CWuLHq2LUZeL/w65kfzAPG5NH9pcmBhs+nunQTn4gvdwgMTIXnt9b2C/1SeL2XiysZEyIC9Q==}
+
+ '@scure/bip32@1.1.5':
+ resolution: {integrity: sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==}
+
+ '@scure/bip32@1.3.1':
+ resolution: {integrity: sha512-osvveYtyzdEVbt3OfwwXFr4P2iVBL5u1Q3q4ONBfDY/UpOuXmOlbgwc1xECEboY8wIays8Yt6onaWMUdUbfl0A==}
+
+ '@scure/bip39@1.1.1':
+ resolution: {integrity: sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==}
+
+ '@scure/bip39@1.2.1':
+ resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==}
+
+ '@sideway/address@4.1.4':
+ resolution: {integrity: sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==}
+
+ '@sideway/formula@3.0.1':
+ resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
+
+ '@sideway/pinpoint@2.0.0':
+ resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
+
+ '@sinclair/typebox@0.27.8':
+ resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+
+ '@sindresorhus/is@0.14.0':
+ resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==}
+ engines: {node: '>=6'}
+
+ '@slorber/static-site-generator-webpack-plugin@4.0.7':
+ resolution: {integrity: sha512-Ug7x6z5lwrz0WqdnNFOMYrDQNTPAprvHLSh6+/fmml3qUiz6l5eq+2MzLKWtn/q5K5NpSiFsZTP/fck/3vjSxA==}
+ engines: {node: '>=14'}
+
+ '@stablelib/aead@1.0.1':
+ resolution: {integrity: sha512-q39ik6sxGHewqtO0nP4BuSe3db5G1fEJE8ukvngS2gLkBXyy6E7pLubhbYgnkDFv6V8cWaxcE4Xn0t6LWcJkyg==}
+
+ '@stablelib/binary@1.0.1':
+ resolution: {integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==}
+
+ '@stablelib/bytes@1.0.1':
+ resolution: {integrity: sha512-Kre4Y4kdwuqL8BR2E9hV/R5sOrUj6NanZaZis0V6lX5yzqC3hBuVSDXUIBqQv/sCpmuWRiHLwqiT1pqqjuBXoQ==}
+
+ '@stablelib/chacha20poly1305@1.0.1':
+ resolution: {integrity: sha512-MmViqnqHd1ymwjOQfghRKw2R/jMIGT3wySN7cthjXCBdO+qErNPUBnRzqNpnvIwg7JBCg3LdeCZZO4de/yEhVA==}
+
+ '@stablelib/chacha@1.0.1':
+ resolution: {integrity: sha512-Pmlrswzr0pBzDofdFuVe1q7KdsHKhhU24e8gkEwnTGOmlC7PADzLVxGdn2PoNVBBabdg0l/IfLKg6sHAbTQugg==}
+
+ '@stablelib/constant-time@1.0.1':
+ resolution: {integrity: sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==}
+
+ '@stablelib/ed25519@1.0.3':
+ resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==}
+
+ '@stablelib/hash@1.0.1':
+ resolution: {integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==}
+
+ '@stablelib/hkdf@1.0.1':
+ resolution: {integrity: sha512-SBEHYE16ZXlHuaW5RcGk533YlBj4grMeg5TooN80W3NpcHRtLZLLXvKyX0qcRFxf+BGDobJLnwkvgEwHIDBR6g==}
+
+ '@stablelib/hmac@1.0.1':
+ resolution: {integrity: sha512-V2APD9NSnhVpV/QMYgCVMIYKiYG6LSqw1S65wxVoirhU/51ACio6D4yDVSwMzuTJXWZoVHbDdINioBwKy5kVmA==}
+
+ '@stablelib/int@1.0.1':
+ resolution: {integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==}
+
+ '@stablelib/keyagreement@1.0.1':
+ resolution: {integrity: sha512-VKL6xBwgJnI6l1jKrBAfn265cspaWBPAPEc62VBQrWHLqVgNRE09gQ/AnOEyKUWrrqfD+xSQ3u42gJjLDdMDQg==}
+
+ '@stablelib/poly1305@1.0.1':
+ resolution: {integrity: sha512-1HlG3oTSuQDOhSnLwJRKeTRSAdFNVB/1djy2ZbS35rBSJ/PFqx9cf9qatinWghC2UbfOYD8AcrtbUQl8WoxabA==}
+
+ '@stablelib/random@1.0.2':
+ resolution: {integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==}
+
+ '@stablelib/sha256@1.0.1':
+ resolution: {integrity: sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==}
+
+ '@stablelib/sha512@1.0.1':
+ resolution: {integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==}
+
+ '@stablelib/wipe@1.0.1':
+ resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==}
+
+ '@stablelib/x25519@1.0.3':
+ resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==}
+
+ '@svgr/babel-plugin-add-jsx-attribute@6.5.1':
+ resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0':
+ resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0':
+ resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1':
+ resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-svg-dynamic-title@6.5.1':
+ resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-svg-em-dimensions@6.5.1':
+ resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-transform-react-native-svg@6.5.1':
+ resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-plugin-transform-svg-component@6.5.1':
+ resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/babel-preset@6.5.1':
+ resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@svgr/core@6.5.1':
resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==}
engines: {node: '>=10'}
@@ -3336,27 +4041,30 @@ packages:
resolution: {integrity: sha512-L61uJT26cMOfFQ+lMZKoJNbAEckLe539VhTxiGHrWl5XSKQgA0RTBZJW2HFPy5T0ZvPVSD93QsrTKDkfNwJGyQ==}
engines: {node: ^16.0.0 || >=18.0.0}
- '@usecapsule/core-sdk@1.10.0':
- resolution: {integrity: sha512-9Yzl1it9G6EgrDZP3ItWolxVUfgd9M8weY6rNTepObyntIRy9GrkqEXPA4uXwLljaPXNo6ezxs3+jQ2u4pXaWQ==}
+ '@usecapsule/core-sdk@1.21.0':
+ resolution: {integrity: sha512-zblf/9A5jyVhB2gEdUkkJsq9JLZ5EwsaSH+vWCJL+SqOFk2xD4TgfQoWymxtxtrbSbChrqLB68rrBtsevQNuuw==}
+
+ '@usecapsule/core-sdk@1.24.1':
+ resolution: {integrity: sha512-L8KeffTa0QeHr3kdwVeeW8mFqfGcv9/+Xff0bG6VD9jB30RZP+I2PisFDLJQkYthKH3pyyqfOMBiSb/W+pRjbA==}
- '@usecapsule/cosmjs-v0-integration@1.10.0':
- resolution: {integrity: sha512-T/BXzJ61oAjDu5rs16FxdepUvTZ8e+Af3risRJR2kbdRzSqVAUPXRhfCS4DqdrVAP3bN8UtVzFopQFkHm1kVwQ==}
+ '@usecapsule/cosmjs-v0-integration@1.24.1':
+ resolution: {integrity: sha512-XlRsz+iroZK4YPRjnBFuBXUiM+yIpypeGBZuO89BZhLHdMal2c4y+R6qv1+p/7HTw6sCKVfztXTI859u32NR4w==}
peerDependencies:
'@cosmjs/amino': '>= 0.31.3 < 1'
'@cosmjs/encoding': '>= 0.31.3 < 1'
'@cosmjs/proto-signing': '>= 0.31.3 < 1'
- '@usecapsule/user-management-client@1.7.0':
- resolution: {integrity: sha512-9ZkRnw38YlIYMi0YeaPnsNhBIIwhrI7ZJQv+Qjg/+lMxW8IhBelS1O7Yseum9H3SS1YsTOhhDlWDoNT54fn9Kw==}
+ '@usecapsule/user-management-client@1.18.0':
+ resolution: {integrity: sha512-F0q5OQV2GiXQ0US8hnEPaCQ3fITSaubodalhw83wLlYUnC9BY0Xd1hXfGh2lcru17TKQYWIoImWf3aZnwN3LnA==}
- '@usecapsule/web-sdk@1.12.0':
- resolution: {integrity: sha512-AOU1/rNp7bIBjLMsBcjEppGw3iklH3Go9fJAgxKvUO084ge27VC2NZEoSth0dKlpN4b+MHwKWGhzk+IUa//hzw==}
+ '@usecapsule/user-management-client@1.21.1':
+ resolution: {integrity: sha512-a0aQ5dgYILfMsTaFOWW6PjD4mcdL2dZL1BRbncdhA6uhLp/qkG19754tltF/TIQimT5eiJ+BQyL67jdSfPtY1g==}
- '@vanilla-extract/css@1.14.2':
- resolution: {integrity: sha512-OasEW4ojGqqRiUpsyEDUMrSkLnmwbChtafkogpCZ1eDAgAZ9eY9CHLYodj2nB8aV5T25kQ5shm92k25ngjYhhg==}
+ '@usecapsule/web-sdk@1.23.0':
+ resolution: {integrity: sha512-d0gG/CZR/zuJlpyGBNidfHrkQI1B7PRwRDkXFJrJEOBGX4oOUUUtRvhGxeK9l2fIdWjNO7hZ01V5hkm1u00YFw==}
- '@vanilla-extract/private@1.0.4':
- resolution: {integrity: sha512-8FGD6AejeC/nXcblgNCM5rnZb9KXa4WNkR03HCWtdJBpANjTgjHEglNLFnhuvdQ78tC6afaxBPI+g7F2NX3tgg==}
+ '@usecapsule/web-sdk@1.26.1':
+ resolution: {integrity: sha512-NoBKYO1QbVNwy74PkrBhO2HtymMlnKsNbvy/rFhnEB5E5xuh6LYm0DQjn5K+tF8fXYomoGRX1lmHpWntOKMFwQ==}
'@vectis/extension-client@0.7.2':
resolution: {integrity: sha512-tIzihqLSljxLC4VVnn94VH1Q7QqlWYPy2HnoeVaqmjv06YI3CSX97kLN+TYGiUKdZoSmnxIJVBq8QRIBASthKQ==}
@@ -3953,9 +4661,6 @@ packages:
resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==}
engines: {node: '>=8'}
- call-bind@1.0.2:
- resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
-
call-bind@1.0.7:
resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
engines: {node: '>= 0.4'}
@@ -3991,6 +4696,10 @@ packages:
caniuse-lite@1.0.30001528:
resolution: {integrity: sha512-0Db4yyjR9QMNlsxh+kKWzQtkyflkG/snYheSzkjmvdEtEXB1+jt7A2HmSEiO6XIJPIbo92lHNGNySvE5pZcs5Q==}
+ case@1.6.3:
+ resolution: {integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==}
+ engines: {node: '>= 0.8.0'}
+
cbor-web@8.1.0:
resolution: {integrity: sha512-2hWHHMVrfffgoEmsAUh8vCxHoLa1vgodtC73+C5cSarkJlwTapnqAzcHINlP6Ej0DXuP4OmmJ9LF+JaNM5Lj/g==}
engines: {node: '>=12.19'}
@@ -4044,6 +4753,9 @@ packages:
cipher-base@1.0.4:
resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
+ class-variance-authority@0.7.0:
+ resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
+
classnames@2.5.1:
resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==}
@@ -4092,6 +4804,16 @@ packages:
resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
engines: {node: '>=6'}
+ clsx@2.1.0:
+ resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==}
+ engines: {node: '>=6'}
+
+ cmdk@1.0.0:
+ resolution: {integrity: sha512-gDzVf0a09TvoJ5jnuPvygTB77+XdOSwEmJ88L6XPFPlv7T3RxbP9jgenfylrAMD0+Le1aO0nVjQUzl2g+vjz5Q==}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+
collapse-white-space@1.0.6:
resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==}
@@ -4443,9 +5165,6 @@ packages:
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- deep-object-diff@1.1.9:
- resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==}
-
deepmerge@4.3.1:
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
engines: {node: '>=0.10.0'}
@@ -4961,6 +5680,9 @@ packages:
ethereum-cryptography@0.1.3:
resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==}
+ ethereum-cryptography@1.2.0:
+ resolution: {integrity: sha512-6yFQC9b5ug6/17CQpCyE3k9eKBMdhyVjzUy1WkiuY/E4vj/SXDBbCw8QEIaXqf0Mf2SnY6RmpDcwlUmBSS0EJw==}
+
ethereum-cryptography@2.1.2:
resolution: {integrity: sha512-Z5Ba0T0ImZ8fqXrJbpHcbpAvIswRte2wGNR/KePnu8GbbvgJ47lMxT/ZZPG6i9Jaht4azPDop4HaM00J0J59ug==}
@@ -5160,6 +5882,9 @@ packages:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
+ fp-ts@2.1.1:
+ resolution: {integrity: sha512-YcWhMdDCFCja0MmaDroTgNu+NWWrrnUEn92nvDgrtVy9Z71YFnhNVIghoHPt8gs82ijoMzFGeWKvArbyICiJgw==}
+
fp-ts@2.16.5:
resolution: {integrity: sha512-N8T8PwMSeTKKtkm9lkj/zSTAnPC/aJIIrQhnHxxkL0KLsRCNUPANksJOlMXxcKKCo7H1ORP3No9EMD+fP0tsdA==}
@@ -5203,9 +5928,6 @@ packages:
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
- function-bind@1.1.1:
- resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
-
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
@@ -5224,9 +5946,6 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-intrinsic@1.2.1:
- resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
-
get-intrinsic@1.2.4:
resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
engines: {node: '>= 0.4'}
@@ -5315,6 +6034,11 @@ packages:
resolution: {integrity: sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ goober@2.1.14:
+ resolution: {integrity: sha512-4UpC0NdGyAFqLNPnhCT2iHpza2q+RAY3GV85a/mRPdzyPQMsj0KmMMuetdIkzWRbJ+Hgau1EZztq8ImmiMGhsg==}
+ peerDependencies:
+ csstype: ^3.0.10
+
google-protobuf@3.21.2:
resolution: {integrity: sha512-3MSOYFO5U9mPGikIYCzK0SaThypfGgS6bHqrUGXG3DPHCrb+txNqeEcns1W0lkGfk0rCyNXm7xB9rMxnCiZOoA==}
@@ -5335,6 +6059,19 @@ packages:
resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
engines: {node: '>=6.0'}
+ graz@0.1.20:
+ resolution: {integrity: sha512-kELVAo2r75Y1EJ6XTRXOUfQKOej4+/trBYNo9ux+MPvmO2tZ0KcMl0X/cbVQc8W2u0kR4dLWRbiAKdFihNUSMg==}
+ hasBin: true
+ peerDependencies:
+ '@cosmjs/amino': '*'
+ '@cosmjs/cosmwasm-stargate': '*'
+ '@cosmjs/launchpad': '*'
+ '@cosmjs/proto-signing': '*'
+ '@cosmjs/stargate': '*'
+ '@cosmjs/tendermint-rpc': '*'
+ '@leapwallet/cosmos-social-login-capsule-provider': ^0.0.39
+ react: '>=17'
+
gzip-size@6.0.0:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
@@ -5353,9 +6090,6 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- has-property-descriptors@1.0.0:
- resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==}
-
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
@@ -5992,6 +6726,9 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ libphonenumber-js@1.11.2:
+ resolution: {integrity: sha512-V9mGLlaXN1WETzqQvSu6qf6XVAr3nFuJvWsHcuzCCCo6xUKawwSxOPTpan5CGOSKTn5w/bQuCZcLPJkyysgC3w==}
+
libsodium-sumo@0.7.11:
resolution: {integrity: sha512-bY+7ph7xpk51Ez2GbE10lXAQ5sJma6NghcIDaSPbM/G9elfrjLa0COHl/7P6Wb/JizQzl5UQontOOP1z0VwbLA==}
@@ -6156,9 +6893,6 @@ packages:
mdurl@1.0.1:
resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
- media-query-parser@2.0.2:
- resolution: {integrity: sha512-1N4qp+jE0pL5Xv4uEcwVUhIkwdUO3S/9gML90nqKA7v7FcOS5vUtatfzok9S9U1EJU8dHWlcv95WLnKmmxZI9w==}
-
media-typer@0.3.0:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
@@ -6253,9 +6987,6 @@ packages:
mobx@6.10.2:
resolution: {integrity: sha512-B1UGC3ieK3boCjnMEcZSwxqRDMdzX65H/8zOHbuTY8ZhvrIjTUoLRR2TP2bPqIgYRfb3+dUigu8yMZufNjn0LQ==}
- modern-ahocorasick@1.0.1:
- resolution: {integrity: sha512-yoe+JbhTClckZ67b2itRtistFKf8yPYelHLc7e5xAwtNAXxM6wJTUx2C7QeVSJFDzKT7bCIFyBVybPMKvmB9AA==}
-
motion@10.16.2:
resolution: {integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==}
@@ -6404,9 +7135,6 @@ packages:
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
engines: {node: '>= 6'}
- object-inspect@1.12.3:
- resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
-
object-inspect@1.13.1:
resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
@@ -6487,9 +7215,6 @@ packages:
osmojs@15.2.1:
resolution: {integrity: sha512-hA4QOlEhs2h0tQPYld5EqH+GhyHVTc9Fye3BAAOlfc9++GQB127pFZdProCGFNvw4kJwHHzhQQtuE98tk1EejA==}
- outdent@0.8.0:
- resolution: {integrity: sha512-KiOAIsdpUTcAXuykya5fnVVT+/5uS0Q1mrkRHcF89tpieSmY33O/tmc54CqwA+bfhbtEfZUNLHaPUiB9X3jt1A==}
-
p-cancelable@1.1.0:
resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==}
engines: {node: '>=6'}
@@ -7161,6 +7886,13 @@ packages:
react: ^16.6.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0
+ react-hot-toast@2.4.1:
+ resolution: {integrity: sha512-j8z+cQbWIM5LY37pR6uZR6D4LfseplqnuAO4co4u8917hBUvXlEqyP1ZzqVLcqoyUesZZv/ImreoCeHVDpE5pQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ react: '>=16'
+ react-dom: '>=16'
+
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -7199,6 +7931,16 @@ packages:
'@types/react':
optional: true
+ react-remove-scroll@2.5.5:
+ resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
+ 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@2.5.6:
resolution: {integrity: sha512-bO856ad1uDYLefgArk559IzUNeQ6SWH4QnrevIUjH+GczV56giDfl3h0Idptf2oIKxQmd1p9BN25jleKodTALg==}
engines: {node: '>=10'}
@@ -7209,6 +7951,22 @@ packages:
'@types/react':
optional: true
+ react-remove-scroll@2.5.7:
+ resolution: {integrity: sha512-FnrTWO4L7/Bhhf3CYBNArEG/yROV0tKmTv7/3h9QCFvH6sndeFf1wPqOcbFVu5VAulS5dV1wGT3GZZ/1GawqiA==}
+ 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-resizable-panels@2.0.19:
+ resolution: {integrity: sha512-v3E41kfKSuCPIvJVb4nL4mIZjjKIn/gh6YqZF/gDfQDolv/8XnhJBek4EiV2gOr3hhc5A3kOGOayk3DhanpaQw==}
+ peerDependencies:
+ react: ^16.14.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^16.14.0 || ^17.0.0 || ^18.0.0
+
react-router-config@5.1.1:
resolution: {integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==}
peerDependencies:
@@ -7622,9 +8380,6 @@ packages:
engines: {node: '>=4'}
hasBin: true
- side-channel@1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
-
side-channel@1.0.6:
resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
engines: {node: '>= 0.4'}
@@ -7664,6 +8419,12 @@ packages:
sonic-boom@2.8.0:
resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==}
+ sonner@1.4.41:
+ resolution: {integrity: sha512-uG511ggnnsw6gcn/X+YKkWPo5ep9il9wYi3QJxHsYe7yTZ4+cOd1wuodOUmOpFuXL+/RE3R04LczdNCDygTDgQ==}
+ peerDependencies:
+ react: ^18.0.0
+ react-dom: ^18.0.0
+
sort-css-media-queries@2.1.0:
resolution: {integrity: sha512-IeWvo8NkNiY2vVYdPa27MCQiR0MN0M80johAYFVxWWXQ44KU84WNxjslwBHmc/7ZL2ccwkM7/e6S5aiKZXm7jA==}
engines: {node: '>= 6.3.0'}
@@ -7913,6 +8674,14 @@ packages:
resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==}
engines: {node: ^14.18.0 || >=16.0.0}
+ tailwind-merge@2.2.1:
+ resolution: {integrity: sha512-o+2GTLkthfa5YUt4JxPfzMIpQzZ3adD1vLVkvKE1Twl9UAhGsEbIZhHHZVRttyW177S8PDJI3bTQNaebyofK3Q==}
+
+ tailwindcss-animate@1.0.7:
+ resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
+ peerDependencies:
+ tailwindcss: '>=3.0.0 || insiders'
+
tailwindcss@3.3.3:
resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==}
engines: {node: '>=14.0.0'}
@@ -8053,9 +8822,6 @@ packages:
tslib@2.5.2:
resolution: {integrity: sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==}
- tslib@2.5.3:
- resolution: {integrity: sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==}
-
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
@@ -8380,6 +9146,12 @@ packages:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
+ vaul@0.9.4:
+ resolution: {integrity: sha512-pcyIy1nEk6798ReNQpbVH/T/dYnoJ3bwyq7jmSp134s+bSvpWoSWQthm3/jfsQRvHNYIEK4ZKbkHUJ3YfLfw1w==}
+ peerDependencies:
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+
vfile-location@3.2.0:
resolution: {integrity: sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==}
@@ -8441,10 +9213,18 @@ packages:
web-namespaces@1.1.4:
resolution: {integrity: sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw==}
+ web3-eth-abi@1.10.4:
+ resolution: {integrity: sha512-cZ0q65eJIkd/jyOlQPDjr8X4fU6CRL1eWgdLwbWEpo++MPU/2P4PFk5ZLAdye9T5Sdp+MomePPJ/gHjLMj2VfQ==}
+ engines: {node: '>=8.0.0'}
+
web3-eth-abi@1.3.6:
resolution: {integrity: sha512-Or5cRnZu6WzgScpmbkvC6bfNxR26hqiKK4i8sMPFeTUABQcb/FU3pBj7huBLYbp9dH+P5W79D2MqwbWwjj9DoQ==}
engines: {node: '>=8.0.0'}
+ web3-utils@1.10.4:
+ resolution: {integrity: sha512-tsu8FiKJLk2PzhDl9fXbGUWTkkVXYhtTA+SmEFkKft+9BgwLxfCRpU96sWv7ICC8zixBNd3JURVoiR3dUXgP8A==}
+ engines: {node: '>=8.0.0'}
+
web3-utils@1.3.6:
resolution: {integrity: sha512-hHatFaQpkQgjGVER17gNx8u1qMyaXFZtM0y0XLGH1bzsjMPlkMPLRcYOrZ00rOPfTEuYFOdrpGOqZXVmGrMZRg==}
engines: {node: '>=8.0.0'}
@@ -8655,9 +9435,6 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- zod@3.20.6:
- resolution: {integrity: sha512-oyu0m54SGCtzh6EClBVqDDlAYRz4jrVtKwQ7ZnsEmMI9HnzuZFj8QFwAY1M5uniIYACdGvv0PBWPF2kO0aNofA==}
-
zod@3.21.4:
resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
@@ -8719,10 +9496,10 @@ snapshots:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.8.2(@algolia/client-search@4.19.1)(algoliasearch@4.17.0)':
+ '@algolia/autocomplete-preset-algolia@1.8.2(@algolia/client-search@4.17.1)(algoliasearch@4.17.0)':
dependencies:
'@algolia/autocomplete-shared': 1.8.2
- '@algolia/client-search': 4.19.1
+ '@algolia/client-search': 4.17.1
algoliasearch: 4.17.0
'@algolia/autocomplete-preset-algolia@1.9.2(@algolia/client-search@4.17.1)(algoliasearch@4.17.0)':
@@ -8748,8 +9525,6 @@ snapshots:
'@algolia/cache-common@4.17.1': {}
- '@algolia/cache-common@4.19.1': {}
-
'@algolia/cache-in-memory@4.17.0':
dependencies:
'@algolia/cache-common': 4.17.0
@@ -8777,11 +9552,6 @@ snapshots:
'@algolia/requester-common': 4.17.1
'@algolia/transporter': 4.17.1
- '@algolia/client-common@4.19.1':
- dependencies:
- '@algolia/requester-common': 4.19.1
- '@algolia/transporter': 4.19.1
-
'@algolia/client-personalization@4.17.0':
dependencies:
'@algolia/client-common': 4.17.0
@@ -8800,20 +9570,12 @@ snapshots:
'@algolia/requester-common': 4.17.1
'@algolia/transporter': 4.17.1
- '@algolia/client-search@4.19.1':
- dependencies:
- '@algolia/client-common': 4.19.1
- '@algolia/requester-common': 4.19.1
- '@algolia/transporter': 4.19.1
-
'@algolia/events@4.0.1': {}
'@algolia/logger-common@4.17.0': {}
'@algolia/logger-common@4.17.1': {}
- '@algolia/logger-common@4.19.1': {}
-
'@algolia/logger-console@4.17.0':
dependencies:
'@algolia/logger-common': 4.17.0
@@ -8826,8 +9588,6 @@ snapshots:
'@algolia/requester-common@4.17.1': {}
- '@algolia/requester-common@4.19.1': {}
-
'@algolia/requester-node-http@4.17.0':
dependencies:
'@algolia/requester-common': 4.17.0
@@ -8844,14 +9604,7 @@ snapshots:
'@algolia/logger-common': 4.17.1
'@algolia/requester-common': 4.17.1
- '@algolia/transporter@4.19.1':
- dependencies:
- '@algolia/cache-common': 4.19.1
- '@algolia/logger-common': 4.19.1
- '@algolia/requester-common': 4.19.1
-
- '@alloc/quick-lru@5.2.0':
- optional: true
+ '@alloc/quick-lru@5.2.0': {}
'@ampproject/remapping@2.2.1':
dependencies:
@@ -10449,10 +11202,6 @@ snapshots:
dependencies:
regenerator-runtime: 0.13.11
- '@babel/runtime@7.22.15':
- dependencies:
- regenerator-runtime: 0.14.0
-
'@babel/runtime@7.22.3':
dependencies:
regenerator-runtime: 0.13.11
@@ -10542,6 +11291,24 @@ snapshots:
'@celo/base@3.2.0': {}
+ '@celo/base@6.1.0': {}
+
+ '@celo/utils@3.2.0(fp-ts@2.1.1)':
+ dependencies:
+ '@celo/base': 3.2.0
+ '@types/bn.js': 5.1.5
+ '@types/elliptic': 6.4.18
+ '@types/ethereumjs-util': 5.2.0
+ '@types/node': 10.12.18
+ bignumber.js: 9.1.2
+ elliptic: 6.5.4
+ ethereumjs-util: 5.2.1
+ io-ts: 2.0.1(fp-ts@2.1.1)
+ web3-eth-abi: 1.3.6
+ web3-utils: 1.3.6
+ transitivePeerDependencies:
+ - fp-ts
+
'@celo/utils@3.2.0(fp-ts@2.16.5)':
dependencies:
'@celo/base': 3.2.0
@@ -10558,69 +11325,96 @@ snapshots:
transitivePeerDependencies:
- fp-ts
- '@chakra-ui/accordion@2.3.1(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react@18.2.0)':
+ '@celo/utils@6.0.1':
+ dependencies:
+ '@celo/base': 6.1.0
+ '@ethereumjs/util': 8.0.5
+ '@types/elliptic': 6.4.18
+ '@types/node': 18.17.15
+ bignumber.js: 9.1.2
+ elliptic: 6.5.4
+ ethereum-cryptography: 1.2.0
+ fp-ts: 2.1.1
+ io-ts: 2.0.1(fp-ts@2.1.1)
+ rlp: 2.2.7
+ web3-eth-abi: 1.10.4
+ web3-utils: 1.10.4
+
+ '@chainsafe/as-sha256@0.3.1': {}
+
+ '@chainsafe/persistent-merkle-tree@0.4.2':
+ dependencies:
+ '@chainsafe/as-sha256': 0.3.1
+
+ '@chainsafe/ssz@0.9.4':
+ dependencies:
+ '@chainsafe/as-sha256': 0.3.1
+ '@chainsafe/persistent-merkle-tree': 0.4.2
+ case: 1.6.3
+
+ '@chakra-ui/accordion@2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/descendant': 3.1.0(react@18.2.0)
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-controllable-state': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/transition': 2.1.0(framer-motion@10.16.4)(react@18.2.0)
- framer-motion: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/transition': 2.1.0(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ framer-motion: 10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/alert@2.2.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/alert@2.2.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/anatomy@2.2.1': {}
- '@chakra-ui/avatar@2.3.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/avatar@2.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/breadcrumb@2.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/breadcrumb@2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/breakpoint-utils@2.0.8':
dependencies:
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/button@2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/button@2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/card@2.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/card@2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/checkbox@2.3.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/checkbox@2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/react-types': 2.0.7(react@18.2.0)
'@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0)
@@ -10629,8 +11423,8 @@ snapshots:
'@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/visually-hidden': 2.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/visually-hidden': 2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@zag-js/focus-visible': 0.16.0
react: 18.2.0
@@ -10640,10 +11434,10 @@ snapshots:
'@chakra-ui/shared-utils': 2.0.5
react: 18.2.0
- '@chakra-ui/close-button@2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/close-button@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/color-mode@2.2.0(react@18.2.0)':
@@ -10651,9 +11445,9 @@ snapshots:
'@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
react: 18.2.0
- '@chakra-ui/control-box@2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/control-box@2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/counter@2.1.0(react@18.2.0)':
@@ -10663,7 +11457,7 @@ snapshots:
'@chakra-ui/shared-utils': 2.0.5
react: 18.2.0
- '@chakra-ui/css-reset@2.3.0(@emotion/react@11.11.1)(react@18.2.0)':
+ '@chakra-ui/css-reset@2.3.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)':
dependencies:
'@emotion/react': 11.11.1(@types/react@18.2.21)(react@18.2.0)
react: 18.2.0
@@ -10676,7 +11470,7 @@ snapshots:
'@chakra-ui/dom-utils@2.1.0': {}
- '@chakra-ui/editable@3.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/editable@3.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/react-types': 2.0.7(react@18.2.0)
@@ -10687,7 +11481,7 @@ snapshots:
'@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/event-utils@2.0.8': {}
@@ -10700,14 +11494,14 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
- '@chakra-ui/form-control@2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/form-control@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/react-types': 2.0.7(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/hooks@2.2.1(react@18.2.0)':
@@ -10718,44 +11512,44 @@ snapshots:
copy-to-clipboard: 3.3.3
react: 18.2.0
- '@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/icons@2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/icons@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/image@2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/image@2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/input@2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/input@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/object-utils': 2.1.0
'@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/breakpoint-utils': 2.0.8
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/object-utils': 2.1.0
'@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/lazy-utils@2.0.5': {}
@@ -10764,15 +11558,15 @@ snapshots:
dependencies:
react: 18.2.0
- '@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/breakpoint-utils': 2.0.8
'@chakra-ui/react-env': 3.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react@18.2.0)':
+ '@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/clickable': 2.1.0(react@18.2.0)
'@chakra-ui/descendant': 3.1.0(react@18.2.0)
@@ -10788,35 +11582,35 @@ snapshots:
'@chakra-ui/react-use-outside-click': 2.2.0(react@18.2.0)
'@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/transition': 2.1.0(framer-motion@10.16.4)(react@18.2.0)
- framer-motion: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/transition': 2.1.0(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ framer-motion: 10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/modal@2.3.1(@chakra-ui/system@2.6.1)(@types/react@18.2.21)(framer-motion@10.16.4)(react-dom@18.2.0)(react@18.2.0)':
+ '@chakra-ui/modal@2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(@types/react@18.2.21)(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/focus-lock': 2.1.0(@types/react@18.2.21)(react@18.2.0)
- '@chakra-ui/portal': 2.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/react-types': 2.0.7(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/transition': 2.1.0(framer-motion@10.16.4)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/transition': 2.1.0(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
aria-hidden: 1.2.3
- framer-motion: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ framer-motion: 10.16.4(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-remove-scroll: 2.5.6(@types/react@18.2.21)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- '@chakra-ui/number-input@2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/number-input@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/counter': 2.1.0(react@18.2.0)
- '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/react-types': 2.0.7(react@18.2.0)
'@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0)
@@ -10826,14 +11620,14 @@ snapshots:
'@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/number-utils@2.0.7': {}
'@chakra-ui/object-utils@2.1.0': {}
- '@chakra-ui/pin-input@2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/pin-input@2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/descendant': 3.1.0(react@18.2.0)
'@chakra-ui/react-children-utils': 2.0.6(react@18.2.0)
@@ -10841,12 +11635,12 @@ snapshots:
'@chakra-ui/react-use-controllable-state': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/popover@2.2.1(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react@18.2.0)':
+ '@chakra-ui/popover@2.2.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/lazy-utils': 2.0.5
'@chakra-ui/popper': 3.1.0(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
@@ -10857,8 +11651,8 @@ snapshots:
'@chakra-ui/react-use-focus-on-pointer-down': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- framer-motion: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
+ framer-motion: 10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/popper@3.1.0(react@18.2.0)':
@@ -10868,39 +11662,39 @@ snapshots:
'@popperjs/core': 2.11.8
react: 18.2.0
- '@chakra-ui/portal@2.1.0(react-dom@18.2.0)(react@18.2.0)':
+ '@chakra-ui/portal@2.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@chakra-ui/progress@2.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/progress@2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/provider@2.4.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react-dom@18.2.0)(react@18.2.0)':
+ '@chakra-ui/provider@2.4.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/css-reset': 2.3.0(@emotion/react@11.11.1)(react@18.2.0)
- '@chakra-ui/portal': 2.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/css-reset': 2.3.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-env': 3.1.0(react@18.2.0)
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
'@chakra-ui/utils': 2.0.15
'@emotion/react': 11.11.1(@types/react@18.2.21)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@chakra-ui/radio@2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/radio@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/react-types': 2.0.7(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
'@zag-js/focus-visible': 0.16.0
react: 18.2.0
@@ -11011,92 +11805,92 @@ snapshots:
'@chakra-ui/utils': 2.0.15
react: 18.2.0
- '@chakra-ui/react@2.8.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.21)(framer-motion@10.16.4)(react-dom@18.2.0)(react@18.2.0)':
- dependencies:
- '@chakra-ui/accordion': 2.3.1(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react@18.2.0)
- '@chakra-ui/alert': 2.2.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/avatar': 2.3.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/breadcrumb': 2.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/button': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/card': 2.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/checkbox': 2.3.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/control-box': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/react@2.8.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@chakra-ui/accordion': 2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/alert': 2.2.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/avatar': 2.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/breadcrumb': 2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/button': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/card': 2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/checkbox': 2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/control-box': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/counter': 2.1.0(react@18.2.0)
- '@chakra-ui/css-reset': 2.3.0(@emotion/react@11.11.1)(react@18.2.0)
- '@chakra-ui/editable': 3.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/css-reset': 2.3.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/editable': 3.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/focus-lock': 2.1.0(@types/react@18.2.21)(react@18.2.0)
- '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/hooks': 2.2.1(react@18.2.0)
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/input': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/layout': 2.3.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/input': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/layout': 2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/live-region': 2.1.0(react@18.2.0)
- '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/menu': 2.2.1(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react@18.2.0)
- '@chakra-ui/modal': 2.3.1(@chakra-ui/system@2.6.1)(@types/react@18.2.21)(framer-motion@10.16.4)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/number-input': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/pin-input': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/popover': 2.2.1(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react@18.2.0)
+ '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/menu': 2.2.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/modal': 2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(@types/react@18.2.21)(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/number-input': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/pin-input': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/popover': 2.2.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/popper': 3.1.0(react@18.2.0)
- '@chakra-ui/portal': 2.1.0(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/progress': 2.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/provider': 2.4.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/radio': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/progress': 2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/provider': 2.4.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/radio': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-env': 3.1.0(react@18.2.0)
- '@chakra-ui/select': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/skeleton': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/skip-nav': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/slider': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/stat': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/stepper': 2.3.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/select': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/skeleton': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/skip-nav': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/slider': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/stat': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/stepper': 2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/styled-system': 2.9.1
- '@chakra-ui/switch': 2.1.1(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react@18.2.0)
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- '@chakra-ui/table': 2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/tabs': 3.0.0(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/tag': 3.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/textarea': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/switch': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/table': 2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/tabs': 3.0.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/tag': 3.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/textarea': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/theme': 3.3.0(@chakra-ui/styled-system@2.9.1)
'@chakra-ui/theme-utils': 2.0.20
- '@chakra-ui/toast': 7.0.1(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/tooltip': 2.3.0(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react-dom@18.2.0)(react@18.2.0)
- '@chakra-ui/transition': 2.1.0(framer-motion@10.16.4)(react@18.2.0)
+ '@chakra-ui/toast': 7.0.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/tooltip': 2.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/transition': 2.1.0(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/utils': 2.0.15
- '@chakra-ui/visually-hidden': 2.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/visually-hidden': 2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@emotion/react': 11.11.1(@types/react@18.2.21)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0)
- framer-motion: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0)
+ framer-motion: 10.16.4(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)
transitivePeerDependencies:
- '@types/react'
- '@chakra-ui/select@2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/select@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/shared-utils@2.0.5': {}
- '@chakra-ui/skeleton@2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/skeleton@2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-use-previous': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/skip-nav@2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/skip-nav@2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/slider@2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/slider@2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/number-utils': 2.0.7
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
@@ -11108,29 +11902,29 @@ snapshots:
'@chakra-ui/react-use-pan-event': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-size': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/stat@2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/stat@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/stepper@2.3.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/stepper@2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/styled-system@2.9.1':
@@ -11139,15 +11933,15 @@ snapshots:
csstype: 3.1.2
lodash.mergewith: 4.6.2
- '@chakra-ui/switch@2.1.1(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react@18.2.0)':
+ '@chakra-ui/switch@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/checkbox': 2.3.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/checkbox': 2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- framer-motion: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
+ framer-motion: 10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/system@2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)':
+ '@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/color-mode': 2.2.0(react@18.2.0)
'@chakra-ui/object-utils': 2.1.0
@@ -11156,18 +11950,18 @@ snapshots:
'@chakra-ui/theme-utils': 2.0.20
'@chakra-ui/utils': 2.0.15
'@emotion/react': 11.11.1(@types/react@18.2.21)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0)
react: 18.2.0
react-fast-compare: 3.2.2
- '@chakra-ui/table@2.1.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/table@2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/tabs@3.0.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/tabs@3.0.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/clickable': 2.1.0(react@18.2.0)
'@chakra-ui/descendant': 3.1.0(react@18.2.0)
@@ -11178,21 +11972,21 @@ snapshots:
'@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/tag@3.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/tag@3.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@chakra-ui/textarea@2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/textarea@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
+ '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/theme-tools@2.1.1(@chakra-ui/styled-system@2.9.1)':
@@ -11216,41 +12010,41 @@ snapshots:
'@chakra-ui/styled-system': 2.9.1
'@chakra-ui/theme-tools': 2.1.1(@chakra-ui/styled-system@2.9.1)
- '@chakra-ui/toast@7.0.1(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react-dom@18.2.0)(react@18.2.0)':
+ '@chakra-ui/toast@7.0.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/alert': 2.2.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.1)(react@18.2.0)
- '@chakra-ui/portal': 2.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/alert': 2.2.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-context': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-timeout': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
'@chakra-ui/styled-system': 2.9.1
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
'@chakra-ui/theme': 3.3.0(@chakra-ui/styled-system@2.9.1)
- framer-motion: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ framer-motion: 10.16.4(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)
- '@chakra-ui/tooltip@2.3.0(@chakra-ui/system@2.6.1)(framer-motion@10.16.4)(react-dom@18.2.0)(react@18.2.0)':
+ '@chakra-ui/tooltip@2.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/dom-utils': 2.1.0
'@chakra-ui/popper': 3.1.0(react@18.2.0)
- '@chakra-ui/portal': 2.1.0(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/portal': 2.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@chakra-ui/react-types': 2.0.7(react@18.2.0)
'@chakra-ui/react-use-disclosure': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-event-listener': 2.1.0(react@18.2.0)
'@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0)
'@chakra-ui/shared-utils': 2.0.5
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
- framer-motion: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
+ framer-motion: 10.16.4(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)
- '@chakra-ui/transition@2.1.0(framer-motion@10.16.4)(react@18.2.0)':
+ '@chakra-ui/transition@2.1.0(framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
'@chakra-ui/shared-utils': 2.0.5
- framer-motion: 10.16.4(react-dom@18.2.0)(react@18.2.0)
+ framer-motion: 10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react: 18.2.0
'@chakra-ui/utils@2.0.15':
@@ -11260,17 +12054,17 @@ snapshots:
framesync: 6.1.2
lodash.mergewith: 4.6.2
- '@chakra-ui/visually-hidden@2.2.0(@chakra-ui/system@2.6.1)(react@18.2.0)':
+ '@chakra-ui/visually-hidden@2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0))(react@18.2.0)':
dependencies:
- '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
+ '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0))(react@18.2.0)
react: 18.2.0
- '@cmfcmf/docusaurus-search-local@1.1.0(@docusaurus/core@2.4.1)(search-insights@2.8.2)':
+ '@cmfcmf/docusaurus-search-local@1.1.0(@docusaurus/core@2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10))(search-insights@2.8.2)':
dependencies:
'@algolia/autocomplete-js': 1.9.2(@algolia/client-search@4.17.1)(algoliasearch@4.17.0)(search-insights@2.8.2)
'@algolia/autocomplete-theme-classic': 1.9.2
'@algolia/client-search': 4.17.1
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
algoliasearch: 4.17.0
cheerio: 1.0.0-rc.12
clsx: 1.2.1
@@ -11322,15 +12116,15 @@ snapshots:
'@cosmjs/math': 0.31.3
'@cosmjs/utils': 0.31.3
- '@cosmjs/cosmwasm-stargate@0.31.0':
+ '@cosmjs/cosmwasm-stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/amino': 0.31.3
'@cosmjs/crypto': 0.31.0
'@cosmjs/encoding': 0.31.0
'@cosmjs/math': 0.31.0
'@cosmjs/proto-signing': 0.31.0
- '@cosmjs/stargate': 0.31.0
- '@cosmjs/tendermint-rpc': 0.31.0
+ '@cosmjs/stargate': 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/tendermint-rpc': 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/utils': 0.31.0
cosmjs-types: 0.8.0
long: 4.0.0
@@ -11388,7 +12182,7 @@ snapshots:
'@cosmjs/encoding': 0.31.3
'@cosmjs/math': 0.31.3
'@cosmjs/utils': 0.31.3
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.4.0
bn.js: 5.2.1
elliptic: 6.5.4
libsodium-wrappers-sumo: 0.7.11
@@ -11439,6 +12233,12 @@ snapshots:
bech32: 1.1.4
readonly-date: 1.0.0
+ '@cosmjs/encoding@0.32.4':
+ dependencies:
+ base64-js: 1.5.1
+ bech32: 1.1.4
+ readonly-date: 1.0.0
+
'@cosmjs/json-rpc@0.28.13':
dependencies:
'@cosmjs/stream': 0.28.13
@@ -11545,47 +12345,47 @@ snapshots:
cosmjs-types: 0.8.0
long: 4.0.0
- '@cosmjs/socket@0.28.13':
+ '@cosmjs/socket@0.28.13(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/stream': 0.28.13
- isomorphic-ws: 4.0.1(ws@7.5.9)
+ isomorphic-ws: 4.0.1(ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10))
ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
xstream: 11.14.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@cosmjs/socket@0.29.5':
+ '@cosmjs/socket@0.29.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/stream': 0.29.5
- isomorphic-ws: 4.0.1(ws@7.5.9)
+ isomorphic-ws: 4.0.1(ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10))
ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
xstream: 11.14.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@cosmjs/socket@0.30.1':
+ '@cosmjs/socket@0.30.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/stream': 0.30.1
- isomorphic-ws: 4.0.1(ws@7.5.9)
+ isomorphic-ws: 4.0.1(ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10))
ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
xstream: 11.14.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@cosmjs/socket@0.31.0':
+ '@cosmjs/socket@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/stream': 0.31.0
- isomorphic-ws: 4.0.1(ws@7.5.9)
+ isomorphic-ws: 4.0.1(ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10))
ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
xstream: 11.14.0
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@cosmjs/stargate@0.28.13':
+ '@cosmjs/stargate@0.28.13(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@confio/ics23': 0.6.8
'@cosmjs/amino': 0.28.13
@@ -11593,7 +12393,7 @@ snapshots:
'@cosmjs/math': 0.28.13
'@cosmjs/proto-signing': 0.28.13
'@cosmjs/stream': 0.28.13
- '@cosmjs/tendermint-rpc': 0.28.13
+ '@cosmjs/tendermint-rpc': 0.28.13(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/utils': 0.28.13
cosmjs-types: 0.4.1
long: 4.0.0
@@ -11604,7 +12404,7 @@ snapshots:
- debug
- utf-8-validate
- '@cosmjs/stargate@0.29.3':
+ '@cosmjs/stargate@0.29.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@confio/ics23': 0.6.8
'@cosmjs/amino': 0.29.3
@@ -11612,7 +12412,7 @@ snapshots:
'@cosmjs/math': 0.29.5
'@cosmjs/proto-signing': 0.29.3
'@cosmjs/stream': 0.29.5
- '@cosmjs/tendermint-rpc': 0.29.5
+ '@cosmjs/tendermint-rpc': 0.29.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/utils': 0.29.5
cosmjs-types: 0.5.2
long: 4.0.0
@@ -11623,7 +12423,7 @@ snapshots:
- debug
- utf-8-validate
- '@cosmjs/stargate@0.30.1':
+ '@cosmjs/stargate@0.30.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@confio/ics23': 0.6.8
'@cosmjs/amino': 0.30.1
@@ -11631,7 +12431,7 @@ snapshots:
'@cosmjs/math': 0.30.1
'@cosmjs/proto-signing': 0.30.1
'@cosmjs/stream': 0.30.1
- '@cosmjs/tendermint-rpc': 0.30.1
+ '@cosmjs/tendermint-rpc': 0.30.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/utils': 0.30.1
cosmjs-types: 0.7.2
long: 4.0.0
@@ -11642,7 +12442,7 @@ snapshots:
- debug
- utf-8-validate
- '@cosmjs/stargate@0.31.0':
+ '@cosmjs/stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@confio/ics23': 0.6.8
'@cosmjs/amino': 0.31.3
@@ -11650,7 +12450,7 @@ snapshots:
'@cosmjs/math': 0.31.0
'@cosmjs/proto-signing': 0.31.0
'@cosmjs/stream': 0.31.0
- '@cosmjs/tendermint-rpc': 0.31.0
+ '@cosmjs/tendermint-rpc': 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/utils': 0.31.0
cosmjs-types: 0.8.0
long: 4.0.0
@@ -11677,13 +12477,13 @@ snapshots:
dependencies:
xstream: 11.14.0
- '@cosmjs/tendermint-rpc@0.28.13':
+ '@cosmjs/tendermint-rpc@0.28.13(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/crypto': 0.28.13
'@cosmjs/encoding': 0.28.13
'@cosmjs/json-rpc': 0.28.13
'@cosmjs/math': 0.28.13
- '@cosmjs/socket': 0.28.13
+ '@cosmjs/socket': 0.28.13(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/stream': 0.28.13
'@cosmjs/utils': 0.28.13
axios: 0.21.4
@@ -11694,13 +12494,13 @@ snapshots:
- debug
- utf-8-validate
- '@cosmjs/tendermint-rpc@0.29.5':
+ '@cosmjs/tendermint-rpc@0.29.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/crypto': 0.29.5
'@cosmjs/encoding': 0.29.5
'@cosmjs/json-rpc': 0.29.5
'@cosmjs/math': 0.29.5
- '@cosmjs/socket': 0.29.5
+ '@cosmjs/socket': 0.29.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/stream': 0.29.5
'@cosmjs/utils': 0.29.5
axios: 0.21.4
@@ -11711,13 +12511,13 @@ snapshots:
- debug
- utf-8-validate
- '@cosmjs/tendermint-rpc@0.30.1':
+ '@cosmjs/tendermint-rpc@0.30.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/crypto': 0.30.1
'@cosmjs/encoding': 0.30.1
'@cosmjs/json-rpc': 0.30.1
'@cosmjs/math': 0.30.1
- '@cosmjs/socket': 0.30.1
+ '@cosmjs/socket': 0.30.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/stream': 0.30.1
'@cosmjs/utils': 0.30.1
axios: 0.21.4
@@ -11728,13 +12528,13 @@ snapshots:
- debug
- utf-8-validate
- '@cosmjs/tendermint-rpc@0.31.0':
+ '@cosmjs/tendermint-rpc@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@cosmjs/crypto': 0.31.0
'@cosmjs/encoding': 0.31.0
'@cosmjs/json-rpc': 0.31.0
'@cosmjs/math': 0.31.0
- '@cosmjs/socket': 0.31.0
+ '@cosmjs/socket': 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@cosmjs/stream': 0.31.0
'@cosmjs/utils': 0.31.0
axios: 0.21.4
@@ -11763,26 +12563,36 @@ snapshots:
'@keplr-wallet/types': 0.12.12
ses: 0.18.4
- '@dao-dao/cosmiframe@0.1.0':
+ '@dao-dao/cosmiframe@0.1.0(@cosmjs/amino@0.31.3)(@cosmjs/proto-signing@0.31.0)':
+ dependencies:
+ '@cosmjs/amino': 0.31.3
+ '@cosmjs/proto-signing': 0.31.0
+ uuid: 9.0.1
+
+ '@dao-dao/cosmiframe@0.1.0(@cosmjs/amino@0.31.3)(@cosmjs/proto-signing@0.31.3)':
dependencies:
+ '@cosmjs/amino': 0.31.3
+ '@cosmjs/proto-signing': 0.31.3
uuid: 9.0.1
'@discoveryjs/json-ext@0.5.7': {}
'@docsearch/css@3.3.5': {}
- '@docsearch/react@3.3.5(@algolia/client-search@4.19.1)(react-dom@17.0.2)(react@17.0.2)':
+ '@docsearch/react@3.3.5(@algolia/client-search@4.17.1)(@types/react@18.2.21)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
'@algolia/autocomplete-core': 1.8.2
- '@algolia/autocomplete-preset-algolia': 1.8.2(@algolia/client-search@4.19.1)(algoliasearch@4.17.0)
+ '@algolia/autocomplete-preset-algolia': 1.8.2(@algolia/client-search@4.17.1)(algoliasearch@4.17.0)
'@docsearch/css': 3.3.5
algoliasearch: 4.17.0
+ optionalDependencies:
+ '@types/react': 18.2.21
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
transitivePeerDependencies:
- '@algolia/client-search'
- '@docusaurus/core@2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/core@2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
'@babel/core': 7.21.8
'@babel/generator': 7.21.9
@@ -11796,15 +12606,15 @@ snapshots:
'@babel/traverse': 7.21.5
'@docusaurus/cssnano-preset': 2.4.1
'@docusaurus/logger': 2.4.1
- '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
'@docusaurus/react-loadable': 5.5.2(react@17.0.2)
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
- '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1)
- '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
+ '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))
+ '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
'@slorber/static-site-generator-webpack-plugin': 4.0.7
'@svgr/webpack': 6.5.1
autoprefixer: 10.4.14(postcss@8.4.23)
- babel-loader: 8.3.0(@babel/core@7.21.8)(webpack@5.83.1)
+ babel-loader: 8.3.0(@babel/core@7.21.8)(webpack@5.83.1(esbuild@0.18.4))
babel-plugin-dynamic-import-node: 2.3.3
boxen: 6.2.1
chalk: 4.1.2
@@ -11813,50 +12623,50 @@ snapshots:
cli-table3: 0.6.3
combine-promises: 1.1.0
commander: 5.1.0
- copy-webpack-plugin: 11.0.0(webpack@5.83.1)
+ copy-webpack-plugin: 11.0.0(webpack@5.83.1(esbuild@0.18.4))
core-js: 3.30.2
- css-loader: 6.7.4(webpack@5.83.1)
- css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.2)(esbuild@0.18.4)(webpack@5.83.1)
+ css-loader: 6.7.4(webpack@5.83.1(esbuild@0.18.4))
+ css-minimizer-webpack-plugin: 4.2.2(clean-css@5.3.2)(esbuild@0.18.4)(webpack@5.83.1(esbuild@0.18.4))
cssnano: 5.1.15(postcss@8.4.23)
del: 6.1.1
detect-port: 1.5.1
escape-html: 1.0.3
eta: 2.2.0
- file-loader: 6.2.0(webpack@5.83.1)
+ file-loader: 6.2.0(webpack@5.83.1(esbuild@0.18.4))
fs-extra: 10.1.0
html-minifier-terser: 6.1.0
html-tags: 3.3.1
- html-webpack-plugin: 5.5.1(webpack@5.83.1)
+ html-webpack-plugin: 5.5.1(webpack@5.83.1(esbuild@0.18.4))
import-fresh: 3.3.0
leven: 3.1.0
lodash: 4.17.21
- mini-css-extract-plugin: 2.7.6(webpack@5.83.1)
+ mini-css-extract-plugin: 2.7.6(webpack@5.83.1(esbuild@0.18.4))
postcss: 8.4.23
- postcss-loader: 7.3.0(postcss@8.4.23)(webpack@5.83.1)
+ postcss-loader: 7.3.0(postcss@8.4.23)(webpack@5.83.1(esbuild@0.18.4))
prompts: 2.4.2
react: 17.0.2
- react-dev-utils: 12.0.1(eslint@8.49.0)(typescript@5.2.2)(webpack@5.83.1)
+ react-dev-utils: 12.0.1(eslint@8.49.0)(typescript@5.2.2)(webpack@5.83.1(esbuild@0.18.4))
react-dom: 17.0.2(react@17.0.2)
- react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2)
+ react-helmet-async: 1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
react-loadable: '@docusaurus/react-loadable@5.5.2(react@17.0.2)'
- react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.83.1)
+ react-loadable-ssr-addon-v5-slorber: 1.0.1(@docusaurus/react-loadable@5.5.2(react@17.0.2))(webpack@5.83.1(esbuild@0.18.4))
react-router: 5.3.4(react@17.0.2)
- react-router-config: 5.1.1(react-router@5.3.4)(react@17.0.2)
+ react-router-config: 5.1.1(react-router@5.3.4(react@17.0.2))(react@17.0.2)
react-router-dom: 5.3.4(react@17.0.2)
rtl-detect: 1.0.4
semver: 7.5.1
serve-handler: 6.1.5
shelljs: 0.8.5
- terser-webpack-plugin: 5.3.9(esbuild@0.18.4)(webpack@5.83.1)
+ terser-webpack-plugin: 5.3.9(esbuild@0.18.4)(webpack@5.83.1(esbuild@0.18.4))
tslib: 2.5.2
update-notifier: 5.1.0
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.83.1)
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.83.1(esbuild@0.18.4)))(webpack@5.83.1(esbuild@0.18.4))
wait-on: 6.0.1
webpack: 5.83.1(esbuild@0.18.4)
- webpack-bundle-analyzer: 4.8.0
- webpack-dev-server: 4.15.0(webpack@5.83.1)
+ webpack-bundle-analyzer: 4.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ webpack-dev-server: 4.15.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.83.1(esbuild@0.18.4))
webpack-merge: 5.9.0
- webpackbar: 5.0.2(webpack@5.83.1)
+ webpackbar: 5.0.2(webpack@5.83.1(esbuild@0.18.4))
transitivePeerDependencies:
- '@docusaurus/types'
- '@parcel/css'
@@ -11880,22 +12690,22 @@ snapshots:
cssnano-preset-advanced: 5.3.10(postcss@8.4.24)
postcss: 8.4.24
postcss-sort-media-queries: 4.4.1(postcss@8.4.24)
- tslib: 2.5.3
+ tslib: 2.6.2
'@docusaurus/logger@2.4.1':
dependencies:
chalk: 4.1.2
- tslib: 2.5.3
+ tslib: 2.6.2
- '@docusaurus/mdx-loader@2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)':
+ '@docusaurus/mdx-loader@2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
'@babel/parser': 7.22.5
'@babel/traverse': 7.22.5
'@docusaurus/logger': 2.4.1
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
'@mdx-js/mdx': 1.6.22
escape-html: 1.0.3
- file-loader: 6.2.0(webpack@5.83.1)
+ file-loader: 6.2.0(webpack@5.83.1(esbuild@0.18.4))
fs-extra: 10.1.0
image-size: 1.0.2
mdast-util-to-string: 2.0.0
@@ -11903,10 +12713,10 @@ snapshots:
react-dom: 17.0.2(react@17.0.2)
remark-emoji: 2.2.0
stringify-object: 3.3.0
- tslib: 2.5.3
+ tslib: 2.6.2
unified: 9.2.2
unist-util-visit: 2.0.3
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.83.1)
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.83.1(esbuild@0.18.4)))(webpack@5.83.1(esbuild@0.18.4))
webpack: 5.83.1(esbuild@0.18.4)
transitivePeerDependencies:
- '@docusaurus/types'
@@ -11916,17 +12726,17 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/module-type-aliases@2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)':
+ '@docusaurus/module-type-aliases@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
'@docusaurus/react-loadable': 5.5.2(react@17.0.2)
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
'@types/history': 4.7.11
'@types/react': 18.2.21
'@types/react-router-config': 5.0.7
'@types/react-router-dom': 5.3.3
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2)
+ react-helmet-async: 1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
react-loadable: '@docusaurus/react-loadable@5.5.2(react@17.0.2)'
transitivePeerDependencies:
- '@swc/core'
@@ -11934,15 +12744,15 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/plugin-content-blog@2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/plugin-content-blog@2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
'@docusaurus/logger': 2.4.1
- '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
- '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1)
- '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
+ '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))
+ '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
cheerio: 1.0.0-rc.12
feed: 4.2.2
fs-extra: 10.1.0
@@ -11950,7 +12760,7 @@ snapshots:
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
reading-time: 1.5.0
- tslib: 2.5.2
+ tslib: 2.6.2
unist-util-visit: 2.0.3
utility-types: 3.10.0
webpack: 5.83.1(esbuild@0.18.4)
@@ -11971,15 +12781,15 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-content-docs@2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/plugin-content-docs@2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
'@docusaurus/logger': 2.4.1
- '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/module-type-aliases': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
- '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/module-type-aliases': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
+ '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
'@types/react-router-config': 5.0.7
combine-promises: 1.1.0
fs-extra: 10.1.0
@@ -11988,7 +12798,7 @@ snapshots:
lodash: 4.17.21
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- tslib: 2.5.2
+ tslib: 2.6.2
utility-types: 3.10.0
webpack: 5.83.1(esbuild@0.18.4)
transitivePeerDependencies:
@@ -12008,17 +12818,17 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-content-pages@2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/plugin-content-pages@2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
- '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
+ '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
fs-extra: 10.1.0
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- tslib: 2.5.2
+ tslib: 2.6.2
webpack: 5.83.1(esbuild@0.18.4)
transitivePeerDependencies:
- '@parcel/css'
@@ -12037,16 +12847,16 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-debug@2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/plugin-debug@2.4.1(@types/react@18.2.21)(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
fs-extra: 10.1.0
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- react-json-view: 1.21.3(react-dom@17.0.2)(react@17.0.2)
- tslib: 2.5.2
+ react-json-view: 1.21.3(@types/react@18.2.21)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -12066,14 +12876,14 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-analytics@2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/plugin-google-analytics@2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- tslib: 2.5.2
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -12091,14 +12901,14 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-gtag@2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/plugin-google-gtag@2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- tslib: 2.5.2
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -12116,14 +12926,14 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-tag-manager@2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/plugin-google-tag-manager@2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- tslib: 2.5.2
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -12141,19 +12951,19 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-sitemap@2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/plugin-sitemap@2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
'@docusaurus/logger': 2.4.1
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
- '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1)
- '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
+ '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))
+ '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
fs-extra: 10.1.0
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
sitemap: 7.1.1
- tslib: 2.5.2
+ tslib: 2.6.2
transitivePeerDependencies:
- '@parcel/css'
- '@swc/core'
@@ -12171,21 +12981,21 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/preset-classic@2.4.1(@algolia/client-search@4.19.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
- dependencies:
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-content-blog': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-content-docs': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-content-pages': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-debug': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-google-analytics': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-google-gtag': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-google-tag-manager': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-sitemap': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/theme-classic': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/theme-search-algolia': 2.4.1(@algolia/client-search@4.19.1)(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
+ '@docusaurus/preset-classic@2.4.1(@algolia/client-search@4.17.1)(@types/react@18.2.21)(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-content-blog': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-content-docs': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-content-pages': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-debug': 2.4.1(@types/react@18.2.21)(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-google-analytics': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-google-gtag': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-google-tag-manager': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-sitemap': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/theme-classic': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/theme-search-algolia': 2.4.1(@algolia/client-search@4.17.1)(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@types/react@18.2.21)(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
transitivePeerDependencies:
@@ -12214,20 +13024,20 @@ snapshots:
prop-types: 15.8.1
react: 17.0.2
- '@docusaurus/theme-classic@2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/theme-classic@2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/module-type-aliases': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/plugin-content-blog': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-content-docs': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-content-pages': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/module-type-aliases': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/plugin-content-blog': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-content-docs': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-content-pages': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
'@docusaurus/theme-translations': 2.4.1
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
- '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1)
- '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
+ '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))
+ '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
'@mdx-js/react': 1.6.22(react@17.0.2)
clsx: 1.2.1
copy-text-to-clipboard: 3.1.0
@@ -12241,7 +13051,7 @@ snapshots:
react-dom: 17.0.2(react@17.0.2)
react-router-dom: 5.3.4(react@17.0.2)
rtlcss: 3.5.0
- tslib: 2.5.2
+ tslib: 2.6.2
utility-types: 3.10.0
transitivePeerDependencies:
- '@parcel/css'
@@ -12260,15 +13070,15 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/theme-common@2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/theme-common@2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/module-type-aliases': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/plugin-content-blog': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-content-docs': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/plugin-content-pages': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
- '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1)
+ '@docusaurus/mdx-loader': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/module-type-aliases': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/plugin-content-blog': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-content-docs': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/plugin-content-pages': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
+ '@docusaurus/utils-common': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))
'@types/history': 4.7.11
'@types/react': 18.2.21
'@types/react-router-config': 5.0.7
@@ -12277,7 +13087,7 @@ snapshots:
prism-react-renderer: 1.3.5(react@17.0.2)
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- tslib: 2.5.2
+ tslib: 2.6.2
use-sync-external-store: 1.2.0(react@17.0.2)
utility-types: 3.10.0
transitivePeerDependencies:
@@ -12298,16 +13108,16 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/theme-search-algolia@2.4.1(@algolia/client-search@4.19.1)(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)':
+ '@docusaurus/theme-search-algolia@2.4.1(@algolia/client-search@4.17.1)(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@types/react@18.2.21)(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)':
dependencies:
- '@docsearch/react': 3.3.5(@algolia/client-search@4.19.1)(react-dom@17.0.2)(react@17.0.2)
- '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
+ '@docsearch/react': 3.3.5(@algolia/client-search@4.17.1)(@types/react@18.2.21)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@docusaurus/core': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
'@docusaurus/logger': 2.4.1
- '@docusaurus/plugin-content-docs': 2.4.1(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
- '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.2.2)
+ '@docusaurus/plugin-content-docs': 2.4.1(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
+ '@docusaurus/theme-common': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(bufferutil@4.0.8)(esbuild@0.18.4)(eslint@8.49.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@5.2.2)(utf-8-validate@5.0.10)
'@docusaurus/theme-translations': 2.4.1
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
- '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
+ '@docusaurus/utils-validation': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
algoliasearch: 4.17.0
algoliasearch-helper: 3.13.0(algoliasearch@4.17.0)
clsx: 1.2.1
@@ -12316,7 +13126,7 @@ snapshots:
lodash: 4.17.21
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- tslib: 2.5.2
+ tslib: 2.6.2
utility-types: 3.10.0
transitivePeerDependencies:
- '@algolia/client-search'
@@ -12341,9 +13151,9 @@ snapshots:
'@docusaurus/theme-translations@2.4.1':
dependencies:
fs-extra: 10.1.0
- tslib: 2.5.2
+ tslib: 2.6.2
- '@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)':
+ '@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
'@types/history': 4.7.11
'@types/react': 18.2.21
@@ -12351,7 +13161,7 @@ snapshots:
joi: 17.9.2
react: 17.0.2
react-dom: 17.0.2(react@17.0.2)
- react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2)
+ react-helmet-async: 1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
utility-types: 3.10.0
webpack: 5.83.1(esbuild@0.18.4)
webpack-merge: 5.9.0
@@ -12361,18 +13171,19 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils-common@2.4.1(@docusaurus/types@2.4.1)':
+ '@docusaurus/utils-common@2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))':
dependencies:
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
- tslib: 2.5.3
+ tslib: 2.6.2
+ optionalDependencies:
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
- '@docusaurus/utils-validation@2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)':
+ '@docusaurus/utils-validation@2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)':
dependencies:
'@docusaurus/logger': 2.4.1
- '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)
+ '@docusaurus/utils': 2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)
joi: 17.9.2
js-yaml: 4.1.0
- tslib: 2.5.3
+ tslib: 2.6.2
transitivePeerDependencies:
- '@docusaurus/types'
- '@swc/core'
@@ -12381,13 +13192,12 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils@2.4.1(@docusaurus/types@2.4.1)(esbuild@0.18.4)':
+ '@docusaurus/utils@2.4.1(@docusaurus/types@2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(esbuild@0.18.4)':
dependencies:
'@docusaurus/logger': 2.4.1
- '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2)(react@17.0.2)
'@svgr/webpack': 6.5.1
escape-string-regexp: 4.0.0
- file-loader: 6.2.0(webpack@5.83.1)
+ file-loader: 6.2.0(webpack@5.83.1(esbuild@0.18.4))
fs-extra: 10.1.0
github-slugger: 1.5.0
globby: 11.1.0
@@ -12397,9 +13207,11 @@ snapshots:
micromatch: 4.0.5
resolve-pathname: 3.0.0
shelljs: 0.8.5
- tslib: 2.5.3
- url-loader: 4.1.1(file-loader@6.2.0)(webpack@5.83.1)
+ tslib: 2.6.2
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.83.1(esbuild@0.18.4)))(webpack@5.83.1(esbuild@0.18.4))
webpack: 5.83.1(esbuild@0.18.4)
+ optionalDependencies:
+ '@docusaurus/types': 2.4.1(esbuild@0.18.4)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
transitivePeerDependencies:
- '@swc/core'
- esbuild
@@ -12410,7 +13222,7 @@ snapshots:
'@emotion/babel-plugin@11.11.0':
dependencies:
'@babel/helper-module-imports': 7.21.4
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.24.1
'@emotion/hash': 0.9.1
'@emotion/memoize': 0.8.1
'@emotion/serialize': 1.1.2
@@ -12454,9 +13266,10 @@ snapshots:
'@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
'@emotion/utils': 1.2.1
'@emotion/weak-memoize': 0.3.1
- '@types/react': 18.2.21
hoist-non-react-statics: 3.3.2
react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
'@emotion/serialize@1.1.2':
dependencies:
@@ -12468,7 +13281,7 @@ snapshots:
'@emotion/sheet@1.2.2': {}
- '@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0)':
+ '@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0)':
dependencies:
'@babel/runtime': 7.22.5
'@emotion/babel-plugin': 11.11.0
@@ -12477,8 +13290,9 @@ snapshots:
'@emotion/serialize': 1.1.2
'@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
'@emotion/utils': 1.2.1
- '@types/react': 18.2.21
react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
'@emotion/unitless@0.8.1': {}
@@ -12659,13 +13473,31 @@ snapshots:
'@ethereumjs/util': 8.1.0
ethereum-cryptography: 2.1.2
+ '@ethereumjs/util@8.0.5':
+ dependencies:
+ '@chainsafe/ssz': 0.9.4
+ '@ethereumjs/rlp': 4.0.1
+ ethereum-cryptography: 1.2.0
+
'@ethereumjs/util@8.1.0':
dependencies:
'@ethereumjs/rlp': 4.0.1
ethereum-cryptography: 2.1.2
micro-ftch: 0.3.1
- '@ethersproject/abi@5.0.7':
+ '@ethersproject/abi@5.0.7':
+ dependencies:
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/constants': 5.7.0
+ '@ethersproject/hash': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/logger': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/strings': 5.7.0
+
+ '@ethersproject/abi@5.7.0':
dependencies:
'@ethersproject/address': 5.7.0
'@ethersproject/bignumber': 5.7.0
@@ -12788,34 +13620,51 @@ snapshots:
'@ethersproject/properties': 5.7.0
'@ethersproject/strings': 5.7.0
- '@graz-sh/style-guide@4.0.1(eslint@8.49.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2)':
+ '@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': {}
+
+ '@graz-sh/style-guide@4.0.1(@types/eslint@8.40.0)(eslint@8.49.0)(prettier@3.0.3)(tailwindcss@3.3.3)(typescript@5.2.2)':
dependencies:
'@babel/core': 7.22.15
'@babel/eslint-parser': 7.22.15(@babel/core@7.22.15)(eslint@8.49.0)
'@rushstack/eslint-patch': 1.3.3
- '@typescript-eslint/eslint-plugin': 6.6.0(@typescript-eslint/parser@6.6.0)(eslint@8.49.0)(typescript@5.2.2)
+ '@typescript-eslint/eslint-plugin': 6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2)
'@typescript-eslint/parser': 6.6.0(eslint@8.49.0)(typescript@5.2.2)
eslint: 8.49.0
eslint-config-prettier: 9.0.0(eslint@8.49.0)
- eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.28.1)
- eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.6.0)(eslint-plugin-import@2.28.1)(eslint@8.49.0)
+ eslint-import-resolver-alias: 1.1.2(eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0))
+ eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.49.0)
eslint-plugin-eslint-comments: 3.2.0(eslint@8.49.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.6.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0)
+ eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0)
eslint-plugin-jsx-a11y: 6.7.1(eslint@8.49.0)
eslint-plugin-prefer-arrow-functions: 3.1.4(eslint@8.49.0)
- eslint-plugin-prettier: 5.0.0(eslint-config-prettier@9.0.0)(eslint@8.49.0)(prettier@3.0.3)
+ eslint-plugin-prettier: 5.0.0(@types/eslint@8.40.0)(eslint-config-prettier@9.0.0(eslint@8.49.0))(eslint@8.49.0)(prettier@3.0.3)
eslint-plugin-react: 7.33.2(eslint@8.49.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.49.0)
eslint-plugin-simple-import-sort: 10.0.0(eslint@8.49.0)
eslint-plugin-tsdoc: 0.2.17
eslint-plugin-unicorn: 48.0.1(eslint@8.49.0)
- eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.6.0)(eslint@8.49.0)
+ eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)
prettier: 3.0.3
typescript: 5.2.2
optionalDependencies:
'@next/eslint-plugin-next': 13.4.19
- eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@6.6.0)(eslint@8.49.0)(typescript@5.2.2)
- eslint-plugin-playwright: 0.15.3(eslint-plugin-jest@27.2.3)(eslint@8.49.0)
+ eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2)
+ eslint-plugin-playwright: 0.15.3(eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)
eslint-plugin-tailwindcss: 3.13.0(tailwindcss@3.3.3)
eslint-plugin-testing-library: 6.0.1(eslint@8.49.0)(typescript@5.2.2)
transitivePeerDependencies:
@@ -12826,9 +13675,9 @@ snapshots:
- supports-color
- tailwindcss
- '@graz-sh/types@0.0.4(long@4.0.0)':
+ '@graz-sh/types@0.0.4(long@5.2.3)':
dependencies:
- long: 4.0.0
+ long: 5.2.3
'@hapi/hoek@9.3.0': {}
@@ -12968,57 +13817,84 @@ snapshots:
big-integer: 1.6.51
utility-types: 3.10.0
- '@leapwallet/buffer-boba@0.1.6(@cosmjs/proto-signing@0.30.1)(osmojs@15.2.1)(protobufjs@7.2.3)(stridejs@0.6.2)':
+ '@leapwallet/buffer-boba@0.1.6(@cosmjs/proto-signing@0.31.3)(osmojs@15.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(protobufjs@7.2.3)(stridejs@0.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))':
dependencies:
- '@cosmjs/proto-signing': 0.30.1
+ '@cosmjs/proto-signing': 0.31.3
base64js: 1.0.1
cosmjs-types: 0.8.0
long: 5.2.0
- osmojs: 15.2.1
+ osmojs: 15.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
protobufjs: 7.2.3
- stridejs: 0.6.2
+ stridejs: 0.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@leapwallet/cosmos-social-login-capsule-provider-ui@0.0.50(@cosmjs/proto-signing@0.30.1)(@types/react@18.2.21)(fp-ts@2.16.5)(framer-motion@10.16.4)(osmojs@15.2.1)(protobufjs@7.2.3)(react-dom@18.2.0)(stridejs@0.6.2)(zod@3.20.6)':
+ '@leapwallet/cosmos-social-login-capsule-provider-ui@0.0.58(@cosmjs/proto-signing@0.31.3)(@types/react-dom@18.2.7)(@types/react@18.2.21)(csstype@3.1.2)(osmojs@15.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(protobufjs@7.2.3)(react-dom@18.2.0(react@18.2.0))(stridejs@0.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(tailwindcss@3.3.3)(zod@3.23.8)':
dependencies:
- '@chakra-ui/react': 2.8.1(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.21)(framer-motion@10.16.4)(react-dom@18.2.0)(react@18.2.0)
'@cosmjs/amino': 0.31.3
'@emotion/react': 11.11.1(@types/react@18.2.21)(react@18.2.0)
- '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.21)(react@18.2.0)
+ '@emotion/styled': 11.11.0(@emotion/react@11.11.1(@types/react@18.2.21)(react@18.2.0))(@types/react@18.2.21)(react@18.2.0)
'@heroicons/react': 2.1.3(react@18.2.0)
- '@leapwallet/buffer-boba': 0.1.6(@cosmjs/proto-signing@0.30.1)(osmojs@15.2.1)(protobufjs@7.2.3)(stridejs@0.6.2)
+ '@leapwallet/buffer-boba': 0.1.6(@cosmjs/proto-signing@0.31.3)(osmojs@15.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10))(protobufjs@7.2.3)(stridejs@0.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))
'@leapwallet/cosmos-social-login-core': 0.0.1
- '@leapwallet/parser-parfait': 0.7.0(zod@3.20.6)
- '@usecapsule/web-sdk': 1.12.0(fp-ts@2.16.5)
- '@vanilla-extract/css': 1.14.2
+ '@leapwallet/parser-parfait': 0.7.0(zod@3.23.8)
+ '@leapwallet/react-ui': 1.9.10(@types/react-dom@18.2.7)(@types/react@18.2.21)(tailwindcss@3.3.3)
+ '@usecapsule/web-sdk': 1.26.1
axios: 1.6.8
bignumber.js: 9.1.2
classnames: 2.5.1
currency.js: 2.0.4
date-fns: 2.30.0
long: 5.2.3
- lottie-react: 2.4.0(react-dom@18.2.0)(react@18.2.0)
+ lottie-react: 2.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
qr-code-styling: 1.6.0-rc.1
react: 18.2.0
+ react-hot-toast: 2.4.1(csstype@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-loading-skeleton: 3.4.0(react@18.2.0)
swr: 2.2.5(react@18.2.0)
transitivePeerDependencies:
- '@cosmjs/proto-signing'
- '@types/react'
+ - '@types/react-dom'
+ - csstype
- debug
- - fp-ts
- - framer-motion
- osmojs
- protobufjs
- react-dom
- stridejs
+ - tailwindcss
- zod
- '@leapwallet/cosmos-social-login-capsule-provider@0.0.39(@cosmjs/encoding@0.31.3)(@cosmjs/proto-signing@0.31.0)(fp-ts@2.16.5)':
+ '@leapwallet/cosmos-social-login-capsule-provider@0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.0)(fp-ts@2.16.5)':
+ dependencies:
+ '@cosmjs/amino': 0.31.3
+ '@leapwallet/cosmos-social-login-core': 0.0.1
+ '@usecapsule/cosmjs-v0-integration': 1.24.1(@cosmjs/amino@0.31.3)(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.0)
+ '@usecapsule/web-sdk': 1.23.0(fp-ts@2.16.5)
+ long: 5.2.3
+ transitivePeerDependencies:
+ - '@cosmjs/encoding'
+ - '@cosmjs/proto-signing'
+ - debug
+ - fp-ts
+
+ '@leapwallet/cosmos-social-login-capsule-provider@0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)(fp-ts@2.1.1)':
+ dependencies:
+ '@cosmjs/amino': 0.31.3
+ '@leapwallet/cosmos-social-login-core': 0.0.1
+ '@usecapsule/cosmjs-v0-integration': 1.24.1(@cosmjs/amino@0.31.3)(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)
+ '@usecapsule/web-sdk': 1.23.0(fp-ts@2.1.1)
+ long: 5.2.3
+ transitivePeerDependencies:
+ - '@cosmjs/encoding'
+ - '@cosmjs/proto-signing'
+ - debug
+ - fp-ts
+
+ '@leapwallet/cosmos-social-login-capsule-provider@0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)(fp-ts@2.16.5)':
dependencies:
'@cosmjs/amino': 0.31.3
'@leapwallet/cosmos-social-login-core': 0.0.1
- '@usecapsule/cosmjs-v0-integration': 1.10.0(@cosmjs/amino@0.31.3)(@cosmjs/encoding@0.31.3)(@cosmjs/proto-signing@0.31.0)(fp-ts@2.16.5)
- '@usecapsule/web-sdk': 1.12.0(fp-ts@2.16.5)
+ '@usecapsule/cosmjs-v0-integration': 1.24.1(@cosmjs/amino@0.31.3)(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)
+ '@usecapsule/web-sdk': 1.23.0(fp-ts@2.16.5)
long: 5.2.3
transitivePeerDependencies:
- '@cosmjs/encoding'
@@ -13032,9 +13908,42 @@ snapshots:
'@cosmjs/proto-signing': 0.31.3
typescript: 5.2.2
- '@leapwallet/parser-parfait@0.7.0(zod@3.20.6)':
+ '@leapwallet/parser-parfait@0.7.0(zod@3.23.8)':
dependencies:
- zod: 3.20.6
+ zod: 3.23.8
+
+ '@leapwallet/react-ui@1.9.10(@types/react-dom@18.2.7)(@types/react@18.2.21)(tailwindcss@3.3.3)':
+ dependencies:
+ '@phosphor-icons/react': 2.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-accordion': 1.2.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-avatar': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-checkbox': 1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-dropdown-menu': 2.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-label': 2.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-popover': 1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-select': 2.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-separator': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-switch': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-tooltip': 1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ class-variance-authority: 0.7.0
+ clsx: 2.1.0
+ cmdk: 1.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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-resizable-panels: 2.0.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ sonner: 1.4.41(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ tailwind-merge: 2.2.1
+ tailwindcss-animate: 1.0.7(tailwindcss@3.3.3)
+ vaul: 0.9.4(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+ - tailwindcss
'@leichtgewicht/ip-codec@2.0.4': {}
@@ -13107,225 +14016,929 @@ snapshots:
'@metamask/rpc-errors@6.0.0':
dependencies:
- '@metamask/utils': 8.1.0
- fast-safe-stringify: 2.1.1
- transitivePeerDependencies:
- - supports-color
+ '@metamask/utils': 8.1.0
+ fast-safe-stringify: 2.1.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@metamask/safe-event-emitter@3.0.0': {}
+
+ '@metamask/utils@8.1.0':
+ dependencies:
+ '@ethereumjs/tx': 4.2.0
+ '@noble/hashes': 1.4.0
+ '@types/debug': 4.1.8
+ debug: 4.3.4
+ semver: 7.5.4
+ superstruct: 1.0.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@microsoft/tsdoc-config@0.16.2':
+ dependencies:
+ '@microsoft/tsdoc': 0.14.2
+ ajv: 6.12.6
+ jju: 1.4.0
+ resolve: 1.19.0
+
+ '@microsoft/tsdoc@0.14.2': {}
+
+ '@motionone/animation@10.15.1':
+ dependencies:
+ '@motionone/easing': 10.15.1
+ '@motionone/types': 10.15.1
+ '@motionone/utils': 10.15.1
+ tslib: 2.6.2
+
+ '@motionone/dom@10.16.2':
+ dependencies:
+ '@motionone/animation': 10.15.1
+ '@motionone/generators': 10.15.1
+ '@motionone/types': 10.15.1
+ '@motionone/utils': 10.15.1
+ hey-listen: 1.0.8
+ tslib: 2.6.2
+
+ '@motionone/easing@10.15.1':
+ dependencies:
+ '@motionone/utils': 10.15.1
+ tslib: 2.6.2
+
+ '@motionone/generators@10.15.1':
+ dependencies:
+ '@motionone/types': 10.15.1
+ '@motionone/utils': 10.15.1
+ tslib: 2.6.2
+
+ '@motionone/svelte@10.16.2':
+ dependencies:
+ '@motionone/dom': 10.16.2
+ tslib: 2.6.2
+
+ '@motionone/types@10.15.1': {}
+
+ '@motionone/utils@10.15.1':
+ dependencies:
+ '@motionone/types': 10.15.1
+ hey-listen: 1.0.8
+ tslib: 2.6.2
+
+ '@motionone/vue@10.16.2':
+ dependencies:
+ '@motionone/dom': 10.16.2
+ tslib: 2.6.2
+
+ '@next/env@13.4.19': {}
+
+ '@next/eslint-plugin-next@13.4.19':
+ dependencies:
+ glob: 7.1.7
+ optional: true
+
+ '@next/swc-darwin-arm64@13.4.19':
+ optional: true
+
+ '@next/swc-darwin-x64@13.4.19':
+ optional: true
+
+ '@next/swc-linux-arm64-gnu@13.4.19':
+ optional: true
+
+ '@next/swc-linux-arm64-musl@13.4.19':
+ optional: true
+
+ '@next/swc-linux-x64-gnu@13.4.19':
+ optional: true
+
+ '@next/swc-linux-x64-musl@13.4.19':
+ optional: true
+
+ '@next/swc-win32-arm64-msvc@13.4.19':
+ optional: true
+
+ '@next/swc-win32-ia32-msvc@13.4.19':
+ optional: true
+
+ '@next/swc-win32-x64-msvc@13.4.19':
+ optional: true
+
+ '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
+ dependencies:
+ eslint-scope: 5.1.1
+
+ '@noble/curves@1.1.0':
+ dependencies:
+ '@noble/hashes': 1.3.1
+
+ '@noble/hashes@1.2.0': {}
+
+ '@noble/hashes@1.3.1': {}
+
+ '@noble/hashes@1.3.2': {}
+
+ '@noble/hashes@1.4.0': {}
+
+ '@noble/hashes@1.5.0': {}
+
+ '@noble/secp256k1@1.7.1': {}
+
+ '@nodelib/fs.scandir@2.1.5':
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ run-parallel: 1.2.0
+
+ '@nodelib/fs.stat@2.0.5': {}
+
+ '@nodelib/fs.walk@1.2.8':
+ dependencies:
+ '@nodelib/fs.scandir': 2.1.5
+ fastq: 1.15.0
+
+ '@osmonauts/helpers@0.6.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@cosmjs/amino': 0.28.13
+ '@cosmjs/crypto': 0.28.13
+ '@cosmjs/proto-signing': 0.28.13
+ '@cosmjs/stargate': 0.28.13(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ cosmjs-types: 0.5.1
+ long: 5.2.3
+ protobufjs: 6.11.3
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - utf-8-validate
+
+ '@osmonauts/lcd@0.10.0':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ axios: 0.27.2
+ transitivePeerDependencies:
+ - debug
+
+ '@osmonauts/lcd@0.6.0':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ axios: 0.27.2
+ transitivePeerDependencies:
+ - debug
+
+ '@phosphor-icons/react@2.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ '@pkgr/utils@2.4.2':
+ dependencies:
+ cross-spawn: 7.0.3
+ fast-glob: 3.3.1
+ is-glob: 4.0.3
+ open: 9.1.0
+ picocolors: 1.0.0
+ tslib: 2.6.2
+
+ '@polka/url@1.0.0-next.21': {}
+
+ '@popperjs/core@2.11.8': {}
+
+ '@protobufjs/aspromise@1.1.2': {}
+
+ '@protobufjs/base64@1.1.2': {}
+
+ '@protobufjs/codegen@2.0.4': {}
+
+ '@protobufjs/eventemitter@1.1.0': {}
+
+ '@protobufjs/fetch@1.1.0':
+ dependencies:
+ '@protobufjs/aspromise': 1.1.2
+ '@protobufjs/inquire': 1.1.0
+
+ '@protobufjs/float@1.0.2': {}
+
+ '@protobufjs/inquire@1.1.0': {}
+
+ '@protobufjs/path@1.1.2': {}
+
+ '@protobufjs/pool@1.1.0': {}
+
+ '@protobufjs/utf8@1.1.0': {}
+
+ '@radix-ui/number@1.1.0': {}
+
+ '@radix-ui/primitive@1.0.1':
+ dependencies:
+ '@babel/runtime': 7.24.1
+
+ '@radix-ui/primitive@1.1.0': {}
+
+ '@radix-ui/react-accordion@1.2.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-collapsible': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-collection': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@metamask/safe-event-emitter@3.0.0': {}
+ '@radix-ui/react-arrow@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(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.21
+ '@types/react-dom': 18.2.7
- '@metamask/utils@8.1.0':
+ '@radix-ui/react-avatar@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@ethereumjs/tx': 4.2.0
- '@noble/hashes': 1.3.2
- '@types/debug': 4.1.8
- debug: 4.3.4
- semver: 7.5.4
- superstruct: 1.0.3
- transitivePeerDependencies:
- - supports-color
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-checkbox@1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-collapsible@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@microsoft/tsdoc-config@0.16.2':
+ '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@microsoft/tsdoc': 0.14.2
- ajv: 6.12.6
- jju: 1.4.0
- resolve: 1.19.0
+ '@babel/runtime': 7.24.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@microsoft/tsdoc@0.14.2': {}
+ '@radix-ui/react-collection@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@motionone/animation@10.15.1':
+ '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.21)(react@18.2.0)':
dependencies:
- '@motionone/easing': 10.15.1
- '@motionone/types': 10.15.1
- '@motionone/utils': 10.15.1
- tslib: 2.6.2
+ '@babel/runtime': 7.24.1
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@motionone/dom@10.16.2':
+ '@radix-ui/react-compose-refs@1.1.0(@types/react@18.2.21)(react@18.2.0)':
dependencies:
- '@motionone/animation': 10.15.1
- '@motionone/generators': 10.15.1
- '@motionone/types': 10.15.1
- '@motionone/utils': 10.15.1
- hey-listen: 1.0.8
- tslib: 2.6.2
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@motionone/easing@10.15.1':
+ '@radix-ui/react-context@1.0.1(@types/react@18.2.21)(react@18.2.0)':
dependencies:
- '@motionone/utils': 10.15.1
- tslib: 2.6.2
+ '@babel/runtime': 7.24.1
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@motionone/generators@10.15.1':
+ '@radix-ui/react-context@1.1.0(@types/react@18.2.21)(react@18.2.0)':
dependencies:
- '@motionone/types': 10.15.1
- '@motionone/utils': 10.15.1
- tslib: 2.6.2
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@motionone/svelte@10.16.2':
+ '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@motionone/dom': 10.16.2
- tslib: 2.6.2
+ '@babel/runtime': 7.24.1
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ aria-hidden: 1.2.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.21)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-dialog@1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ aria-hidden: 1.2.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.7(@types/react@18.2.21)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@motionone/types@10.15.1': {}
+ '@radix-ui/react-direction@1.0.1(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@motionone/utils@10.15.1':
+ '@radix-ui/react-direction@1.1.0(@types/react@18.2.21)(react@18.2.0)':
dependencies:
- '@motionone/types': 10.15.1
- hey-listen: 1.0.8
- tslib: 2.6.2
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@motionone/vue@10.16.2':
+ '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@motionone/dom': 10.16.2
- tslib: 2.6.2
+ '@babel/runtime': 7.24.1
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@next/env@13.4.19': {}
+ '@radix-ui/react-dismissable-layer@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@next/eslint-plugin-next@13.4.19':
+ '@radix-ui/react-dropdown-menu@2.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- glob: 7.1.7
- optional: true
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-menu': 2.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@next/swc-darwin-arm64@13.4.19':
- optional: true
+ '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@next/swc-darwin-x64@13.4.19':
- optional: true
+ '@radix-ui/react-focus-guards@1.1.0(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@next/swc-linux-arm64-gnu@13.4.19':
- optional: true
+ '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@next/swc-linux-arm64-musl@13.4.19':
- optional: true
+ '@radix-ui/react-focus-scope@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@next/swc-linux-x64-gnu@13.4.19':
- optional: true
+ '@radix-ui/react-id@1.0.1(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@next/swc-linux-x64-musl@13.4.19':
- optional: true
+ '@radix-ui/react-id@1.1.0(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@next/swc-win32-arm64-msvc@13.4.19':
- optional: true
+ '@radix-ui/react-label@2.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(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.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-menu@2.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ aria-hidden: 1.2.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.7(@types/react@18.2.21)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-popover@1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ aria-hidden: 1.2.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.7(@types/react@18.2.21)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-popper@1.2.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.2.21)(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.21
+ '@types/react-dom': 18.2.7
- '@next/swc-win32-ia32-msvc@13.4.19':
- optional: true
+ '@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21
+ '@types/react-dom': 18.2.7
- '@next/swc-win32-x64-msvc@13.4.19':
- optional: true
+ '@radix-ui/react-portal@1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
+ '@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- eslint-scope: 5.1.1
+ '@babel/runtime': 7.24.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@noble/curves@1.1.0':
+ '@radix-ui/react-presence@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@noble/hashes': 1.3.1
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@noble/hashes@1.3.1': {}
+ '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@noble/hashes@1.3.2': {}
+ '@radix-ui/react-primitive@2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-radio-group@1.2.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@noble/hashes@1.4.0': {}
+ '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-roving-focus@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-scroll-area@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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-compose-refs': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-select@2.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ aria-hidden: 1.2.3
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-remove-scroll: 2.5.7(@types/react@18.2.21)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@nodelib/fs.scandir@2.1.5':
+ '@radix-ui/react-separator@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@nodelib/fs.stat': 2.0.5
- run-parallel: 1.2.0
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21
+ '@types/react-dom': 18.2.7
- '@nodelib/fs.stat@2.0.5': {}
+ '@radix-ui/react-slot@1.0.2(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@nodelib/fs.walk@1.2.8':
+ '@radix-ui/react-slot@1.1.0(@types/react@18.2.21)(react@18.2.0)':
dependencies:
- '@nodelib/fs.scandir': 2.1.5
- fastq: 1.15.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@osmonauts/helpers@0.6.0':
+ '@radix-ui/react-switch@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.24.1
- '@cosmjs/amino': 0.28.13
- '@cosmjs/crypto': 0.28.13
- '@cosmjs/proto-signing': 0.28.13
- '@cosmjs/stargate': 0.28.13
- cosmjs-types: 0.5.1
- long: 5.2.3
- protobufjs: 6.11.3
- transitivePeerDependencies:
- - bufferutil
- - debug
- - utf-8-validate
+ '@radix-ui/primitive': 1.1.0
+ '@radix-ui/react-compose-refs': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
- '@osmonauts/lcd@0.10.0':
+ '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@babel/runtime': 7.24.1
- axios: 0.27.2
- transitivePeerDependencies:
- - debug
+ '@radix-ui/primitive': 1.0.1
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ '@types/react-dom': 18.2.7
+
+ '@radix-ui/react-tooltip@1.1.2(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21)(react@18.2.0)
+ '@radix-ui/react-context': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-popper': 1.2.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-portal': 1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-presence': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-slot': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.21
+ '@types/react-dom': 18.2.7
- '@osmonauts/lcd@0.6.0':
+ '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.21)(react@18.2.0)':
dependencies:
'@babel/runtime': 7.24.1
- axios: 0.27.2
- transitivePeerDependencies:
- - debug
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@pkgr/utils@2.4.2':
+ '@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.2.21)(react@18.2.0)':
dependencies:
- cross-spawn: 7.0.3
- fast-glob: 3.3.1
- is-glob: 4.0.3
- open: 9.1.0
- picocolors: 1.0.0
- tslib: 2.6.2
-
- '@polka/url@1.0.0-next.21': {}
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@popperjs/core@2.11.8': {}
+ '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@protobufjs/aspromise@1.1.2': {}
+ '@radix-ui/react-use-controllable-state@1.1.0(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@protobufjs/base64@1.1.2': {}
+ '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@protobufjs/codegen@2.0.4': {}
+ '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@protobufjs/eventemitter@1.1.0': {}
+ '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.24.1
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@protobufjs/fetch@1.1.0':
+ '@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.2.21)(react@18.2.0)':
dependencies:
- '@protobufjs/aspromise': 1.1.2
- '@protobufjs/inquire': 1.1.0
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@protobufjs/float@1.0.2': {}
+ '@radix-ui/react-use-previous@1.1.0(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@protobufjs/inquire@1.1.0': {}
+ '@radix-ui/react-use-rect@1.1.0(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/rect': 1.1.0
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@protobufjs/path@1.1.2': {}
+ '@radix-ui/react-use-size@1.1.0(@types/react@18.2.21)(react@18.2.0)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@18.2.21)(react@18.2.0)
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.2.21
- '@protobufjs/pool@1.1.0': {}
+ '@radix-ui/react-visually-hidden@1.1.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(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.2.7)(@types/react@18.2.21)(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.21
+ '@types/react-dom': 18.2.7
- '@protobufjs/utf8@1.1.0': {}
+ '@radix-ui/rect@1.1.0': {}
- '@rollup/plugin-inject@5.0.3':
+ '@rollup/plugin-inject@5.0.3(rollup@3.29.0)':
dependencies:
- '@rollup/pluginutils': 5.0.2
+ '@rollup/pluginutils': 5.0.2(rollup@3.29.0)
estree-walker: 2.0.2
magic-string: 0.27.0
+ optionalDependencies:
+ rollup: 3.29.0
- '@rollup/pluginutils@5.0.2':
+ '@rollup/pluginutils@5.0.2(rollup@3.29.0)':
dependencies:
'@types/estree': 1.0.1
estree-walker: 2.0.2
picomatch: 2.3.1
+ optionalDependencies:
+ rollup: 3.29.0
'@rushstack/eslint-patch@1.3.3': {}
'@scure/base@1.1.3': {}
+ '@scure/bip32@1.1.5':
+ dependencies:
+ '@noble/hashes': 1.2.0
+ '@noble/secp256k1': 1.7.1
+ '@scure/base': 1.1.3
+
'@scure/bip32@1.3.1':
dependencies:
'@noble/curves': 1.1.0
'@noble/hashes': 1.3.2
'@scure/base': 1.1.3
+ '@scure/bip39@1.1.1':
+ dependencies:
+ '@noble/hashes': 1.2.0
+ '@scure/base': 1.1.3
+
'@scure/bip39@1.2.1':
dependencies:
'@noble/hashes': 1.3.2
@@ -13528,11 +15141,13 @@ snapshots:
'@tanstack/query-core@4.35.0': {}
- '@tanstack/react-query@4.35.0(react@18.2.0)':
+ '@tanstack/react-query@4.35.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@tanstack/query-core': 4.35.0
react: 18.2.0
use-sync-external-store: 1.2.0(react@18.2.0)
+ optionalDependencies:
+ react-dom: 18.2.0(react@18.2.0)
'@terra-money/feather.js@3.0.0-beta.2':
dependencies:
@@ -13557,10 +15172,11 @@ snapshots:
transitivePeerDependencies:
- debug
- '@terra-money/station-connector@1.1.0(@terra-money/feather.js@3.0.0-beta.2)(axios@0.27.2)':
+ '@terra-money/station-connector@1.1.0(@cosmjs/amino@0.31.3)(@terra-money/feather.js@3.0.0-beta.2)(axios@1.6.8)':
dependencies:
+ '@cosmjs/amino': 0.31.3
'@terra-money/feather.js': 3.0.0-beta.2
- axios: 0.27.2
+ axios: 1.6.8
bech32: 2.0.0
'@terra-money/terra.proto@0.1.7':
@@ -13793,7 +15409,7 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.0
- '@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0)(eslint@8.49.0)(typescript@5.2.2)':
+ '@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2)':
dependencies:
'@eslint-community/regexpp': 4.8.0
'@typescript-eslint/parser': 6.6.0(eslint@8.49.0)(typescript@5.2.2)
@@ -13808,6 +15424,7 @@ snapshots:
natural-compare: 1.4.0
semver: 7.5.4
ts-api-utils: 1.0.2(typescript@5.2.2)
+ optionalDependencies:
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
@@ -13820,6 +15437,7 @@ snapshots:
'@typescript-eslint/visitor-keys': 6.6.0
debug: 4.3.4
eslint: 8.49.0
+ optionalDependencies:
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
@@ -13842,6 +15460,7 @@ snapshots:
debug: 4.3.4
eslint: 8.49.0
ts-api-utils: 1.0.2(typescript@5.2.2)
+ optionalDependencies:
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
@@ -13860,6 +15479,7 @@ snapshots:
is-glob: 4.0.3
semver: 7.5.4
tsutils: 3.21.0(typescript@5.2.2)
+ optionalDependencies:
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
@@ -13874,6 +15494,7 @@ snapshots:
is-glob: 4.0.3
semver: 7.5.4
ts-api-utils: 1.0.2(typescript@5.2.2)
+ optionalDependencies:
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
@@ -13919,39 +15540,82 @@ snapshots:
'@typescript-eslint/types': 6.6.0
eslint-visitor-keys: 3.4.3
- '@usecapsule/core-sdk@1.10.0(fp-ts@2.16.5)':
+ '@usecapsule/core-sdk@1.21.0(fp-ts@2.1.1)':
+ dependencies:
+ '@celo/utils': 3.2.0(fp-ts@2.1.1)
+ '@usecapsule/user-management-client': 1.18.0
+ base64url: 3.0.1
+ buffer: 6.0.3
+ ethereumjs-util: 7.1.5
+ libphonenumber-js: 1.11.2
+ node-forge: 1.3.1
+ transitivePeerDependencies:
+ - debug
+ - fp-ts
+
+ '@usecapsule/core-sdk@1.21.0(fp-ts@2.16.5)':
dependencies:
'@celo/utils': 3.2.0(fp-ts@2.16.5)
- '@usecapsule/user-management-client': 1.7.0
+ '@usecapsule/user-management-client': 1.18.0
base64url: 3.0.1
buffer: 6.0.3
ethereumjs-util: 7.1.5
+ libphonenumber-js: 1.11.2
node-forge: 1.3.1
transitivePeerDependencies:
- debug
- fp-ts
- '@usecapsule/cosmjs-v0-integration@1.10.0(@cosmjs/amino@0.31.3)(@cosmjs/encoding@0.31.3)(@cosmjs/proto-signing@0.31.0)(fp-ts@2.16.5)':
+ '@usecapsule/core-sdk@1.24.1':
+ dependencies:
+ '@celo/utils': 6.0.1
+ '@cosmjs/encoding': 0.32.4
+ '@noble/hashes': 1.5.0
+ '@usecapsule/user-management-client': 1.21.1
+ base64url: 3.0.1
+ buffer: 6.0.3
+ ethereumjs-util: 7.1.5
+ libphonenumber-js: 1.11.2
+ node-forge: 1.3.1
+ transitivePeerDependencies:
+ - debug
+
+ '@usecapsule/cosmjs-v0-integration@1.24.1(@cosmjs/amino@0.31.3)(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.0)':
dependencies:
'@cosmjs/amino': 0.31.3
- '@cosmjs/encoding': 0.31.3
+ '@cosmjs/encoding': 0.32.4
'@cosmjs/proto-signing': 0.31.0
- '@usecapsule/core-sdk': 1.10.0(fp-ts@2.16.5)
+ '@usecapsule/core-sdk': 1.24.1
+ transitivePeerDependencies:
+ - debug
+
+ '@usecapsule/cosmjs-v0-integration@1.24.1(@cosmjs/amino@0.31.3)(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)':
+ dependencies:
+ '@cosmjs/amino': 0.31.3
+ '@cosmjs/encoding': 0.32.4
+ '@cosmjs/proto-signing': 0.31.3
+ '@usecapsule/core-sdk': 1.24.1
+ transitivePeerDependencies:
+ - debug
+
+ '@usecapsule/user-management-client@1.18.0':
+ dependencies:
+ axios: 1.6.8
+ qs: 6.12.1
transitivePeerDependencies:
- debug
- - fp-ts
- '@usecapsule/user-management-client@1.7.0':
+ '@usecapsule/user-management-client@1.21.1':
dependencies:
axios: 1.6.8
qs: 6.12.1
transitivePeerDependencies:
- debug
- '@usecapsule/web-sdk@1.12.0(fp-ts@2.16.5)':
+ '@usecapsule/web-sdk@1.23.0(fp-ts@2.1.1)':
dependencies:
- '@usecapsule/core-sdk': 1.10.0(fp-ts@2.16.5)
- '@usecapsule/user-management-client': 1.7.0
+ '@usecapsule/core-sdk': 1.21.0(fp-ts@2.1.1)
+ '@usecapsule/user-management-client': 1.18.0
assert: 2.1.0
base64url: 3.0.1
buffer: 6.0.3
@@ -13961,41 +15625,50 @@ snapshots:
- debug
- fp-ts
- '@vanilla-extract/css@1.14.2':
+ '@usecapsule/web-sdk@1.23.0(fp-ts@2.16.5)':
dependencies:
- '@emotion/hash': 0.9.1
- '@vanilla-extract/private': 1.0.4
- chalk: 4.1.2
- css-what: 6.1.0
- cssesc: 3.0.0
- csstype: 3.1.2
- deep-object-diff: 1.1.9
- deepmerge: 4.3.1
- media-query-parser: 2.0.2
- modern-ahocorasick: 1.0.1
- outdent: 0.8.0
+ '@usecapsule/core-sdk': 1.21.0(fp-ts@2.16.5)
+ '@usecapsule/user-management-client': 1.18.0
+ assert: 2.1.0
+ base64url: 3.0.1
+ buffer: 6.0.3
+ cbor-web: 8.1.0
+ node-forge: 1.3.1
+ transitivePeerDependencies:
+ - debug
+ - fp-ts
- '@vanilla-extract/private@1.0.4': {}
+ '@usecapsule/web-sdk@1.26.1':
+ dependencies:
+ '@usecapsule/core-sdk': 1.24.1
+ '@usecapsule/user-management-client': 1.21.1
+ assert: 2.1.0
+ base64url: 3.0.1
+ buffer: 6.0.3
+ cbor-web: 8.1.0
+ node-forge: 1.3.1
+ transitivePeerDependencies:
+ - debug
'@vectis/extension-client@0.7.2': {}
- '@vitejs/plugin-react@4.0.4(vite@4.4.9)':
+ '@vitejs/plugin-react@4.0.4(vite@4.4.9(@types/node@18.17.15)(terser@5.17.6))':
dependencies:
'@babel/core': 7.22.15
'@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.15)
'@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.15)
react-refresh: 0.14.0
- vite: 4.4.9(@types/node@18.17.15)
+ vite: 4.4.9(@types/node@18.17.15)(terser@5.17.6)
transitivePeerDependencies:
- supports-color
- '@walletconnect/core@2.10.0':
+ '@walletconnect/core@2.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/heartbeat': 1.2.1
'@walletconnect/jsonrpc-provider': 1.0.13
'@walletconnect/jsonrpc-types': 1.0.3
'@walletconnect/jsonrpc-utils': 1.0.8
- '@walletconnect/jsonrpc-ws-connection': 1.0.13
+ '@walletconnect/jsonrpc-ws-connection': 1.0.13(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@walletconnect/keyvaluestorage': 1.0.2
'@walletconnect/logger': 2.0.1
'@walletconnect/relay-api': 1.0.9
@@ -14045,7 +15718,7 @@ snapshots:
'@walletconnect/jsonrpc-types': 1.0.3
tslib: 1.14.1
- '@walletconnect/jsonrpc-ws-connection@1.0.13':
+ '@walletconnect/jsonrpc-ws-connection@1.0.13(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/safe-json': 1.0.2
@@ -14084,9 +15757,9 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/sign-client@2.10.0':
+ '@walletconnect/sign-client@2.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/core': 2.10.0
+ '@walletconnect/core': 2.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.1
'@walletconnect/jsonrpc-utils': 1.0.8
@@ -14284,7 +15957,7 @@ snapshots:
indent-string: 4.0.0
ajv-formats@2.1.1(ajv@8.12.0):
- dependencies:
+ optionalDependencies:
ajv: 8.12.0
ajv-keywords@3.5.2(ajv@6.12.6):
@@ -14377,7 +16050,7 @@ snapshots:
array-buffer-byte-length@1.0.0:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
is-array-buffer: 3.0.2
array-flatten@1.1.1: {}
@@ -14386,51 +16059,51 @@ snapshots:
array-includes@3.1.7:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
is-string: 1.0.7
array-union@2.1.0: {}
array.prototype.findlastindex@1.2.3:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
es-shim-unscopables: 1.0.0
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
array.prototype.flat@1.3.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
es-shim-unscopables: 1.0.0
array.prototype.flatmap@1.3.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
es-shim-unscopables: 1.0.0
array.prototype.tosorted@1.1.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
es-shim-unscopables: 1.0.0
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
arraybuffer.prototype.slice@1.0.2:
dependencies:
array-buffer-byte-length: 1.0.0
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
is-array-buffer: 3.0.2
is-shared-array-buffer: 1.0.2
@@ -14525,7 +16198,7 @@ snapshots:
dependencies:
dequal: 2.0.3
- babel-loader@8.3.0(@babel/core@7.21.8)(webpack@5.83.1):
+ babel-loader@8.3.0(@babel/core@7.21.8)(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
'@babel/core': 7.21.8
find-cache-dir: 3.3.2
@@ -14550,7 +16223,7 @@ snapshots:
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.24.1
cosmiconfig: 7.1.0
resolve: 1.22.2
@@ -14648,7 +16321,7 @@ snapshots:
bip39@3.1.0:
dependencies:
- '@noble/hashes': 1.3.2
+ '@noble/hashes': 1.4.0
blakejs@1.2.1: {}
@@ -14854,11 +16527,6 @@ snapshots:
normalize-url: 4.5.1
responselike: 1.0.2
- call-bind@1.0.2:
- dependencies:
- function-bind: 1.1.1
- get-intrinsic: 1.2.1
-
call-bind@1.0.7:
dependencies:
es-define-property: 1.0.0
@@ -14872,7 +16540,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.5.3
+ tslib: 2.6.2
camelcase-css@2.0.1: {}
@@ -14893,6 +16561,8 @@ snapshots:
caniuse-lite@1.0.30001528: {}
+ case@1.6.3: {}
+
cbor-web@8.1.0: {}
ccount@1.1.0: {}
@@ -14956,7 +16626,6 @@ snapshots:
readdirp: 3.6.0
optionalDependencies:
fsevents: 2.3.3
- optional: true
chrome-trace-event@1.0.3: {}
@@ -14969,6 +16638,10 @@ snapshots:
inherits: 2.0.4
safe-buffer: 5.2.1
+ class-variance-authority@0.7.0:
+ dependencies:
+ clsx: 2.0.0
+
classnames@2.5.1: {}
clean-css@5.3.2:
@@ -15013,6 +16686,18 @@ snapshots:
clsx@2.0.0: {}
+ clsx@2.1.0: {}
+
+ cmdk@1.0.0(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.7)(@types/react@18.2.21)(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)
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+
collapse-white-space@1.0.6: {}
color-convert@1.9.3:
@@ -15110,7 +16795,7 @@ snapshots:
dependencies:
toggle-selection: 1.0.6
- copy-webpack-plugin@11.0.0(webpack@5.83.1):
+ copy-webpack-plugin@11.0.0(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
fast-glob: 3.3.1
glob-parent: 6.0.2
@@ -15253,7 +16938,7 @@ snapshots:
dependencies:
postcss: 8.4.24
- css-loader@6.7.4(webpack@5.83.1):
+ css-loader@6.7.4(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
icss-utils: 5.1.0(postcss@8.4.24)
postcss: 8.4.24
@@ -15265,17 +16950,18 @@ snapshots:
semver: 7.5.2
webpack: 5.83.1(esbuild@0.18.4)
- css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.2)(esbuild@0.18.4)(webpack@5.83.1):
+ css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.2)(esbuild@0.18.4)(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
- clean-css: 5.3.2
cssnano: 5.1.15(postcss@8.4.24)
- esbuild: 0.18.4
jest-worker: 29.5.0
postcss: 8.4.24
schema-utils: 4.0.1
serialize-javascript: 6.0.1
source-map: 0.6.1
webpack: 5.83.1(esbuild@0.18.4)
+ optionalDependencies:
+ clean-css: 5.3.2
+ esbuild: 0.18.4
css-select@4.3.0:
dependencies:
@@ -15440,8 +17126,6 @@ snapshots:
deep-is@0.1.4: {}
- deep-object-diff@1.1.9: {}
-
deepmerge@4.3.1: {}
default-browser-id@3.0.0:
@@ -15474,7 +17158,7 @@ snapshots:
define-properties@1.2.0:
dependencies:
- has-property-descriptors: 1.0.0
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
del@6.1.1:
@@ -15529,8 +17213,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- didyoumean@1.2.2:
- optional: true
+ didyoumean@1.2.2: {}
diffie-hellman@5.0.3:
dependencies:
@@ -15544,8 +17227,7 @@ snapshots:
dependencies:
path-type: 4.0.0
- dlv@1.1.3:
- optional: true
+ dlv@1.1.3: {}
dns-equal@1.0.0: {}
@@ -15682,16 +17364,16 @@ snapshots:
array-buffer-byte-length: 1.0.0
arraybuffer.prototype.slice: 1.0.2
available-typed-arrays: 1.0.5
- call-bind: 1.0.2
+ call-bind: 1.0.7
es-set-tostringtag: 2.0.1
es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
get-symbol-description: 1.0.0
globalthis: 1.0.3
gopd: 1.0.1
has: 1.0.3
- has-property-descriptors: 1.0.0
+ has-property-descriptors: 1.0.2
has-proto: 1.0.1
has-symbols: 1.0.3
internal-slot: 1.0.5
@@ -15703,7 +17385,7 @@ snapshots:
is-string: 1.0.7
is-typed-array: 1.1.12
is-weakref: 1.0.2
- object-inspect: 1.12.3
+ object-inspect: 1.13.1
object-keys: 1.1.1
object.assign: 4.1.4
regexp.prototype.flags: 1.5.0
@@ -15728,14 +17410,14 @@ snapshots:
es-iterator-helpers@1.0.14:
dependencies:
asynciterator.prototype: 1.0.0
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
es-set-tostringtag: 2.0.1
- function-bind: 1.1.1
- get-intrinsic: 1.2.1
+ function-bind: 1.1.2
+ get-intrinsic: 1.2.4
globalthis: 1.0.3
- has-property-descriptors: 1.0.0
+ has-property-descriptors: 1.0.2
has-proto: 1.0.1
has-symbols: 1.0.3
internal-slot: 1.0.5
@@ -15746,7 +17428,7 @@ snapshots:
es-set-tostringtag@2.0.1:
dependencies:
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
has: 1.0.3
has-tostringtag: 1.0.0
@@ -15826,9 +17508,9 @@ snapshots:
dependencies:
eslint: 8.49.0
- eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.28.1):
+ eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0)):
dependencies:
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.6.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0)
+ eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0)
eslint-import-resolver-node@0.3.9:
dependencies:
@@ -15838,13 +17520,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@6.6.0)(eslint-plugin-import@2.28.1)(eslint@8.49.0):
+ eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.49.0):
dependencies:
debug: 4.3.4
enhanced-resolve: 5.15.0
eslint: 8.49.0
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.6.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0)
- eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.6.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.49.0))(eslint@8.49.0)
+ eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0)
fast-glob: 3.3.1
get-tsconfig: 4.7.0
is-core-module: 2.13.0
@@ -15855,13 +17537,14 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.8.0(@typescript-eslint/parser@6.6.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0):
+ eslint-module-utils@2.8.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.49.0))(eslint@8.49.0):
dependencies:
+ debug: 3.2.7
+ optionalDependencies:
'@typescript-eslint/parser': 6.6.0(eslint@8.49.0)(typescript@5.2.2)
- debug: 3.2.7
eslint: 8.49.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.6.0)(eslint-plugin-import@2.28.1)(eslint@8.49.0)
+ eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.49.0)
transitivePeerDependencies:
- supports-color
@@ -15871,9 +17554,8 @@ snapshots:
eslint: 8.49.0
ignore: 5.2.4
- eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.6.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0):
+ eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0):
dependencies:
- '@typescript-eslint/parser': 6.6.0(eslint@8.49.0)(typescript@5.2.2)
array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2
@@ -15882,7 +17564,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.49.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.6.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.49.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.49.0))(eslint@8.49.0)
has: 1.0.3
is-core-module: 2.13.0
is-glob: 4.0.3
@@ -15892,16 +17574,19 @@ snapshots:
object.values: 1.1.7
semver: 6.3.1
tsconfig-paths: 3.14.2
+ optionalDependencies:
+ '@typescript-eslint/parser': 6.6.0(eslint@8.49.0)(typescript@5.2.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.6.0)(eslint@8.49.0)(typescript@5.2.2):
+ eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2):
dependencies:
- '@typescript-eslint/eslint-plugin': 6.6.0(@typescript-eslint/parser@6.6.0)(eslint@8.49.0)(typescript@5.2.2)
'@typescript-eslint/utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2)
eslint: 8.49.0
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2)
transitivePeerDependencies:
- supports-color
- typescript
@@ -15909,7 +17594,7 @@ snapshots:
eslint-plugin-jsx-a11y@6.7.1(eslint@8.49.0):
dependencies:
- '@babel/runtime': 7.22.15
+ '@babel/runtime': 7.24.1
aria-query: 5.3.0
array-includes: 3.1.7
array.prototype.flatmap: 1.3.2
@@ -15927,23 +17612,26 @@ snapshots:
object.fromentries: 2.0.7
semver: 6.3.1
- eslint-plugin-playwright@0.15.3(eslint-plugin-jest@27.2.3)(eslint@8.49.0):
+ eslint-plugin-playwright@0.15.3(eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0):
dependencies:
eslint: 8.49.0
- eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@6.6.0)(eslint@8.49.0)(typescript@5.2.2)
+ optionalDependencies:
+ eslint-plugin-jest: 27.2.3(@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2)
optional: true
eslint-plugin-prefer-arrow-functions@3.1.4(eslint@8.49.0):
dependencies:
eslint: 8.49.0
- eslint-plugin-prettier@5.0.0(eslint-config-prettier@9.0.0)(eslint@8.49.0)(prettier@3.0.3):
+ eslint-plugin-prettier@5.0.0(@types/eslint@8.40.0)(eslint-config-prettier@9.0.0(eslint@8.49.0))(eslint@8.49.0)(prettier@3.0.3):
dependencies:
eslint: 8.49.0
- eslint-config-prettier: 9.0.0(eslint@8.49.0)
prettier: 3.0.3
prettier-linter-helpers: 1.0.0
synckit: 0.8.5
+ optionalDependencies:
+ '@types/eslint': 8.40.0
+ eslint-config-prettier: 9.0.0(eslint@8.49.0)
eslint-plugin-react-hooks@4.6.0(eslint@8.49.0):
dependencies:
@@ -16013,11 +17701,12 @@ snapshots:
semver: 7.5.4
strip-indent: 3.0.0
- eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.6.0)(eslint@8.49.0):
+ eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0):
dependencies:
- '@typescript-eslint/eslint-plugin': 6.6.0(@typescript-eslint/parser@6.6.0)(eslint@8.49.0)(typescript@5.2.2)
eslint: 8.49.0
eslint-rule-composer: 0.3.0
+ optionalDependencies:
+ '@typescript-eslint/eslint-plugin': 6.6.0(@typescript-eslint/parser@6.6.0(eslint@8.49.0)(typescript@5.2.2))(eslint@8.49.0)(typescript@5.2.2)
eslint-rule-composer@0.3.0: {}
@@ -16133,6 +17822,13 @@ snapshots:
secp256k1: 4.0.3
setimmediate: 1.0.5
+ ethereum-cryptography@1.2.0:
+ dependencies:
+ '@noble/hashes': 1.2.0
+ '@noble/secp256k1': 1.7.1
+ '@scure/bip32': 1.1.5
+ '@scure/bip39': 1.1.1
+
ethereum-cryptography@2.1.2:
dependencies:
'@noble/curves': 1.1.0
@@ -16312,7 +18008,7 @@ snapshots:
dependencies:
flat-cache: 3.1.0
- file-loader@6.2.0(webpack@5.83.1):
+ file-loader@6.2.0(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.1.2
@@ -16388,7 +18084,7 @@ snapshots:
dependencies:
is-callable: 1.2.7
- fork-ts-checker-webpack-plugin@6.5.3(eslint@8.49.0)(typescript@5.2.2)(webpack@5.83.1):
+ fork-ts-checker-webpack-plugin@6.5.3(eslint@8.49.0)(typescript@5.2.2)(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
'@babel/code-frame': 7.22.5
'@types/json-schema': 7.0.11
@@ -16396,7 +18092,6 @@ snapshots:
chokidar: 3.5.3
cosmiconfig: 6.0.0
deepmerge: 4.3.1
- eslint: 8.49.0
fs-extra: 9.1.0
glob: 7.2.3
memfs: 3.5.1
@@ -16406,6 +18101,8 @@ snapshots:
tapable: 1.1.3
typescript: 5.2.2
webpack: 5.83.1(esbuild@0.18.4)
+ optionalDependencies:
+ eslint: 8.49.0
form-data@4.0.0:
dependencies:
@@ -16415,17 +18112,19 @@ snapshots:
forwarded@0.2.0: {}
+ fp-ts@2.1.1: {}
+
fp-ts@2.16.5: {}
fraction.js@4.2.0: {}
- framer-motion@10.16.4(react-dom@18.2.0)(react@18.2.0):
+ framer-motion@10.16.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
tslib: 2.6.2
optionalDependencies:
'@emotion/is-prop-valid': 0.8.8
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
framesync@6.1.2:
dependencies:
@@ -16453,13 +18152,11 @@ snapshots:
fsevents@2.3.3:
optional: true
- function-bind@1.1.1: {}
-
function-bind@1.1.2: {}
function.prototype.name@1.1.6:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
functions-have-names: 1.2.3
@@ -16470,13 +18167,6 @@ snapshots:
get-caller-file@2.0.5: {}
- get-intrinsic@1.2.1:
- dependencies:
- function-bind: 1.1.1
- has: 1.0.3
- has-proto: 1.0.1
- has-symbols: 1.0.3
-
get-intrinsic@1.2.4:
dependencies:
es-errors: 1.3.0
@@ -16501,8 +18191,8 @@ snapshots:
get-symbol-description@1.0.0:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
get-tsconfig@4.7.0:
dependencies:
@@ -16594,11 +18284,15 @@ snapshots:
merge2: 1.4.1
slash: 4.0.0
+ goober@2.1.14(csstype@3.1.2):
+ dependencies:
+ csstype: 3.1.2
+
google-protobuf@3.21.2: {}
gopd@1.0.1:
dependencies:
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
got@9.6.0:
dependencies:
@@ -16627,6 +18321,82 @@ snapshots:
section-matter: 1.0.0
strip-bom-string: 1.0.0
+ graz@0.1.20(@cosmjs/amino@0.31.3)(@cosmjs/cosmwasm-stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@cosmjs/launchpad@0.27.1)(@cosmjs/proto-signing@0.31.3)(@cosmjs/stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@cosmjs/tendermint-rpc@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@leapwallet/cosmos-social-login-capsule-provider@0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)(fp-ts@2.1.1))(@terra-money/feather.js@3.0.0-beta.2)(@types/react@18.2.21)(axios@1.6.8)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10):
+ dependencies:
+ '@cosmjs/amino': 0.31.3
+ '@cosmjs/cosmwasm-stargate': 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/launchpad': 0.27.1
+ '@cosmjs/proto-signing': 0.31.3
+ '@cosmjs/stargate': 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/tendermint-rpc': 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmsnap/snapper': 0.1.29
+ '@dao-dao/cosmiframe': 0.1.0(@cosmjs/amino@0.31.3)(@cosmjs/proto-signing@0.31.3)
+ '@keplr-wallet/cosmos': 0.12.20
+ '@keplr-wallet/types': 0.12.23
+ '@leapwallet/cosmos-social-login-capsule-provider': 0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)(fp-ts@2.1.1)
+ '@metamask/providers': 12.0.0
+ '@tanstack/react-query': 4.35.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@terra-money/station-connector': 1.1.0(@cosmjs/amino@0.31.3)(@terra-money/feather.js@3.0.0-beta.2)(axios@1.6.8)
+ '@vectis/extension-client': 0.7.2
+ '@walletconnect/sign-client': 2.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.10.0
+ '@walletconnect/utils': 2.10.0
+ '@web3modal/standalone': 2.4.3(react@18.2.0)
+ cosmos-directory-client: 0.0.6
+ long: 4.0.0
+ react: 18.2.0
+ zustand: 4.5.2(@types/react@18.2.21)(immer@9.0.21)(react@18.2.0)
+ transitivePeerDependencies:
+ - '@react-native-async-storage/async-storage'
+ - '@terra-money/feather.js'
+ - '@types/react'
+ - axios
+ - bufferutil
+ - immer
+ - lokijs
+ - react-dom
+ - react-native
+ - supports-color
+ - utf-8-validate
+
+ graz@0.1.20(@cosmjs/amino@0.31.3)(@cosmjs/cosmwasm-stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@cosmjs/launchpad@0.27.1)(@cosmjs/proto-signing@0.31.3)(@cosmjs/stargate@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@cosmjs/tendermint-rpc@0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@leapwallet/cosmos-social-login-capsule-provider@0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)(fp-ts@2.16.5))(@terra-money/feather.js@3.0.0-beta.2)(@types/react@18.2.21)(axios@1.6.8)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(utf-8-validate@5.0.10):
+ dependencies:
+ '@cosmjs/amino': 0.31.3
+ '@cosmjs/cosmwasm-stargate': 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/launchpad': 0.27.1
+ '@cosmjs/proto-signing': 0.31.3
+ '@cosmjs/stargate': 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/tendermint-rpc': 0.31.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmsnap/snapper': 0.1.29
+ '@dao-dao/cosmiframe': 0.1.0(@cosmjs/amino@0.31.3)(@cosmjs/proto-signing@0.31.3)
+ '@keplr-wallet/cosmos': 0.12.20
+ '@keplr-wallet/types': 0.12.23
+ '@leapwallet/cosmos-social-login-capsule-provider': 0.0.41(@cosmjs/encoding@0.32.4)(@cosmjs/proto-signing@0.31.3)(fp-ts@2.16.5)
+ '@metamask/providers': 12.0.0
+ '@tanstack/react-query': 4.35.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@terra-money/station-connector': 1.1.0(@cosmjs/amino@0.31.3)(@terra-money/feather.js@3.0.0-beta.2)(axios@1.6.8)
+ '@vectis/extension-client': 0.7.2
+ '@walletconnect/sign-client': 2.10.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/types': 2.10.0
+ '@walletconnect/utils': 2.10.0
+ '@web3modal/standalone': 2.4.3(react@18.2.0)
+ cosmos-directory-client: 0.0.6
+ long: 4.0.0
+ react: 18.2.0
+ zustand: 4.5.2(@types/react@18.2.21)(immer@9.0.21)(react@18.2.0)
+ transitivePeerDependencies:
+ - '@react-native-async-storage/async-storage'
+ - '@terra-money/feather.js'
+ - '@types/react'
+ - axios
+ - bufferutil
+ - immer
+ - lokijs
+ - react-dom
+ - react-native
+ - supports-color
+ - utf-8-validate
+
gzip-size@6.0.0:
dependencies:
duplexer: 0.1.2
@@ -16639,10 +18409,6 @@ snapshots:
has-flag@4.0.0: {}
- has-property-descriptors@1.0.0:
- dependencies:
- get-intrinsic: 1.2.1
-
has-property-descriptors@1.0.2:
dependencies:
es-define-property: 1.0.0
@@ -16659,7 +18425,7 @@ snapshots:
has@1.0.3:
dependencies:
- function-bind: 1.1.1
+ function-bind: 1.1.2
hash-base@3.1.0:
dependencies:
@@ -16776,7 +18542,7 @@ snapshots:
html-void-elements@1.0.5: {}
- html-webpack-plugin@5.5.1(webpack@5.83.1):
+ html-webpack-plugin@5.5.1(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -16822,12 +18588,13 @@ snapshots:
http-proxy-middleware@2.0.6(@types/express@4.17.17):
dependencies:
- '@types/express': 4.17.17
'@types/http-proxy': 1.17.11
http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
micromatch: 4.0.5
+ optionalDependencies:
+ '@types/express': 4.17.17
transitivePeerDependencies:
- debug
@@ -16893,9 +18660,9 @@ snapshots:
internal-slot@1.0.5:
dependencies:
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
has: 1.0.3
- side-channel: 1.0.4
+ side-channel: 1.0.6
interpret@1.4.0: {}
@@ -16903,6 +18670,10 @@ snapshots:
dependencies:
loose-envify: 1.4.0
+ io-ts@2.0.1(fp-ts@2.1.1):
+ dependencies:
+ fp-ts: 2.1.1
+
io-ts@2.0.1(fp-ts@2.16.5):
dependencies:
fp-ts: 2.16.5
@@ -16920,13 +18691,13 @@ snapshots:
is-arguments@1.1.1:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
has-tostringtag: 1.0.0
is-array-buffer@3.0.2:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-typed-array: 1.1.12
is-arrayish@0.2.1: {}
@@ -16945,7 +18716,7 @@ snapshots:
is-boolean-object@1.1.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
has-tostringtag: 1.0.0
is-buffer@2.0.5: {}
@@ -16984,7 +18755,7 @@ snapshots:
is-finalizationregistry@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
is-fullwidth-code-point@3.0.0: {}
@@ -17015,7 +18786,7 @@ snapshots:
is-nan@1.3.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
is-negative-zero@2.0.2: {}
@@ -17046,7 +18817,7 @@ snapshots:
is-regex@1.1.4:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
has-tostringtag: 1.0.0
is-regexp@1.0.0: {}
@@ -17057,7 +18828,7 @@ snapshots:
is-shared-array-buffer@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
is-stream@2.0.1: {}
@@ -17081,12 +18852,12 @@ snapshots:
is-weakref@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
is-weakset@2.0.2:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-whitespace-character@1.0.4: {}
@@ -17110,14 +18881,14 @@ snapshots:
isomorphic-timers-promises@1.0.1: {}
- isomorphic-ws@4.0.1(ws@7.5.9):
+ isomorphic-ws@4.0.1(ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)):
dependencies:
ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
iterator.prototype@1.1.1:
dependencies:
define-properties: 1.2.0
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
has-symbols: 1.0.3
reflect.getprototypeof: 1.0.4
@@ -17145,8 +18916,7 @@ snapshots:
jiti@1.18.2: {}
- jiti@1.21.0:
- optional: true
+ jiti@1.21.0: {}
jju@1.4.0: {}
@@ -17267,6 +19037,8 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
+ libphonenumber-js@1.11.2: {}
+
libsodium-sumo@0.7.11: {}
libsodium-wrappers-sumo@0.7.11:
@@ -17354,7 +19126,7 @@ snapshots:
dependencies:
js-tokens: 4.0.0
- lottie-react@2.4.0(react-dom@18.2.0)(react@18.2.0):
+ lottie-react@2.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
lottie-web: 5.12.2
react: 18.2.0
@@ -17423,10 +19195,6 @@ snapshots:
mdurl@1.0.1: {}
- media-query-parser@2.0.2:
- dependencies:
- '@babel/runtime': 7.24.1
-
media-typer@0.3.0: {}
memfs@3.5.1:
@@ -17479,7 +19247,7 @@ snapshots:
min-indent@1.0.1: {}
- mini-css-extract-plugin@2.7.6(webpack@5.83.1):
+ mini-css-extract-plugin@2.7.6(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
schema-utils: 4.0.1
webpack: 5.83.1(esbuild@0.18.4)
@@ -17496,8 +19264,6 @@ snapshots:
mobx@6.10.2: {}
- modern-ahocorasick@1.0.1: {}
-
motion@10.16.2:
dependencies:
'@motionone/animation': 10.15.1
@@ -17540,7 +19306,7 @@ snapshots:
neo-async@2.6.2: {}
- next@13.4.19(@babel/core@7.22.15)(react-dom@18.2.0)(react@18.2.0):
+ next@13.4.19(@babel/core@7.22.15)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
'@next/env': 13.4.19
'@swc/helpers': 0.5.1
@@ -17657,45 +19423,42 @@ snapshots:
object-assign@4.1.1: {}
- object-hash@3.0.0:
- optional: true
-
- object-inspect@1.12.3: {}
+ object-hash@3.0.0: {}
object-inspect@1.13.1: {}
object-is@1.1.5:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
object-keys@1.1.1: {}
object.assign@4.1.4:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
has-symbols: 1.0.3
object-keys: 1.1.1
object.entries@1.1.7:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
object.fromentries@2.0.7:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
object.groupby@1.0.1:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
object.hasown@1.1.3:
dependencies:
@@ -17704,7 +19467,7 @@ snapshots:
object.values@1.1.7:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
@@ -17756,13 +19519,13 @@ snapshots:
os-browserify@0.3.0: {}
- osmojs@15.2.1:
+ osmojs@15.2.1(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
'@babel/runtime': 7.24.1
'@cosmjs/amino': 0.29.3
'@cosmjs/proto-signing': 0.29.3
- '@cosmjs/stargate': 0.29.3
- '@cosmjs/tendermint-rpc': 0.29.5
+ '@cosmjs/stargate': 0.29.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/tendermint-rpc': 0.29.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@osmonauts/lcd': 0.10.0
long: 5.2.3
protobufjs: 6.11.3
@@ -17771,8 +19534,6 @@ snapshots:
- debug
- utf-8-validate
- outdent@0.8.0: {}
-
p-cancelable@1.1.0: {}
p-limit@2.3.0:
@@ -17822,7 +19583,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.5.3
+ tslib: 2.6.2
parent-module@1.0.1:
dependencies:
@@ -17912,8 +19673,7 @@ snapshots:
picomatch@2.3.1: {}
- pify@2.3.0:
- optional: true
+ pify@2.3.0: {}
pino-abstract-transport@0.5.0:
dependencies:
@@ -17938,8 +19698,7 @@ snapshots:
pirates@4.0.5: {}
- pirates@4.0.6:
- optional: true
+ pirates@4.0.6: {}
pkg-dir@4.2.0:
dependencies:
@@ -18040,21 +19799,20 @@ snapshots:
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.4
- optional: true
postcss-js@4.0.1(postcss@8.4.38):
dependencies:
camelcase-css: 2.0.1
postcss: 8.4.38
- optional: true
postcss-load-config@4.0.1(postcss@8.4.38):
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.38
yaml: 2.3.1
+ optionalDependencies:
+ postcss: 8.4.38
- postcss-loader@7.3.0(postcss@8.4.23)(webpack@5.83.1):
+ postcss-loader@7.3.0(postcss@8.4.23)(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
cosmiconfig: 8.1.3
jiti: 1.18.2
@@ -18170,7 +19928,6 @@ snapshots:
dependencies:
postcss: 8.4.38
postcss-selector-parser: 6.0.13
- optional: true
postcss-normalize-charset@5.1.0(postcss@8.4.23):
dependencies:
@@ -18500,7 +20257,7 @@ snapshots:
qs@6.11.0:
dependencies:
- side-channel: 1.0.4
+ side-channel: 1.0.6
qs@6.12.1:
dependencies:
@@ -18568,7 +20325,7 @@ snapshots:
'@babel/runtime': 7.24.1
react: 18.2.0
- react-dev-utils@12.0.1(eslint@8.49.0)(typescript@5.2.2)(webpack@5.83.1):
+ react-dev-utils@12.0.1(eslint@8.49.0)(typescript@5.2.2)(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
'@babel/code-frame': 7.22.5
address: 1.2.2
@@ -18579,7 +20336,7 @@ snapshots:
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.49.0)(typescript@5.2.2)(webpack@5.83.1)
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.49.0)(typescript@5.2.2)(webpack@5.83.1(esbuild@0.18.4))
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -18594,8 +20351,9 @@ snapshots:
shell-quote: 1.8.1
strip-ansi: 6.0.1
text-table: 0.2.0
- typescript: 5.2.2
webpack: 5.83.1(esbuild@0.18.4)
+ optionalDependencies:
+ typescript: 5.2.2
transitivePeerDependencies:
- eslint
- supports-color
@@ -18620,16 +20378,17 @@ snapshots:
react-focus-lock@2.9.5(@types/react@18.2.21)(react@18.2.0):
dependencies:
- '@babel/runtime': 7.22.15
- '@types/react': 18.2.21
+ '@babel/runtime': 7.24.1
focus-lock: 0.11.6
prop-types: 15.8.1
react: 18.2.0
react-clientside-effect: 1.2.6(react@18.2.0)
use-callback-ref: 1.3.0(@types/react@18.2.21)(react@18.2.0)
use-sidecar: 1.1.2(@types/react@18.2.21)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
- react-helmet-async@1.3.0(react-dom@17.0.2)(react@17.0.2):
+ react-helmet-async@1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2):
dependencies:
'@babel/runtime': 7.22.3
invariant: 2.2.4
@@ -18639,23 +20398,31 @@ snapshots:
react-fast-compare: 3.2.2
shallowequal: 1.1.0
+ react-hot-toast@2.4.1(csstype@3.1.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ goober: 2.1.14(csstype@3.1.2)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ transitivePeerDependencies:
+ - csstype
+
react-is@16.13.1: {}
- react-json-view@1.21.3(react-dom@17.0.2)(react@17.0.2):
+ react-json-view@1.21.3(@types/react@18.2.21)(react-dom@17.0.2(react@17.0.2))(react@17.0.2):
dependencies:
flux: 4.0.4(react@17.0.2)
react: 17.0.2
react-base16-styling: 0.6.0
react-dom: 17.0.2(react@17.0.2)
react-lifecycles-compat: 3.0.4
- react-textarea-autosize: 8.4.1(react@17.0.2)
+ react-textarea-autosize: 8.4.1(@types/react@18.2.21)(react@17.0.2)
transitivePeerDependencies:
- '@types/react'
- encoding
react-lifecycles-compat@3.0.4: {}
- react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2)(webpack@5.83.1):
+ react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2(react@17.0.2))(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
'@babel/runtime': 7.24.1
react-loadable: '@docusaurus/react-loadable@5.5.2(react@17.0.2)'
@@ -18669,22 +20436,51 @@ snapshots:
react-remove-scroll-bar@2.3.4(@types/react@18.2.21)(react@18.2.0):
dependencies:
+ react: 18.2.0
+ react-style-singleton: 2.2.1(@types/react@18.2.21)(react@18.2.0)
+ tslib: 2.6.2
+ optionalDependencies:
'@types/react': 18.2.21
+
+ react-remove-scroll@2.5.5(@types/react@18.2.21)(react@18.2.0):
+ dependencies:
react: 18.2.0
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.21)(react@18.2.0)
react-style-singleton: 2.2.1(@types/react@18.2.21)(react@18.2.0)
tslib: 2.6.2
+ use-callback-ref: 1.3.0(@types/react@18.2.21)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.2.21)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
react-remove-scroll@2.5.6(@types/react@18.2.21)(react@18.2.0):
dependencies:
+ react: 18.2.0
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.21)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.21)(react@18.2.0)
+ tslib: 2.6.2
+ use-callback-ref: 1.3.0(@types/react@18.2.21)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.2.21)(react@18.2.0)
+ optionalDependencies:
'@types/react': 18.2.21
+
+ react-remove-scroll@2.5.7(@types/react@18.2.21)(react@18.2.0):
+ dependencies:
react: 18.2.0
react-remove-scroll-bar: 2.3.4(@types/react@18.2.21)(react@18.2.0)
react-style-singleton: 2.2.1(@types/react@18.2.21)(react@18.2.0)
tslib: 2.6.2
use-callback-ref: 1.3.0(@types/react@18.2.21)(react@18.2.0)
use-sidecar: 1.1.2(@types/react@18.2.21)(react@18.2.0)
+ optionalDependencies:
+ '@types/react': 18.2.21
+
+ react-resizable-panels@2.0.19(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
- react-router-config@5.1.1(react-router@5.3.4)(react@17.0.2):
+ react-router-config@5.1.1(react-router@5.3.4(react@17.0.2))(react@17.0.2):
dependencies:
'@babel/runtime': 7.24.1
react: 17.0.2
@@ -18716,18 +20512,19 @@ snapshots:
react-style-singleton@2.2.1(@types/react@18.2.21)(react@18.2.0):
dependencies:
- '@types/react': 18.2.21
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.2.0
tslib: 2.6.2
+ optionalDependencies:
+ '@types/react': 18.2.21
- react-textarea-autosize@8.4.1(react@17.0.2):
+ react-textarea-autosize@8.4.1(@types/react@18.2.21)(react@17.0.2):
dependencies:
'@babel/runtime': 7.24.1
react: 17.0.2
use-composed-ref: 1.3.0(react@17.0.2)
- use-latest: 1.2.1(react@17.0.2)
+ use-latest: 1.2.1(@types/react@18.2.21)(react@17.0.2)
transitivePeerDependencies:
- '@types/react'
@@ -18743,7 +20540,6 @@ snapshots:
read-cache@1.0.0:
dependencies:
pify: 2.3.0
- optional: true
read-pkg-up@7.0.1:
dependencies:
@@ -18794,10 +20590,10 @@ snapshots:
reflect.getprototypeof@1.0.4:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
globalthis: 1.0.3
which-builtin-type: 1.1.3
@@ -18819,7 +20615,7 @@ snapshots:
regexp.prototype.flags@1.5.0:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
functions-have-names: 1.2.3
@@ -18997,8 +20793,8 @@ snapshots:
safe-array-concat@1.0.1:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
has-symbols: 1.0.3
isarray: 2.0.5
@@ -19010,8 +20806,8 @@ snapshots:
safe-regex-test@1.0.0:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-regex: 1.1.4
safe-stable-stringify@2.4.3: {}
@@ -19195,12 +20991,6 @@ snapshots:
interpret: 1.4.0
rechoir: 0.6.2
- side-channel@1.0.4:
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
- object-inspect: 1.12.3
-
side-channel@1.0.6:
dependencies:
call-bind: 1.0.7
@@ -19247,6 +21037,11 @@ snapshots:
dependencies:
atomic-sleep: 1.0.0
+ sonner@1.4.41(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
sort-css-media-queries@2.1.0: {}
source-map-js@1.0.2: {}
@@ -19339,14 +21134,14 @@ snapshots:
strict-uri-encode@2.0.0: {}
- stridejs@0.6.2:
+ stridejs@0.6.2(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
'@babel/runtime': 7.24.1
'@cosmjs/amino': 0.30.1
'@cosmjs/proto-signing': 0.30.1
- '@cosmjs/stargate': 0.30.1
- '@cosmjs/tendermint-rpc': 0.30.1
- '@osmonauts/helpers': 0.6.0
+ '@cosmjs/stargate': 0.30.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@cosmjs/tendermint-rpc': 0.30.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@osmonauts/helpers': 0.6.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@osmonauts/lcd': 0.6.0
protobufjs: 6.11.3
transitivePeerDependencies:
@@ -19368,30 +21163,30 @@ snapshots:
string.prototype.matchall@4.0.9:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
- get-intrinsic: 1.2.1
+ get-intrinsic: 1.2.4
has-symbols: 1.0.3
internal-slot: 1.0.5
regexp.prototype.flags: 1.5.0
- side-channel: 1.0.4
+ side-channel: 1.0.6
string.prototype.trim@1.2.8:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
string.prototype.trimend@1.0.7:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
string.prototype.trimstart@1.0.7:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
define-properties: 1.2.0
es-abstract: 1.22.1
@@ -19443,9 +21238,10 @@ snapshots:
styled-jsx@5.1.1(@babel/core@7.22.15)(react@18.2.0):
dependencies:
- '@babel/core': 7.22.15
client-only: 0.0.1
react: 18.2.0
+ optionalDependencies:
+ '@babel/core': 7.22.15
stylehacks@5.1.1(postcss@8.4.23):
dependencies:
@@ -19480,7 +21276,6 @@ snapshots:
mz: 2.7.0
pirates: 4.0.6
ts-interface-checker: 0.1.13
- optional: true
superstruct@1.0.3: {}
@@ -19523,6 +21318,14 @@ snapshots:
'@pkgr/utils': 2.4.2
tslib: 2.6.2
+ tailwind-merge@2.2.1:
+ dependencies:
+ '@babel/runtime': 7.24.1
+
+ tailwindcss-animate@1.0.7(tailwindcss@3.3.3):
+ dependencies:
+ tailwindcss: 3.3.3
+
tailwindcss@3.3.3:
dependencies:
'@alloc/quick-lru': 5.2.0
@@ -19549,21 +21352,21 @@ snapshots:
sucrase: 3.34.0
transitivePeerDependencies:
- ts-node
- optional: true
tapable@1.1.3: {}
tapable@2.2.1: {}
- terser-webpack-plugin@5.3.9(esbuild@0.18.4)(webpack@5.83.1):
+ terser-webpack-plugin@5.3.9(esbuild@0.18.4)(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
'@jridgewell/trace-mapping': 0.3.18
- esbuild: 0.18.4
jest-worker: 27.5.1
schema-utils: 3.1.2
serialize-javascript: 6.0.1
terser: 5.17.6
webpack: 5.83.1(esbuild@0.18.4)
+ optionalDependencies:
+ esbuild: 0.18.4
terser@5.17.6:
dependencies:
@@ -19659,8 +21462,6 @@ snapshots:
tslib@2.5.2: {}
- tslib@2.5.3: {}
-
tslib@2.6.2: {}
tsup@7.2.0(postcss@8.4.38)(typescript@5.2.2):
@@ -19673,13 +21474,14 @@ snapshots:
execa: 5.1.1
globby: 11.1.0
joycon: 3.1.1
- postcss: 8.4.38
postcss-load-config: 4.0.1(postcss@8.4.38)
resolve-from: 5.0.0
rollup: 3.25.1
source-map: 0.8.0-beta.0
sucrase: 3.32.0
tree-kill: 1.2.2
+ optionalDependencies:
+ postcss: 8.4.38
typescript: 5.2.2
transitivePeerDependencies:
- supports-color
@@ -19739,13 +21541,13 @@ snapshots:
typed-array-buffer@1.0.0:
dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
+ call-bind: 1.0.7
+ get-intrinsic: 1.2.4
is-typed-array: 1.1.12
typed-array-byte-length@1.0.0:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
for-each: 0.3.3
has-proto: 1.0.1
is-typed-array: 1.1.12
@@ -19753,14 +21555,14 @@ snapshots:
typed-array-byte-offset@1.0.0:
dependencies:
available-typed-arrays: 1.0.5
- call-bind: 1.0.2
+ call-bind: 1.0.7
for-each: 0.3.3
has-proto: 1.0.1
is-typed-array: 1.1.12
typed-array-length@1.0.4:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
for-each: 0.3.3
is-typed-array: 1.1.12
@@ -19780,7 +21582,7 @@ snapshots:
unbox-primitive@1.0.2:
dependencies:
- call-bind: 1.0.2
+ call-bind: 1.0.7
has-bigints: 1.0.2
has-symbols: 1.0.3
which-boxed-primitive: 1.0.2
@@ -19903,13 +21705,14 @@ snapshots:
dependencies:
punycode: 2.3.0
- url-loader@4.1.1(file-loader@6.2.0)(webpack@5.83.1):
+ url-loader@4.1.1(file-loader@6.2.0(webpack@5.83.1(esbuild@0.18.4)))(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
- file-loader: 6.2.0(webpack@5.83.1)
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.1.2
webpack: 5.83.1(esbuild@0.18.4)
+ optionalDependencies:
+ file-loader: 6.2.0(webpack@5.83.1(esbuild@0.18.4))
url-parse-lax@3.0.0:
dependencies:
@@ -19920,33 +21723,39 @@ snapshots:
url@0.11.1:
dependencies:
punycode: 1.4.1
- qs: 6.11.0
+ qs: 6.12.1
use-callback-ref@1.3.0(@types/react@18.2.21)(react@18.2.0):
dependencies:
- '@types/react': 18.2.21
react: 18.2.0
tslib: 2.6.2
+ optionalDependencies:
+ '@types/react': 18.2.21
use-composed-ref@1.3.0(react@17.0.2):
dependencies:
react: 17.0.2
- use-isomorphic-layout-effect@1.1.2(react@17.0.2):
+ use-isomorphic-layout-effect@1.1.2(@types/react@18.2.21)(react@17.0.2):
dependencies:
react: 17.0.2
+ optionalDependencies:
+ '@types/react': 18.2.21
- use-latest@1.2.1(react@17.0.2):
+ use-latest@1.2.1(@types/react@18.2.21)(react@17.0.2):
dependencies:
react: 17.0.2
- use-isomorphic-layout-effect: 1.1.2(react@17.0.2)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.21)(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 18.2.21
use-sidecar@1.1.2(@types/react@18.2.21)(react@18.2.0):
dependencies:
- '@types/react': 18.2.21
detect-node-es: 1.1.0
react: 18.2.0
tslib: 2.6.2
+ optionalDependencies:
+ '@types/react': 18.2.21
use-sync-external-store@1.2.0(react@17.0.2):
dependencies:
@@ -19990,13 +21799,23 @@ snapshots:
valtio@1.10.5(react@18.2.0):
dependencies:
proxy-compare: 2.5.1
- react: 18.2.0
use-sync-external-store: 1.2.0(react@18.2.0)
+ optionalDependencies:
+ react: 18.2.0
value-equal@1.0.1: {}
vary@1.1.2: {}
+ vaul@0.9.4(@types/react-dom@18.2.7)(@types/react@18.2.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ '@radix-ui/react-dialog': 1.1.1(@types/react-dom@18.2.7)(@types/react@18.2.21)(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)
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+
vfile-location@3.2.0: {}
vfile-message@2.0.4:
@@ -20011,22 +21830,23 @@ snapshots:
unist-util-stringify-position: 2.0.3
vfile-message: 2.0.4
- vite-plugin-node-stdlib-browser@0.2.1(node-stdlib-browser@1.2.0)(vite@4.4.9):
+ vite-plugin-node-stdlib-browser@0.2.1(node-stdlib-browser@1.2.0)(rollup@3.29.0)(vite@4.4.9(@types/node@18.17.15)(terser@5.17.6)):
dependencies:
- '@rollup/plugin-inject': 5.0.3
+ '@rollup/plugin-inject': 5.0.3(rollup@3.29.0)
node-stdlib-browser: 1.2.0
- vite: 4.4.9(@types/node@18.17.15)
+ vite: 4.4.9(@types/node@18.17.15)(terser@5.17.6)
transitivePeerDependencies:
- rollup
- vite@4.4.9(@types/node@18.17.15):
+ vite@4.4.9(@types/node@18.17.15)(terser@5.17.6):
dependencies:
- '@types/node': 18.17.15
esbuild: 0.18.20
postcss: 8.4.29
rollup: 3.29.0
optionalDependencies:
+ '@types/node': 18.17.15
fsevents: 2.3.3
+ terser: 5.17.6
vm-browserify@1.1.2: {}
@@ -20051,12 +21871,28 @@ snapshots:
web-namespaces@1.1.4: {}
+ web3-eth-abi@1.10.4:
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ web3-utils: 1.10.4
+
web3-eth-abi@1.3.6:
dependencies:
'@ethersproject/abi': 5.0.7
underscore: 1.12.1
web3-utils: 1.3.6
+ web3-utils@1.10.4:
+ dependencies:
+ '@ethereumjs/util': 8.1.0
+ bn.js: 5.2.1
+ ethereum-bloom-filters: 1.0.10
+ ethereum-cryptography: 2.1.2
+ ethjs-unit: 0.1.6
+ number-to-bn: 1.7.0
+ randombytes: 2.1.0
+ utf8: 3.0.0
+
web3-utils@1.3.6:
dependencies:
bn.js: 4.12.0
@@ -20074,7 +21910,7 @@ snapshots:
webidl-conversions@4.0.2: {}
- webpack-bundle-analyzer@4.8.0:
+ webpack-bundle-analyzer@4.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
'@discoveryjs/json-ext': 0.5.7
acorn: 8.8.2
@@ -20090,7 +21926,7 @@ snapshots:
- bufferutil
- utf-8-validate
- webpack-dev-middleware@5.3.3(webpack@5.83.1):
+ webpack-dev-middleware@5.3.3(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
colorette: 2.0.20
memfs: 3.5.1
@@ -20099,7 +21935,7 @@ snapshots:
schema-utils: 4.0.1
webpack: 5.83.1(esbuild@0.18.4)
- webpack-dev-server@4.15.0(webpack@5.83.1):
+ webpack-dev-server@4.15.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
'@types/bonjour': 3.5.10
'@types/connect-history-api-fallback': 1.5.0
@@ -20129,9 +21965,10 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
+ webpack-dev-middleware: 5.3.3(webpack@5.83.1(esbuild@0.18.4))
+ ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ optionalDependencies:
webpack: 5.83.1(esbuild@0.18.4)
- webpack-dev-middleware: 5.3.3(webpack@5.83.1)
- ws: 8.13.0
transitivePeerDependencies:
- bufferutil
- debug
@@ -20168,7 +22005,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.1.2
tapable: 2.2.1
- terser-webpack-plugin: 5.3.9(esbuild@0.18.4)(webpack@5.83.1)
+ terser-webpack-plugin: 5.3.9(esbuild@0.18.4)(webpack@5.83.1(esbuild@0.18.4))
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -20176,7 +22013,7 @@ snapshots:
- esbuild
- uglify-js
- webpackbar@5.0.2(webpack@5.83.1):
+ webpackbar@5.0.2(webpack@5.83.1(esbuild@0.18.4)):
dependencies:
chalk: 4.1.2
consola: 2.15.3
@@ -20238,7 +22075,7 @@ snapshots:
which-typed-array@1.1.11:
dependencies:
available-typed-arrays: 1.0.5
- call-bind: 1.0.2
+ call-bind: 1.0.7
for-each: 0.3.3
gopd: 1.0.1
has-tostringtag: 1.0.0
@@ -20293,11 +22130,14 @@ snapshots:
typedarray-to-buffer: 3.1.5
ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10):
- dependencies:
+ optionalDependencies:
bufferutil: 4.0.8
utf-8-validate: 5.0.10
- ws@8.13.0: {}
+ ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ optionalDependencies:
+ bufferutil: 4.0.8
+ utf-8-validate: 5.0.10
xdg-basedir@4.0.0: {}
@@ -20364,16 +22204,16 @@ snapshots:
yocto-queue@0.1.0: {}
- zod@3.20.6: {}
-
zod@3.21.4: {}
zod@3.23.8: {}
- zustand@4.5.2(@types/react@18.2.21)(react@18.2.0):
+ zustand@4.5.2(@types/react@18.2.21)(immer@9.0.21)(react@18.2.0):
dependencies:
+ use-sync-external-store: 1.2.0(react@18.2.0)
+ optionalDependencies:
'@types/react': 18.2.21
+ immer: 9.0.21
react: 18.2.0
- use-sync-external-store: 1.2.0(react@18.2.0)
zwitch@1.0.5: {}