From aa911d88655e0b85ce510fe309f79e1fd4f82378 Mon Sep 17 00:00:00 2001 From: apoorvlathey Date: Mon, 23 Sep 2024 14:03:11 +0400 Subject: [PATCH] update packages, try to fix build issue --- components/Body/index.tsx | 24 +- next.config.js | 6 +- package.json | 26 +- pnpm-lock.yaml | 2322 +++++++++++++++++++++++++++---------- 4 files changed, 1748 insertions(+), 630 deletions(-) diff --git a/components/Body/index.tsx b/components/Body/index.tsx index 8dbdd41..e09c0cb 100644 --- a/components/Body/index.tsx +++ b/components/Body/index.tsx @@ -6,7 +6,7 @@ import { Container, useToast, Center, Spacer, Flex } from "@chakra-ui/react"; import { SingleValue } from "chakra-react-select"; // WC v2 import { Core } from "@walletconnect/core"; -import { Web3Wallet, IWeb3Wallet } from "@walletconnect/web3wallet"; +import { WalletKit, IWalletKit } from "@reown/walletkit"; import { ProposalTypes, SessionTypes } from "@walletconnect/types"; import { getSdkError, parseUri } from "@walletconnect/utils"; import { ethers } from "ethers"; @@ -65,12 +65,18 @@ const allNetworksOptions = [ ]; function Body() { - const addressFromURL = new URLSearchParams(window.location.search).get( - "address" - ); - const urlFromURL = new URLSearchParams(window.location.search).get("url"); - const urlFromCache = localStorage.getItem("appUrl"); - const chainFromURL = new URLSearchParams(window.location.search).get("chain"); + let addressFromURL: string | null = null; + let urlFromURL: string | null = null; + let urlFromCache: string | null = null; + let chainFromURL: string | null = null; + + if (typeof window !== "undefined") { + const urlParams = new URLSearchParams(window.location.search); + addressFromURL = urlParams.get("address"); + urlFromURL = urlParams.get("url"); + urlFromCache = localStorage.getItem("appUrl"); + chainFromURL = urlParams.get("chain"); + } let networkIdViaURL = 1; if (chainFromURL) { for (let i = 0; i < allNetworksOptions.length; i++) { @@ -108,7 +114,7 @@ function Body() { value: networkIdViaURL, }); // WC v2 - const [web3wallet, setWeb3Wallet] = useState(); + const [web3wallet, setWeb3Wallet] = useState(); const [web3WalletSession, setWeb3WalletSession] = useState(); const [isConnected, setIsConnected] = useState(false); @@ -231,7 +237,7 @@ function Body() { onlyIfActiveSessions?: boolean, _showAddress?: string ) => { - const _web3wallet = await Web3Wallet.init({ + const _web3wallet = await WalletKit.init({ core, metadata: WCMetadata, }); diff --git a/next.config.js b/next.config.js index 1b22416..144d3e3 100644 --- a/next.config.js +++ b/next.config.js @@ -8,9 +8,9 @@ const nextConfig = { compiler: { styledComponents: true, }, - experimental: { - windowHistorySupport: true, - }, + // experimental: { + // windowHistorySupport: true, + // }, }; module.exports = nextConfig; diff --git a/package.json b/package.json index 12483ea..6b62359 100644 --- a/package.json +++ b/package.json @@ -10,25 +10,25 @@ "lint": "next lint" }, "dependencies": { - "@chakra-ui/icons": "^1.0.14", + "@chakra-ui/icons": "^1.1.7", "@chakra-ui/next-js": "^2.2.0", - "@chakra-ui/react": "^2.8.1", - "@emotion/react": "^11", - "@emotion/styled": "^11", - "@fortawesome/fontawesome-svg-core": "^6.4.0", - "@fortawesome/free-brands-svg-icons": "^6.4.0", - "@fortawesome/free-solid-svg-icons": "^6.4.0", - "@fortawesome/react-fontawesome": "^0.1.18", - "@rainbow-me/rainbowkit": "^1.0.11", + "@chakra-ui/react": "^2.8.2", + "@emotion/react": "^11.13.3", + "@emotion/styled": "^11.13.0", + "@fortawesome/fontawesome-svg-core": "^6.6.0", + "@fortawesome/free-brands-svg-icons": "^6.6.0", + "@fortawesome/free-solid-svg-icons": "^6.6.0", + "@fortawesome/react-fontawesome": "^0.2.2", + "@rainbow-me/rainbowkit": "^1.3.7", + "@reown/walletkit": "^1.0.0", "@types/node": "^17.0.10", "@types/react": "^17.0.38", "@types/react-dom": "^17.0.11", "@walletconnect/client": "^1.8.0", - "@walletconnect/core": "^2.7.3", + "@walletconnect/core": "^2.16.2", "@walletconnect/legacy-types": "^2.0.0", - "@walletconnect/types": "^2.7.3", - "@walletconnect/utils": "^2.7.3", - "@walletconnect/web3wallet": "^1.7.1", + "@walletconnect/types": "^2.16.2", + "@walletconnect/utils": "^2.16.2", "axios": "^0.24.0", "blo": "^1.0.0", "chakra-react-select": "^4.4.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7049ca6..e990840 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,35 +9,38 @@ importers: .: dependencies: '@chakra-ui/icons': - specifier: ^1.0.14 - version: 1.1.7(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + specifier: ^1.1.7 + version: 1.1.7(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/next-js': specifier: ^2.2.0 - version: 2.2.0(@chakra-ui/react@2.8.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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@11.11.1(@types/react@17.0.65)(react@18.2.0))(next@14.2.3(@babel/core@7.22.20)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + version: 2.2.0(@chakra-ui/react@2.8.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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@11.13.3(@types/react@17.0.65)(react@18.2.0))(next@14.2.3(@babel/core@7.22.20)(react-dom@18.2.0(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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) + specifier: ^2.8.2 + version: 2.8.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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 - version: 11.11.1(@types/react@17.0.65)(react@18.2.0) + specifier: ^11.13.3 + version: 11.13.3(@types/react@17.0.65)(react@18.2.0) '@emotion/styled': - specifier: ^11 - version: 11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0) + specifier: ^11.13.0 + version: 11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0) '@fortawesome/fontawesome-svg-core': - specifier: ^6.4.0 - version: 6.4.2 + specifier: ^6.6.0 + version: 6.6.0 '@fortawesome/free-brands-svg-icons': - specifier: ^6.4.0 - version: 6.4.2 + specifier: ^6.6.0 + version: 6.6.0 '@fortawesome/free-solid-svg-icons': - specifier: ^6.4.0 - version: 6.4.2 + specifier: ^6.6.0 + version: 6.6.0 '@fortawesome/react-fontawesome': - specifier: ^0.1.18 - version: 0.1.19(@fortawesome/fontawesome-svg-core@6.4.2)(react@18.2.0) + specifier: ^0.2.2 + version: 0.2.2(@fortawesome/fontawesome-svg-core@6.6.0)(react@18.2.0) '@rainbow-me/rainbowkit': - specifier: ^1.0.11 - version: 1.0.11(@types/react@17.0.65)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(viem@1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10))(wagmi@1.4.2(@types/react@17.0.65)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.0.4)(utf-8-validate@5.0.10)(viem@1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10))) + specifier: ^1.3.7 + version: 1.3.7(@types/react@17.0.65)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(viem@1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10))(wagmi@1.4.2(@types/react@17.0.65)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.0.4)(utf-8-validate@5.0.10)(viem@1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10))) + '@reown/walletkit': + specifier: ^1.0.0 + version: 1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@types/node': specifier: ^17.0.10 version: 17.0.45 @@ -51,20 +54,17 @@ importers: specifier: ^1.8.0 version: 1.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/core': - specifier: ^2.7.3 - version: 2.10.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: ^2.16.2 + version: 2.16.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/legacy-types': specifier: ^2.0.0 version: 2.0.0 '@walletconnect/types': - specifier: ^2.7.3 - version: 2.10.1 + specifier: ^2.16.2 + version: 2.16.2 '@walletconnect/utils': - specifier: ^2.7.3 - version: 2.10.1 - '@walletconnect/web3wallet': - specifier: ^1.7.1 - version: 1.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + specifier: ^2.16.2 + version: 2.16.2 axios: specifier: ^0.24.0 version: 0.24.0 @@ -73,7 +73,7 @@ importers: version: 1.0.0 chakra-react-select: specifier: ^4.4.3 - version: 4.7.2(@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 4.7.2(eblmkcxfifzqgk6yresacfv7wm) ethereum-checksum-address: specifier: ^0.0.6 version: 0.0.6 @@ -123,10 +123,6 @@ importers: packages: - '@aashutoshrathi/word-wrap@1.2.6': - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - '@adraffy/ens-normalize@1.9.4': resolution: {integrity: sha512-UK0bHA7hh9cR39V+4gl2/NnBBjoXIxkuWAPCaY4X7fbH4L/azIi7ilWOCjMUYfpJgraLUAqkRi2BqrjME8Rynw==} @@ -148,6 +144,10 @@ packages: resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.24.7': + resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.22.20': resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==} engines: {node: '>=6.9.0'} @@ -167,10 +167,18 @@ packages: resolution: {integrity: sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA==} engines: {node: '>=6.9.0'} + '@babel/generator@7.25.6': + resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.22.5': resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.24.7': + resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} + engines: {node: '>=6.9.0'} + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} @@ -216,6 +224,10 @@ packages: resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.24.7': + resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-transforms@7.22.20': resolution: {integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==} engines: {node: '>=6.9.0'} @@ -230,8 +242,8 @@ packages: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} - '@babel/helper-plugin-utils@7.24.0': - resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==} + '@babel/helper-plugin-utils@7.24.8': + resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==} engines: {node: '>=6.9.0'} '@babel/helper-remap-async-to-generator@7.22.20': @@ -262,14 +274,18 @@ packages: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} - '@babel/helper-string-parser@7.23.4': - resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} + '@babel/helper-string-parser@7.24.8': + resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} engines: {node: '>=6.9.0'} '@babel/helper-validator-identifier@7.22.20': resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.24.7': + resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.22.15': resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} @@ -286,11 +302,20 @@ packages: resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} engines: {node: '>=6.9.0'} + '@babel/highlight@7.24.7': + resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} + engines: {node: '>=6.9.0'} + '@babel/parser@7.22.16': resolution: {integrity: sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==} engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.25.6': + resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15': resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} engines: {node: '>=6.9.0'} @@ -434,8 +459,8 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-jsx@7.23.3': - resolution: {integrity: sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==} + '@babel/plugin-syntax-jsx@7.24.7': + resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -866,20 +891,32 @@ packages: resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==} engines: {node: '>=6.9.0'} + '@babel/runtime@7.25.6': + resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==} + engines: {node: '>=6.9.0'} + '@babel/template@7.22.15': resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} + '@babel/template@7.25.0': + resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==} + engines: {node: '>=6.9.0'} + '@babel/traverse@7.22.20': resolution: {integrity: sha512-eU260mPZbU7mZ0N+X10pxXhQFMGTeLb9eFS0mxehS8HZp9o1uSnFeWQuG1UPrlxgA7QoUzFhOnilHDp0AXCyHw==} engines: {node: '>=6.9.0'} + '@babel/traverse@7.25.6': + resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==} + engines: {node: '>=6.9.0'} + '@babel/types@7.22.19': resolution: {integrity: sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==} engines: {node: '>=6.9.0'} - '@babel/types@7.24.0': - resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} + '@babel/types@7.25.6': + resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==} engines: {node: '>=6.9.0'} '@bcoe/v8-coverage@0.2.3': @@ -892,14 +929,14 @@ packages: framer-motion: '>=4.0.0' react: '>=18' - '@chakra-ui/alert@2.2.1': - resolution: {integrity: sha512-GduIqqWCkvID8hxRlKw29Jp3w93r/E9S30J2F8By3ODon9Bhk1o/KVolcPiSiQvRwKNBJCd/rBTpPpLkB+s7pw==} + '@chakra-ui/alert@2.2.2': + resolution: {integrity: sha512-jHg4LYMRNOJH830ViLuicjb3F+v6iriE/2G5T+Sd0Hna04nukNJ1MxUmBPE+vI22me2dIflfelu2v9wdB6Pojw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' - '@chakra-ui/anatomy@2.2.1': - resolution: {integrity: sha512-bbmyWTGwQo+aHYDMtLIj7k7hcWvwE7GFVDViLFArrrPhfUTDdQTNqhiDp1N7eh2HLyjNhc2MKXV8s2KTQqkmTg==} + '@chakra-ui/anatomy@2.2.2': + resolution: {integrity: sha512-MV6D4VLRIHr4PkW4zMyqfrNS1mPlCTiCXwvYGtDFQYr+xHFfonhAuf9WjsSc0nyp2m0OdkSLnzmVKkZFLo25Tg==} '@chakra-ui/avatar@2.3.0': resolution: {integrity: sha512-8gKSyLfygnaotbJbDMHDiJoF38OHXUYVme4gGxZ1fLnQEdPVEaIWfH+NndIjOM0z8S+YEFnT9KyGMUtvPrBk3g==} @@ -928,8 +965,8 @@ packages: '@chakra-ui/system': '>=2.0.0' react: '>=18' - '@chakra-ui/checkbox@2.3.1': - resolution: {integrity: sha512-e6qL9ntVI/Ui6g0+iljUV2chX86YMsXafldpTHBNYDEoNLjGo1lqLFzq3y6zs3iuB3DHI0X7eAG3REmMVs0A0w==} + '@chakra-ui/checkbox@2.3.2': + resolution: {integrity: sha512-85g38JIXMEv6M+AcyIGLh7igNtfpAN6KGQFYxY9tBj0eWvWk4NKQxvqqyVta0bSAyIl1rixNIIezNpNWk2iO4g==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' @@ -989,12 +1026,6 @@ packages: peerDependencies: react: '>=18' - '@chakra-ui/form-control@2.1.1': - resolution: {integrity: sha512-LJPDzA1ITc3lhd/iDiINqGeca5bJD09PZAjePGEmmZyLPZZi8nPh/iii0RMxvKyJArsTBwXymCh+dEqK9aDzGQ==} - peerDependencies: - '@chakra-ui/system': '>=2.0.0' - react: '>=18' - '@chakra-ui/form-control@2.2.0': resolution: {integrity: sha512-wehLC1t4fafCVJ2RvJQT2jyqsAwX7KymmiGqBu7nQoQz8ApTkGABWpo/QwDh3F/dBLrouHDoOvGmYTqft3Mirw==} peerDependencies: @@ -1030,8 +1061,8 @@ packages: '@chakra-ui/system': '>=2.0.0' react: '>=18' - '@chakra-ui/input@2.1.1': - resolution: {integrity: sha512-RQYzQ/qcak3eCuCfvSqc1kEFx0sCcnIeiSi7i0r70CeBnAUK/CP1/4Uz849FpKz81K4z2SikC9MkHPQd8ZpOwg==} + '@chakra-ui/input@2.1.2': + resolution: {integrity: sha512-GiBbb3EqAA8Ph43yGa6Mc+kUPjh4Spmxp1Pkelr8qtudpc3p2PJOOebLpd90mcqw8UePPa+l6YhhPtp6o0irhw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' @@ -1079,8 +1110,8 @@ packages: next: '>=13' react: '>=18' - '@chakra-ui/number-input@2.1.1': - resolution: {integrity: sha512-B4xwUPyr0NmjGN/dBhOmCD2xjX6OY1pr9GmGH3GQRozMsLAClD3TibwiZetwlyCp02qQqiFwEcZmUxaX88794Q==} + '@chakra-ui/number-input@2.1.2': + resolution: {integrity: sha512-pfOdX02sqUN0qC2ysuvgVDiws7xZ20XDIlcNhva55Jgm095xjm8eVdIBfNm3SFbSUNxyXvLTW/YQanX74tKmuA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' @@ -1121,16 +1152,16 @@ packages: '@chakra-ui/system': '>=2.0.0' react: '>=18' - '@chakra-ui/provider@2.4.1': - resolution: {integrity: sha512-u4g02V9tJ9vVYfkLz5jBn/bKlAyjLdg4Sh3f7uckmYVAZpOL/uUlrStyADrynu3tZhI+BE8XdmXC4zs/SYD7ow==} + '@chakra-ui/provider@2.4.2': + resolution: {integrity: sha512-w0Tef5ZCJK1mlJorcSjItCSbyvVuqpvyWdxZiVQmE6fvSJR83wZof42ux0+sfWD+I7rHSfj+f9nzhNaEWClysw==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 react: '>=18' react-dom: '>=18' - '@chakra-ui/radio@2.1.1': - resolution: {integrity: sha512-5JXDVvMWsF/Cprh6BKfcTLbLtRcgD6Wl2zwbNU30nmKIE8+WUfqD7JQETV08oWEzhi3Ea4e5EHvyll2sGx8H3w==} + '@chakra-ui/radio@2.1.2': + resolution: {integrity: sha512-n10M46wJrMGbonaghvSRnZ9ToTv/q76Szz284gv4QUWvyljQACcGrXIONUnQ3BIwbOfkRqSk7Xl/JgZtVfll+w==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' @@ -1245,8 +1276,8 @@ packages: peerDependencies: react: '>=18' - '@chakra-ui/react@2.8.1': - resolution: {integrity: sha512-UL9Rtj4DovP3+oVbI06gsdfyJJb+wmS2RYnGNXjW9tsjCyXxjlBw9TAUj0jyOfWe0+zd/4juL8+J+QCwmdhptg==} + '@chakra-ui/react@2.8.2': + resolution: {integrity: sha512-Hn0moyxxyCDKuR9ywYpqgX8dvjqwu9ArwpIb9wHNYjnODETjLwazgNIliCVBRcJvysGRiV51U2/JtJVrpeCjUQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 @@ -1254,8 +1285,8 @@ packages: react: '>=18' react-dom: '>=18' - '@chakra-ui/select@2.1.1': - resolution: {integrity: sha512-CERDATncv5w05Zo5/LrFtf1yKp1deyMUyDGv6eZvQG/etyukH4TstsuIHt/0GfNXrCF3CJLZ8lINzpv5wayVjQ==} + '@chakra-ui/select@2.1.2': + resolution: {integrity: sha512-ZwCb7LqKCVLJhru3DXvKXpZ7Pbu1TDZ7N0PdQ0Zj1oyVLJyrpef1u9HR5u0amOpqcH++Ugt0f5JSmirjNlctjA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' @@ -1299,18 +1330,18 @@ packages: '@chakra-ui/system': '>=2.0.0' react: '>=18' - '@chakra-ui/styled-system@2.9.1': - resolution: {integrity: sha512-jhYKBLxwOPi9/bQt9kqV3ELa/4CjmNNruTyXlPp5M0v0+pDMUngPp48mVLoskm9RKZGE0h1qpvj/jZ3K7c7t8w==} + '@chakra-ui/styled-system@2.9.2': + resolution: {integrity: sha512-To/Z92oHpIE+4nk11uVMWqo2GGRS86coeMmjxtpnErmWRdLcp1WVCVRAvn+ZwpLiNR+reWFr2FFqJRsREuZdAg==} - '@chakra-ui/switch@2.1.1': - resolution: {integrity: sha512-cOHIhW5AlLZSFENxFEBYTBniqiduOowa1WdzslP1Fd0usBFaD5iAgOY1Fvr7xKhE8nmzzeMCkPB3XBvUSWnawQ==} + '@chakra-ui/switch@2.1.2': + resolution: {integrity: sha512-pgmi/CC+E1v31FcnQhsSGjJnOE2OcND4cKPyTE+0F+bmGm48Q/b5UmKD9Y+CmZsrt/7V3h8KNczowupfuBfIHA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18' - '@chakra-ui/system@2.6.1': - resolution: {integrity: sha512-P5Q/XRWy3f1pXJ7IxDkV+Z6AT7GJeR2JlBnQl109xewVQcBLWWMIp702fFMFw8KZ2ALB/aYKtWm5EmQMddC/tg==} + '@chakra-ui/system@2.6.2': + resolution: {integrity: sha512-EGtpoEjLrUu4W1fHD+a62XR+hzC5YfsWm+6lO0Kybcga3yYEij9beegO0jZgug27V+Rf7vns95VPVP6mFd/DEQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 @@ -1334,35 +1365,35 @@ packages: '@chakra-ui/system': '>=2.0.0' react: '>=18' - '@chakra-ui/textarea@2.1.1': - resolution: {integrity: sha512-28bpwgmXg3BzSpg8i1Ao9h7pHaE1j2mBBFJpWaqPgMhS0IHm0BQsqqyWU6PsxxJDvrC4HN6MTzrIL4C1RA1I0A==} + '@chakra-ui/textarea@2.1.2': + resolution: {integrity: sha512-ip7tvklVCZUb2fOHDb23qPy/Fr2mzDOGdkrpbNi50hDCiV4hFX02jdQJdi3ydHZUyVgZVBKPOJ+lT9i7sKA2wA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18' - '@chakra-ui/theme-tools@2.1.1': - resolution: {integrity: sha512-n14L5L3ej3Zy+Xm/kDKO1G6/DkmieT7Li1C7NzMRcUj5C9YybQpyo7IZZ0BBUh3u+OVnKVhNC3d4P2NYDGRXmA==} + '@chakra-ui/theme-tools@2.1.2': + resolution: {integrity: sha512-Qdj8ajF9kxY4gLrq7gA+Azp8CtFHGO9tWMN2wfF9aQNgG9AuMhPrUzMq9AMQ0MXiYcgNq/FD3eegB43nHVmXVA==} peerDependencies: '@chakra-ui/styled-system': '>=2.0.0' - '@chakra-ui/theme-utils@2.0.20': - resolution: {integrity: sha512-IkAzSmwBlRIZ3dN2InDz0tf9SldbckVkgwylCobSFmYP8lnMjykL8Lex1BBo9U8UQjZxEDVZ+Qw6SeayKRntOQ==} + '@chakra-ui/theme-utils@2.0.21': + resolution: {integrity: sha512-FjH5LJbT794r0+VSCXB3lT4aubI24bLLRWB+CuRKHijRvsOg717bRdUN/N1fEmEpFnRVrbewttWh/OQs0EWpWw==} - '@chakra-ui/theme@3.3.0': - resolution: {integrity: sha512-VHY2ax5Wqgfm83U/zYBk0GS0TGD8m41s/rxQgnEq8tU+ug1YZjvOZmtOq/VjfKP/bQraFhCt05zchcxXmDpEYg==} + '@chakra-ui/theme@3.3.1': + resolution: {integrity: sha512-Hft/VaT8GYnItGCBbgWd75ICrIrIFrR7lVOhV/dQnqtfGqsVDlrztbSErvMkoPKt0UgAkd9/o44jmZ6X4U2nZQ==} peerDependencies: '@chakra-ui/styled-system': '>=2.8.0' - '@chakra-ui/toast@7.0.1': - resolution: {integrity: sha512-V5JUhw6RZxbGRTijvd5k4iEMLCfbzTLNWbZLZhRZk10YvFfAP5OYfRCm68zpE/t3orN/f+4ZLL3P+Wb4E7oSmw==} + '@chakra-ui/toast@7.0.2': + resolution: {integrity: sha512-yvRP8jFKRs/YnkuE41BVTq9nB2v/KDRmje9u6dgDmE5+1bFt3bwjdf9gVbif4u5Ve7F7BGk5E093ARRVtvLvXA==} peerDependencies: - '@chakra-ui/system': 2.6.1 + '@chakra-ui/system': 2.6.2 framer-motion: '>=4.0.0' react: '>=18' react-dom: '>=18' - '@chakra-ui/tooltip@2.3.0': - resolution: {integrity: sha512-2s23f93YIij1qEDwIK//KtEu4LLYOslhR1cUhDBk/WUzyFR3Ez0Ee+HlqlGEGfGe9x77E6/UXPnSAKKdF/cpsg==} + '@chakra-ui/tooltip@2.3.1': + resolution: {integrity: sha512-Rh39GBn/bL4kZpuEMPPRwYNnccRCL+w9OqamWHIB3Qboxs6h8cOyXfIdGxjo72lvhu1QI/a4KFqkM3St+WfC0A==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' @@ -1484,23 +1515,23 @@ packages: peerDependencies: postcss-selector-parser: ^6.0.10 - '@emotion/babel-plugin@11.11.0': - resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} + '@emotion/babel-plugin@11.12.0': + resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==} '@emotion/cache@11.11.0': resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} - '@emotion/hash@0.8.0': - resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} + '@emotion/cache@11.13.1': + resolution: {integrity: sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==} - '@emotion/hash@0.9.1': - resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} + '@emotion/hash@0.9.2': + resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} '@emotion/is-prop-valid@0.8.8': resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} - '@emotion/is-prop-valid@1.2.1': - resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==} + '@emotion/is-prop-valid@1.3.1': + resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==} '@emotion/memoize@0.7.4': resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} @@ -1508,8 +1539,11 @@ packages: '@emotion/memoize@0.8.1': resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} - '@emotion/react@11.11.1': - resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==} + '@emotion/memoize@0.9.0': + resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==} + + '@emotion/react@11.13.3': + resolution: {integrity: sha512-lIsdU6JNrmYfJ5EbUCf4xW1ovy5wKQ2CkPRM4xogziOxH1nXxBSjpC9YqbFAP7circxMfYp+6x676BqWcEiixg==} peerDependencies: '@types/react': '*' react: '>=16.8.0' @@ -1517,14 +1551,17 @@ packages: '@types/react': optional: true - '@emotion/serialize@1.1.2': - resolution: {integrity: sha512-zR6a/fkFP4EAcCMQtLOhIgpprZOwNmCldtpaISpvz348+DP4Mz8ZoKaGGCQpbzepNIUWbq4w6hNZkwDyKoS+HA==} + '@emotion/serialize@1.3.2': + resolution: {integrity: sha512-grVnMvVPK9yUVE6rkKfAJlYZgo0cu3l9iMC77V7DW6E1DUIrU68pSEXRmFZFOFB1QFo57TncmOcvcbMDWsL4yA==} '@emotion/sheet@1.2.2': resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} - '@emotion/styled@11.11.0': - resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==} + '@emotion/sheet@1.4.0': + resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==} + + '@emotion/styled@11.13.0': + resolution: {integrity: sha512-tkzkY7nQhW/zC4hztlwucpT8QEZ6eUzpXDRhww/Eej4tFfO0FxQYWRyg/c5CCXa4d/f174kqeXYjuQRnhzf6dA==} peerDependencies: '@emotion/react': ^11.0.0-rc.0 '@types/react': '*' @@ -1533,28 +1570,34 @@ packages: '@types/react': optional: true - '@emotion/unitless@0.8.1': - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + '@emotion/unitless@0.10.0': + resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==} - '@emotion/use-insertion-effect-with-fallbacks@1.0.1': - resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} + '@emotion/use-insertion-effect-with-fallbacks@1.1.0': + resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==} peerDependencies: react: '>=16.8.0' '@emotion/utils@1.2.1': resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} + '@emotion/utils@1.4.1': + resolution: {integrity: sha512-BymCXzCG3r72VKJxaYVwOXATqXIZ85cuvg0YOUDxMGNrKc1DJRZk8MgV5wyXRyEayIMd4FuXJIUgTBXvDNW5cA==} + '@emotion/weak-memoize@0.3.1': resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + '@emotion/weak-memoize@0.4.0': + resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==} + '@eslint-community/eslint-utils@4.4.0': resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.10.0': - resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} + '@eslint-community/regexpp@4.11.1': + resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} '@eslint-community/regexpp@4.8.1': @@ -1668,38 +1711,40 @@ packages: '@floating-ui/utils@0.1.4': resolution: {integrity: sha512-qprfWkn82Iw821mcKofJ5Pk9wgioHicxcQMxx+5zt5GSKoqdWvgG5AxVmpmUUjzTLPVSH5auBrhI93Deayn/DA==} - '@fortawesome/fontawesome-common-types@6.4.2': - resolution: {integrity: sha512-1DgP7f+XQIJbLFCTX1V2QnxVmpLdKdzzo2k8EmvDOePfchaIGQ9eCHj2up3/jNEbZuBqel5OxiaOJf37TWauRA==} + '@fortawesome/fontawesome-common-types@6.6.0': + resolution: {integrity: sha512-xyX0X9mc0kyz9plIyryrRbl7ngsA9jz77mCZJsUkLl+ZKs0KWObgaEBoSgQiYWAsSmjz/yjl0F++Got0Mdp4Rw==} engines: {node: '>=6'} - '@fortawesome/fontawesome-svg-core@6.4.2': - resolution: {integrity: sha512-gjYDSKv3TrM2sLTOKBc5rH9ckje8Wrwgx1CxAPbN5N3Fm4prfi7NsJVWd1jklp7i5uSCVwhZS5qlhMXqLrpAIg==} + '@fortawesome/fontawesome-svg-core@6.6.0': + resolution: {integrity: sha512-KHwPkCk6oRT4HADE7smhfsKudt9N/9lm6EJ5BVg0tD1yPA5hht837fB87F8pn15D8JfTqQOjhKTktwmLMiD7Kg==} engines: {node: '>=6'} - '@fortawesome/free-brands-svg-icons@6.4.2': - resolution: {integrity: sha512-LKOwJX0I7+mR/cvvf6qIiqcERbdnY+24zgpUSouySml+5w8B4BJOx8EhDR/FTKAu06W12fmUIcv6lzPSwYKGGg==} + '@fortawesome/free-brands-svg-icons@6.6.0': + resolution: {integrity: sha512-1MPD8lMNW/earme4OQi1IFHtmHUwAKgghXlNwWi9GO7QkTfD+IIaYpIai4m2YJEzqfEji3jFHX1DZI5pbY/biQ==} engines: {node: '>=6'} - '@fortawesome/free-solid-svg-icons@6.4.2': - resolution: {integrity: sha512-sYwXurXUEQS32fZz9hVCUUv/xu49PEJEyUOsA51l6PU/qVgfbTb2glsTEaJngVVT8VqBATRIdh7XVgV1JF1LkA==} + '@fortawesome/free-solid-svg-icons@6.6.0': + resolution: {integrity: sha512-IYv/2skhEDFc2WGUcqvFJkeK39Q+HyPf5GHUrT/l2pKbtgEIv1al1TKd6qStR5OIwQdN1GZP54ci3y4mroJWjA==} engines: {node: '>=6'} - '@fortawesome/react-fontawesome@0.1.19': - resolution: {integrity: sha512-Hyb+lB8T18cvLNX0S3llz7PcSOAJMLwiVKBuuzwM/nI5uoBw+gQjnf9il0fR1C3DKOI5Kc79pkJ4/xB0Uw9aFQ==} + '@fortawesome/react-fontawesome@0.2.2': + resolution: {integrity: sha512-EnkrprPNqI6SXJl//m29hpaNzOp1bruISWaOiRtkMi/xSvHJlzc2j2JAYS7egxt/EbjSNV/k6Xy0AQI6vB2+1g==} peerDependencies: '@fortawesome/fontawesome-svg-core': ~1 || ~6 - react: '>=16.x' + react: '>=16.3' '@humanwhocodes/config-array@0.11.14': resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead '@humanwhocodes/module-importer@1.0.1': resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} - '@humanwhocodes/object-schema@2.0.2': - resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} + '@humanwhocodes/object-schema@2.0.3': + resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} + deprecated: Use @eslint/object-schema instead '@istanbuljs/load-nyc-config@1.1.0': resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} @@ -1783,23 +1828,41 @@ packages: resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} engines: {node: '>=6.0.0'} + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + engines: {node: '>=6.0.0'} + '@jridgewell/resolve-uri@3.1.1': resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + '@jridgewell/set-array@1.1.2': resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + '@jridgewell/source-map@0.3.5': resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} '@jridgewell/sourcemap-codec@1.4.15': resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/trace-mapping@0.3.19': resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@ledgerhq/connect-kit-loader@1.1.2': resolution: {integrity: sha512-mscwGroSJQrCTjtNGBu+18FQbZYA4+q6Tyx6K7CXHl6AwgZKbWfZYdgP2F+fyZcRUdGRsMX8QtvU61VcGGtO1A==} @@ -1922,6 +1985,88 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} + '@parcel/watcher-android-arm64@2.4.1': + resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [android] + + '@parcel/watcher-darwin-arm64@2.4.1': + resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [darwin] + + '@parcel/watcher-darwin-x64@2.4.1': + resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [darwin] + + '@parcel/watcher-freebsd-x64@2.4.1': + resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [freebsd] + + '@parcel/watcher-linux-arm-glibc@2.4.1': + resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==} + engines: {node: '>= 10.0.0'} + cpu: [arm] + os: [linux] + + '@parcel/watcher-linux-arm64-glibc@2.4.1': + resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-arm64-musl@2.4.1': + resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [linux] + + '@parcel/watcher-linux-x64-glibc@2.4.1': + resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-linux-x64-musl@2.4.1': + resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [linux] + + '@parcel/watcher-wasm@2.4.1': + resolution: {integrity: sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==} + engines: {node: '>= 10.0.0'} + bundledDependencies: + - napi-wasm + + '@parcel/watcher-win32-arm64@2.4.1': + resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==} + engines: {node: '>= 10.0.0'} + cpu: [arm64] + os: [win32] + + '@parcel/watcher-win32-ia32@2.4.1': + resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==} + engines: {node: '>= 10.0.0'} + cpu: [ia32] + os: [win32] + + '@parcel/watcher-win32-x64@2.4.1': + resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==} + engines: {node: '>= 10.0.0'} + cpu: [x64] + os: [win32] + + '@parcel/watcher@2.4.1': + resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} + engines: {node: '>= 10.0.0'} + '@pmmmwh/react-refresh-webpack-plugin@0.5.11': resolution: {integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==} engines: {node: '>= 10.13'} @@ -1951,8 +2096,8 @@ packages: '@popperjs/core@2.11.8': resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - '@rainbow-me/rainbowkit@1.0.11': - resolution: {integrity: sha512-+cm6+WUPG9iPgkfJKbvlowcrSHu266Zk20LVRsYLcmb6v29gVMHcWQvyI4T6EVC9TxNjnyq/jIlen++uiUBmmQ==} + '@rainbow-me/rainbowkit@1.3.7': + resolution: {integrity: sha512-VZ12R8mgpwSuupajG5pkEHftKHP+h16Ci5JBmjuFzPhERqYTL3S/FzRDhha7gl+ZpQMWzF7NkMjURMK8Xjdb8A==} engines: {node: '>=12.4'} peerDependencies: react: '>=17' @@ -1960,6 +2105,9 @@ packages: viem: ~0.3.19 || ^1.0.0 wagmi: ~1.0.1 || ~1.1.0 || ~1.2.0 || ~1.3.0 || ~1.4.0 + '@reown/walletkit@1.0.1': + resolution: {integrity: sha512-h/KP22V05V5tlFPiP++krxROfz0eGYbr925eN9cnmcw4FZmy3uCLOecDQcJiPPvPZLw7rqMPMOzx1PGUK5uJNQ==} + '@rollup/plugin-babel@5.3.1': resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} @@ -2417,17 +2565,17 @@ packages: '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - '@vanilla-extract/css@1.9.1': - resolution: {integrity: sha512-pu2SFiff5jRhPwvGoj8cM5l/qIyLvigOmy22ss5DGjwV5pJYezRjDLxWumi2luIwioMWvh9EozCjyfH8nq+7fQ==} + '@vanilla-extract/css@1.14.0': + resolution: {integrity: sha512-rYfm7JciWZ8PFzBM/HDiE2GLnKI3xJ6/vdmVJ5BSgcCZ5CxRlM9Cjqclni9lGzF3eMOijnUhCd/KV8TOzyzbMA==} - '@vanilla-extract/dynamic@2.0.2': - resolution: {integrity: sha512-U4nKaEQ8Kuz+exXEr51DUpyaOuzo24/S/k1YbDPQR06cYcNjQqvwFRnwWtZ+9ImocqM1wTKtzrdUgSTtLGIwAg==} + '@vanilla-extract/dynamic@2.1.0': + resolution: {integrity: sha512-8zl0IgBYRtgD1h+56Zu13wHTiMTJSVEa4F7RWX9vTB/5Xe2KtjoiqApy/szHPVFA56c+ex6A4GpCQjT1bKXbYw==} - '@vanilla-extract/private@1.0.3': - resolution: {integrity: sha512-17kVyLq3ePTKOkveHxXuIJZtGYs+cSoev7BlP+Lf4916qfDhk/HBjvlYDe8egrea7LNPHKwSZJK/bzZC+Q6AwQ==} + '@vanilla-extract/private@1.0.6': + resolution: {integrity: sha512-ytsG/JLweEjw7DBuZ/0JCN4WAQgM9erfSTdS1NQY778hFQSZ6cfCDEZZ0sgVm4k54uNz6ImKB33AYvSR//fjxw==} - '@vanilla-extract/sprinkles@1.5.0': - resolution: {integrity: sha512-W58f2Rzz5lLmk0jbhgStVlZl5wEiPB1Ur3fRvUaBM+MrifZ3qskmFq/CiH//fEYeG5Dh9vF1qRviMMH46cX9Nw==} + '@vanilla-extract/sprinkles@1.6.1': + resolution: {integrity: sha512-N/RGKwGAAidBupZ436RpuweRQHEFGU+mvAqBo8PRMAjJEmHoPDttV8RObaMLrJHWLqvX+XUMinHUnD0hFRQISw==} peerDependencies: '@vanilla-extract/css': ^1.0.0 @@ -2449,10 +2597,6 @@ packages: typescript: optional: true - '@walletconnect/auth-client@2.1.2': - resolution: {integrity: sha512-ubJLn+vGb8sTdBFX6xAh4kjR5idrtS3RBngQWaJJJpEPBQmxMb8pM2q0FIRs8Is4K6jKy+uEhusMV+7ZBmTzjw==} - engines: {node: '>=16'} - '@walletconnect/browser-utils@1.8.0': resolution: {integrity: sha512-Wcqqx+wjxIo9fv6eBUFHPsW1y/bGWWRboni5dfD8PtOmrihrEpOCmvRJe4rfl7xgJW8Ea9UqKEaq0bIRLHlK4A==} @@ -2466,6 +2610,10 @@ packages: '@walletconnect/core@2.10.1': resolution: {integrity: sha512-WAoXfmj+Zy5q48TnrKUjmHXJCBahzKwbul+noepRZf7JDtUAZ9IOWpUjg+UPRbfK5EiWZ0TF42S6SXidf7EHoQ==} + '@walletconnect/core@2.16.2': + resolution: {integrity: sha512-Xf1SqLSB8KffNsgUGDE/CguAcKMD+3EKfqfqNhWpimxe1QDZDUw8xq+nnxfx6MAb8fdx9GYe6Lvknx2SAAeAHw==} + engines: {node: '>=18'} + '@walletconnect/crypto@1.0.3': resolution: {integrity: sha512-+2jdORD7XQs76I2Odgr3wwrtyuLUXD/kprNVsjWRhhhdO9Mt6WqVzOPu0/t7OHSmgal8k7SoBQzUc5hu/8zL/g==} @@ -2489,6 +2637,9 @@ packages: '@walletconnect/heartbeat@1.2.1': resolution: {integrity: sha512-yVzws616xsDLJxuG/28FqtZ5rzrTA4gUjdEMTbWB5Y8V1XHRmqq4efAxCw5ie7WjbXFSUyBHaWlMR+2/CpQC5Q==} + '@walletconnect/heartbeat@1.2.2': + resolution: {integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==} + '@walletconnect/iso-crypto@1.8.0': resolution: {integrity: sha512-pWy19KCyitpfXb70hA73r9FcvklS+FvO9QUIttp3c2mfW8frxgYeRXfxLRCIQTkaYueRKvdqPjbyhPLam508XQ==} @@ -2498,25 +2649,31 @@ packages: '@walletconnect/jsonrpc-provider@1.0.13': resolution: {integrity: sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==} + '@walletconnect/jsonrpc-provider@1.0.14': + resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==} + '@walletconnect/jsonrpc-types@1.0.3': resolution: {integrity: sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==} + '@walletconnect/jsonrpc-types@1.0.4': + resolution: {integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==} + '@walletconnect/jsonrpc-utils@1.0.8': resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==} '@walletconnect/jsonrpc-ws-connection@1.0.13': resolution: {integrity: sha512-mfOM7uFH4lGtQxG+XklYuFBj6dwVvseTt5/ahOkkmpcAEgz2umuzu7fTR+h5EmjQBdrmYyEBOWADbeaFNxdySg==} - '@walletconnect/keyvaluestorage@1.0.2': - resolution: {integrity: sha512-U/nNG+VLWoPFdwwKx0oliT4ziKQCEoQ27L5Hhw8YOFGA2Po9A9pULUYNWhDgHkrb0gYDNt//X7wABcEWWBd3FQ==} + '@walletconnect/jsonrpc-ws-connection@1.0.14': + resolution: {integrity: sha512-Jsl6fC55AYcbkNVkwNM6Jo+ufsuCQRqViOQ8ZBPH9pRREHH9welbBiszuTLqEJiQcO/6XfFDl6bzCJIkrEi8XA==} + + '@walletconnect/keyvaluestorage@1.1.1': + resolution: {integrity: sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==} peerDependencies: '@react-native-async-storage/async-storage': 1.x - lokijs: 1.x peerDependenciesMeta: '@react-native-async-storage/async-storage': optional: true - lokijs: - optional: true '@walletconnect/legacy-client@2.0.0': resolution: {integrity: sha512-v5L7rYk9loVnfvUf0mF+76bUPFaU5/Vh7mzL6/950CD/yoGdzYZ3Kj+L7mkC6HPMEGeQsBP1+sqBuiVGZ/aODA==} @@ -2533,8 +2690,8 @@ packages: '@walletconnect/legacy-utils@2.0.0': resolution: {integrity: sha512-CPWxSVVXw0kgNCxvU126g4GiV3mzXmC8IPJ15twE46aJ1FX+RHEIfAzFMFz2F2+fEhBxL63A7dwNQKDXorRPcQ==} - '@walletconnect/logger@2.0.1': - resolution: {integrity: sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==} + '@walletconnect/logger@2.1.2': + resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==} '@walletconnect/modal-core@2.6.2': resolution: {integrity: sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==} @@ -2548,6 +2705,9 @@ packages: '@walletconnect/randombytes@1.0.3': resolution: {integrity: sha512-35lpzxcHFbTN3ABefC9W+uBpNZl1GC4Wpx0ed30gibfO/y9oLdy1NznbV96HARQKSBV9J9M/rrtIvf6a23jfYw==} + '@walletconnect/relay-api@1.0.11': + resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==} + '@walletconnect/relay-api@1.0.9': resolution: {integrity: sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==} @@ -2562,6 +2722,10 @@ packages: '@walletconnect/sign-client@2.10.1': resolution: {integrity: sha512-iG3eJGi1yXeG3xGeVSSMf8wDFyx239B0prLQfy1uYDtYFb2ynnH/09oqAZyKn96W5nfQzUgM2Mz157PVdloH3Q==} + deprecated: Reliability and performance greatly improved - please see https://github.com/WalletConnect/walletconnect-monorepo/releases + + '@walletconnect/sign-client@2.16.2': + resolution: {integrity: sha512-R/hk2P3UN5u3FV22E7h9S/Oy8IbDwaBGH7St/BzOpJCjFmf6CF5S3GZVjrXPBesvRF94CROkqMF89wz5HkZepA==} '@walletconnect/socket-transport@1.8.0': resolution: {integrity: sha512-5DyIyWrzHXTcVp0Vd93zJ5XMW61iDM6bcWT4p8DTRfFsOtW46JquruMhxOLeCOieM4D73kcr3U7WtyR4JUsGuQ==} @@ -2576,6 +2740,9 @@ packages: '@walletconnect/types@2.10.1': resolution: {integrity: sha512-7pccAhajQdiH2kYywjE1XI64IqRI+4ioyGy0wvz8d0UFQ/DSG3MLKR8jHf5aTOafQQ/HRLz6xvlzN4a7gIVkUQ==} + '@walletconnect/types@2.16.2': + resolution: {integrity: sha512-IIV9kQh6b/WpwhfgPixpziE+8XK/FtdnfvN1oOMs5h+lgwr46OJknPY2p7eS6vvdvEP3xMEc1Kbu1i4tlnroiw==} + '@walletconnect/universal-provider@2.10.1': resolution: {integrity: sha512-81QxTH/X4dRoYCz0U9iOrBYOcj7N897ONcB57wsGhEkV7Rc9htmWJq2CzeOuxvVZ+pNZkE+/aw9LrhizO1Ltxg==} @@ -2585,8 +2752,8 @@ packages: '@walletconnect/utils@2.10.1': resolution: {integrity: sha512-DM0dKgm9O58l7VqJEyV2OVv16XRePhDAReI23let6WdW1dSpw/Y/A89Lp99ZJOjLm2FxyblMRF3YRaZtHwBffw==} - '@walletconnect/web3wallet@1.9.1': - resolution: {integrity: sha512-amijU+dK8zhDTxbJqxQvBlysFEroHUbE9HyMGKp6HSba5k5fXI0F+mvxeidDkOXur+ZsCj86rPQqSuPrTkPySg==} + '@walletconnect/utils@2.16.2': + resolution: {integrity: sha512-CEMxMCIqvwXd8YIEXfBoCiWY8DtUevJ/w14Si+cmTHWHBDWKRZll7+QUXgICIBx5kyX3GMAKNABaTlg2A2CPSg==} '@walletconnect/window-getters@1.0.0': resolution: {integrity: sha512-xB0SQsLaleIYIkSsl43vm8EwETpBzJ2gnzk7e0wMF3ktqiTGS6TFHxcprMl5R44KKh4tCcHCJwolMCaDSwtAaA==} @@ -2722,8 +2889,8 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - acorn@8.11.3: - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + acorn@8.12.1: + resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} engines: {node: '>=0.4.0'} hasBin: true @@ -2749,9 +2916,6 @@ packages: resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} engines: {node: '>= 8.0.0'} - ahocorasick@1.0.2: - resolution: {integrity: sha512-hCOfMzbFx5IDutmWLAt6MZwOUjIfSM9G9FyVxytmE4Rs/5YDPWQrD/+IR1w+FweD9H2oOZEnv36TmkjhNURBVA==} - ajv-formats@2.1.1: resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} peerDependencies: @@ -3060,6 +3224,10 @@ packages: resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} engines: {node: '>=8'} + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + brorand@1.1.0: resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} @@ -3183,6 +3351,10 @@ packages: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} engines: {node: '>= 8.10.0'} + chokidar@3.6.0: + resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} + engines: {node: '>= 8.10.0'} + chrome-trace-event@1.0.3: resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} engines: {node: '>=6.0'} @@ -3191,6 +3363,9 @@ packages: resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} engines: {node: '>=8'} + citty@0.1.6: + resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} + cjs-module-lexer@1.2.3: resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} @@ -3201,20 +3376,24 @@ packages: client-only@0.0.1: resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + clipboardy@4.0.0: + resolution: {integrity: sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==} + engines: {node: '>=18'} + cliui@6.0.0: resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} cliui@7.0.4: resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} - clsx@1.1.1: - resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==} - engines: {node: '>=6'} - clsx@1.2.1: resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} engines: {node: '>=6'} + clsx@2.1.0: + resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} + engines: {node: '>=6'} + co@4.6.0: resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} @@ -3239,8 +3418,8 @@ packages: color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - color2k@2.0.2: - resolution: {integrity: sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==} + color2k@2.0.3: + resolution: {integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==} colord@2.9.3: resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} @@ -3291,6 +3470,9 @@ packages: concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + confbox@0.1.7: + resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} + confusing-browser-globals@1.0.11: resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} @@ -3298,6 +3480,10 @@ packages: resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} engines: {node: '>=0.8'} + consola@3.2.3: + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} + content-disposition@0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} @@ -3309,6 +3495,9 @@ packages: convert-source-map@1.9.0: resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + cookie-es@1.2.2: + resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} + cookie-signature@1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} @@ -3346,6 +3535,14 @@ packages: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} + crossws@0.2.4: + resolution: {integrity: sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==} + peerDependencies: + uWebSockets.js: '*' + peerDependenciesMeta: + uWebSockets.js: + optional: true + crypto-random-string@2.0.0: resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} engines: {node: '>=8'} @@ -3426,10 +3623,6 @@ packages: resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} engines: {node: '>= 6'} - css-what@5.1.0: - resolution: {integrity: sha512-arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw==} - engines: {node: '>= 6'} - css-what@6.1.0: resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} engines: {node: '>= 6'} @@ -3477,6 +3670,9 @@ packages: csstype@3.1.2: resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + currently-unhandled@0.4.1: resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} engines: {node: '>=0.10.0'} @@ -3516,6 +3712,15 @@ packages: supports-color: optional: true + debug@4.3.7: + resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + decamelize-keys@1.1.1: resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} engines: {node: '>=0.10.0'} @@ -3560,6 +3765,9 @@ packages: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + delay@5.0.0: resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==} engines: {node: '>=10'} @@ -3580,6 +3788,9 @@ packages: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} + destr@2.0.3: + resolution: {integrity: sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==} + destroy@1.2.0: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} @@ -3590,6 +3801,11 @@ packages: detect-browser@5.3.0: resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==} + detect-libc@1.0.3: + resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} + engines: {node: '>=0.10'} + hasBin: true + detect-newline@3.1.0: resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} engines: {node: '>=8'} @@ -3682,8 +3898,8 @@ packages: duplexer@0.1.2: resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} - duplexify@4.1.2: - resolution: {integrity: sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw==} + duplexify@4.1.3: + resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==} ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} @@ -3699,6 +3915,9 @@ packages: elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} + elliptic@6.5.7: + resolution: {integrity: sha512-ESVCtTwiA+XhY3wyh24QqRGBoP3rEdDUl3EDUUo9tft074fi19IrdpH7hLCMMP3CIj7jb3W96rn8lt/BqIlt5Q==} + emittery@0.10.2: resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} engines: {node: '>=12'} @@ -3930,8 +4149,8 @@ packages: engines: {node: '>=4'} hasBin: true - esquery@1.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} engines: {node: '>=0.10'} esrecurse@4.3.0: @@ -3996,6 +4215,10 @@ packages: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + exit@0.1.2: resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} @@ -4028,8 +4251,8 @@ packages: fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fast-redact@3.3.0: - resolution: {integrity: sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==} + fast-redact@3.5.0: + resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} engines: {node: '>=6'} fast-safe-stringify@2.1.1: @@ -4072,6 +4295,10 @@ packages: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} engines: {node: '>=8'} + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + filter-obj@1.1.0: resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} engines: {node: '>=0.10.0'} @@ -4218,10 +4445,17 @@ packages: resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} engines: {node: '>=8.0.0'} + get-port-please@3.1.2: + resolution: {integrity: sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==} + get-stream@6.0.1: resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} engines: {node: '>=10'} + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + get-symbol-description@1.0.0: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} @@ -4280,6 +4514,9 @@ packages: resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} engines: {node: '>=10'} + h3@1.12.0: + resolution: {integrity: sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==} + handle-thing@2.0.1: resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} @@ -4400,6 +4637,10 @@ packages: resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} engines: {node: '>=8.0.0'} + http-shutdown@1.2.2: + resolution: {integrity: sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + https-proxy-agent@5.0.1: resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} engines: {node: '>= 6'} @@ -4408,6 +4649,10 @@ packages: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + humanize-ms@1.2.1: resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} @@ -4425,6 +4670,9 @@ packages: peerDependencies: postcss: ^8.1.0 + idb-keyval@6.2.1: + resolution: {integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==} + idb@7.1.1: resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} @@ -4439,8 +4687,8 @@ packages: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} engines: {node: '>= 4'} - ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} immer@9.0.21: @@ -4490,6 +4738,9 @@ packages: resolution: {integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==} engines: {node: '>= 10'} + iron-webcrypto@1.2.1: + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} + is-arguments@1.1.1: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} @@ -4531,6 +4782,11 @@ packages: engines: {node: '>=8'} hasBin: true + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -4554,6 +4810,11 @@ packages: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + is-map@2.0.2: resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} @@ -4613,6 +4874,10 @@ packages: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + is-string@1.0.7: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} @@ -4641,6 +4906,14 @@ packages: resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} engines: {node: '>=8'} + is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + + is64bit@2.0.0: + resolution: {integrity: sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==} + engines: {node: '>=18'} + isarray@1.0.0: resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} @@ -4650,9 +4923,6 @@ packages: isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - isomorphic-unfetch@3.1.0: - resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} - isomorphic-ws@4.0.1: resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} peerDependencies: @@ -4868,6 +5138,10 @@ packages: resolution: {integrity: sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==} hasBin: true + jiti@1.21.6: + resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} + hasBin: true + joycon@3.1.1: resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} engines: {node: '>=10'} @@ -5015,6 +5289,10 @@ packages: lines-and-columns@1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + listhen@1.7.2: + resolution: {integrity: sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==} + hasBin: true + lit-element@3.3.3: resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==} @@ -5091,6 +5369,9 @@ packages: lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} @@ -5162,6 +5443,10 @@ packages: resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} engines: {node: '>=8.6'} + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + mime-db@1.52.0: resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} engines: {node: '>= 0.6'} @@ -5175,10 +5460,19 @@ packages: engines: {node: '>=4'} hasBin: true + mime@3.0.0: + resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} + engines: {node: '>=10.0.0'} + hasBin: true + mimic-fn@2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + mini-css-extract-plugin@2.7.6: resolution: {integrity: sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==} engines: {node: '>= 12.13.0'} @@ -5209,9 +5503,19 @@ packages: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true + mlly@1.7.1: + resolution: {integrity: sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==} + + modern-ahocorasick@1.0.1: + resolution: {integrity: sha512-yoe+JbhTClckZ67b2itRtistFKf8yPYelHLc7e5xAwtNAXxM6wJTUx2C7QeVSJFDzKT7bCIFyBVybPMKvmB9AA==} + motion@10.16.2: resolution: {integrity: sha512-p+PurYqfUdcJZvtnmAqu5fJgV2kR0uLFQuBKtLeFVTrYEVllI99tiOTSefVNYuip9ELTEkepIIDftNdze76NAQ==} + mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} @@ -5273,6 +5577,12 @@ packages: node-addon-api@2.0.2: resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==} + node-addon-api@7.1.1: + resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} + + node-fetch-native@1.6.4: + resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} + node-fetch@2.7.0: resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} @@ -5315,6 +5625,10 @@ packages: resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} engines: {node: '>=8'} + npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + nth-check@1.0.2: resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} @@ -5368,6 +5682,12 @@ packages: obuf@1.1.2: resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + ofetch@1.4.0: + resolution: {integrity: sha512-MuHgsEhU6zGeX+EMh+8mSMrYTnsqJQQrpM00Q6QHMKNqQ0bKy0B43tk8tL1wg+CnsSTy1kg4Ir2T5Ig6rD+dfQ==} + + ohash@1.1.4: + resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==} + on-exit-leak-free@0.2.0: resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==} @@ -5390,6 +5710,10 @@ packages: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} @@ -5398,8 +5722,8 @@ packages: resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} engines: {node: '>= 0.8.0'} - optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} outdent@0.8.0: @@ -5486,6 +5810,10 @@ packages: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + path-parse@1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} @@ -5500,6 +5828,9 @@ packages: resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} engines: {node: '>=8'} + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} @@ -5509,6 +5840,9 @@ packages: picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + picocolors@1.1.0: + resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} + picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} @@ -5550,6 +5884,9 @@ packages: resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} engines: {node: '>=8'} + pkg-types@1.2.0: + resolution: {integrity: sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==} + pkg-up@3.1.0: resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} engines: {node: '>=8'} @@ -6058,11 +6395,6 @@ packages: resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} engines: {node: '>=0.6.0', teleport: '>=0.2.0'} - qrcode@1.5.0: - resolution: {integrity: sha512-9MgRpgVc+/+47dFvQeD6U2s0Z92EsKzcHogtum4QB+UNd025WOJSHvn/hjk9xmzj7Stj95CyUAs31mrjxliEsQ==} - engines: {node: '>=10.13.0'} - hasBin: true - qrcode@1.5.3: resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==} engines: {node: '>=10.13.0'} @@ -6093,6 +6425,9 @@ packages: resolution: {integrity: sha512-tRS7sTgyxMXtLum8L65daJnHUhfDUgboRdcWW2bR9vBfrj2+O5HSMbQOJfJJjIVSPFqbBCF37FpwWXGitDc5tA==} engines: {node: '>=4'} + radix3@1.1.2: + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} + raf@3.4.1: resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} @@ -6175,8 +6510,8 @@ packages: '@types/react': optional: true - react-remove-scroll@2.5.4: - resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==} + react-remove-scroll-bar@2.3.6: + resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6195,6 +6530,16 @@ 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-scripts@5.0.1: resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} engines: {node: '>=14.0.0'} @@ -6294,6 +6639,9 @@ packages: regenerator-runtime@0.14.0: resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} @@ -6412,14 +6760,11 @@ packages: safe-buffer@5.2.1: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} - safe-json-utils@1.1.1: - resolution: {integrity: sha512-SAJWGKDs50tAbiDXLf89PDwt9XYkWyANFWVzn4dTXl5QyI8t2o/bW5/OJl3lvc2WVU4MEpTo9Yz5NVFNsp+OJQ==} - safe-regex-test@1.0.0: resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} - safe-stable-stringify@2.4.3: - resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} + safe-stable-stringify@2.5.0: + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} engines: {node: '>=10'} safer-buffer@2.1.2: @@ -6551,6 +6896,10 @@ packages: signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} @@ -6659,11 +7008,14 @@ packages: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} + std-env@3.7.0: + resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} + stream-browserify@3.0.0: resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} - stream-shift@1.0.1: - resolution: {integrity: sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==} + stream-shift@1.0.3: + resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} streamsearch@1.1.0: resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} @@ -6735,6 +7087,10 @@ packages: resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} engines: {node: '>=6'} + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + strip-indent@2.0.0: resolution: {integrity: sha512-RsSNPLpq6YUL7QYy44RnPVTn/lcVZtb48Uof3X5JLbF4zD/Gs7ZFDv2HWol+leoQN2mT86LAzSshGfkTlSOpsA==} engines: {node: '>=4'} @@ -6823,6 +7179,10 @@ packages: symbol-tree@3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + system-architecture@0.1.0: + resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==} + engines: {node: '>=18'} + tailwindcss@3.3.3: resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==} engines: {node: '>=14.0.0'} @@ -6955,6 +7315,9 @@ packages: tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + tslib@2.7.0: + resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} + tsutils@3.21.0: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} @@ -7015,17 +7378,30 @@ packages: engines: {node: '>=12.20'} hasBin: true + ua-parser-js@1.0.39: + resolution: {integrity: sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==} + hasBin: true + + ufo@1.5.4: + resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==} + + uint8arrays@3.1.0: + resolution: {integrity: sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==} + uint8arrays@3.1.1: resolution: {integrity: sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==} unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + uncrypto@0.1.3: + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} + underscore@1.12.1: resolution: {integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==} - unfetch@4.2.0: - resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} + unenv@1.10.0: + resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==} unicode-canonical-property-names-ecmascript@2.0.0: resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} @@ -7062,6 +7438,54 @@ packages: unquote@1.1.1: resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + unstorage@1.12.0: + resolution: {integrity: sha512-ARZYTXiC+e8z3lRM7/qY9oyaOkaozCeNd2xoz7sYK9fv7OLGhVsf+BZbmASqiK/HTZ7T6eAlnVq9JynZppyk3w==} + peerDependencies: + '@azure/app-configuration': ^1.7.0 + '@azure/cosmos': ^4.1.1 + '@azure/data-tables': ^13.2.2 + '@azure/identity': ^4.4.1 + '@azure/keyvault-secrets': ^4.8.0 + '@azure/storage-blob': ^12.24.0 + '@capacitor/preferences': ^6.0.2 + '@netlify/blobs': ^6.5.0 || ^7.0.0 + '@planetscale/database': ^1.19.0 + '@upstash/redis': ^1.34.0 + '@vercel/kv': ^1.0.1 + idb-keyval: ^6.2.1 + ioredis: ^5.4.1 + peerDependenciesMeta: + '@azure/app-configuration': + optional: true + '@azure/cosmos': + optional: true + '@azure/data-tables': + optional: true + '@azure/identity': + optional: true + '@azure/keyvault-secrets': + optional: true + '@azure/storage-blob': + optional: true + '@capacitor/preferences': + optional: true + '@netlify/blobs': + optional: true + '@planetscale/database': + optional: true + '@upstash/redis': + optional: true + '@vercel/kv': + optional: true + idb-keyval: + optional: true + ioredis: + optional: true + + untun@0.1.3: + resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==} + hasBin: true + upath@1.2.0: resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} engines: {node: '>=4'} @@ -7072,6 +7496,9 @@ packages: peerDependencies: browserslist: '>= 4.21.0' + uqr@0.1.2: + resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} + uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -7088,6 +7515,16 @@ packages: '@types/react': optional: true + use-callback-ref@1.3.2: + resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} + 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 + use-isomorphic-layout-effect@1.1.2: resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: @@ -7397,6 +7834,18 @@ packages: utf-8-validate: optional: true + ws@7.5.10: + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ^5.0.2 + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + ws@7.5.3: resolution: {integrity: sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg==} engines: {node: '>=8.3.0'} @@ -7516,8 +7965,6 @@ packages: snapshots: - '@aashutoshrathi/word-wrap@1.2.6': {} - '@adraffy/ens-normalize@1.9.4': {} '@alloc/quick-lru@5.2.0': {} @@ -7539,6 +7986,11 @@ snapshots: '@babel/highlight': 7.22.20 chalk: 2.4.2 + '@babel/code-frame@7.24.7': + dependencies: + '@babel/highlight': 7.24.7 + picocolors: 1.1.0 + '@babel/compat-data@7.22.20': {} '@babel/core@7.22.20': @@ -7576,10 +8028,21 @@ snapshots: '@jridgewell/trace-mapping': 0.3.19 jsesc: 2.5.2 + '@babel/generator@7.25.6': + dependencies: + '@babel/types': 7.25.6 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + '@babel/helper-annotate-as-pure@7.22.5': dependencies: '@babel/types': 7.22.19 + '@babel/helper-annotate-as-pure@7.24.7': + dependencies: + '@babel/types': 7.25.6 + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': dependencies: '@babel/types': 7.22.19 @@ -7642,6 +8105,13 @@ snapshots: dependencies: '@babel/types': 7.22.19 + '@babel/helper-module-imports@7.24.7': + dependencies: + '@babel/traverse': 7.25.6 + '@babel/types': 7.25.6 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-transforms@7.22.20(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -7657,7 +8127,7 @@ snapshots: '@babel/helper-plugin-utils@7.22.5': {} - '@babel/helper-plugin-utils@7.24.0': {} + '@babel/helper-plugin-utils@7.24.8': {} '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.22.20)': dependencies: @@ -7687,10 +8157,12 @@ snapshots: '@babel/helper-string-parser@7.22.5': {} - '@babel/helper-string-parser@7.23.4': {} + '@babel/helper-string-parser@7.24.8': {} '@babel/helper-validator-identifier@7.22.20': {} + '@babel/helper-validator-identifier@7.24.7': {} + '@babel/helper-validator-option@7.22.15': {} '@babel/helper-wrap-function@7.22.20': @@ -7713,10 +8185,21 @@ snapshots: chalk: 2.4.2 js-tokens: 4.0.0 + '@babel/highlight@7.24.7': + dependencies: + '@babel/helper-validator-identifier': 7.24.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.1.0 + '@babel/parser@7.22.16': dependencies: '@babel/types': 7.22.19 + '@babel/parser@7.25.6': + dependencies: + '@babel/types': 7.25.6 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -7824,7 +8307,7 @@ snapshots: '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.20)': dependencies: @@ -7851,10 +8334,10 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.22.20)': + '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.24.8 '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.20)': dependencies: @@ -8172,11 +8655,13 @@ snapshots: '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.22.20) - '@babel/types': 7.24.0 + '@babel/helper-annotate-as-pure': 7.24.7 + '@babel/helper-module-imports': 7.24.7 + '@babel/helper-plugin-utils': 7.24.8 + '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.22.20) + '@babel/types': 7.25.6 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.20)': dependencies: @@ -8382,12 +8867,22 @@ snapshots: dependencies: regenerator-runtime: 0.14.0 + '@babel/runtime@7.25.6': + dependencies: + regenerator-runtime: 0.14.1 + '@babel/template@7.22.15': dependencies: '@babel/code-frame': 7.22.13 '@babel/parser': 7.22.16 '@babel/types': 7.22.19 + '@babel/template@7.25.0': + dependencies: + '@babel/code-frame': 7.24.7 + '@babel/parser': 7.25.6 + '@babel/types': 7.25.6 + '@babel/traverse@7.22.20': dependencies: '@babel/code-frame': 7.22.13 @@ -8403,83 +8898,95 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/traverse@7.25.6': + dependencies: + '@babel/code-frame': 7.24.7 + '@babel/generator': 7.25.6 + '@babel/parser': 7.25.6 + '@babel/template': 7.25.0 + '@babel/types': 7.25.6 + debug: 4.3.7 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + '@babel/types@7.22.19': dependencies: '@babel/helper-string-parser': 7.22.5 '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 - '@babel/types@7.24.0': + '@babel/types@7.25.6': dependencies: - '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-string-parser': 7.24.8 + '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 '@bcoe/v8-coverage@0.2.3': {} - '@chakra-ui/accordion@2.3.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/accordion@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) '@chakra-ui/transition': 2.1.0(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) framer-motion: 4.1.17(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/alert@2.2.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/anatomy@2.2.1': {} + '@chakra-ui/anatomy@2.2.2': {} - '@chakra-ui/avatar@2.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/avatar@2.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/breadcrumb@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/button@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/card@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/checkbox@2.3.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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) @@ -8488,8 +8995,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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/visually-hidden': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@zag-js/focus-visible': 0.16.0 react: 18.2.0 @@ -8499,10 +9006,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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/close-button@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) react: 18.2.0 '@chakra-ui/color-mode@2.2.0(react@18.2.0)': @@ -8510,9 +9017,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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/control-box@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) react: 18.2.0 '@chakra-ui/counter@2.1.0(react@18.2.0)': @@ -8522,9 +9029,9 @@ snapshots: '@chakra-ui/shared-utils': 2.0.5 react: 18.2.0 - '@chakra-ui/css-reset@2.3.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(react@18.2.0)': + '@chakra-ui/css-reset@2.3.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(react@18.2.0)': dependencies: - '@emotion/react': 11.11.1(@types/react@17.0.65)(react@18.2.0) + '@emotion/react': 11.13.3(@types/react@17.0.65)(react@18.2.0) react: 18.2.0 '@chakra-ui/descendant@3.1.0(react@18.2.0)': @@ -8535,7 +9042,7 @@ snapshots: '@chakra-ui/dom-utils@2.1.0': {} - '@chakra-ui/editable@3.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/editable@3.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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) @@ -8546,7 +9053,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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) react: 18.2.0 '@chakra-ui/event-utils@2.0.8': {} @@ -8559,24 +9066,14 @@ snapshots: transitivePeerDependencies: - '@types/react' - '@chakra-ui/form-control@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) - react: 18.2.0 - - '@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) react: 18.2.0 '@chakra-ui/hooks@2.2.1(react@18.2.0)': @@ -8587,51 +9084,51 @@ snapshots: copy-to-clipboard: 3.3.3 react: 18.2.0 - '@chakra-ui/icon@2.0.5(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/icon@2.0.5(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/icons@1.1.7(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/icons@1.1.7(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) '@types/react': 17.0.65 react: 18.2.0 - '@chakra-ui/image@2.1.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/image@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/input@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) react: 18.2.0 '@chakra-ui/lazy-utils@2.0.5': {} @@ -8640,15 +9137,15 @@ snapshots: dependencies: react: 18.2.0 - '@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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) @@ -8664,21 +9161,21 @@ 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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) '@chakra-ui/transition': 2.1.0(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) framer-motion: 4.1.17(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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/modal@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/focus-lock': 2.1.0(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) '@chakra-ui/transition': 2.1.0(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) aria-hidden: 1.2.3 framer-motion: 4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -8688,19 +9185,19 @@ snapshots: transitivePeerDependencies: - '@types/react' - '@chakra-ui/next-js@2.2.0(@chakra-ui/react@2.8.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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@11.11.1(@types/react@17.0.65)(react@18.2.0))(next@14.2.3(@babel/core@7.22.20)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/next-js@2.2.0(@chakra-ui/react@2.8.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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@11.13.3(@types/react@17.0.65)(react@18.2.0))(next@14.2.3(@babel/core@7.22.20)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/react': 2.8.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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/react': 2.8.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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/cache': 11.11.0 - '@emotion/react': 11.11.1(@types/react@17.0.65)(react@18.2.0) + '@emotion/react': 11.13.3(@types/react@17.0.65)(react@18.2.0) next: 14.2.3(@babel/core@7.22.20)(react-dom@18.2.0(react@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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/number-input@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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) @@ -8710,14 +9207,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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/pin-input@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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) @@ -8725,12 +9222,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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/popover@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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) @@ -8741,7 +9238,7 @@ 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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) framer-motion: 4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 @@ -8759,32 +9256,32 @@ snapshots: 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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/progress@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@chakra-ui/provider@2.4.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/css-reset': 2.3.0(@emotion/react@11.13.3(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 2.0.15 - '@emotion/react': 11.11.1(@types/react@17.0.65)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0) + '@emotion/react': 11.13.3(@types/react@17.0.65)(react@18.2.0) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/radio@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) '@zag-js/focus-visible': 0.16.0 react: 18.2.0 @@ -8895,92 +9392,92 @@ snapshots: '@chakra-ui/utils': 2.0.15 react: 18.2.0 - '@chakra-ui/react@2.8.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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/react@2.8.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/accordion': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/alert': 2.2.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/avatar': 2.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/breadcrumb': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/button': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/card': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/checkbox': 2.3.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/control-box': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/css-reset': 2.3.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/editable': 3.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/focus-lock': 2.1.0(@types/react@17.0.65)(react@18.2.0) - '@chakra-ui/form-control': 2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/image': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/input': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/layout': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/menu': 2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(@types/react@17.0.65)(framer-motion@4.1.17(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.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/pin-input': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/popover': 2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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))(react@18.2.0) - '@chakra-ui/progress': 2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/progress': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/provider': 2.4.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/radio': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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/select': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/skeleton': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/skip-nav': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/slider': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/stat': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/stepper': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/styled-system': 2.9.2 + '@chakra-ui/switch': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/table': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/tabs': 3.0.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/tag': 3.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/textarea': 2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/theme': 3.3.1(@chakra-ui/styled-system@2.9.2) + '@chakra-ui/theme-utils': 2.0.21 + '@chakra-ui/toast': 7.0.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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@4.1.17(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@emotion/react': 11.11.1(@types/react@17.0.65)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0) + '@chakra-ui/visually-hidden': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@emotion/react': 11.13.3(@types/react@17.0.65)(react@18.2.0) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0) framer-motion: 4.1.17(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/select@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/skeleton@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/skip-nav@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/slider@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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) @@ -8992,66 +9489,66 @@ 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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/stat@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/stepper@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/styled-system@2.9.1': + '@chakra-ui/styled-system@2.9.2': dependencies: '@chakra-ui/shared-utils': 2.0.5 - csstype: 3.1.2 + csstype: 3.1.3 lodash.mergewith: 4.6.2 - '@chakra-ui/switch@2.1.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/switch@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/checkbox': 2.3.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) framer-motion: 4.1.17(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0)': + '@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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 '@chakra-ui/react-utils': 2.0.12(react@18.2.0) - '@chakra-ui/styled-system': 2.9.1 - '@chakra-ui/theme-utils': 2.0.20 + '@chakra-ui/styled-system': 2.9.2 + '@chakra-ui/theme-utils': 2.0.21 '@chakra-ui/utils': 2.0.15 - '@emotion/react': 11.11.1(@types/react@17.0.65)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0) + '@emotion/react': 11.13.3(@types/react@17.0.65)(react@18.2.0) + '@emotion/styled': 11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/table@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/tabs@3.0.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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) @@ -9062,61 +9559,61 @@ 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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/tag@3.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/textarea@2.1.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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)': + '@chakra-ui/theme-tools@2.1.2(@chakra-ui/styled-system@2.9.2)': dependencies: - '@chakra-ui/anatomy': 2.2.1 + '@chakra-ui/anatomy': 2.2.2 '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/styled-system': 2.9.1 - color2k: 2.0.2 + '@chakra-ui/styled-system': 2.9.2 + color2k: 2.0.3 - '@chakra-ui/theme-utils@2.0.20': + '@chakra-ui/theme-utils@2.0.21': dependencies: '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/styled-system': 2.9.1 - '@chakra-ui/theme': 3.3.0(@chakra-ui/styled-system@2.9.1) + '@chakra-ui/styled-system': 2.9.2 + '@chakra-ui/theme': 3.3.1(@chakra-ui/styled-system@2.9.2) lodash.mergewith: 4.6.2 - '@chakra-ui/theme@3.3.0(@chakra-ui/styled-system@2.9.1)': + '@chakra-ui/theme@3.3.1(@chakra-ui/styled-system@2.9.2)': dependencies: - '@chakra-ui/anatomy': 2.2.1 + '@chakra-ui/anatomy': 2.2.2 '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/styled-system': 2.9.1 - '@chakra-ui/theme-tools': 2.1.1(@chakra-ui/styled-system@2.9.1) + '@chakra-ui/styled-system': 2.9.2 + '@chakra-ui/theme-tools': 2.1.2(@chakra-ui/styled-system@2.9.2) - '@chakra-ui/toast@7.0.1(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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/toast@7.0.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/alert': 2.2.2(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/close-button': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) - '@chakra-ui/theme': 3.3.0(@chakra-ui/styled-system@2.9.1) + '@chakra-ui/styled-system': 2.9.2 + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/theme': 3.3.1(@chakra-ui/styled-system@2.9.2) framer-motion: 4.1.17(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(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(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) @@ -9126,7 +9623,7 @@ snapshots: '@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(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) framer-motion: 4.1.17(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) @@ -9151,9 +9648,9 @@ snapshots: framesync: 6.1.2 lodash.mergewith: 4.6.2 - '@chakra-ui/visually-hidden@2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/visually-hidden@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/system': 2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) react: 18.2.0 '@coinbase/wallet-sdk@3.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': @@ -9261,19 +9758,21 @@ snapshots: dependencies: postcss-selector-parser: 6.0.13 - '@emotion/babel-plugin@11.11.0': + '@emotion/babel-plugin@11.12.0': dependencies: - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.24.7 '@babel/runtime': 7.22.15 - '@emotion/hash': 0.9.1 - '@emotion/memoize': 0.8.1 - '@emotion/serialize': 1.1.2 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/serialize': 1.3.2 babel-plugin-macros: 3.1.0 convert-source-map: 1.9.0 escape-string-regexp: 4.0.0 find-root: 1.1.0 source-map: 0.5.7 stylis: 4.2.0 + transitivePeerDependencies: + - supports-color '@emotion/cache@11.11.0': dependencies: @@ -9283,87 +9782,105 @@ snapshots: '@emotion/weak-memoize': 0.3.1 stylis: 4.2.0 - '@emotion/hash@0.8.0': {} + '@emotion/cache@11.13.1': + dependencies: + '@emotion/memoize': 0.9.0 + '@emotion/sheet': 1.4.0 + '@emotion/utils': 1.4.1 + '@emotion/weak-memoize': 0.4.0 + stylis: 4.2.0 - '@emotion/hash@0.9.1': {} + '@emotion/hash@0.9.2': {} '@emotion/is-prop-valid@0.8.8': dependencies: '@emotion/memoize': 0.7.4 optional: true - '@emotion/is-prop-valid@1.2.1': + '@emotion/is-prop-valid@1.3.1': dependencies: - '@emotion/memoize': 0.8.1 + '@emotion/memoize': 0.9.0 '@emotion/memoize@0.7.4': optional: true '@emotion/memoize@0.8.1': {} - '@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0)': + '@emotion/memoize@0.9.0': {} + + '@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0)': dependencies: '@babel/runtime': 7.22.15 - '@emotion/babel-plugin': 11.11.0 - '@emotion/cache': 11.11.0 - '@emotion/serialize': 1.1.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.3.1 + '@emotion/babel-plugin': 11.12.0 + '@emotion/cache': 11.13.1 + '@emotion/serialize': 1.3.2 + '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0) + '@emotion/utils': 1.4.1 + '@emotion/weak-memoize': 0.4.0 hoist-non-react-statics: 3.3.2 react: 18.2.0 optionalDependencies: '@types/react': 17.0.65 + transitivePeerDependencies: + - supports-color - '@emotion/serialize@1.1.2': + '@emotion/serialize@1.3.2': dependencies: - '@emotion/hash': 0.9.1 - '@emotion/memoize': 0.8.1 - '@emotion/unitless': 0.8.1 - '@emotion/utils': 1.2.1 - csstype: 3.1.2 + '@emotion/hash': 0.9.2 + '@emotion/memoize': 0.9.0 + '@emotion/unitless': 0.10.0 + '@emotion/utils': 1.4.1 + csstype: 3.1.3 '@emotion/sheet@1.2.2': {} - '@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0)': + '@emotion/sheet@1.4.0': {} + + '@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0)': dependencies: '@babel/runtime': 7.22.15 - '@emotion/babel-plugin': 11.11.0 - '@emotion/is-prop-valid': 1.2.1 - '@emotion/react': 11.11.1(@types/react@17.0.65)(react@18.2.0) - '@emotion/serialize': 1.1.2 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@emotion/utils': 1.2.1 + '@emotion/babel-plugin': 11.12.0 + '@emotion/is-prop-valid': 1.3.1 + '@emotion/react': 11.13.3(@types/react@17.0.65)(react@18.2.0) + '@emotion/serialize': 1.3.2 + '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0) + '@emotion/utils': 1.4.1 react: 18.2.0 optionalDependencies: '@types/react': 17.0.65 + transitivePeerDependencies: + - supports-color - '@emotion/unitless@0.8.1': {} + '@emotion/unitless@0.10.0': {} - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)': + '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.2.0)': dependencies: react: 18.2.0 '@emotion/utils@1.2.1': {} + '@emotion/utils@1.4.1': {} + '@emotion/weak-memoize@0.3.1': {} + '@emotion/weak-memoize@0.4.0': {} + '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': dependencies: eslint: 8.57.0 eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.10.0': {} + '@eslint-community/regexpp@4.11.1': {} '@eslint-community/regexpp@4.8.1': {} '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.4 + debug: 4.3.7 espree: 9.6.1 globals: 13.24.0 - ignore: 5.3.1 + ignore: 5.3.2 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -9639,37 +10156,37 @@ snapshots: '@floating-ui/utils@0.1.4': {} - '@fortawesome/fontawesome-common-types@6.4.2': {} + '@fortawesome/fontawesome-common-types@6.6.0': {} - '@fortawesome/fontawesome-svg-core@6.4.2': + '@fortawesome/fontawesome-svg-core@6.6.0': dependencies: - '@fortawesome/fontawesome-common-types': 6.4.2 + '@fortawesome/fontawesome-common-types': 6.6.0 - '@fortawesome/free-brands-svg-icons@6.4.2': + '@fortawesome/free-brands-svg-icons@6.6.0': dependencies: - '@fortawesome/fontawesome-common-types': 6.4.2 + '@fortawesome/fontawesome-common-types': 6.6.0 - '@fortawesome/free-solid-svg-icons@6.4.2': + '@fortawesome/free-solid-svg-icons@6.6.0': dependencies: - '@fortawesome/fontawesome-common-types': 6.4.2 + '@fortawesome/fontawesome-common-types': 6.6.0 - '@fortawesome/react-fontawesome@0.1.19(@fortawesome/fontawesome-svg-core@6.4.2)(react@18.2.0)': + '@fortawesome/react-fontawesome@0.2.2(@fortawesome/fontawesome-svg-core@6.6.0)(react@18.2.0)': dependencies: - '@fortawesome/fontawesome-svg-core': 6.4.2 + '@fortawesome/fontawesome-svg-core': 6.6.0 prop-types: 15.8.1 react: 18.2.0 '@humanwhocodes/config-array@0.11.14': dependencies: - '@humanwhocodes/object-schema': 2.0.2 - debug: 4.3.4 + '@humanwhocodes/object-schema': 2.0.3 + debug: 4.3.7 minimatch: 3.1.2 transitivePeerDependencies: - supports-color '@humanwhocodes/module-importer@1.0.1': {} - '@humanwhocodes/object-schema@2.0.2': {} + '@humanwhocodes/object-schema@2.0.3': {} '@istanbuljs/load-nyc-config@1.1.0': dependencies: @@ -9864,10 +10381,20 @@ snapshots: '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.19 + '@jridgewell/gen-mapping@0.3.5': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/resolve-uri@3.1.1': {} + '@jridgewell/resolve-uri@3.1.2': {} + '@jridgewell/set-array@1.1.2': {} + '@jridgewell/set-array@1.2.1': {} + '@jridgewell/source-map@0.3.5': dependencies: '@jridgewell/gen-mapping': 0.3.3 @@ -9875,11 +10402,18 @@ snapshots: '@jridgewell/sourcemap-codec@1.4.15': {} + '@jridgewell/sourcemap-codec@1.5.0': {} + '@jridgewell/trace-mapping@0.3.19': dependencies: '@jridgewell/resolve-uri': 3.1.1 '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + '@ledgerhq/connect-kit-loader@1.1.2': {} '@leichtgewicht/ip-codec@2.0.4': {} @@ -9906,7 +10440,7 @@ snapshots: '@motionone/easing': 10.15.1 '@motionone/types': 10.15.1 '@motionone/utils': 10.15.1 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/dom@10.16.2': dependencies: @@ -9915,23 +10449,23 @@ snapshots: '@motionone/types': 10.15.1 '@motionone/utils': 10.15.1 hey-listen: 1.0.8 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/easing@10.15.1': dependencies: '@motionone/utils': 10.15.1 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/generators@10.15.1': dependencies: '@motionone/types': 10.15.1 '@motionone/utils': 10.15.1 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/svelte@10.16.2': dependencies: '@motionone/dom': 10.16.2 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/types@10.15.1': {} @@ -9939,12 +10473,12 @@ snapshots: dependencies: '@motionone/types': 10.15.1 hey-listen: 1.0.8 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/vue@10.16.2': dependencies: '@motionone/dom': 10.16.2 - tslib: 2.6.2 + tslib: 2.7.0 '@next/env@14.2.3': {} @@ -9997,6 +10531,67 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 + '@parcel/watcher-android-arm64@2.4.1': + optional: true + + '@parcel/watcher-darwin-arm64@2.4.1': + optional: true + + '@parcel/watcher-darwin-x64@2.4.1': + optional: true + + '@parcel/watcher-freebsd-x64@2.4.1': + optional: true + + '@parcel/watcher-linux-arm-glibc@2.4.1': + optional: true + + '@parcel/watcher-linux-arm64-glibc@2.4.1': + optional: true + + '@parcel/watcher-linux-arm64-musl@2.4.1': + optional: true + + '@parcel/watcher-linux-x64-glibc@2.4.1': + optional: true + + '@parcel/watcher-linux-x64-musl@2.4.1': + optional: true + + '@parcel/watcher-wasm@2.4.1': + dependencies: + is-glob: 4.0.3 + micromatch: 4.0.8 + + '@parcel/watcher-win32-arm64@2.4.1': + optional: true + + '@parcel/watcher-win32-ia32@2.4.1': + optional: true + + '@parcel/watcher-win32-x64@2.4.1': + optional: true + + '@parcel/watcher@2.4.1': + dependencies: + detect-libc: 1.0.3 + is-glob: 4.0.3 + micromatch: 4.0.8 + node-addon-api: 7.1.1 + optionalDependencies: + '@parcel/watcher-android-arm64': 2.4.1 + '@parcel/watcher-darwin-arm64': 2.4.1 + '@parcel/watcher-darwin-x64': 2.4.1 + '@parcel/watcher-freebsd-x64': 2.4.1 + '@parcel/watcher-linux-arm-glibc': 2.4.1 + '@parcel/watcher-linux-arm64-glibc': 2.4.1 + '@parcel/watcher-linux-arm64-musl': 2.4.1 + '@parcel/watcher-linux-x64-glibc': 2.4.1 + '@parcel/watcher-linux-x64-musl': 2.4.1 + '@parcel/watcher-win32-arm64': 2.4.1 + '@parcel/watcher-win32-ia32': 2.4.1 + '@parcel/watcher-win32-x64': 2.4.1 + '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.11.0)(type-fest@0.21.3)(webpack-dev-server@4.15.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)(webpack@5.88.2))(webpack@5.88.2)': dependencies: ansi-html-community: 0.0.8 @@ -10016,21 +10611,49 @@ snapshots: '@popperjs/core@2.11.8': {} - '@rainbow-me/rainbowkit@1.0.11(@types/react@17.0.65)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(viem@1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10))(wagmi@1.4.2(@types/react@17.0.65)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.0.4)(utf-8-validate@5.0.10)(viem@1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10)))': + '@rainbow-me/rainbowkit@1.3.7(@types/react@17.0.65)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(viem@1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10))(wagmi@1.4.2(@types/react@17.0.65)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.0.4)(utf-8-validate@5.0.10)(viem@1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10)))': dependencies: - '@vanilla-extract/css': 1.9.1 - '@vanilla-extract/dynamic': 2.0.2 - '@vanilla-extract/sprinkles': 1.5.0(@vanilla-extract/css@1.9.1) - clsx: 1.1.1 - qrcode: 1.5.0 + '@vanilla-extract/css': 1.14.0 + '@vanilla-extract/dynamic': 2.1.0 + '@vanilla-extract/sprinkles': 1.6.1(@vanilla-extract/css@1.14.0) + clsx: 2.1.0 + qrcode: 1.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.4(@types/react@17.0.65)(react@18.2.0) + react-remove-scroll: 2.5.7(@types/react@17.0.65)(react@18.2.0) + ua-parser-js: 1.0.39 viem: 1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10) wagmi: 1.4.2(@types/react@17.0.65)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.0.4)(utf-8-validate@5.0.10)(viem@1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10)) transitivePeerDependencies: - '@types/react' + '@reown/walletkit@1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/core': 2.16.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.16.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.16.2 + '@walletconnect/utils': 2.16.2 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - ioredis + - uWebSockets.js + - utf-8-validate + '@rollup/plugin-babel@5.3.1(@babel/core@7.22.20)(@types/babel__core@7.20.2)(rollup@2.79.1)': dependencies: '@babel/core': 7.22.20 @@ -10305,7 +10928,7 @@ snapshots: '@swc/helpers@0.5.5': dependencies: '@swc/counter': 0.1.3 - tslib: 2.6.2 + tslib: 2.7.0 '@tanstack/query-core@4.35.3': {} @@ -10622,29 +11245,29 @@ snapshots: '@ungap/structured-clone@1.2.0': {} - '@vanilla-extract/css@1.9.1': + '@vanilla-extract/css@1.14.0': dependencies: - '@emotion/hash': 0.8.0 - '@vanilla-extract/private': 1.0.3 - ahocorasick: 1.0.2 + '@emotion/hash': 0.9.2 + '@vanilla-extract/private': 1.0.6 chalk: 4.1.2 - css-what: 5.1.0 + css-what: 6.1.0 cssesc: 3.0.0 - csstype: 3.1.2 + csstype: 3.1.3 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 - '@vanilla-extract/dynamic@2.0.2': + '@vanilla-extract/dynamic@2.1.0': dependencies: - '@vanilla-extract/private': 1.0.3 + '@vanilla-extract/private': 1.0.6 - '@vanilla-extract/private@1.0.3': {} + '@vanilla-extract/private@1.0.6': {} - '@vanilla-extract/sprinkles@1.5.0(@vanilla-extract/css@1.9.1)': + '@vanilla-extract/sprinkles@1.6.1(@vanilla-extract/css@1.14.0)': dependencies: - '@vanilla-extract/css': 1.9.1 + '@vanilla-extract/css': 1.14.0 '@wagmi/connectors@3.1.2(@types/react@17.0.65)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.0.4)(utf-8-validate@5.0.10)(viem@1.11.1(bufferutil@4.0.8)(typescript@5.0.4)(utf-8-validate@5.0.10))': dependencies: @@ -10662,13 +11285,25 @@ snapshots: optionalDependencies: typescript: 5.0.4 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' - '@react-native-async-storage/async-storage' - '@types/react' + - '@upstash/redis' + - '@vercel/kv' - bufferutil - encoding - - lokijs + - ioredis - react - supports-color + - uWebSockets.js - utf-8-validate - zod @@ -10682,39 +11317,29 @@ snapshots: optionalDependencies: typescript: 5.0.4 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' - '@react-native-async-storage/async-storage' - '@types/react' + - '@upstash/redis' + - '@vercel/kv' - bufferutil - encoding - immer - - lokijs + - ioredis - react - supports-color + - uWebSockets.js - utf-8-validate - zod - '@walletconnect/auth-client@2.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@ethersproject/hash': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@stablelib/random': 1.0.2 - '@stablelib/sha256': 1.0.1 - '@walletconnect/core': 2.10.1(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 - '@walletconnect/logger': 2.0.1 - '@walletconnect/time': 1.0.2 - '@walletconnect/utils': 2.10.1 - events: 3.3.0 - isomorphic-unfetch: 3.1.0 - transitivePeerDependencies: - - '@react-native-async-storage/async-storage' - - bufferutil - - encoding - - lokijs - - utf-8-validate - '@walletconnect/browser-utils@1.8.0': dependencies: '@walletconnect/safe-json': 1.0.0 @@ -10749,8 +11374,8 @@ snapshots: '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@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/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.9 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 @@ -10761,9 +11386,57 @@ snapshots: lodash.isequal: 4.5.0 uint8arrays: 3.1.1 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' - bufferutil - - lokijs + - ioredis + - uWebSockets.js + - utf-8-validate + + '@walletconnect/core@2.16.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.16.2 + '@walletconnect/utils': 2.16.2 + events: 3.3.0 + lodash.isequal: 4.5.0 + uint8arrays: 3.1.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - ioredis + - uWebSockets.js - utf-8-validate '@walletconnect/crypto@1.0.3': @@ -10788,8 +11461,8 @@ snapshots: '@walletconnect/ethereum-provider@2.10.1(@walletconnect/modal@2.6.2(@types/react@17.0.65)(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.7 - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/sign-client': 2.10.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/types': 2.10.1 @@ -10799,10 +11472,22 @@ snapshots: optionalDependencies: '@walletconnect/modal': 2.6.2(@types/react@17.0.65)(react@18.2.0) transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' - bufferutil - encoding - - lokijs + - ioredis + - uWebSockets.js - utf-8-validate '@walletconnect/events@1.0.1': @@ -10816,6 +11501,12 @@ snapshots: '@walletconnect/time': 1.0.2 tslib: 1.14.1 + '@walletconnect/heartbeat@1.2.2': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/time': 1.0.2 + events: 3.3.0 + '@walletconnect/iso-crypto@1.8.0': dependencies: '@walletconnect/crypto': 1.0.3 @@ -10837,15 +11528,26 @@ snapshots: '@walletconnect/safe-json': 1.0.2 tslib: 1.14.1 + '@walletconnect/jsonrpc-provider@1.0.14': + dependencies: + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + events: 3.3.0 + '@walletconnect/jsonrpc-types@1.0.3': dependencies: keyvaluestorage-interface: 1.0.0 tslib: 1.14.1 + '@walletconnect/jsonrpc-types@1.0.4': + dependencies: + events: 3.3.0 + keyvaluestorage-interface: 1.0.0 + '@walletconnect/jsonrpc-utils@1.0.8': dependencies: '@walletconnect/environment': 1.0.1 - '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-types': 1.0.4 tslib: 1.14.1 '@walletconnect/jsonrpc-ws-connection@1.0.13(bufferutil@4.0.8)(utf-8-validate@5.0.10)': @@ -10859,10 +11561,35 @@ snapshots: - bufferutil - utf-8-validate - '@walletconnect/keyvaluestorage@1.0.2': + '@walletconnect/jsonrpc-ws-connection@1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - safe-json-utils: 1.1.1 - tslib: 1.14.1 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/safe-json': 1.0.2 + events: 3.3.0 + ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + + '@walletconnect/keyvaluestorage@1.1.1': + dependencies: + '@walletconnect/safe-json': 1.0.2 + idb-keyval: 6.2.1 + unstorage: 1.12.0(idb-keyval@6.2.1) + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@upstash/redis' + - '@vercel/kv' + - ioredis + - uWebSockets.js '@walletconnect/legacy-client@2.0.0': dependencies: @@ -10888,7 +11615,7 @@ snapshots: '@walletconnect/legacy-provider@2.0.0': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.7 - '@walletconnect/jsonrpc-provider': 1.0.13 + '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/legacy-client': 2.0.0 '@walletconnect/legacy-modal': 2.0.0 '@walletconnect/legacy-types': 2.0.0 @@ -10911,10 +11638,10 @@ snapshots: detect-browser: 5.3.0 query-string: 6.13.5 - '@walletconnect/logger@2.0.1': + '@walletconnect/logger@2.1.2': dependencies: + '@walletconnect/safe-json': 1.0.2 pino: 7.11.0 - tslib: 1.14.1 '@walletconnect/modal-core@2.6.2(@types/react@17.0.65)(react@18.2.0)': dependencies: @@ -10948,9 +11675,13 @@ snapshots: randombytes: 2.1.0 tslib: 1.14.1 + '@walletconnect/relay-api@1.0.11': + dependencies: + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/relay-api@1.0.9': dependencies: - '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-types': 1.0.4 tslib: 1.14.1 '@walletconnect/relay-auth@1.0.4': @@ -10960,7 +11691,7 @@ snapshots: '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 tslib: 1.14.1 - uint8arrays: 3.1.1 + uint8arrays: 3.1.0 '@walletconnect/safe-json@1.0.0': {} @@ -10974,15 +11705,56 @@ snapshots: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.0.1 + '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 '@walletconnect/types': 2.10.1 '@walletconnect/utils': 2.10.1 events: 3.3.0 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' - bufferutil - - lokijs + - ioredis + - uWebSockets.js + - utf-8-validate + + '@walletconnect/sign-client@2.16.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@walletconnect/core': 2.16.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-utils': 1.0.8 + '@walletconnect/logger': 2.1.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.16.2 + '@walletconnect/utils': 2.16.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - bufferutil + - ioredis + - uWebSockets.js - utf-8-validate '@walletconnect/socket-transport@1.8.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': @@ -11005,29 +11777,77 @@ snapshots: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.0.2 - '@walletconnect/logger': 2.0.1 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' - '@react-native-async-storage/async-storage' - - lokijs + - '@upstash/redis' + - '@vercel/kv' + - ioredis + - uWebSockets.js + + '@walletconnect/types@2.16.2': + dependencies: + '@walletconnect/events': 1.0.1 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 + '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/logger': 2.1.2 + events: 3.3.0 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' + - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' + - ioredis + - uWebSockets.js '@walletconnect/universal-provider@2.10.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.7 '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.0.1 + '@walletconnect/logger': 2.1.2 '@walletconnect/sign-client': 2.10.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/types': 2.10.1 '@walletconnect/utils': 2.10.1 events: 3.3.0 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' - '@react-native-async-storage/async-storage' + - '@upstash/redis' + - '@vercel/kv' - bufferutil - encoding - - lokijs + - ioredis + - uWebSockets.js - utf-8-validate '@walletconnect/utils@1.8.0': @@ -11057,25 +11877,54 @@ snapshots: query-string: 7.1.3 uint8arrays: 3.1.1 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' - '@react-native-async-storage/async-storage' - - lokijs + - '@upstash/redis' + - '@vercel/kv' + - ioredis + - uWebSockets.js - '@walletconnect/web3wallet@1.9.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/utils@2.16.2': dependencies: - '@walletconnect/auth-client': 2.1.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/core': 2.10.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.0.1 - '@walletconnect/sign-client': 2.10.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.10.1 - '@walletconnect/utils': 2.10.1 + '@stablelib/chacha20poly1305': 1.0.1 + '@stablelib/hkdf': 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha256': 1.0.1 + '@stablelib/x25519': 1.0.3 + '@walletconnect/relay-api': 1.0.11 + '@walletconnect/relay-auth': 1.0.4 + '@walletconnect/safe-json': 1.0.2 + '@walletconnect/time': 1.0.2 + '@walletconnect/types': 2.16.2 + '@walletconnect/window-getters': 1.0.1 + '@walletconnect/window-metadata': 1.0.1 + detect-browser: 5.3.0 + elliptic: 6.5.7 + query-string: 7.1.3 + uint8arrays: 3.1.0 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' - '@react-native-async-storage/async-storage' - - bufferutil - - encoding - - lokijs - - utf-8-validate + - '@upstash/redis' + - '@vercel/kv' + - ioredis + - uWebSockets.js '@walletconnect/window-getters@1.0.0': {} @@ -11213,9 +12062,9 @@ snapshots: dependencies: acorn: 8.10.0 - acorn-jsx@5.3.2(acorn@8.11.3): + acorn-jsx@5.3.2(acorn@8.12.1): dependencies: - acorn: 8.11.3 + acorn: 8.12.1 acorn-walk@7.2.0: {} @@ -11223,7 +12072,7 @@ snapshots: acorn@8.10.0: {} - acorn@8.11.3: {} + acorn@8.12.1: {} address@1.2.2: {} @@ -11246,8 +12095,6 @@ snapshots: dependencies: humanize-ms: 1.2.1 - ahocorasick@1.0.2: {} - ajv-formats@2.1.1(ajv@8.12.0): optionalDependencies: ajv: 8.12.0 @@ -11312,7 +12159,7 @@ snapshots: aria-hidden@1.2.3: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 aria-query@5.3.0: dependencies: @@ -11395,7 +12242,7 @@ snapshots: async-mutex@0.2.6: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 async@3.2.4: {} @@ -11642,6 +12489,10 @@ snapshots: dependencies: fill-range: 7.0.1 + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + brorand@1.1.0: {} browser-process-hrtime@1.0.0: {} @@ -11693,7 +12544,7 @@ snapshots: camel-case@4.1.2: dependencies: pascal-case: 3.1.2 - tslib: 2.6.2 + tslib: 2.7.0 camelcase-css@2.0.1: {} @@ -11722,21 +12573,22 @@ snapshots: case-sensitive-paths-webpack-plugin@2.4.0: {} - ? chakra-react-select@4.7.2(@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - : dependencies: - '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.1(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(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@17.0.65)(react@18.2.0))(@emotion/styled@11.11.0(@emotion/react@11.11.1(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) - '@emotion/react': 11.11.1(@types/react@17.0.65)(react@18.2.0) + chakra-react-select@4.7.2(eblmkcxfifzqgk6yresacfv7wm): + dependencies: + '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/layout': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/menu': 2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(framer-motion@4.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 2.6.2(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@17.0.65)(react@18.2.0))(@types/react@17.0.65)(react@18.2.0))(react@18.2.0) + '@emotion/react': 11.13.3(@types/react@17.0.65)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-select: 5.7.4(@types/react@17.0.65)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - '@types/react' + - supports-color chalk@2.4.2: dependencies: @@ -11767,10 +12619,26 @@ snapshots: optionalDependencies: fsevents: 2.3.3 + chokidar@3.6.0: + dependencies: + anymatch: 3.1.3 + braces: 3.0.3 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + chrome-trace-event@1.0.3: {} ci-info@3.8.0: {} + citty@0.1.6: + dependencies: + consola: 3.2.3 + cjs-module-lexer@1.2.3: {} clean-css@5.3.2: @@ -11779,6 +12647,12 @@ snapshots: client-only@0.0.1: {} + clipboardy@4.0.0: + dependencies: + execa: 8.0.1 + is-wsl: 3.1.0 + is64bit: 2.0.0 + cliui@6.0.0: dependencies: string-width: 4.2.3 @@ -11791,10 +12665,10 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 7.0.0 - clsx@1.1.1: {} - clsx@1.2.1: {} + clsx@2.1.0: {} + co@4.6.0: {} coa@2.0.2: @@ -11817,7 +12691,7 @@ snapshots: color-name@1.1.4: {} - color2k@2.0.2: {} + color2k@2.0.3: {} colord@2.9.3: {} @@ -11861,10 +12735,14 @@ snapshots: concat-map@0.0.1: {} + confbox@0.1.7: {} + confusing-browser-globals@1.0.11: {} connect-history-api-fallback@2.0.0: {} + consola@3.2.3: {} + content-disposition@0.5.4: dependencies: safe-buffer: 5.2.1 @@ -11873,6 +12751,8 @@ snapshots: convert-source-map@1.9.0: {} + cookie-es@1.2.2: {} + cookie-signature@1.0.6: {} cookie@0.5.0: {} @@ -11919,6 +12799,8 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 + crossws@0.2.4: {} + crypto-random-string@2.0.0: {} css-blank-pseudo@3.0.3(postcss@8.4.30): @@ -11994,8 +12876,6 @@ snapshots: css-what@3.4.2: {} - css-what@5.1.0: {} - css-what@6.1.0: {} cssdb@7.7.2: {} @@ -12060,6 +12940,8 @@ snapshots: csstype@3.1.2: {} + csstype@3.1.3: {} + currently-unhandled@0.4.1: dependencies: array-find-index: 1.0.2 @@ -12086,6 +12968,10 @@ snapshots: dependencies: ms: 2.1.2 + debug@4.3.7: + dependencies: + ms: 2.1.3 + decamelize-keys@1.1.1: dependencies: decamelize: 1.2.0 @@ -12123,6 +13009,8 @@ snapshots: has-property-descriptors: 1.0.0 object-keys: 1.1.1 + defu@6.1.4: {} + delay@5.0.0: {} delayed-stream@1.0.0: {} @@ -12133,12 +13021,16 @@ snapshots: dequal@2.0.3: {} + destr@2.0.3: {} + destroy@1.2.0: {} detect-browser@5.2.0: {} detect-browser@5.3.0: {} + detect-libc@1.0.3: {} + detect-newline@3.1.0: {} detect-node-es@1.1.0: {} @@ -12185,7 +13077,7 @@ snapshots: dom-helpers@5.2.1: dependencies: '@babel/runtime': 7.22.15 - csstype: 3.1.2 + csstype: 3.1.3 dom-serializer@0.2.2: dependencies: @@ -12224,7 +13116,7 @@ snapshots: dot-case@3.0.4: dependencies: no-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 dotenv-expand@5.1.0: {} @@ -12232,12 +13124,12 @@ snapshots: duplexer@0.1.2: {} - duplexify@4.1.2: + duplexify@4.1.3: dependencies: end-of-stream: 1.4.4 inherits: 2.0.4 readable-stream: 3.6.2 - stream-shift: 1.0.1 + stream-shift: 1.0.3 ee-first@1.1.1: {} @@ -12257,6 +13149,16 @@ snapshots: minimalistic-assert: 1.0.1 minimalistic-crypto-utils: 1.0.1 + elliptic@6.5.7: + dependencies: + bn.js: 4.12.0 + brorand: 1.1.0 + hash.js: 1.1.7 + hmac-drbg: 1.0.1 + inherits: 2.0.4 + minimalistic-assert: 1.0.1 + minimalistic-crypto-utils: 1.0.1 + emittery@0.10.2: {} emittery@0.8.1: {} @@ -12572,7 +13474,7 @@ snapshots: eslint@8.57.0: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@eslint-community/regexpp': 4.10.0 + '@eslint-community/regexpp': 4.11.1 '@eslint/eslintrc': 2.1.4 '@eslint/js': 8.57.0 '@humanwhocodes/config-array': 0.11.14 @@ -12582,13 +13484,13 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4 + debug: 4.3.7 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - esquery: 1.5.0 + esquery: 1.6.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 @@ -12596,7 +13498,7 @@ snapshots: glob-parent: 6.0.2 globals: 13.24.0 graphemer: 1.4.0 - ignore: 5.3.1 + ignore: 5.3.2 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 @@ -12606,7 +13508,7 @@ snapshots: lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.3 + optionator: 0.9.4 strip-ansi: 6.0.1 text-table: 0.2.0 transitivePeerDependencies: @@ -12614,15 +13516,15 @@ snapshots: espree@9.6.1: dependencies: - acorn: 8.11.3 - acorn-jsx: 5.3.2(acorn@8.11.3) + acorn: 8.12.1 + acorn-jsx: 5.3.2(acorn@8.12.1) eslint-visitor-keys: 3.4.3 esprima@1.2.2: {} esprima@4.0.1: {} - esquery@1.5.0: + esquery@1.6.0: dependencies: estraverse: 5.3.0 @@ -12727,6 +13629,18 @@ snapshots: signal-exit: 3.0.7 strip-final-newline: 2.0.0 + execa@8.0.1: + dependencies: + cross-spawn: 7.0.3 + get-stream: 8.0.1 + human-signals: 5.0.0 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.3.0 + onetime: 6.0.0 + signal-exit: 4.1.0 + strip-final-newline: 3.0.0 + exit@0.1.2: {} expect@27.5.1: @@ -12790,7 +13704,7 @@ snapshots: fast-levenshtein@2.0.6: {} - fast-redact@3.3.0: {} + fast-redact@3.5.0: {} fast-safe-stringify@2.1.1: {} @@ -12830,6 +13744,10 @@ snapshots: dependencies: to-regex-range: 5.0.1 + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + filter-obj@1.1.0: {} finalhandler@1.2.0: @@ -12880,7 +13798,7 @@ snapshots: focus-lock@0.11.6: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 follow-redirects@1.15.3: {} @@ -12988,8 +13906,12 @@ snapshots: get-package-type@0.1.0: {} + get-port-please@3.1.2: {} + get-stream@6.0.1: {} + get-stream@8.0.1: {} + get-symbol-description@1.0.0: dependencies: call-bind: 1.0.2 @@ -13064,6 +13986,21 @@ snapshots: dependencies: duplexer: 0.1.2 + h3@1.12.0: + dependencies: + cookie-es: 1.2.2 + crossws: 0.2.4 + defu: 6.1.4 + destr: 2.0.3 + iron-webcrypto: 1.2.1 + ohash: 1.1.4 + radix3: 1.1.2 + ufo: 1.5.4 + uncrypto: 0.1.3 + unenv: 1.10.0 + transitivePeerDependencies: + - uWebSockets.js + handle-thing@2.0.1: {} harmony-reflect@1.6.2: {} @@ -13203,6 +14140,8 @@ snapshots: transitivePeerDependencies: - debug + http-shutdown@1.2.2: {} + https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 @@ -13212,6 +14151,8 @@ snapshots: human-signals@2.1.0: {} + human-signals@5.0.0: {} + humanize-ms@1.2.1: dependencies: ms: 2.1.3 @@ -13228,6 +14169,8 @@ snapshots: dependencies: postcss: 8.4.30 + idb-keyval@6.2.1: {} + idb@7.1.1: {} identity-obj-proxy@3.0.0: @@ -13238,7 +14181,7 @@ snapshots: ignore@5.2.4: {} - ignore@5.3.1: {} + ignore@5.3.2: {} immer@9.0.21: {} @@ -13281,6 +14224,8 @@ snapshots: ipaddr.js@2.1.0: {} + iron-webcrypto@1.2.1: {} + is-arguments@1.1.1: dependencies: call-bind: 1.0.2 @@ -13323,6 +14268,8 @@ snapshots: is-docker@2.2.1: {} + is-docker@3.0.0: {} + is-extglob@2.1.1: {} is-finalizationregistry@1.0.2: @@ -13341,6 +14288,10 @@ snapshots: dependencies: is-extglob: 2.1.1 + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + is-map@2.0.2: {} is-module@1.0.0: {} @@ -13380,6 +14331,8 @@ snapshots: is-stream@2.0.1: {} + is-stream@3.0.0: {} + is-string@1.0.7: dependencies: has-tostringtag: 1.0.0 @@ -13409,19 +14362,20 @@ snapshots: dependencies: is-docker: 2.2.1 + is-wsl@3.1.0: + dependencies: + is-inside-container: 1.0.0 + + is64bit@2.0.0: + dependencies: + system-architecture: 0.1.0 + isarray@1.0.0: {} isarray@2.0.5: {} isexe@2.0.0: {} - isomorphic-unfetch@3.1.0: - dependencies: - node-fetch: 2.7.0 - unfetch: 4.2.0 - transitivePeerDependencies: - - encoding - 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) @@ -13910,6 +14864,8 @@ snapshots: jiti@1.20.0: {} + jiti@1.21.6: {} + joycon@3.1.1: {} js-sha3@0.8.0: {} @@ -14066,6 +15022,29 @@ snapshots: lines-and-columns@1.2.4: {} + listhen@1.7.2: + dependencies: + '@parcel/watcher': 2.4.1 + '@parcel/watcher-wasm': 2.4.1 + citty: 0.1.6 + clipboardy: 4.0.0 + consola: 3.2.3 + crossws: 0.2.4 + defu: 6.1.4 + get-port-please: 3.1.2 + h3: 1.12.0 + http-shutdown: 1.2.2 + jiti: 1.21.6 + mlly: 1.7.1 + node-forge: 1.3.1 + pathe: 1.1.2 + std-env: 3.7.0 + ufo: 1.5.4 + untun: 0.1.3 + uqr: 0.1.2 + transitivePeerDependencies: + - uWebSockets.js + lit-element@3.3.3: dependencies: '@lit-labs/ssr-dom-shim': 1.1.1 @@ -14144,7 +15123,9 @@ snapshots: lower-case@2.0.2: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 + + lru-cache@10.4.3: {} lru-cache@5.1.1: dependencies: @@ -14180,7 +15161,7 @@ snapshots: media-query-parser@2.0.2: dependencies: - '@babel/runtime': 7.22.15 + '@babel/runtime': 7.25.6 media-typer@0.3.0: {} @@ -14215,6 +15196,11 @@ snapshots: braces: 3.0.2 picomatch: 2.3.1 + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + mime-db@1.52.0: {} mime-types@2.1.35: @@ -14223,8 +15209,12 @@ snapshots: mime@1.6.0: {} + mime@3.0.0: {} + mimic-fn@2.1.0: {} + mimic-fn@4.0.0: {} + mini-css-extract-plugin@2.7.6(webpack@5.88.2): dependencies: schema-utils: 4.2.0 @@ -14253,6 +15243,15 @@ snapshots: dependencies: minimist: 1.2.8 + mlly@1.7.1: + dependencies: + acorn: 8.12.1 + pathe: 1.1.2 + pkg-types: 1.2.0 + ufo: 1.5.4 + + modern-ahocorasick@1.0.1: {} + motion@10.16.2: dependencies: '@motionone/animation': 10.15.1 @@ -14262,6 +15261,8 @@ snapshots: '@motionone/utils': 10.15.1 '@motionone/vue': 10.16.2 + mri@1.2.0: {} + ms@2.0.0: {} ms@2.1.2: {} @@ -14319,10 +15320,14 @@ snapshots: no-case@3.0.4: dependencies: lower-case: 2.0.2 - tslib: 2.6.2 + tslib: 2.7.0 node-addon-api@2.0.2: {} + node-addon-api@7.1.1: {} + + node-fetch-native@1.6.4: {} + node-fetch@2.7.0: dependencies: whatwg-url: 5.0.0 @@ -14352,6 +15357,10 @@ snapshots: dependencies: path-key: 3.1.1 + npm-run-path@5.3.0: + dependencies: + path-key: 4.0.0 + nth-check@1.0.2: dependencies: boolbase: 1.0.0 @@ -14417,6 +15426,14 @@ snapshots: obuf@1.1.2: {} + ofetch@1.4.0: + dependencies: + destr: 2.0.3 + node-fetch-native: 1.6.4 + ufo: 1.5.4 + + ohash@1.1.4: {} + on-exit-leak-free@0.2.0: {} on-exit-leak-free@2.1.2: {} @@ -14435,6 +15452,10 @@ snapshots: dependencies: mimic-fn: 2.1.0 + onetime@6.0.0: + dependencies: + mimic-fn: 4.0.0 + open@8.4.2: dependencies: define-lazy-prop: 2.0.0 @@ -14450,14 +15471,14 @@ snapshots: type-check: 0.3.2 word-wrap: 1.2.5 - optionator@0.9.3: + optionator@0.9.4: dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 + word-wrap: 1.2.5 outdent@0.8.0: {} @@ -14501,7 +15522,7 @@ snapshots: param-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 parent-module@1.0.1: dependencies: @@ -14526,7 +15547,7 @@ snapshots: pascal-case@3.1.2: dependencies: no-case: 3.0.4 - tslib: 2.6.2 + tslib: 2.7.0 path-exists@3.0.0: {} @@ -14536,6 +15557,8 @@ snapshots: path-key@3.1.1: {} + path-key@4.0.0: {} + path-parse@1.0.7: {} path-to-regexp@0.1.7: {} @@ -14546,12 +15569,16 @@ snapshots: path-type@4.0.0: {} + pathe@1.1.2: {} + performance-now@2.1.0: {} picocolors@0.2.1: {} picocolors@1.0.0: {} + picocolors@1.1.0: {} + picomatch@2.3.1: {} pify@2.3.0: {} @@ -14562,7 +15589,7 @@ snapshots: pino-abstract-transport@0.5.0: dependencies: - duplexify: 4.1.2 + duplexify: 4.1.3 split2: 4.2.0 pino-abstract-transport@1.2.0: @@ -14592,14 +15619,14 @@ snapshots: pino@7.11.0: dependencies: atomic-sleep: 1.0.0 - fast-redact: 3.3.0 + fast-redact: 3.5.0 on-exit-leak-free: 0.2.0 pino-abstract-transport: 0.5.0 pino-std-serializers: 4.0.0 process-warning: 1.0.0 quick-format-unescaped: 4.0.4 real-require: 0.1.0 - safe-stable-stringify: 2.4.3 + safe-stable-stringify: 2.5.0 sonic-boom: 2.8.0 thread-stream: 0.15.2 @@ -14609,6 +15636,12 @@ snapshots: dependencies: find-up: 4.1.0 + pkg-types@1.2.0: + dependencies: + confbox: 0.1.7 + mlly: 1.7.1 + pathe: 1.1.2 + pkg-up@3.1.0: dependencies: find-up: 3.0.0 @@ -15117,13 +16150,6 @@ snapshots: q@1.5.1: {} - qrcode@1.5.0: - dependencies: - dijkstrajs: 1.0.3 - encode-utf8: 1.0.3 - pngjs: 5.0.0 - yargs: 15.4.1 - qrcode@1.5.3: dependencies: dijkstrajs: 1.0.3 @@ -15156,6 +16182,8 @@ snapshots: quick-lru@1.1.0: {} + radix3@1.1.2: {} + raf@3.4.1: dependencies: performance-now: 2.1.0 @@ -15260,18 +16288,15 @@ snapshots: dependencies: react: 18.2.0 react-style-singleton: 2.2.1(@types/react@17.0.65)(react@18.2.0) - tslib: 2.6.2 + tslib: 2.7.0 optionalDependencies: '@types/react': 17.0.65 - react-remove-scroll@2.5.4(@types/react@17.0.65)(react@18.2.0): + react-remove-scroll-bar@2.3.6(@types/react@17.0.65)(react@18.2.0): dependencies: react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@17.0.65)(react@18.2.0) react-style-singleton: 2.2.1(@types/react@17.0.65)(react@18.2.0) - tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@17.0.65)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@17.0.65)(react@18.2.0) + tslib: 2.7.0 optionalDependencies: '@types/react': 17.0.65 @@ -15280,12 +16305,23 @@ snapshots: react: 18.2.0 react-remove-scroll-bar: 2.3.4(@types/react@17.0.65)(react@18.2.0) react-style-singleton: 2.2.1(@types/react@17.0.65)(react@18.2.0) - tslib: 2.6.2 + tslib: 2.7.0 use-callback-ref: 1.3.0(@types/react@17.0.65)(react@18.2.0) use-sidecar: 1.1.2(@types/react@17.0.65)(react@18.2.0) optionalDependencies: '@types/react': 17.0.65 + react-remove-scroll@2.5.7(@types/react@17.0.65)(react@18.2.0): + dependencies: + react: 18.2.0 + react-remove-scroll-bar: 2.3.6(@types/react@17.0.65)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@17.0.65)(react@18.2.0) + tslib: 2.7.0 + use-callback-ref: 1.3.2(@types/react@17.0.65)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@17.0.65)(react@18.2.0) + optionalDependencies: + '@types/react': 17.0.65 + react-scripts@5.0.1(@babel/plugin-syntax-flow@7.23.3(@babel/core@7.22.20))(@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.22.20))(@types/babel__core@7.20.2)(bufferutil@4.0.8)(eslint@8.57.0)(react@18.2.0)(type-fest@0.21.3)(typescript@5.0.4)(utf-8-validate@5.0.10): dependencies: '@babel/core': 7.22.20 @@ -15376,7 +16412,7 @@ snapshots: dependencies: '@babel/runtime': 7.22.15 '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.1(@types/react@17.0.65)(react@18.2.0) + '@emotion/react': 11.13.3(@types/react@17.0.65)(react@18.2.0) '@floating-ui/dom': 1.5.3 '@types/react-transition-group': 4.4.6 memoize-one: 6.0.0 @@ -15387,6 +16423,7 @@ snapshots: use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.65)(react@18.2.0) transitivePeerDependencies: - '@types/react' + - supports-color react-simple-code-editor@0.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -15398,7 +16435,7 @@ snapshots: get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 - tslib: 2.6.2 + tslib: 2.7.0 optionalDependencies: '@types/react': 17.0.65 @@ -15488,6 +16525,8 @@ snapshots: regenerator-runtime@0.14.0: {} + regenerator-runtime@0.14.1: {} + regenerator-transform@0.15.2: dependencies: '@babel/runtime': 7.22.15 @@ -15610,15 +16649,13 @@ snapshots: safe-buffer@5.2.1: {} - safe-json-utils@1.1.1: {} - safe-regex-test@1.0.0: dependencies: call-bind: 1.0.2 get-intrinsic: 1.2.1 is-regex: 1.1.4 - safe-stable-stringify@2.4.3: {} + safe-stable-stringify@2.5.0: {} safer-buffer@2.1.2: {} @@ -15763,6 +16800,8 @@ snapshots: signal-exit@3.0.7: {} + signal-exit@4.1.0: {} + sisteransi@1.0.5: {} slash@3.0.0: {} @@ -15868,12 +16907,14 @@ snapshots: statuses@2.0.1: {} + std-env@3.7.0: {} + stream-browserify@3.0.0: dependencies: inherits: 2.0.4 readable-stream: 3.6.2 - stream-shift@1.0.1: {} + stream-shift@1.0.3: {} streamsearch@1.1.0: {} @@ -15957,6 +16998,8 @@ snapshots: strip-final-newline@2.0.0: {} + strip-final-newline@3.0.0: {} + strip-indent@2.0.0: {} strip-json-comments@3.1.1: {} @@ -16048,6 +17091,8 @@ snapshots: symbol-tree@3.2.4: {} + system-architecture@0.1.0: {} + tailwindcss@3.3.3: dependencies: '@alloc/quick-lru': 5.2.0 @@ -16187,6 +17232,8 @@ snapshots: tslib@2.6.2: {} + tslib@2.7.0: {} + tsutils@3.21.0(typescript@5.0.4): dependencies: tslib: 1.14.1 @@ -16248,6 +17295,14 @@ snapshots: typescript@5.0.4: {} + ua-parser-js@1.0.39: {} + + ufo@1.5.4: {} + + uint8arrays@3.1.0: + dependencies: + multiformats: 9.9.0 + uint8arrays@3.1.1: dependencies: multiformats: 9.9.0 @@ -16259,9 +17314,17 @@ snapshots: has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 + uncrypto@0.1.3: {} + underscore@1.12.1: {} - unfetch@4.2.0: {} + unenv@1.10.0: + dependencies: + consola: 3.2.3 + defu: 6.1.4 + mime: 3.0.0 + node-fetch-native: 1.6.4 + pathe: 1.1.2 unicode-canonical-property-names-ecmascript@2.0.0: {} @@ -16286,6 +17349,29 @@ snapshots: unquote@1.1.1: {} + unstorage@1.12.0(idb-keyval@6.2.1): + dependencies: + anymatch: 3.1.3 + chokidar: 3.6.0 + destr: 2.0.3 + h3: 1.12.0 + listhen: 1.7.2 + lru-cache: 10.4.3 + mri: 1.2.0 + node-fetch-native: 1.6.4 + ofetch: 1.4.0 + ufo: 1.5.4 + optionalDependencies: + idb-keyval: 6.2.1 + transitivePeerDependencies: + - uWebSockets.js + + untun@0.1.3: + dependencies: + citty: 0.1.6 + consola: 3.2.3 + pathe: 1.1.2 + upath@1.2.0: {} update-browserslist-db@1.0.12(browserslist@4.21.10): @@ -16294,6 +17380,8 @@ snapshots: escalade: 3.1.1 picocolors: 1.0.0 + uqr@0.1.2: {} + uri-js@4.4.1: dependencies: punycode: 2.3.0 @@ -16306,7 +17394,14 @@ snapshots: use-callback-ref@1.3.0(@types/react@17.0.65)(react@18.2.0): dependencies: react: 18.2.0 - tslib: 2.6.2 + tslib: 2.7.0 + optionalDependencies: + '@types/react': 17.0.65 + + use-callback-ref@1.3.2(@types/react@17.0.65)(react@18.2.0): + dependencies: + react: 18.2.0 + tslib: 2.7.0 optionalDependencies: '@types/react': 17.0.65 @@ -16320,7 +17415,7 @@ snapshots: dependencies: detect-node-es: 1.1.0 react: 18.2.0 - tslib: 2.6.2 + tslib: 2.7.0 optionalDependencies: '@types/react': 17.0.65 @@ -16416,15 +17511,27 @@ snapshots: optionalDependencies: typescript: 5.0.4 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@netlify/blobs' + - '@planetscale/database' - '@react-native-async-storage/async-storage' - '@types/react' + - '@upstash/redis' + - '@vercel/kv' - bufferutil - encoding - immer - - lokijs + - ioredis - react-dom - react-native - supports-color + - uWebSockets.js - utf-8-validate - zod @@ -16783,6 +17890,11 @@ snapshots: bufferutil: 4.0.8 utf-8-validate: 5.0.10 + ws@7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 + ws@7.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10): optionalDependencies: bufferutil: 4.0.8