diff --git a/components/overview/FlexibleStakingCard.tsx b/components/overview/FlexibleStakingCard.tsx index f9674e7..e308d55 100644 --- a/components/overview/FlexibleStakingCard.tsx +++ b/components/overview/FlexibleStakingCard.tsx @@ -1,8 +1,6 @@ import { Badge, Button, - Switch, - Tooltip, Typography, ValueChange, ValueChangeIndicator, @@ -20,7 +18,6 @@ import { Countdown } from "./Countdown"; import { retry } from "@/utils/retry"; import { formatUnits, parseUnits } from "ethers/lib/utils"; import { TokenImage } from "../token-image"; -import { useLoginWidget } from "@mochi-web3/login-widget"; interface Props { hidden: boolean; @@ -45,7 +42,6 @@ export const FlexibleStakingCard = (props: Props) => { updateValues, initializeValues, } = useFlexibleStaking(); - const { wallets } = useLoginWidget(); const { isOpen: isBoosting, onOpen: onBoost } = useDisclosure(); const { isOpen: isOpenFlexibleStakeModal, @@ -149,19 +145,21 @@ export const FlexibleStakingCard = (props: Props) => { Flexible , ]} - headerExtra={[ - - setValues({ autoStaking })} - /> - , - ]} + headerExtra={ + [ + // + // setValues({ autoStaking })} + // /> + // , + ] + } icon={} title={stakingToken?.token_symbol} description={stakingPool?.description} diff --git a/components/stake/flexible/flexible-stake-content.tsx b/components/stake/flexible/flexible-stake-content.tsx index 50d1109..466e673 100644 --- a/components/stake/flexible/flexible-stake-content.tsx +++ b/components/stake/flexible/flexible-stake-content.tsx @@ -11,22 +11,20 @@ import { useMemo, useState } from "react"; import { TokenAmount } from "@/utils/number"; import { StakeInput } from "../stake-input"; import { useFlexibleStaking } from "@/store/flexible-staking"; -import { Spinner } from "@mochi-ui/icons"; import { LoginWidget } from "@mochi-web3/login-widget"; import { utils } from "@consolelabs/mochi-formatter"; import { formatUnits } from "ethers/lib/utils"; import { useWalletNetwork } from "@/hooks/useWalletNetwork"; interface Props { - onStake: (amount: number) => Promise; - onApprove: (amount: number) => Promise; - loading: string | null; container: HTMLDivElement | null; + initializing: boolean; + onConfirm: (amount: number) => void; } export const FlexibleStakeContent = (props: Props) => { - const { onStake, onApprove, loading, container } = props; - const { balance, allowance, apr, stakingToken } = useFlexibleStaking(); + const { container, initializing, onConfirm } = props; + const { balance, apr, stakingToken } = useFlexibleStaking(); const chain = useMemo(() => stakingToken?.token_chain_id, [stakingToken]); const [amount, setAmount] = useState({ value: 0, @@ -39,9 +37,6 @@ export const FlexibleStakeContent = (props: Props) => { const convertedBalance = Number( formatUnits(balance, stakingToken?.token_decimal) ); - const convertedAllowance = Number( - formatUnits(allowance, stakingToken?.token_decimal) - ); return (
@@ -72,22 +67,16 @@ export const FlexibleStakeContent = (props: Props) => { ) : isConnected && !isCorrectNetwork ? (
diff --git a/package.json b/package.json index ecd507a..97098fc 100644 --- a/package.json +++ b/package.json @@ -14,19 +14,19 @@ "@dwarvesf/react-hooks": "^0.8.2", "@ethersproject/abi": "^5.7.0", "@ethersproject/providers": "^5.7.2", - "@mochi-ui/core": "^0.13.4", - "@mochi-ui/icons": "^0.7.4", - "@mochi-ui/theme": "^0.17.0", + "@mochi-ui/core": "^0.14.1", + "@mochi-ui/icons": "^0.7.5", + "@mochi-ui/theme": "^0.20.0", "@mochi-web3/login-widget": "^0.2.18", "@radix-ui/react-slider": "^1.1.2", "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", - "bignumber.js": "^9.1.2", "@sentry/nextjs": "^7.107.0", + "bignumber.js": "^9.1.2", "clsx": "^2.1.0", "ethers": "5.7.2", "next": "14.1.3", - "react": "^18", + "react": "^18.2.0", "react-dom": "^18", "swr": "^2.2.5", "tailwindcss-animate": "^1.0.7", @@ -36,7 +36,7 @@ "devDependencies": { "@typechain/ethers-v5": "^11.1.2", "@types/node": "^20", - "@types/react": "^18", + "@types/react": "^18.2.79", "@types/react-dom": "^18", "autoprefixer": "^10.0.1", "eslint": "^8", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7827f72..3a579d8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,10 +7,10 @@ settings: dependencies: '@consolelabs/mochi-formatter': specifier: ^20.0.5 - version: 20.0.5(@consolelabs/mochi-rest@5.3.5)(ioredis@5.3.2) + version: 20.0.5(@consolelabs/mochi-rest@5.3.5)(ioredis@5.4.0) '@dwarvesf/react-hooks': specifier: ^0.8.2 - version: 0.8.2(react-dom@18.0.0)(react@18.0.0) + version: 0.8.2(react-dom@18.0.0)(react@18.2.0) '@ethersproject/abi': specifier: ^5.7.0 version: 5.7.0 @@ -18,29 +18,29 @@ dependencies: specifier: ^5.7.2 version: 5.7.2 '@mochi-ui/core': - specifier: ^0.13.4 - version: 0.13.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) + specifier: ^0.14.1 + version: 0.14.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) '@mochi-ui/icons': - specifier: ^0.7.4 - version: 0.7.4(react-dom@18.0.0)(react@18.0.0) + specifier: ^0.7.5 + version: 0.7.5(react-dom@18.0.0)(react@18.2.0) '@mochi-ui/theme': - specifier: ^0.17.0 - version: 0.17.0(tailwindcss@3.3.0) + specifier: ^0.20.0 + version: 0.20.0(tailwindcss@3.3.0) '@mochi-web3/login-widget': specifier: ^0.2.18 - version: 0.2.18(@types/react-dom@18.0.0)(@types/react@18.0.0)(ioredis@5.3.2)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0)(typescript@5.0.2) + version: 0.2.18(@types/react-dom@18.0.0)(@types/react@18.2.79)(ioredis@5.4.0)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0)(typescript@5.0.2) '@radix-ui/react-slider': specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + version: 1.1.2(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) '@semantic-release/changelog': specifier: ^6.0.3 - version: 6.0.3(semantic-release@23.0.7) + version: 6.0.3(semantic-release@23.0.8) '@semantic-release/git': specifier: ^10.0.1 - version: 10.0.1(semantic-release@23.0.7) + version: 10.0.1(semantic-release@23.0.8) '@sentry/nextjs': specifier: ^7.107.0 - version: 7.107.0(next@14.1.3)(react@18.0.0) + version: 7.107.0(next@14.1.3)(react@18.2.0) bignumber.js: specifier: ^9.1.2 version: 9.1.2 @@ -52,16 +52,16 @@ dependencies: version: 5.7.2 next: specifier: 14.1.3 - version: 14.1.3(react-dom@18.0.0)(react@18.0.0) + version: 14.1.3(react-dom@18.0.0)(react@18.2.0) react: - specifier: ^18 - version: 18.0.0 + specifier: ^18.2.0 + version: 18.2.0 react-dom: specifier: ^18 - version: 18.0.0(react@18.0.0) + version: 18.0.0(react@18.2.0) swr: specifier: ^2.2.5 - version: 2.2.5(react@18.0.0) + version: 2.2.5(react@18.2.0) tailwindcss-animate: specifier: ^1.0.7 version: 1.0.7(tailwindcss@3.3.0) @@ -70,7 +70,7 @@ dependencies: version: 2.8.1 zustand: specifier: ^4.5.2 - version: 4.5.2(@types/react@18.0.0)(react@18.0.0) + version: 4.5.2(@types/react@18.2.79)(react@18.2.0) devDependencies: '@typechain/ethers-v5': @@ -80,8 +80,8 @@ devDependencies: specifier: ^20 version: 20.0.0 '@types/react': - specifier: ^18 - version: 18.0.0 + specifier: ^18.2.79 + version: 18.2.79 '@types/react-dom': specifier: ^18 version: 18.0.0 @@ -178,7 +178,7 @@ packages: dev: false optional: true - /@consolelabs/mochi-formatter@20.0.5(@consolelabs/mochi-rest@5.3.5)(ioredis@5.3.2): + /@consolelabs/mochi-formatter@20.0.5(@consolelabs/mochi-rest@5.3.5)(ioredis@5.4.0): resolution: {integrity: sha512-5cNoyIKmPf0I6/WDXS8A+pdpI+IsmlNMcjIbVroXBPZCvr1nJTCFMZLYyt/JsV92g0Vu8bqfnrOlFRFScjPkjg==} peerDependencies: '@consolelabs/mochi-rest': ^5.3.3 @@ -189,7 +189,7 @@ packages: '@solana/web3.js': 1.91.4 change-case: 4.1.2 ethers: 6.11.1 - ioredis: 5.3.2 + ioredis: 5.4.0 lodash.chunk: 4.2.0 lodash.merge: 4.6.2 lodash.zip: 4.2.0 @@ -207,14 +207,14 @@ packages: dependencies: deepmerge: 4.3.1 lodash.snakecase: 4.1.1 - nanoid: 5.0.6 + nanoid: 5.0.7 path-parser: 6.1.0 snakecase-keys: 5.5.0 wretch: 2.8.1 zod: 3.22.4 dev: false - /@consolelabs/mochi-ui@17.0.3(@consolelabs/mochi-rest@5.3.5)(ioredis@5.3.2): + /@consolelabs/mochi-ui@17.0.3(@consolelabs/mochi-rest@5.3.5)(ioredis@5.4.0): resolution: {integrity: sha512-WW1Q8Mnn7u7qrLa0gcQn1L00zXCWBfN+BSbFirOfgmdfp2MMHtQOda3T+/hl8vdhsmlss/ji4uYhGS+tHU+1lw==} peerDependencies: '@consolelabs/mochi-rest': ^5.1.9 @@ -225,7 +225,7 @@ packages: '@solana/web3.js': 1.91.4 change-case: 4.1.2 ethers: 6.11.1 - ioredis: 5.3.2 + ioredis: 5.4.0 lodash.chunk: 4.2.0 lodash.merge: 4.6.2 lodash.zip: 4.2.0 @@ -284,27 +284,27 @@ packages: buffer-layout: 1.2.2 dev: false - /@dwarvesf/react-hooks@0.8.2(react-dom@18.0.0)(react@18.0.0): + /@dwarvesf/react-hooks@0.8.2(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-LiigWf4llW9W9pBzGDTyw9Sp7xlacLh299b7vrOpksi2D4QtQxNCVFlZeFBOBRo8jUawxwaqT6BQaa9TKSdyMQ==} peerDependencies: react: ^16.8.0 react-dom: ^16.8.0 dependencies: - '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.0.0) + '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.2.0) copy-to-clipboard: 3.3.3 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) tslib: 2.6.2 dev: false - /@dwarvesf/react-utils@0.4.2(react-dom@18.0.0)(react@18.0.0): + /@dwarvesf/react-utils@0.4.2(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-pUXyEpqiLwt918h9N2QAdI/M4QUc0mjfYAoOR2oW0o29xMeVjK0hXwKhjWQy5mCNWDQxBimSRf1ornz7LVioSg==} peerDependencies: react: ^16.8.0 react-dom: ^16.8.0 dependencies: - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) tslib: 2.6.2 dev: false @@ -637,15 +637,15 @@ packages: '@floating-ui/utils': 0.2.1 dev: false - /@floating-ui/react-dom@2.0.8(react-dom@18.0.0)(react@18.0.0): + /@floating-ui/react-dom@2.0.8(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' dependencies: '@floating-ui/dom': 1.6.3 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false /@floating-ui/utils@0.2.1: @@ -707,807 +707,803 @@ packages: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.4.15 - /@mochi-ui/accordion@0.1.20(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-JmA+pB9hEIz45WmDXam+lUZ/nx1H9a54SjkFPorKJvBVXiM7TzEA8R9K7NnfbWtWOwKyeHUd01S7t2FSWcLAZw==} + /@mochi-ui/accordion@0.1.24(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-KorLldA0FaA0VCBjAgEUqgYCrNRLk6Hzh0ut4A/vwCyJoaEbWXG4ks6HppULT8MyCY06t7HFCb56f0fF13ANYA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-accordion': 1.1.2(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-accordion': 1.1.2(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/action-bar@0.2.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-xWGOKHkkIY49ds6BFLLTnrC9lbpCa5mR9csFw46apIQkmV0IefL2cVKjTxU4KNdIEwiofJI3/S/NWBxe7jnLSQ==} + /@mochi-ui/action-bar@0.2.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-gplnUVYf7wi8iJEtjIqFG1DmtCtp9KlCvpjJ8IazDMsuuGkxyLLBdeoBIksQYXBJxlXXovEQMMw//mqquXRoUg==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/alert': 1.2.10(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/alert': 1.2.14(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/alert@1.2.10(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-DRDRho6Iz/eRHTyYHaWkaNHS0Zq47Lnsu2Bj0W3e0w7jn3J1/Fs3uvtuNE3jlfIeLJ/+HplbAaXA/js6g8Lcmg==} + /@mochi-ui/alert@1.2.14(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-R/yvOsTINRLr6OPqpLyg1cjKSImrQZxSFhtF1yx9uDyUgQx35qVNSioXWDe6OFNxOTmdu4kJsra+oUKSTWmZ3A==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/button': 0.4.16(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/icon-button': 0.4.17(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) + '@mochi-ui/button': 0.4.20(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/icon-button': 0.4.21(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - tailwindcss dev: false - /@mochi-ui/avatar-group@0.3.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-/1orU5524K9oSDKLrIEMVlS/LH9Bj4FANpvMAD1XeCx8D0gKACfYwLkRkHmSPzilA0xDzXlGuiBLmaPESqbKDw==} + /@mochi-ui/avatar-group@0.3.8(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-LU857S8s9r5tvh9LJGTsGJrsYX1eAKeLK3xODKmMolEjTQNKHu7kNtK6uzwrjvufNXcNSG4u3j93zITUZW7N3w==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/avatar': 0.3.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/avatar': 0.3.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/avatar@0.3.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-zDTruDW3fKWrRy4fgXlryYdLDtBvLJRJbgQiZXc/Bsj//V24rJp1P6XThxNg+cCswRydGctzMHxIAwmq1GrYdg==} + /@mochi-ui/avatar@0.3.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-do8MigWXWZwKwrcQBhJAJ5L21EJ1LOa5rVMFvhm79rUSAaMmcA0d6yh1acWLZv2EZA4AmBsvyA3yi+2pb72elA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/skeleton': 1.0.10(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-avatar': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/skeleton': 1.0.14(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-avatar': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/badge@0.3.5(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-eBnkdLnKYDqzTVDGgMp2O2TLxM4NXzsQ/u0EyRvNRZFCrpW4+2vTvfz140qt9nDA3PU0rlxNV1zaTgF0IlMH5Q==} + /@mochi-ui/badge@0.3.8(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-lsFToiAjFPsd5qt2WU3IdGxchQrFMtv0M2Vo56XeKx8ZmpuNfe7xGPmKdK/tguMGp/ar70VrcXJIL00fzqz5dw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - tailwindcss dev: false - /@mochi-ui/badge@0.3.6(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-gGiDLyAW80ZCnhQX8IXNBZm+kXErCnqjqo8U4Uqor3DarzmLQNuQM8vtT+fVdObcxJoa/CVuPPDOML8KQFva6g==} + /@mochi-ui/button@0.4.17(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-45Nmln78ldeh6kVV8i3UPaLvdzl06byBT1Lb/29Y1ovbs8pXGQDMJKWsODfVMUYPQ+xj3qA7eAkdCsWT/tMMkw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: + '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.2.0) '@mochi-ui/theme': 0.18.0(tailwindcss@3.3.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - tailwindcss dev: false - /@mochi-ui/button@0.4.16(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-nP++K/rdUI6DYxIDI+Pcmw8uDoaWrtHsvXpUBsSsC/rgazYp1R9PnMUU/uFNdZ6z0ZBcSlmDC7V0h6a2t3+K5w==} + /@mochi-ui/button@0.4.20(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-2wZ1ahsv8JfF4LOls64Zn6sN5rSgSvzmDSqFyBObclSho7WTwzhNgxdkgpCJWtD0KN/1ptIr85d22sunOkaBSw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - tailwindcss dev: false - /@mochi-ui/button@0.4.17(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-45Nmln78ldeh6kVV8i3UPaLvdzl06byBT1Lb/29Y1ovbs8pXGQDMJKWsODfVMUYPQ+xj3qA7eAkdCsWT/tMMkw==} + /@mochi-ui/card@0.1.11(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-dgPxOtw1hQQyr6oSrs75zbwPZ15In3Mwkc6JBcyRpsO+bn3xtudOrgzJYZqsG7ku+613eek1wft9uDDqLvJR4Q==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.18.0(tailwindcss@3.3.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - tailwindcss dev: false - /@mochi-ui/card@0.1.8(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-V4jrUkObxD3Aj0+NVBW1la27MFYn+H2N9EiGzsHIshH8aw3NCwyfhxVRZrz3Qww88Xlz/Qb2oMi5M3wOQJUEuw==} + /@mochi-ui/checkbox@0.1.24(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-2IB4Z/rc5drwISRdGGZHG39VAAbHh+iNOYjI3DYcx/YbEm0Rt2vvkzZ1zJHsXWOf5G/kU2OIWcj6AgMcOzCRmg==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-checkbox': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 - clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) - transitivePeerDependencies: - - '@types/react' - - tailwindcss - dev: false - - /@mochi-ui/checkbox@0.1.20(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-GtAI+CQVoXQdhngMKOVAPs6xcPNU9LnEphhbO68QuswLqikIhhnFFLaV6k7ircZVLAt+vg2zQIWdzPLszdv1EQ==} - peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 - dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-checkbox': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - class-variance-authority: 0.7.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/content-editable@1.1.8(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-3m2CoECNNr0vO3Y1bHL3/uKWost8Q9zaAFbLaZDlxkQ37dRhD0oR8UVpGYwy8nhQrirgxNZe8hROBC4mw+1Tdw==} + /@mochi-ui/content-editable@1.1.12(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-WKo27j319fHIc4+zKsYZ2zLRRvHB3dR638ePPVnR11y1Nr0PyHnaZKo7BsHJUmIv3+bFpr6EhX7keWsBhzpsCA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) + '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - tailwindcss dev: false - /@mochi-ui/core@0.13.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-UdN0aoEpD44bdwDbiVsSmuWQ30b/TRHFZ0yJs0qINDq1yXkYSg4uyCfX0qbF7Cql1cCKgruVGZzhMpRgv0YCYQ==} + /@mochi-ui/core@0.14.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-12olcpKOYA05FpNS1tP6CQQUNhbKS6JN9fIy7VJ30yIhZEIYKBiqpDbRGdF1JcmgwE/VuNqKY9wjI/a6y+aLlw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/accordion': 0.1.20(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/action-bar': 0.2.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/alert': 1.2.10(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/avatar': 0.3.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/avatar-group': 0.3.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/badge': 0.3.5(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/button': 0.4.16(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/card': 0.1.8(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/checkbox': 0.1.20(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/content-editable': 1.1.8(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/drawer': 0.3.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/dropdown': 0.2.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/footer': 0.1.11(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/form': 0.1.17(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/icon-button': 0.4.17(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/input': 0.3.7(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/label': 0.1.17(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/layout': 0.1.17(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/list': 0.0.30(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/logo': 0.1.17(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/modal': 0.3.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/page-content': 0.1.17(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/page-header': 0.3.7(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/pagination': 0.4.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/popover': 0.3.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/profile-badge': 0.2.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/scroll-area': 0.0.6(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/section-header': 0.2.7(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/select': 0.3.0(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/separator': 0.0.31(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/sidebar': 0.1.10(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/skeleton': 1.0.10(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/switch': 0.0.28(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/table': 0.8.0(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/tabs': 0.2.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@mochi-ui/toast': 0.1.10(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/toggle-button': 0.1.2(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/tooltip': 0.2.17(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/top-bar': 0.1.16(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/value-change': 0.0.6(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/accordion': 0.1.24(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/action-bar': 0.2.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/alert': 1.2.14(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/avatar': 0.3.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/avatar-group': 0.3.8(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/badge': 0.3.8(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/button': 0.4.20(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/card': 0.1.11(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/checkbox': 0.1.24(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/content-editable': 1.1.12(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/drawer': 0.3.11(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/dropdown': 0.2.11(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/footer': 0.1.14(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/form': 0.1.20(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/icon-button': 0.4.21(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/input': 0.3.10(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/label': 0.1.20(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/layout': 0.1.21(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/list': 0.0.33(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/logo': 0.1.20(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/modal': 0.3.11(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/page-content': 0.1.20(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/page-header': 0.3.11(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/pagination': 0.5.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/popover': 0.3.10(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/profile-badge': 0.2.8(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/scroll-area': 0.0.10(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/section-header': 0.2.10(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/select': 0.3.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/separator': 0.0.34(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/sidebar': 0.1.14(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/skeleton': 1.0.14(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/stepper': 1.1.0(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/switch': 0.0.31(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/table': 0.8.4(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/tabs': 0.2.10(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@mochi-ui/toast': 0.1.14(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/toggle-button': 0.1.2(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/tooltip': 0.2.20(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/top-bar': 0.1.20(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/value-change': 0.0.10(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/drawer@0.3.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-kNZz/BtNTE0R+g0gOXjYV6W9T4Y0kUUHYkhkjIi3zTd5BiPx6ZIKOUubGc4cJVk8YvCT9kwnnBU7Wm26oNbJ1A==} + /@mochi-ui/drawer@0.3.11(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-GXJHMMDD7FAnZVBAoHdutLJopUdkVS76qLlOx60+h+owyEEVPoWF/GRMp8rBE6hIa/MU+LbU9MyrHdQ/26WL+Q==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/dropdown@0.2.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-XObu5uhsFwclbsTJoELYIR/vE0R5kIgvzY60n4H72IUXvHMt0GVEpQGLc2D+VqcIFwyZ+qkonC/iHz6S7+5I5g==} + /@mochi-ui/dropdown@0.2.11(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-AZyRjKmxkGP9EyHdubD4JBRp9sknSlsvZ/LFaxvQb/TlNGMWisA4Ng/3/UNJ0NMYOlN3nIw4Q9XtUHsvTmHlZQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-dropdown-menu': 2.0.6(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-dropdown-menu': 2.0.6(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/dropdown@0.2.8(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): + /@mochi-ui/dropdown@0.2.8(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): resolution: {integrity: sha512-1hMc508lJ1xRJ0/+HcgUldsFK3QY0d6aC1bEMBKAuSWPSKS+Q9Xs1e+FmVVJh0kFL7tf+rjUQ2QEFiOcLBfj+A==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.2.0) '@mochi-ui/theme': 0.18.0(tailwindcss@3.3.0) - '@radix-ui/react-dropdown-menu': 2.0.6(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@radix-ui/react-dropdown-menu': 2.0.6(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/footer@0.1.11(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-0utd9bv39xznKIoL8b7w7Jj0VdSvPluJj/c0BDPOP38X3hXdZFTMPluA7C0gnLxVev92Jn/S1RboT8xXeqyFmg==} + /@mochi-ui/footer@0.1.14(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-QI9Ne9HgV4muUea8eMoivnZZYY7FloS71tQ8woVsD0laEDyAcBy6gXcKsTyl4KNDk/Cjul8Hnc8tPNSrrfOTJQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.0.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - tailwindcss dev: false - /@mochi-ui/form-context@0.1.2(react-dom@18.0.0)(react@18.0.0): + /@mochi-ui/form-context@0.1.2(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-kdMBvFvuRaejIb/7xVXd2M+XntRMFwR/AGng37gUofnMJiJgRh5pbRMh/CmZ+tV8OhraLOtN8vHK900qKneTSQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@mochi-ui/form@0.1.17(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-JidWTlR12EQ7lbPJA9aLq3VpA4jOMbUGL3BRbbrq3XukIfyq6Y+i/7sG/zV7AQBKl03fWhISoLeWWDEGXeZEEw==} + /@mochi-ui/form@0.1.20(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-6PZlqZwBP3+ceYDbo+VMYLtOCFFdiUxawEMIrZTtLlqwV4fgN649nx8jdIZu9Y+0dOexAWpY3Vx5olpnEQApkw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/form-context': 0.1.2(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/label': 0.1.17(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/polymorphic': 0.0.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) + '@mochi-ui/form-context': 0.1.2(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/label': 0.1.20(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/polymorphic': 0.0.4(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/icon-button@0.4.17(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-zxc8ylsF7XFPFrnCo7iJXZp24lqezdhdxBGt2KD7zkmxFADobOmwxS/DJXXsEkRmiyOYEg5XeQJzkHYnfL3gAA==} + /@mochi-ui/icon-button@0.4.21(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-0qnxdhm65F9tmZDBSOlYSzkbjGvUOqheSoucQPcZ2lpFhCaEaYmOz9BtAOPcxbEEDznvlsYza6ObtTCg9DmsYw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) class-variance-authority: 0.7.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - tailwindcss dev: false - /@mochi-ui/icon-button@0.4.18(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-GNeWXsWDQleJ4h4daHO6Pbn6bWaOlJVzIdgjRjjO6t6m22wnRNeXKAe6aQDYHGFdhdCTpGP8mNxJO6k/TD4GjQ==} + /@mochi-ui/icons@0.7.4(react-dom@18.0.0)(react@18.2.0): + resolution: {integrity: sha512-D8OjgFFD0g/YfoF1f9OLTqjqMVBCSfXijDeN6YUEFUlCVaPYPZewAWW1S5cnJIYq72JZ4ji+ntqSnSnrXSaNSg==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.18.0(tailwindcss@3.3.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) - class-variance-authority: 0.7.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) - transitivePeerDependencies: - - '@types/react' - - tailwindcss + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@mochi-ui/icons@0.7.4(react-dom@18.0.0)(react@18.0.0): - resolution: {integrity: sha512-D8OjgFFD0g/YfoF1f9OLTqjqMVBCSfXijDeN6YUEFUlCVaPYPZewAWW1S5cnJIYq72JZ4ji+ntqSnSnrXSaNSg==} + /@mochi-ui/icons@0.7.5(react-dom@18.0.0)(react@18.2.0): + resolution: {integrity: sha512-Svt3Mb9ZghTC8W7Cspmzw3BtdiXTgtRV9Q3zETZB0/s2nz78VUcOGkb3a9wt80oXZL2kPq7GCo9vQ2MN3Ar1DA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@mochi-ui/input@0.3.7(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-eBzz7tKDjNv31QH203BEyqIg5z7o30t0kdMwm8Uo+ynos1tqf7CyKf9KIVmuF1bbBR0zdEr1QspA3aO0r9auFQ==} + /@mochi-ui/input@0.3.10(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-FSoJvI+Sn9zU088pC5ILzu5EmR/Z3hxfs6nY8cJaBnE1MmEtPQKjlgKxu3aWQ17d8nmITrXS0R/qIVvq85S+Ig==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/form-context': 0.1.2(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/polymorphic': 0.0.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) + '@mochi-ui/form-context': 0.1.2(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/polymorphic': 0.0.4(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) class-variance-authority: 0.7.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - tailwindcss dev: false - /@mochi-ui/label@0.1.17(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-82R4TsB1kJ7rOrjU5we+iK07M9RMjG225KXaDNgj5m1dDKQPrOh2yQhNuJG1pqs1r9AuTnbKbnOhpPUExTokjA==} + /@mochi-ui/label@0.1.20(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-JBec2OZin+NIGYZ9v0Eu0VAFBlT503zjyluWHlL11ciZbUbIGdz0QzUQjpIBAqQ2Pz2T6XCugR+08aCZVaNyxQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-label': 2.0.2(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-label': 2.0.2(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/layout@0.1.17(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-FEKjyVh/R5UiItq5Wm1fkGqAqM3gcYRBLLlESZhrar1zYjTGwIPdoNs9Ln9PKzgi5cx+25Jh3c7f8BjguwWpgA==} + /@mochi-ui/layout@0.1.21(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-3XkclepwV/OSP1ZUjYgleItHwoJqbvbykEBGierQ6gvCRM5svhALdzLynb/spmfOtO6bxN84XcQm2KYt0n+C+A==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/sidebar': 0.1.10(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/sidebar': 0.1.14(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/list@0.0.30(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-6chHAenSXz1UXWmcBEDv6Jcbnr6tSAqnd7y+8Tyx9LdDZt3QpEF6TlXc7LDct2DBY8K6dxr22qMQ1xY4CSH6ng==} + /@mochi-ui/list@0.0.33(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-hc3+O8PL7lIRgMpEB9VW0jaNx8bYn3oZuxSZwQ/Ve2yVmJChIBbi8Cgiq7V1cqoy5CJxse01tBK23qa3gVkisg==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/logo@0.1.17(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-aCi5ry5cYdQeUrOX4hUHe0GV8jCiePHIcD/dI1mJYnqefoS4qLLtEcT8QL9jun5TM8Vv7AgGQAZm6Uv+kN49jQ==} + /@mochi-ui/logo@0.1.20(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-7Uu89ch5xm4CTmPg6lN5eBLS0yacNY4B5iFmhGR3MgFzqzjlUBzc05in7hPpdnU8zGGdGIMXoEIHz+bHlm5Zqw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - tailwindcss dev: false - /@mochi-ui/modal@0.3.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-NULGp4KHPd/96DrnY757jPTIMJKtI/62W2L0QpR7jUBNx3h11F2TCc9HBu8Kb1Nie8KBy/EaxExE28jJwPFGBQ==} + /@mochi-ui/modal@0.3.11(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-pouvG8+jRJIfrAe9MNYBnCSGJcHJfY+67zdndDWbUWXEeS+g4Zo4e4F1Enl86RP5Doo966+jO1T1qqJ8mnzGXA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/page-content@0.1.17(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-oAvx+EayEnUMtdaz82StH32Yw8zB5y/bO3ReqcFbMV2bJGOfkF580sesi6GFfy3zlVQfQxw9Z0VbbKxJ0qpBjg==} + /@mochi-ui/page-content@0.1.20(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-0+VUOq6w0txbRsC7QJGwl+U3lNb8EsCWY2JJNa9px6qL2rA9FInucPjGbg15LSnXFURwtg9jDLlmh7u8SmUTLw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - tailwindcss dev: false - /@mochi-ui/page-header@0.3.7(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-SJWhK083sXuSH1yDsLobX/trEUBJ7i7JhdOMvbHmM09lO0AiK6h+E1yFC378rnypg1+VlVjNtwhd2siu7BCIQw==} + /@mochi-ui/page-header@0.3.11(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-ibAQPOKzE+0ZcUqP2+RTVt+GpgzJnk1z8TmEp2jhlYI6T5O7ChpKIlFF+/ygEqa1UMYXt/ShFRakX1/I7b8Atw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icon-button': 0.4.17(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/polymorphic': 0.0.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.0.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/icon-button': 0.4.21(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/polymorphic': 0.0.4(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - tailwindcss dev: false - /@mochi-ui/pagination@0.4.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-dIbGB9n45iGmlHcqKYrgM3UUbiIPrMoV1MtRfABPVfXvnMGtuhgz05g/H0ddJ7Koo5rZDjCT2ZIVkydVK7UA6Q==} + /@mochi-ui/pagination@0.5.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-eQGshp8triQrkMB60rdzQopkNC2S3Sih6syUNGTl8+VmO4oadNIER1AuI6dZkfDwfzlcT1bENVcCrxrFHSGbbg==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/select': 0.3.0(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/input': 0.3.10(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/select': 0.3.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/separator': 0.0.34(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/polymorphic@0.0.4(react-dom@18.0.0)(react@18.0.0): + /@mochi-ui/polymorphic@0.0.4(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-1NcYbWEvelB15WknbHQpVK2GkdUA6tSzpRgM1LAlxXuJgX8IyZ/bK7oHRFgKjSxLOM0zc0TMA3fZ0GZVE1AcTg==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@mochi-ui/popover@0.3.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-qbgwTmRAM7PJe1a5ssRWlm2NNfdQImyrRyjWamD9Vxwfx0OW85WhlGsSZ6CkHgpBeVTEEkhVzms9l5TTg7vlEg==} + /@mochi-ui/popover@0.3.10(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-SRqE02+tjR26dlb/kN1obckRd1xYTDzlRHsvkTj7sEE8VZlUsQYv4Yrs4wJNGOOnemXZdjVjAtRgXGvr156bpw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-popover': 1.0.7(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/profile-badge@0.2.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-8JnTBQqdOeBRRwt1m3jXxyNChSpzqVfbERzjssZtUBW99JGmmsiZMSAPq5FeKl0FfD/PQD0yJAYpKWPu95sCaw==} + /@mochi-ui/profile-badge@0.2.8(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-d10fZ3uPPoZAhOnZ4dTcYu1Er+2Vx9WmK7SsMUl9WSNPuAQA4nJw/GT02RhDvQiU562kfhVWfRP9DF/yOxt9ZA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/avatar': 0.3.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/avatar': 0.3.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/scroll-area@0.0.6(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-SiI5nRu6bmpqRWTifLgOYuPXwO6cLeY+fyvfs/zF/TfiQsF+/uoWb/Tee4oyBg1m9q949yU1/mZSdQaXMmUqiA==} + /@mochi-ui/scroll-area@0.0.10(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-7VDeV3T7jh/w2cFhL/W/m2LMUMqyJyq29RX4TnySzgKlFQHYmYYQrGSh58xmclv0N9XxBURj0JFBtrUaHY8s5g==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/scroll-area@0.0.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): + /@mochi-ui/scroll-area@0.0.7(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): resolution: {integrity: sha512-wdADVdpbg/ZpHg3GU4SdrjEPRbDbzKBAz4oa7pKOVKiAOM6mbMBHfEASYSWKLNc7M9N4tCgcpL3XegKpSbnYjg==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.2.0) '@mochi-ui/theme': 0.18.0(tailwindcss@3.3.0) - '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@radix-ui/react-scroll-area': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/section-header@0.2.7(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-nqJUgY74QZziwJ8OQmy/gZFk9rPuK+lDCLbKCh3OqPzq23zrW7X6SosvY4hVv8SchoEXGnrtJu71iDDpmzoqpA==} + /@mochi-ui/section-header@0.2.10(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-DHrm6zXE9IB0FPDfB4APlUqMv/Wi0mgFW3Qf9jWijcROlAFpzpN0vwzT5uPk4XeOV0TnDppByIsL7c1vMI7kkQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.0.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - tailwindcss dev: false - /@mochi-ui/select@0.3.0(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-9UeoTVtjsK8Q2aR73GT4kLqnUkWT7ZotE7CKxCCdoFlzrXP2a3Dp0z+8jMuLBNvyUth8TGIt/h/ldXrlIC1jvw==} + /@mochi-ui/select@0.3.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-xRR6IpdiRDXxzNE01DrNfBoIV+fSMC2gnF/nONO0yLRanzRrFGBRUidJWBUOE6sDPCCrz+DJ3537dqyvKXAdsw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-select': 2.0.0(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@dwarvesf/react-utils': 0.4.2(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-select': 2.0.0(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/separator@0.0.31(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-yh9CXCU8C7FSn4ARZ9MvZMJj4So5oRu8akUQ15/WaIeb7SFs8P8nKvNr+biStj8ZIQT7Y492JiGEm6G4EdD1lQ==} + /@mochi-ui/separator@0.0.34(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-tPiv5btmNpeypW3e8ZVw9SxzJ+ePY8nQ28tkjcj5feQ3I7b0dMGhGIUKX3M5NQzJOkjUJxwDdg8ImpCTfVPBOA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/sidebar@0.1.10(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-zCpIoQy4gMbHbyDfjbnXWsmnyHSydBsllbo114UZWsK7/rbFsPXjOz6jWpVOMrw4kzqk5mi/Etzezy/8a/SZ+g==} + /@mochi-ui/sidebar@0.1.14(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-a9z4eHppFSBeYB1sYlY6vVi5lQSEa6u7rSVOuxPF3qclzrKkpAOHO3rEBp772HjOImlgObd+LBjEzvuk9P61vA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/accordion': 0.1.20(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@mochi-ui/tooltip': 0.2.17(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/accordion': 0.1.24(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@mochi-ui/tooltip': 0.2.20(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/skeleton@1.0.10(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-hxMwq5+Q7mucH0/6Y1p2hv/itUzhde19ePX0YllZOYGfmxYWexgMBj7AupX7M26Low7wZYIMfV8HpjHcMPZFJw==} + /@mochi-ui/skeleton@1.0.14(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-3XSkiRowcdIEfCUhO3BgEeXysYPKo+rBUqaj7ytKxVq5UQ6rSLUWpqbyCBiEpe8k6+ARxPXkgCWv8MaBkFIhOw==} + peerDependencies: + react: ^18.2.0 + react-dom: ^18.2.0 + dependencies: + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + class-variance-authority: 0.7.0 + clsx: 2.1.0 + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) + transitivePeerDependencies: + - tailwindcss + dev: false + + /@mochi-ui/stepper@1.1.0(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-y8hP6shnO0Y+24QS5IWu3d2XfmPWOiGAIDYJXl/27/HfzOwRBmbuvbZqirdd1IujEEC7TYhbvABPJlMMdnp2Og==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - tailwindcss dev: false - /@mochi-ui/switch@0.0.28(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-BL+QnqWAXnEbqN40X7VfN4AwKI9TjuhLxRWtAwSLPzmZKeL4GPUt0FJ7SJ+oDcwsJH6xAumckjhGeXe5KVrMPw==} + /@mochi-ui/switch@0.0.31(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-i9t0JwDbCLAY1K5+K8XGivXQQgqZ2/0oXZfmOlacePivs5Ts0cqNyKnTgptaW72YYIzzrJmKjyyuCFC2iqv3mA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-switch': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-switch': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/table@0.8.0(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-Tuahgp1WehxRK/VaD5gEouUVXXeDMZBgGaPB/OmFv7UytKegOYqO4vkn3J1ajFeiX5VTOCLZ0fAP0XHEskoNdw==} + /@mochi-ui/table@0.8.4(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-tzSEALoj0ozvb183IjIEXL/uVuhPEJK58+qtB6muxfcWCBDSugM7oziUHQzCp/PDHiWsm3XyHxcQbklO5kHFmA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/skeleton': 1.0.10(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@tanstack/react-table': 8.15.3(react-dom@18.0.0)(react@18.0.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/skeleton': 1.0.14(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@tanstack/react-table': 8.16.0(react-dom@18.0.0)(react@18.2.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - tailwindcss dev: false - /@mochi-ui/tabs@0.2.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-k3ikI3mMdUqhD8/57x262jzlbh0U/KaF5AckaEH+qn2GabyO+HXgXgALBDlwrLDuFjn0omRy1cC95hdDngjVyw==} + /@mochi-ui/tabs@0.2.10(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-XFMuQnuA79LKVkhQ6EpF0X1BHBMSxGAs46HwXTiB7VIjTZily8TNW0b2zlwbpGlcwjGYtHwziR48Jr8mu2Gg+A==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/tabs@0.2.8(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): + /@mochi-ui/tabs@0.2.8(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): resolution: {integrity: sha512-Df4dWng7tvCurPldU9oXeSyAXszw1shXCqBJ//eaV6SDY1ZQvWE8gb/n/bGwGkFr13H08V6GoyKdRrYkD6a2YQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: '@mochi-ui/theme': 0.18.0(tailwindcss@3.3.0) - '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@radix-ui/react-tabs': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/theme@0.17.0(tailwindcss@3.3.0): - resolution: {integrity: sha512-HwrJsJnuzPNvbcCFHVxNRpqc2OHhz8a6F5NkhhUazIk+wPcwtS6Zi+QnkH2F38F5Y5V1MrLZZeyiQXBgqvPJCQ==} + /@mochi-ui/theme@0.18.0(tailwindcss@3.3.0): + resolution: {integrity: sha512-2UTA+6ndbKXCuePF8VU3/z7IBYJcioakxNyXGA13IA+F0fpSUh5g41jkbx/Hv7AIkoCH7mJh5aCqeGhX7qp2Gw==} peerDependencies: tailwindcss: '*' dependencies: @@ -1525,8 +1521,8 @@ packages: tailwindcss: 3.3.0(postcss@8.0.0) dev: false - /@mochi-ui/theme@0.18.0(tailwindcss@3.3.0): - resolution: {integrity: sha512-2UTA+6ndbKXCuePF8VU3/z7IBYJcioakxNyXGA13IA+F0fpSUh5g41jkbx/Hv7AIkoCH7mJh5aCqeGhX7qp2Gw==} + /@mochi-ui/theme@0.20.0(tailwindcss@3.3.0): + resolution: {integrity: sha512-tSL0ftMB7i2CKJAutgn5kYiBaIrKp9l0LVKpP5bxFz/ZOyB0ycpbNb1L8BgX+p6py3cHuyjGAV/07y9cVRibPw==} peerDependencies: tailwindcss: '*' dependencies: @@ -1544,79 +1540,79 @@ packages: tailwindcss: 3.3.0(postcss@8.0.0) dev: false - /@mochi-ui/toast@0.1.10(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-3IeK/1TKQxE5UmdxShkfVAuYUsitLuHPChAi/v23Cw/hHj6h0aaWoJOY6xl9WL83gZhsZKK625ttRLtW6NZw9w==} + /@mochi-ui/toast@0.1.14(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-r8G9W8AP76DBB8sT/+FrTRRU6M2W1dFfYbhd8ast4B6B+x3PteMHq0vSjaSVE5oJqU9tVjf9H37RU5XYFyAHrw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/alert': 1.2.10(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-toast': 1.1.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/alert': 1.2.14(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-toast': 1.1.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/toggle-button@0.1.2(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@mochi-ui/toggle-button@0.1.2(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-0vqHLeGb4KqZg21k6R046a9ahun5vAdqw4pbzUl6Y++CcssdKu7sxkH6blyPHp5wrpSl9QvGtyx8AzegCXGzpQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' dev: false - /@mochi-ui/tooltip@0.2.17(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-1RWcUNzyMETTgWdiJ1aort4iSp9v+Qi6iDnGsrDtIxkMvlcS1nUzIORuB9LMDuxOuoqlyMJcRWlTH1+axKYxDQ==} + /@mochi-ui/tooltip@0.2.20(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-kpAwAiW9qgVnPPxN8A1xk8ix7HATd/FpTNyfbPbdfcSSKBUnm7kB3dfT//rn9WWXsHyCKn6w4dNV0J2t+uhXIw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - '@radix-ui/react-tooltip': 1.0.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + '@radix-ui/react-tooltip': 1.0.7(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) class-variance-authority: 0.7.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/top-bar@0.1.16(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-QsPt0Kg80BRcbvOHDKpusnvHuDF7Fm+M+IxKQH9mkAhlavIVpWtRLGpJYytpuWXYj69u6xf16q8/w3E373mIEw==} + /@mochi-ui/top-bar@0.1.20(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-IDIXg4EcQfLYxZlyc/VFy/rj6YBNyGrY86cDoYxJn+sA4wTJRTIHQuM8jWbAyq+c3hK6PYJhqSGFHw5yVrwjjA==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@dwarvesf/react-hooks': 0.8.2(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/icon-button': 0.4.17(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/list': 0.0.30(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@dwarvesf/react-hooks': 0.8.2(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/icon-button': 0.4.21(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/list': 0.0.33(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - tailwindcss dev: false - /@mochi-ui/typography@0.1.1(react-dom@18.0.0)(react@18.0.0): + /@mochi-ui/typography@0.1.1(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-GVw1OzjyNNG95usgAtlkhYK5W3DkuWVH/yigyvEc7SFlXRVEuuv9zB0z5Enlf2jEW8M8mnRF4YerfqSIfpeKeA==} peerDependencies: react: ^18.2.0 @@ -1624,39 +1620,39 @@ packages: dependencies: class-variance-authority: 0.7.0 clsx: 2.1.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@mochi-ui/value-change@0.0.6(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0): - resolution: {integrity: sha512-T8ZGRR43/FsLAnbbbP6nD5dxOxos/4pMwBFQAPNB0IWUC7JDDyHei8B0I7gpsgd8B774ddx6pVJZMBIMy5u4wg==} + /@mochi-ui/value-change@0.0.10(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0): + resolution: {integrity: sha512-2pgbsWnJbkTYMqDDcJMA0kpnNP+UCzEGAopMov+a0L0qOnK55viNKItyStdGfulCRlK3Kk5culVSWuN4Dy3i0Q==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/theme': 0.17.0(tailwindcss@3.3.0) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@mochi-ui/icons': 0.7.5(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/theme': 0.20.0(tailwindcss@3.3.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - tailwindcss dev: false - /@mochi-web3/connect-wallet-widget@0.2.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(ioredis@5.3.2)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0)(typescript@5.0.2): + /@mochi-web3/connect-wallet-widget@0.2.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(ioredis@5.4.0)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0)(typescript@5.0.2): resolution: {integrity: sha512-3jKSrXuTrTwX0vcG0FfJP3+d6Y/ew0VLQqPia2ygCDl+TPcZxqd3kGTqBwN8W2RZQK4JqHv5TslUgr1osC9/YQ==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: - '@mochi-ui/badge': 0.3.6(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/button': 0.4.17(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/dropdown': 0.2.8(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/tabs': 0.2.8(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) + '@mochi-ui/badge': 0.3.8(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/button': 0.4.17(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/dropdown': 0.2.8(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/tabs': 0.2.8(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) '@mochi-ui/theme': 0.18.0(tailwindcss@3.3.0) - '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.2.0) '@solana/web3.js': 1.74.0 - '@walletconnect/sign-client': 2.10.6(ioredis@5.3.2) + '@walletconnect/sign-client': 2.10.6(ioredis@5.4.0) browser-string-hexer: 1.0.0 class-variance-authority: 0.7.0 clsx: 2.1.0 @@ -1664,8 +1660,8 @@ packages: ethers: 5.7.2 is-mobile: 4.0.0 mipd: 0.0.5(typescript@5.0.2) - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -1692,35 +1688,35 @@ packages: - zod dev: false - /@mochi-web3/login-widget@0.2.18(@types/react-dom@18.0.0)(@types/react@18.0.0)(ioredis@5.3.2)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0)(typescript@5.0.2): + /@mochi-web3/login-widget@0.2.18(@types/react-dom@18.0.0)(@types/react@18.2.79)(ioredis@5.4.0)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0)(typescript@5.0.2): resolution: {integrity: sha512-zTleKNvVC6VjpPqX0qCza62GOveEg5ehfzmMPHvpbSuUojjRMineU8IhKLKzRjmxXBZ5+ynzQ9DcWkJmceNhZw==} peerDependencies: react: ^18.2.0 react-dom: ^18.2.0 dependencies: '@consolelabs/mochi-rest': 5.3.5 - '@consolelabs/mochi-ui': 17.0.3(@consolelabs/mochi-rest@5.3.5)(ioredis@5.3.2) - '@mochi-ui/button': 0.4.17(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/dropdown': 0.2.8(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/icon-button': 0.4.18(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.0.0) - '@mochi-ui/scroll-area': 0.0.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) - '@mochi-ui/tabs': 0.2.8(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0) + '@consolelabs/mochi-ui': 17.0.3(@consolelabs/mochi-rest@5.3.5)(ioredis@5.4.0) + '@mochi-ui/button': 0.4.17(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/dropdown': 0.2.8(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/icon-button': 0.4.21(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/icons': 0.7.4(react-dom@18.0.0)(react@18.2.0) + '@mochi-ui/scroll-area': 0.0.7(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) + '@mochi-ui/tabs': 0.2.8(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0) '@mochi-ui/theme': 0.18.0(tailwindcss@3.3.0) - '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.0.0) - '@mochi-web3/connect-wallet-widget': 0.2.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(ioredis@5.3.2)(react-dom@18.0.0)(react@18.0.0)(tailwindcss@3.3.0)(typescript@5.0.2) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@uidotdev/usehooks': 2.4.1(react-dom@18.0.0)(react@18.0.0) + '@mochi-ui/typography': 0.1.1(react-dom@18.0.0)(react@18.2.0) + '@mochi-web3/connect-wallet-widget': 0.2.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(ioredis@5.4.0)(react-dom@18.0.0)(react@18.2.0)(tailwindcss@3.3.0)(typescript@5.0.2) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@uidotdev/usehooks': 2.4.1(react-dom@18.0.0)(react@18.2.0) dlv: 1.1.3 ethers: 5.7.2 - framer-motion: 10.18.0(react-dom@18.0.0)(react@18.0.0) + framer-motion: 10.18.0(react-dom@18.0.0)(react@18.2.0) lodash.xor: 4.5.0 mipd: 0.0.5(typescript@5.0.2) query-string: 7.1.3 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) - use-reducer-async: 2.1.1(react@18.0.0) - zustand: 4.5.2(@types/react@18.0.0)(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) + use-reducer-async: 2.1.1(react@18.2.0) + zustand: 4.5.2(@types/react@18.2.79)(react@18.2.0) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -1887,109 +1883,99 @@ packages: '@nodelib/fs.scandir': 2.1.5 fastq: 1.17.1 - /@octokit/auth-token@5.1.0: - resolution: {integrity: sha512-JH+5PhVMjpbBuKlykiseCHa2uZdEd8Qm/N9Kpqncx4o/wkGF38gqVjIP2gZqfaP3nxFZPpg0FwGClKzBi6nS2g==} + /@octokit/auth-token@5.1.1: + resolution: {integrity: sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA==} engines: {node: '>= 18'} dev: false - /@octokit/core@6.1.1: - resolution: {integrity: sha512-uVypPdnZV7YoEa69Ky2kTSw3neFLGT0PZ54OwUMDph7w6TmhF0ZnoVcvb/kYnjDHCFo2mfoeRDYifLKhLNasUg==} + /@octokit/core@6.1.2: + resolution: {integrity: sha512-hEb7Ma4cGJGEUNOAVmyfdB/3WirWMg5hDuNFVejGEDFqupeOysLc2sG6HJxY2etBp5YQu5Wtxwi020jS9xlUwg==} engines: {node: '>= 18'} dependencies: - '@octokit/auth-token': 5.1.0 - '@octokit/graphql': 8.1.0 - '@octokit/request': 9.0.1 - '@octokit/request-error': 6.1.0 - '@octokit/types': 13.0.0 + '@octokit/auth-token': 5.1.1 + '@octokit/graphql': 8.1.1 + '@octokit/request': 9.1.1 + '@octokit/request-error': 6.1.1 + '@octokit/types': 13.4.1 before-after-hook: 3.0.2 universal-user-agent: 7.0.2 dev: false - /@octokit/endpoint@10.1.0: - resolution: {integrity: sha512-ogZ5uLMeGBZUzS32fNt9j+dNw3kkEn5CSw4CVkN1EvCNdFYWrQ5diQR6Hh52VrPR0oayIoYTqQFL/l8RqkV0qw==} + /@octokit/endpoint@10.1.1: + resolution: {integrity: sha512-JYjh5rMOwXMJyUpj028cu0Gbp7qe/ihxfJMLc8VZBMMqSwLgOxDI1911gV4Enl1QSavAQNJcwmwBF9M0VvLh6Q==} engines: {node: '>= 18'} dependencies: - '@octokit/types': 13.0.0 + '@octokit/types': 13.4.1 universal-user-agent: 7.0.2 dev: false - /@octokit/graphql@8.1.0: - resolution: {integrity: sha512-XDvj6GcUnQYgbCLXElt3vZDzNIPGvGiwxQO2XzsvfVUjebGh0E5eCD/1My9zUGSNKaGVZitVuO8LMziGmoFryg==} + /@octokit/graphql@8.1.1: + resolution: {integrity: sha512-ukiRmuHTi6ebQx/HFRCXKbDlOh/7xEV6QUXaE7MJEKGNAncGI/STSbOkl12qVXZrfZdpXctx5O9X1AIaebiDBg==} engines: {node: '>= 18'} dependencies: - '@octokit/request': 9.0.1 - '@octokit/types': 13.0.0 + '@octokit/request': 9.1.1 + '@octokit/types': 13.4.1 universal-user-agent: 7.0.2 dev: false - /@octokit/openapi-types@20.0.0: - resolution: {integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==} - dev: false - - /@octokit/openapi-types@21.2.0: - resolution: {integrity: sha512-xx+Xd6I7rYvul/hgUDqv6TeGX0IOGnhSg9IOeYgd/uI7IAqUy6DE2B6Ipv2M4mWoxaMcWjIzgTIcv8pMO3F3vw==} + /@octokit/openapi-types@22.1.0: + resolution: {integrity: sha512-pGUdSP+eEPfZiQHNkZI0U01HLipxncisdJQB4G//OAmfeO8sqTQ9KRa0KF03TUPCziNsoXUrTg4B2Q1EX++T0Q==} dev: false - /@octokit/plugin-paginate-rest@10.0.0(@octokit/core@6.1.1): - resolution: {integrity: sha512-G1Z67qOiFneKDJyMafHQkWnKm1kU3FfbRZLzxgsFg4dOa3pRNdABbdk+xo/oev6P88lnbt7GKdBNB6dJZuPphA==} + /@octokit/plugin-paginate-rest@11.1.1(@octokit/core@6.1.2): + resolution: {integrity: sha512-joUIZu9TupD4pRXLmWShD1Ur/oxYf/bJjYcnaopmGTReNrmWwcW7DUGSrWOjoTeihnlDig+a79m8koiafc4XQw==} engines: {node: '>= 18'} peerDependencies: '@octokit/core': '>=6' dependencies: - '@octokit/core': 6.1.1 - '@octokit/types': 12.6.0 + '@octokit/core': 6.1.2 + '@octokit/types': 13.4.1 dev: false - /@octokit/plugin-retry@7.1.0(@octokit/core@6.1.1): + /@octokit/plugin-retry@7.1.0(@octokit/core@6.1.2): resolution: {integrity: sha512-6mc4xNtT6eoDBGrJJn0sFALUmIba2f7Wx+G8XV9GkBLcyX5PogBdx2mDMW5yPPqSD/y23tYagkjOLX9sT7O6jA==} engines: {node: '>= 18'} peerDependencies: '@octokit/core': '>=6' dependencies: - '@octokit/core': 6.1.1 - '@octokit/request-error': 6.1.0 - '@octokit/types': 13.0.0 + '@octokit/core': 6.1.2 + '@octokit/request-error': 6.1.1 + '@octokit/types': 13.4.1 bottleneck: 2.19.5 dev: false - /@octokit/plugin-throttling@9.1.0(@octokit/core@6.1.1): - resolution: {integrity: sha512-16lDMMhChavhvXKr2zRK7sD+hTpuVm697xZNf1a0C/MFRZU8CFkrNJEYX7Fqo2dc44lISp7V5Vm0sgJIx2bRkw==} + /@octokit/plugin-throttling@9.2.0(@octokit/core@6.1.2): + resolution: {integrity: sha512-zHZSZCC7wk3HbK3ZCuvc3iPrnFGoYIVJsJAY4l8ilsVu4fqPfe7BP7QLZ1A641yttLWqgy2oID3ETD3Z1036Gw==} engines: {node: '>= 18'} peerDependencies: '@octokit/core': ^6.0.0 dependencies: - '@octokit/core': 6.1.1 - '@octokit/types': 13.0.0 + '@octokit/core': 6.1.2 + '@octokit/types': 13.4.1 bottleneck: 2.19.5 dev: false - /@octokit/request-error@6.1.0: - resolution: {integrity: sha512-xcLJv4IgfWIOEEVZwfhUN3yHNWJL0AMw1J1Ba8BofM9RdDTbapg6MO4zNxlPS4XXX9aAIsbDRa47K57EhgeVAw==} + /@octokit/request-error@6.1.1: + resolution: {integrity: sha512-1mw1gqT3fR/WFvnoVpY/zUM2o/XkMs/2AszUUG9I69xn0JFLv6PGkPhNk5lbfvROs79wiS0bqiJNxfCZcRJJdg==} engines: {node: '>= 18'} dependencies: - '@octokit/types': 13.0.0 + '@octokit/types': 13.4.1 dev: false - /@octokit/request@9.0.1: - resolution: {integrity: sha512-kL+cAcbSl3dctYLuJmLfx6Iku2MXXy0jszhaEIjQNaCp4zjHXrhVAHeuaRdNvJjW9qjl3u1MJ72+OuBP0YW/pg==} + /@octokit/request@9.1.1: + resolution: {integrity: sha512-pyAguc0p+f+GbQho0uNetNQMmLG1e80WjkIaqqgUkihqUp0boRU6nKItXO4VWnr+nbZiLGEyy4TeKRwqaLvYgw==} engines: {node: '>= 18'} dependencies: - '@octokit/endpoint': 10.1.0 - '@octokit/request-error': 6.1.0 - '@octokit/types': 12.6.0 + '@octokit/endpoint': 10.1.1 + '@octokit/request-error': 6.1.1 + '@octokit/types': 13.4.1 universal-user-agent: 7.0.2 dev: false - /@octokit/types@12.6.0: - resolution: {integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==} + /@octokit/types@13.4.1: + resolution: {integrity: sha512-Y73oOAzRBAUzR/iRAbGULzpNkX8vaxKCqEtg6K74Ff3w9f5apFnWtE/2nade7dMWWW3bS5Kkd6DJS4HF04xreg==} dependencies: - '@octokit/openapi-types': 20.0.0 - dev: false - - /@octokit/types@13.0.0: - resolution: {integrity: sha512-jSOgEoFZvjg78txlb7cuRTAEvyyQkIEB4Nujg5ZN7E1xaICsr8A0X045Nwb1wUWNrBUHBHZNtcsDIhk8d8ipCw==} - dependencies: - '@octokit/openapi-types': 21.2.0 + '@octokit/openapi-types': 22.1.0 dev: false /@parcel/watcher-android-arm64@2.4.1: @@ -2188,7 +2174,7 @@ packages: '@babel/runtime': 7.24.4 dev: false - /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==} peerDependencies: '@types/react': '*' @@ -2203,21 +2189,21 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} peerDependencies: '@types/react': '*' @@ -2231,14 +2217,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-avatar@1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-avatar@1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-kVK2K7ZD3wwj3qhle0ElXhOjbezIgyl2hVvgwfIdexL3rN6zJmy5AqqIf+D31lxVppdzV8CjAfZ6PklkmInZLw==} peerDependencies: '@types/react': '*' @@ -2252,17 +2238,17 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==} peerDependencies: '@types/react': '*' @@ -2277,20 +2263,20 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==} peerDependencies: '@types/react': '*' @@ -2305,20 +2291,20 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-collection@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-collection@1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} peerDependencies: '@types/react': '*' @@ -2332,17 +2318,17 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-compose-refs@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: '@types/react': '*' @@ -2352,11 +2338,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@types/react': 18.0.0 - react: 18.0.0 + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-context@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-context@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: '@types/react': '*' @@ -2366,11 +2352,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@types/react': 18.0.0 - react: 18.0.0 + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==} peerDependencies: '@types/react': '*' @@ -2385,26 +2371,26 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 aria-hidden: 1.2.4 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) - react-remove-scroll: 2.5.5(@types/react@18.0.0)(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) dev: false - /@radix-ui/react-direction@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-direction@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: '@types/react': '*' @@ -2414,11 +2400,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@types/react': 18.0.0 - react: 18.0.0 + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} peerDependencies: '@types/react': '*' @@ -2433,17 +2419,17 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==} peerDependencies: '@types/react': '*' @@ -2458,19 +2444,19 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-focus-guards@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: '@types/react': '*' @@ -2480,11 +2466,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@types/react': 18.0.0 - react: 18.0.0 + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==} peerDependencies: '@types/react': '*' @@ -2498,16 +2484,16 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-id@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-id@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: '@types/react': '*' @@ -2517,12 +2503,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 - react: 18.0.0 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-label@2.0.2(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-label@2.0.2(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==} peerDependencies: '@types/react': '*' @@ -2536,14 +2522,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-menu@2.0.6(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-menu@2.0.6(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==} peerDependencies: '@types/react': '*' @@ -2558,30 +2544,30 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 aria-hidden: 1.2.4 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) - react-remove-scroll: 2.5.5(@types/react@18.0.0)(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) dev: false - /@radix-ui/react-popover@1.0.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-popover@1.0.7(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==} peerDependencies: '@types/react': '*' @@ -2596,27 +2582,27 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 aria-hidden: 1.2.4 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) - react-remove-scroll: 2.5.5(@types/react@18.0.0)(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) dev: false - /@radix-ui/react-popper@1.1.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-popper@1.1.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==} peerDependencies: '@types/react': '*' @@ -2630,23 +2616,23 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@floating-ui/react-dom': 2.0.8(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.0.0)(react@18.0.0) + '@floating-ui/react-dom': 2.0.8(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) '@radix-ui/rect': 1.0.1 - '@types/react': 18.0.0 + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-portal@1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-portal@1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==} peerDependencies: '@types/react': '*' @@ -2660,14 +2646,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-presence@1.0.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-presence@1.0.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} peerDependencies: '@types/react': '*' @@ -2681,15 +2667,15 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} peerDependencies: '@types/react': '*' @@ -2703,14 +2689,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} peerDependencies: '@types/react': '*' @@ -2725,21 +2711,21 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-b6PAgH4GQf9QEn8zbT2XUHpW5z8BzqEc7Kl11TwDrvuTrxlkcjTD5qa/bxgKr+nmuXKu4L/W5UZ4mlP/VG/5Gw==} peerDependencies: '@types/react': '*' @@ -2755,20 +2741,20 @@ packages: '@babel/runtime': 7.24.4 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-select@2.0.0(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-select@2.0.0(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==} peerDependencies: '@types/react': '*' @@ -2784,32 +2770,32 @@ packages: '@babel/runtime': 7.24.4 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 aria-hidden: 1.2.4 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) - react-remove-scroll: 2.5.5(@types/react@18.0.0)(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) dev: false - /@radix-ui/react-separator@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-separator@1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} peerDependencies: '@types/react': '*' @@ -2823,14 +2809,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-slider@1.1.2(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-slider@1.1.2(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw==} peerDependencies: '@types/react': '*' @@ -2846,22 +2832,22 @@ packages: '@babel/runtime': 7.24.4 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-slot@1.0.2(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-slot@1.0.2(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: '@types/react': '*' @@ -2871,12 +2857,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 - react: 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-switch@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-switch@1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==} peerDependencies: '@types/react': '*' @@ -2891,19 +2877,19 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==} peerDependencies: '@types/react': '*' @@ -2918,20 +2904,20 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-toast@1.1.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-toast@1.1.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-fRLn227WHIBRSzuRzGJ8W+5YALxofH23y0MlPLddaIpLpCDqdE0NZlS2NRQDRiptfxDeeCjgFIpexB1/zkxDlw==} peerDependencies: '@types/react': '*' @@ -2946,24 +2932,24 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==} peerDependencies: '@types/react': '*' @@ -2978,19 +2964,19 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} peerDependencies: '@types/react': '*' @@ -3005,15 +2991,15 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==} peerDependencies: '@types/react': '*' @@ -3028,24 +3014,24 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: '@types/react': '*' @@ -3055,11 +3041,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@types/react': 18.0.0 - react: 18.0.0 + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: '@types/react': '*' @@ -3069,12 +3055,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 - react: 18.0.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: '@types/react': '*' @@ -3084,12 +3070,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 - react: 18.0.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: '@types/react': '*' @@ -3099,11 +3085,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@types/react': 18.0.0 - react: 18.0.0 + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-use-previous@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: '@types/react': '*' @@ -3113,11 +3099,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@types/react': 18.0.0 - react: 18.0.0 + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-use-rect@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: '@types/react': '*' @@ -3128,11 +3114,11 @@ packages: dependencies: '@babel/runtime': 7.24.4 '@radix-ui/rect': 1.0.1 - '@types/react': 18.0.0 - react: 18.0.0 + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-use-size@1.0.1(@types/react@18.0.0)(react@18.0.0): + /@radix-ui/react-use-size@1.0.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: '@types/react': '*' @@ -3142,12 +3128,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 - react: 18.0.0 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.2.79 + react: 18.2.0 dev: false - /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0): + /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} peerDependencies: '@types/react': '*' @@ -3161,11 +3147,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.0.0)(react-dom@18.0.0)(react@18.0.0) - '@types/react': 18.0.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.0.0)(@types/react@18.2.79)(react-dom@18.0.0)(react@18.2.0) + '@types/react': 18.2.79 '@types/react-dom': 18.0.0 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false /@radix-ui/rect@1.0.1: @@ -3207,8 +3193,8 @@ packages: rollup: 2.78.0 dev: false - /@rushstack/eslint-patch@1.7.2: - resolution: {integrity: sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==} + /@rushstack/eslint-patch@1.10.2: + resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==} dev: true /@scure/base@1.1.6: @@ -3230,7 +3216,7 @@ packages: '@scure/base': 1.1.6 dev: false - /@semantic-release/changelog@6.0.3(semantic-release@23.0.7): + /@semantic-release/changelog@6.0.3(semantic-release@23.0.8): resolution: {integrity: sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==} engines: {node: '>=14.17'} peerDependencies: @@ -3240,10 +3226,10 @@ packages: aggregate-error: 3.1.0 fs-extra: 11.2.0 lodash: 4.17.21 - semantic-release: 23.0.7(typescript@5.0.2) + semantic-release: 23.0.8(typescript@5.0.2) dev: false - /@semantic-release/commit-analyzer@12.0.0(semantic-release@23.0.7): + /@semantic-release/commit-analyzer@12.0.0(semantic-release@23.0.8): resolution: {integrity: sha512-qG+md5gdes+xa8zP7lIo1fWE17zRdO8yMCaxh9lyL65TQleoSv8WHHOqRURfghTytUh+NpkSyBprQ5hrkxOKVQ==} engines: {node: '>=20.8.1'} peerDependencies: @@ -3253,10 +3239,10 @@ packages: conventional-commits-filter: 4.0.0 conventional-commits-parser: 5.0.0 debug: 4.3.4 - import-from-esm: 1.3.3 + import-from-esm: 1.3.4 lodash-es: 4.17.21 micromatch: 4.0.5 - semantic-release: 23.0.7(typescript@5.0.2) + semantic-release: 23.0.8(typescript@5.0.2) transitivePeerDependencies: - supports-color dev: false @@ -3271,7 +3257,7 @@ packages: engines: {node: '>=18'} dev: false - /@semantic-release/git@10.0.1(semantic-release@23.0.7): + /@semantic-release/git@10.0.1(semantic-release@23.0.8): resolution: {integrity: sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==} engines: {node: '>=14.17'} peerDependencies: @@ -3285,21 +3271,21 @@ packages: lodash: 4.17.21 micromatch: 4.0.5 p-reduce: 2.1.0 - semantic-release: 23.0.7(typescript@5.0.2) + semantic-release: 23.0.8(typescript@5.0.2) transitivePeerDependencies: - supports-color dev: false - /@semantic-release/github@10.0.2(semantic-release@23.0.7): - resolution: {integrity: sha512-SP5ihhv/uQa8vPuWKmbJrrzfv8lRUkDFC6qwgaWoorrflN1DEW0IGCa9w/PxUp8Ad3dbvXZPmpXdGiP3eyTzhg==} + /@semantic-release/github@10.0.3(semantic-release@23.0.8): + resolution: {integrity: sha512-nSJQboKrG4xBn7hHpRMrK8lt5DgqJg50ZMz9UbrsfTxuRk55XVoQEadbGZ2L9M0xZAC6hkuwkDhQJKqfPU35Fw==} engines: {node: '>=20.8.1'} peerDependencies: semantic-release: '>=20.1.0' dependencies: - '@octokit/core': 6.1.1 - '@octokit/plugin-paginate-rest': 10.0.0(@octokit/core@6.1.1) - '@octokit/plugin-retry': 7.1.0(@octokit/core@6.1.1) - '@octokit/plugin-throttling': 9.1.0(@octokit/core@6.1.1) + '@octokit/core': 6.1.2 + '@octokit/plugin-paginate-rest': 11.1.1(@octokit/core@6.1.2) + '@octokit/plugin-retry': 7.1.0(@octokit/core@6.1.2) + '@octokit/plugin-throttling': 9.2.0(@octokit/core@6.1.2) '@semantic-release/error': 4.0.0 aggregate-error: 5.0.0 debug: 4.3.4 @@ -3311,13 +3297,13 @@ packages: lodash-es: 4.17.21 mime: 4.0.1 p-filter: 4.1.0 - semantic-release: 23.0.7(typescript@5.0.2) + semantic-release: 23.0.8(typescript@5.0.2) url-join: 5.0.0 transitivePeerDependencies: - supports-color dev: false - /@semantic-release/npm@12.0.0(semantic-release@23.0.7): + /@semantic-release/npm@12.0.0(semantic-release@23.0.8): resolution: {integrity: sha512-72TVYQCH9NvVsO/y13eF8vE4bNnfls518+4KcFwJUKi7AtA/ZXoNgSg9gTTfw5eMZMkiH0izUrpGXgZE/cSQhA==} engines: {node: '>=20.8.1'} peerDependencies: @@ -3330,16 +3316,16 @@ packages: lodash-es: 4.17.21 nerf-dart: 1.0.0 normalize-url: 8.0.1 - npm: 10.5.1 + npm: 10.5.2 rc: 1.2.8 read-pkg: 9.0.1 registry-auth-token: 5.0.2 - semantic-release: 23.0.7(typescript@5.0.2) + semantic-release: 23.0.8(typescript@5.0.2) semver: 7.6.0 tempy: 3.1.0 dev: false - /@semantic-release/release-notes-generator@13.0.0(semantic-release@23.0.7): + /@semantic-release/release-notes-generator@13.0.0(semantic-release@23.0.8): resolution: {integrity: sha512-LEeZWb340keMYuREMyxrODPXJJ0JOL8D/mCl74B4LdzbxhtXV2LrPN2QBEcGJrlQhoqLO0RhxQb6masHytKw+A==} engines: {node: '>=20.8.1'} peerDependencies: @@ -3351,11 +3337,11 @@ packages: conventional-commits-parser: 5.0.0 debug: 4.3.4 get-stream: 7.0.1 - import-from-esm: 1.3.3 + import-from-esm: 1.3.4 into-stream: 7.0.0 lodash-es: 4.17.21 read-pkg-up: 11.0.0 - semantic-release: 23.0.7(typescript@5.0.2) + semantic-release: 23.0.8(typescript@5.0.2) transitivePeerDependencies: - supports-color dev: false @@ -3436,7 +3422,7 @@ packages: localforage: 1.10.0 dev: false - /@sentry/nextjs@7.107.0(next@14.1.3)(react@18.0.0): + /@sentry/nextjs@7.107.0(next@14.1.3)(react@18.2.0): resolution: {integrity: sha512-cGKntMb/svjHx5xWuLEh4sYMPA75c9gXegVeGeibpLUuD9b+LNeL7GaqxQ9dm2CX+Vza7QvHGBO/u+08abpEQA==} engines: {node: '>=8'} peerDependencies: @@ -3451,14 +3437,14 @@ packages: '@sentry/core': 7.107.0 '@sentry/integrations': 7.107.0 '@sentry/node': 7.107.0 - '@sentry/react': 7.107.0(react@18.0.0) + '@sentry/react': 7.107.0(react@18.2.0) '@sentry/types': 7.107.0 '@sentry/utils': 7.107.0 '@sentry/vercel-edge': 7.107.0 '@sentry/webpack-plugin': 1.21.0 chalk: 3.0.0 - next: 14.1.3(react-dom@18.0.0)(react@18.0.0) - react: 18.0.0 + next: 14.1.3(react-dom@18.0.0)(react@18.2.0) + react: 18.2.0 resolve: 1.22.8 rollup: 2.78.0 stacktrace-parser: 0.1.10 @@ -3477,7 +3463,7 @@ packages: '@sentry/utils': 7.107.0 dev: false - /@sentry/react@7.107.0(react@18.0.0): + /@sentry/react@7.107.0(react@18.2.0): resolution: {integrity: sha512-3sXNKcDQjEimxwBPnRkewy3xNLt3KqStMAdDZ/dAF3rviOSVyk80DCQ3P6+HIqeB+IAXqWptg4eSWRA1qNZquA==} engines: {node: '>=8'} peerDependencies: @@ -3488,7 +3474,7 @@ packages: '@sentry/types': 7.107.0 '@sentry/utils': 7.107.0 hoist-non-react-statics: 3.3.2 - react: 18.0.0 + react: 18.2.0 dev: false /@sentry/replay@7.107.0: @@ -3598,7 +3584,7 @@ packages: fast-stable-stringify: 1.0.0 jayson: 3.7.0 node-fetch: 2.7.0 - rpc-websockets: 7.9.0 + rpc-websockets: 7.10.0 superstruct: 0.14.2 transitivePeerDependencies: - bufferutil @@ -3622,7 +3608,7 @@ packages: fast-stable-stringify: 1.0.0 jayson: 4.1.0 node-fetch: 2.7.0 - rpc-websockets: 7.9.0 + rpc-websockets: 7.10.0 superstruct: 0.14.2 transitivePeerDependencies: - bufferutil @@ -3752,20 +3738,20 @@ packages: tslib: 2.6.2 dev: false - /@tanstack/react-table@8.15.3(react-dom@18.0.0)(react@18.0.0): - resolution: {integrity: sha512-aocQ4WpWiAh7R+yxNp+DGQYXeVACh5lv2kk96DjYgFiHDCB0cOFoYMT/pM6eDOzeMXR9AvPoLeumTgq8/0qX+w==} + /@tanstack/react-table@8.16.0(react-dom@18.0.0)(react@18.2.0): + resolution: {integrity: sha512-rKRjnt8ostqN2fercRVOIH/dq7MAmOENCMvVlKx6P9Iokhh6woBGnIZEkqsY/vEJf1jN3TqLOb34xQGLVRuhAg==} engines: {node: '>=12'} peerDependencies: react: '>=16.8' react-dom: '>=16.8' dependencies: - '@tanstack/table-core': 8.15.3 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + '@tanstack/table-core': 8.16.0 + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@tanstack/table-core@8.15.3: - resolution: {integrity: sha512-wOgV0HfEvuMOv8RlqdR9MdNNqq0uyvQtP39QOvGlggHvIObOE4exS+D5LGO8LZ3LUXxId2IlUKcHDHaGujWhUg==} + /@tanstack/table-core@8.16.0: + resolution: {integrity: sha512-dCG8vQGk4js5v88/k83tTedWOwjGnIyONrKpHpfmSJB8jwFHl8GSu1sBBxbtACVAPtAQgwNxl0rw1d3RqRM1Tg==} engines: {node: '>=12'} dev: false @@ -3864,18 +3850,14 @@ packages: /@types/react-dom@18.0.0: resolution: {integrity: sha512-49897Y0UiCGmxZqpC8Blrf6meL8QUla6eb+BBhn69dTXlmuOlzkfr7HHY/O8J25e1lTUMs+YYxSlVDAaGHCOLg==} dependencies: - '@types/react': 18.0.0 + '@types/react': 18.2.79 - /@types/react@18.0.0: - resolution: {integrity: sha512-7+K7zEQYu7NzOwQGLR91KwWXXDzmTFODRVizJyIALf6RfLv2GDpqpknX64pvRVILXCpXi7O/pua8NGk44dLvJw==} + /@types/react@18.2.79: + resolution: {integrity: sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==} dependencies: '@types/prop-types': 15.7.12 - '@types/scheduler': 0.23.0 csstype: 3.1.3 - /@types/scheduler@0.23.0: - resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} - /@types/unist@2.0.10: resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} dev: false @@ -3950,18 +3932,18 @@ packages: eslint-visitor-keys: 3.4.3 dev: true - /@uidotdev/usehooks@2.4.1(react-dom@18.0.0)(react@18.0.0): + /@uidotdev/usehooks@2.4.1(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-1I+RwWyS+kdv3Mv0Vmc+p0dPYH0DTRAo04HLyXReYBL9AeseDWUJyi4THuksBJcu9F0Pih69Ak150VDnqbVnXg==} engines: {node: '>=16'} peerDependencies: react: '>=18.0.0' react-dom: '>=18.0.0' dependencies: - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) dev: false - /@walletconnect/core@2.10.6(ioredis@5.3.2): + /@walletconnect/core@2.10.6(ioredis@5.4.0): resolution: {integrity: sha512-Z4vh4ZdfcoQjgPEOxeuF9HUZCVLtV3MgRbS/awLIj/omDrFnOwlBhxi5Syr4Y8muVGC0ocRetQYHae0/gX5crQ==} dependencies: '@walletconnect/heartbeat': 1.2.1 @@ -3969,14 +3951,14 @@ packages: '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14 - '@walletconnect/keyvaluestorage': 1.1.1(ioredis@5.3.2) - '@walletconnect/logger': 2.0.1 + '@walletconnect/keyvaluestorage': 1.1.1(ioredis@5.4.0) + '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.9 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.10.6(ioredis@5.3.2) - '@walletconnect/utils': 2.10.6(ioredis@5.3.2) + '@walletconnect/types': 2.10.6(ioredis@5.4.0) + '@walletconnect/utils': 2.10.6(ioredis@5.4.0) events: 3.3.0 lodash.isequal: 4.5.0 uint8arrays: 3.1.1 @@ -4055,7 +4037,7 @@ packages: - utf-8-validate dev: false - /@walletconnect/keyvaluestorage@1.1.1(ioredis@5.3.2): + /@walletconnect/keyvaluestorage@1.1.1(ioredis@5.4.0): resolution: {integrity: sha512-V7ZQq2+mSxAq7MrRqDxanTzu2RcElfK1PfNYiaVnJgJ7Q7G7hTVwF8voIBx92qsRyGHZihrwNPHuZd1aKkd0rA==} peerDependencies: '@react-native-async-storage/async-storage': 1.x @@ -4065,7 +4047,7 @@ packages: dependencies: '@walletconnect/safe-json': 1.0.2 idb-keyval: 6.2.1 - unstorage: 1.10.2(idb-keyval@6.2.1)(ioredis@5.3.2) + unstorage: 1.10.2(idb-keyval@6.2.1)(ioredis@5.4.0) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -4082,11 +4064,11 @@ packages: - uWebSockets.js dev: false - /@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==} dependencies: + '@walletconnect/safe-json': 1.0.2 pino: 7.11.0 - tslib: 1.14.1 dev: false /@walletconnect/relay-api@1.0.9: @@ -4113,17 +4095,17 @@ packages: tslib: 1.14.1 dev: false - /@walletconnect/sign-client@2.10.6(ioredis@5.3.2): + /@walletconnect/sign-client@2.10.6(ioredis@5.4.0): resolution: {integrity: sha512-EvUWjaZBQu2yKnH5/5F2qzbuiIuUN9ZgrNKgvXkw5z1Dq5RJCks0S9/MFlKH/ZSGqXnLl7uAzBXtoX4sMgbCMA==} dependencies: - '@walletconnect/core': 2.10.6(ioredis@5.3.2) + '@walletconnect/core': 2.10.6(ioredis@5.4.0) '@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.6(ioredis@5.3.2) - '@walletconnect/utils': 2.10.6(ioredis@5.3.2) + '@walletconnect/types': 2.10.6(ioredis@5.4.0) + '@walletconnect/utils': 2.10.6(ioredis@5.4.0) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -4150,14 +4132,14 @@ packages: tslib: 1.14.1 dev: false - /@walletconnect/types@2.10.6(ioredis@5.3.2): + /@walletconnect/types@2.10.6(ioredis@5.4.0): resolution: {integrity: sha512-WgHfiTG1yakmxheaBRiXhUdEmgxwrvsAdOIWaMf/spvrzVKYh6sHI3oyEEky5qj5jjiMiyQBeB57QamzCotbcQ==} dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1(ioredis@5.3.2) - '@walletconnect/logger': 2.0.1 + '@walletconnect/keyvaluestorage': 1.1.1(ioredis@5.4.0) + '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -4176,7 +4158,7 @@ packages: - uWebSockets.js dev: false - /@walletconnect/utils@2.10.6(ioredis@5.3.2): + /@walletconnect/utils@2.10.6(ioredis@5.4.0): resolution: {integrity: sha512-oRsWWhN2+hi3aiDXrQEOfysz6FHQJGXLsNQPVt+WIBJplO6Szmdau9dbleD88u1iiT4GKPqE0R9FOYvvPm1H/w==} dependencies: '@stablelib/chacha20poly1305': 1.0.1 @@ -4187,7 +4169,7 @@ packages: '@walletconnect/relay-api': 1.0.9 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.10.6(ioredis@5.3.2) + '@walletconnect/types': 2.10.6(ioredis@5.4.0) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -4279,8 +4261,8 @@ packages: - supports-color dev: false - /agent-base@7.1.0: - resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} + /agent-base@7.1.1: + resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} engines: {node: '>= 14'} dependencies: debug: 4.3.4 @@ -4417,7 +4399,6 @@ packages: dependencies: call-bind: 1.0.7 is-array-buffer: 3.0.4 - dev: true /array-find-index@1.0.2: resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} @@ -4524,7 +4505,6 @@ packages: get-intrinsic: 1.2.4 is-array-buffer: 3.0.4 is-shared-array-buffer: 1.0.3 - dev: true /arrgv@1.0.2: resolution: {integrity: sha512-a4eg4yhp7mmruZDQFqVMlxNRFGi/i1r87pt8SDHy0/I8PqSXoUTlWZRdAZo0VXgvEARcujbtTk8kiZRi1uDGRw==} @@ -4558,7 +4538,7 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.23.0 - caniuse-lite: 1.0.30001605 + caniuse-lite: 1.0.30001610 colorette: 1.4.0 normalize-range: 0.1.2 num2fraction: 1.2.2 @@ -4571,7 +4551,6 @@ packages: engines: {node: '>= 0.4'} dependencies: possible-typed-array-names: 1.0.0 - dev: true /axe-core@4.7.0: resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} @@ -4831,8 +4810,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001605 - electron-to-chromium: 1.4.726 + caniuse-lite: 1.0.30001610 + electron-to-chromium: 1.4.738 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) dev: true @@ -4886,7 +4865,6 @@ packages: function-bind: 1.1.2 get-intrinsic: 1.2.4 set-function-length: 1.2.2 - dev: true /callsites@3.1.0: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} @@ -4913,8 +4891,8 @@ packages: engines: {node: '>=10'} dev: false - /caniuse-lite@1.0.30001605: - resolution: {integrity: sha512-nXwGlFWo34uliI9z3n6Qc0wZaf7zaZWA1CPZ169La5mV3I/gem7bst0vr5XQH5TJXZIMfDeZyOrZnSlVzKxxHQ==} + /caniuse-lite@1.0.30001610: + resolution: {integrity: sha512-QFutAY4NgaelojVMjY63o6XlZyORPaLfyMnsl3HgnWdJUcX6K0oaJymHjH8PT5Gk7sTm8rvC/c5COUQKXqmOMA==} /capital-case@1.0.4: resolution: {integrity: sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==} @@ -5388,7 +5366,6 @@ packages: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - dev: true /data-view-byte-length@1.0.1: resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} @@ -5397,7 +5374,6 @@ packages: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - dev: true /data-view-byte-offset@1.0.0: resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} @@ -5406,7 +5382,6 @@ packages: call-bind: 1.0.7 es-errors: 1.3.0 is-data-view: 1.0.1 - dev: true /date-time@3.1.0: resolution: {integrity: sha512-uqCUKXE5q1PNBXjPqvwhwJf9SwMoAHBgWJ6DcrnS5o+W2JOiIILl0JEdVD8SGujrNS02GGxgwAg2PN2zONgtjg==} @@ -5468,7 +5443,6 @@ packages: es-define-property: 1.0.0 es-errors: 1.3.0 gopd: 1.0.1 - dev: true /define-properties@1.2.1: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} @@ -5477,7 +5451,6 @@ packages: define-data-property: 1.1.4 has-property-descriptors: 1.0.2 object-keys: 1.1.1 - dev: true /defu@6.1.4: resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} @@ -5592,8 +5565,8 @@ packages: /eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - /electron-to-chromium@1.4.726: - resolution: {integrity: sha512-xtjfBXn53RORwkbyKvDfTajtnTp0OJoPOIBzXvkNbb7+YYvCHJflba3L7Txyx/6Fov3ov2bGPr/n5MTixmPhdQ==} + /electron-to-chromium@1.4.738: + resolution: {integrity: sha512-lwKft2CLFztD+vEIpesrOtCrko/TFnEJlHFdRhazU7Y/jx5qc4cqsocfVrBg4So4gGe9lvxnbLIoev47WMpg+A==} dev: true /elliptic@6.5.4: @@ -5713,19 +5686,16 @@ packages: typed-array-length: 1.0.6 unbox-primitive: 1.0.2 which-typed-array: 1.1.15 - dev: true /es-define-property@1.0.0: resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.2.4 - dev: true /es-errors@1.3.0: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - dev: true /es-iterator-helpers@1.0.18: resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==} @@ -5752,7 +5722,6 @@ packages: engines: {node: '>= 0.4'} dependencies: es-errors: 1.3.0 - dev: true /es-set-tostringtag@2.0.3: resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} @@ -5761,7 +5730,6 @@ packages: get-intrinsic: 1.2.4 has-tostringtag: 1.0.2 hasown: 2.0.2 - dev: true /es-shim-unscopables@1.0.2: resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} @@ -5776,7 +5744,6 @@ packages: is-callable: 1.2.7 is-date-object: 1.0.5 is-symbol: 1.0.4 - dev: true /es6-promise@4.2.8: resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} @@ -5821,7 +5788,7 @@ packages: optional: true dependencies: '@next/eslint-plugin-next': 14.1.3 - '@rushstack/eslint-patch': 1.7.2 + '@rushstack/eslint-patch': 1.10.2 '@typescript-eslint/parser': 6.21.0(eslint@8.0.0)(typescript@5.0.2) eslint: 8.0.0 eslint-import-resolver-node: 0.3.9 @@ -6355,7 +6322,6 @@ packages: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} dependencies: is-callable: 1.2.7 - dev: true /foreground-child@3.1.1: resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} @@ -6364,7 +6330,7 @@ packages: cross-spawn: 7.0.3 signal-exit: 4.1.0 - /framer-motion@10.18.0(react-dom@18.0.0)(react@18.0.0): + /framer-motion@10.18.0(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-oGlDh1Q1XqYPksuTD/usb0I70hq95OUzmL9+6Zd+Hs4XV0oaISBa/UUMSjYiq6m8EUF32132mOJ8xVZS+I0S6w==} peerDependencies: react: ^18.0.0 @@ -6375,8 +6341,8 @@ packages: react-dom: optional: true dependencies: - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) tslib: 2.6.2 optionalDependencies: '@emotion/is-prop-valid': 0.8.8 @@ -6431,7 +6397,6 @@ packages: define-properties: 1.2.1 es-abstract: 1.23.3 functions-have-names: 1.2.3 - dev: true /functional-red-black-tree@1.0.1: resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} @@ -6439,7 +6404,6 @@ packages: /functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - dev: true /get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} @@ -6455,7 +6419,6 @@ packages: has-proto: 1.0.3 has-symbols: 1.0.3 hasown: 2.0.2 - dev: true /get-nonce@1.0.1: resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==} @@ -6488,7 +6451,6 @@ packages: call-bind: 1.0.7 es-errors: 1.3.0 get-intrinsic: 1.2.4 - dev: true /get-tsconfig@4.7.3: resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==} @@ -6504,7 +6466,7 @@ packages: split2: 1.0.0 stream-combiner2: 1.1.1 through2: 2.0.5 - traverse: 0.6.8 + traverse: 0.6.9 dev: false /glob-parent@5.1.2: @@ -6586,7 +6548,6 @@ packages: engines: {node: '>= 0.4'} dependencies: define-properties: 1.2.1 - dev: true /globby@11.1.0: resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} @@ -6627,7 +6588,6 @@ packages: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: get-intrinsic: 1.2.4 - dev: true /graceful-fs@4.2.10: resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==} @@ -6668,7 +6628,6 @@ packages: /has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - dev: true /has-flag@3.0.0: resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} @@ -6682,24 +6641,20 @@ packages: resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} dependencies: es-define-property: 1.0.0 - dev: true /has-proto@1.0.3: resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} engines: {node: '>= 0.4'} - dev: true /has-symbols@1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} - dev: true /has-tostringtag@1.0.2: resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 - dev: true /hash.js@1.1.7: resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} @@ -6753,7 +6708,7 @@ packages: resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} engines: {node: '>= 14'} dependencies: - agent-base: 7.1.0 + agent-base: 7.1.1 debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -6778,7 +6733,7 @@ packages: resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} engines: {node: '>= 14'} dependencies: - agent-base: 7.1.0 + agent-base: 7.1.1 debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -6833,8 +6788,8 @@ packages: parent-module: 1.0.1 resolve-from: 4.0.0 - /import-from-esm@1.3.3: - resolution: {integrity: sha512-U3Qt/CyfFpTUv6LOP2jRTLYjphH6zg3okMfHbyqRa/W2w6hr8OsJWVggNlR4jxuojQy81TgTJTxgSkyoteRGMQ==} + /import-from-esm@1.3.4: + resolution: {integrity: sha512-7EyUlPFC0HOlBDpUFGfYstsU7XHxZJKAAMzCT8wZ0hMW7b+hG51LIKTDcsgtz8Pu6YC0HqRVbX+rVUtsGMUKvg==} engines: {node: '>=16.20'} dependencies: debug: 4.3.4 @@ -6886,7 +6841,6 @@ packages: es-errors: 1.3.0 hasown: 2.0.2 side-channel: 1.0.6 - dev: true /into-stream@7.0.0: resolution: {integrity: sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==} @@ -6902,8 +6856,8 @@ packages: loose-envify: 1.4.0 dev: false - /ioredis@5.3.2: - resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==} + /ioredis@5.4.0: + resolution: {integrity: sha512-lGiiZyWFOskPu3pH4P8+uicHOZHpzYpgfKZFre68wLK6059zBo+KDTQpwxAVibBajKqpcrRJ5k+jl/uNHcCo3A==} engines: {node: '>=12.22.0'} dependencies: '@ioredis/commands': 1.2.0 @@ -6939,7 +6893,6 @@ packages: dependencies: call-bind: 1.0.7 get-intrinsic: 1.2.4 - dev: true /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} @@ -6960,7 +6913,6 @@ packages: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: has-bigints: 1.0.2 - dev: true /is-binary-path@2.1.0: resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} @@ -6974,7 +6926,6 @@ packages: dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - dev: true /is-buffer@2.0.5: resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} @@ -6984,7 +6935,6 @@ packages: /is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} - dev: true /is-core-module@2.13.1: resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} @@ -6996,14 +6946,12 @@ packages: engines: {node: '>= 0.4'} dependencies: is-typed-array: 1.1.13 - dev: true /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 - dev: true /is-docker@3.0.0: resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} @@ -7067,14 +7015,12 @@ packages: /is-negative-zero@2.0.3: resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} engines: {node: '>= 0.4'} - dev: true /is-number-object@1.0.7: resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 - dev: true /is-number@7.0.0: resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} @@ -7121,7 +7067,6 @@ packages: dependencies: call-bind: 1.0.7 has-tostringtag: 1.0.2 - dev: true /is-set@2.0.3: resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} @@ -7133,7 +7078,6 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.7 - dev: true /is-stream@2.0.1: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} @@ -7150,14 +7094,12 @@ packages: engines: {node: '>= 0.4'} dependencies: has-tostringtag: 1.0.2 - dev: true /is-symbol@1.0.4: resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} engines: {node: '>= 0.4'} dependencies: has-symbols: 1.0.3 - dev: true /is-text-path@2.0.0: resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} @@ -7171,7 +7113,6 @@ packages: engines: {node: '>= 0.4'} dependencies: which-typed-array: 1.1.15 - dev: true /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} @@ -7196,7 +7137,6 @@ packages: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: call-bind: 1.0.7 - dev: true /is-weakset@2.0.3: resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} @@ -7225,7 +7165,6 @@ packages: /isarray@2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} - dev: true /isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} @@ -8207,8 +8146,8 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - /nanoid@5.0.6: - resolution: {integrity: sha512-rRq0eMHoGZxlvaFOUdK1Ev83Bd1IgzzR+WJ3IbDJ7QOSdAxYjlurSPqFs9s4lJg29RT6nPwizFtJhQS6V5xgiA==} + /nanoid@5.0.7: + resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==} engines: {node: ^18 || >=20} hasBin: true dev: false @@ -8229,7 +8168,7 @@ packages: resolution: {integrity: sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==} dev: false - /next@14.1.3(react-dom@18.0.0)(react@18.0.0): + /next@14.1.3(react-dom@18.0.0)(react@18.2.0): resolution: {integrity: sha512-oexgMV2MapI0UIWiXKkixF8J8ORxpy64OuJ/J9oVUmIthXOUCcuVEZX+dtpgq7wIfIqtBwQsKEDXejcjTsan9g==} engines: {node: '>=18.17.0'} hasBin: true @@ -8247,12 +8186,12 @@ packages: '@next/env': 14.1.3 '@swc/helpers': 0.5.2 busboy: 1.6.0 - caniuse-lite: 1.0.30001605 + caniuse-lite: 1.0.30001610 graceful-fs: 4.2.11 postcss: 8.4.31 - react: 18.0.0 - react-dom: 18.0.0(react@18.0.0) - styled-jsx: 5.1.1(react@18.0.0) + react: 18.2.0 + react-dom: 18.0.0(react@18.2.0) + styled-jsx: 5.1.1(react@18.2.0) optionalDependencies: '@next/swc-darwin-arm64': 14.1.3 '@next/swc-darwin-x64': 14.1.3 @@ -8364,8 +8303,8 @@ packages: path-key: 4.0.0 dev: false - /npm@10.5.1: - resolution: {integrity: sha512-RozZuGuWbbhDM2sRhOSLIRb3DLyof6TREi0TW5b3xUEBropDhDqEHv0iAjA1zsIwXKgfIkR8GvQMd4oeKKg9eQ==} + /npm@10.5.2: + resolution: {integrity: sha512-cHVG7QEJwJdZyOrK0dKX5uf3R5Fd0E8AcmSES1jLtO52UT1enUKZ96Onw/xwq4CbrTZEnDuu2Vf9kCQh/Sd12w==} engines: {node: ^18.17.0 || >=20.5.0} hasBin: true dev: false @@ -8456,12 +8395,10 @@ packages: /object-inspect@1.13.1: resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} - dev: true /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} engines: {node: '>= 0.4'} - dev: true /object.assign@4.1.5: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} @@ -8471,7 +8408,6 @@ packages: define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - dev: true /object.entries@1.1.8: resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} @@ -8874,7 +8810,6 @@ packages: /possible-typed-array-names@1.0.0: resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} engines: {node: '>= 0.4'} - dev: true /postcss-import@14.1.0(postcss@8.0.0): resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} @@ -9034,20 +8969,20 @@ packages: strip-json-comments: 2.0.1 dev: false - /react-dom@18.0.0(react@18.0.0): + /react-dom@18.0.0(react@18.2.0): resolution: {integrity: sha512-XqX7uzmFo0pUceWFCt7Gff6IyIMzFUn7QMZrbrQfGxtaxXZIcGQzoNpRLE3fQLnS4XzLLPMZX2T9TRcSrasicw==} peerDependencies: react: ^18.0.0 dependencies: loose-envify: 1.4.0 - react: 18.0.0 + react: 18.2.0 scheduler: 0.21.0 dev: false /react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - /react-remove-scroll-bar@2.3.6(@types/react@18.0.0)(react@18.0.0): + /react-remove-scroll-bar@2.3.6(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} engines: {node: '>=10'} peerDependencies: @@ -9057,13 +8992,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.0 - react: 18.0.0 - react-style-singleton: 2.2.1(@types/react@18.0.0)(react@18.0.0) + '@types/react': 18.2.79 + react: 18.2.0 + react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0) tslib: 2.6.2 dev: false - /react-remove-scroll@2.5.5(@types/react@18.0.0)(react@18.0.0): + /react-remove-scroll@2.5.5(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: @@ -9073,16 +9008,16 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.0 - react: 18.0.0 - react-remove-scroll-bar: 2.3.6(@types/react@18.0.0)(react@18.0.0) - react-style-singleton: 2.2.1(@types/react@18.0.0)(react@18.0.0) + '@types/react': 18.2.79 + react: 18.2.0 + react-remove-scroll-bar: 2.3.6(@types/react@18.2.79)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0) tslib: 2.6.2 - use-callback-ref: 1.3.2(@types/react@18.0.0)(react@18.0.0) - use-sidecar: 1.1.2(@types/react@18.0.0)(react@18.0.0) + use-callback-ref: 1.3.2(@types/react@18.2.79)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.2.79)(react@18.2.0) dev: false - /react-style-singleton@2.2.1(@types/react@18.0.0)(react@18.0.0): + /react-style-singleton@2.2.1(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -9092,15 +9027,15 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.0 + '@types/react': 18.2.79 get-nonce: 1.0.1 invariant: 2.2.4 - react: 18.0.0 + react: 18.2.0 tslib: 2.6.2 dev: false - /react@18.0.0: - resolution: {integrity: sha512-x+VL6wbT4JRVPm7EGxXhZ8w8LTROaxPXOqhlGyVSrv0sB1jkyFGgXxJ8LVoPRLvPR6/CIZGFmfzqUa2NYeMr2A==} + /react@18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 @@ -9111,6 +9046,15 @@ packages: dependencies: pify: 2.3.0 + /read-package-up@11.0.0: + resolution: {integrity: sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==} + engines: {node: '>=18'} + dependencies: + find-up-simple: 1.0.0 + read-pkg: 9.0.1 + type-fest: 4.15.0 + dev: false + /read-pkg-up@11.0.0: resolution: {integrity: sha512-LOVbvF1Q0SZdjClSefZ0Nz5z8u+tIE7mV5NibzmE9VYmDe9CaBbAVtz1veOSZbofrdsilxuDAYnFenukZVp8/Q==} engines: {node: '>=18'} @@ -9205,7 +9149,6 @@ packages: define-properties: 1.2.1 es-errors: 1.3.0 set-function-name: 2.0.2 - dev: true /regexpp@3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} @@ -9319,8 +9262,8 @@ packages: fsevents: 2.3.3 dev: false - /rpc-websockets@7.9.0: - resolution: {integrity: sha512-DwKewQz1IUA5wfLvgM8wDpPRcr+nWSxuFxx5CbrI2z/MyyZ4nXLM86TvIA+cI1ZAdqC8JIBR1mZR55dzaLU+Hw==} + /rpc-websockets@7.10.0: + resolution: {integrity: sha512-cemZ6RiDtYZpPiBzYijdOrkQQzmBCmug0E9SdRH2gIUNT15ql4mwCYWIp0VnSZq6Qrw/JkGUygp4PrK1y9KfwQ==} dependencies: '@babel/runtime': 7.24.4 eventemitter3: 4.0.7 @@ -9351,7 +9294,6 @@ packages: get-intrinsic: 1.2.4 has-symbols: 1.0.3 isarray: 2.0.5 - dev: true /safe-buffer@5.1.2: resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} @@ -9368,7 +9310,6 @@ packages: call-bind: 1.0.7 es-errors: 1.3.0 is-regex: 1.1.4 - dev: true /safe-stable-stringify@2.4.3: resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} @@ -9388,16 +9329,16 @@ packages: resolution: {integrity: sha512-8CYNl/bjkEhXWbDTU/K7c2jQtrnqEffIPyOLMqygW/7/b+ym8UtQumcAZjOfMLjZKR6AxK5tOr9fChbQZCzPqg==} dev: false - /semantic-release@23.0.7(typescript@5.0.2): - resolution: {integrity: sha512-PFxXQE57zrYiCbWKkdsVUF08s0SifEw3WhDhrN47ZEUWQiLl21FI9Dg/H8g7i/lPx0IkF6u7PjJbgxPceXKBeg==} + /semantic-release@23.0.8(typescript@5.0.2): + resolution: {integrity: sha512-yZkuWcTTfh5h/DrR4Q4QvJSARJdb6wjwn/sN0qKMYEkvwaVFek8YWfrgtL8oWaRdl0fLte0Y1wWMzLbwoaII1g==} engines: {node: '>=20.8.1'} hasBin: true dependencies: - '@semantic-release/commit-analyzer': 12.0.0(semantic-release@23.0.7) + '@semantic-release/commit-analyzer': 12.0.0(semantic-release@23.0.8) '@semantic-release/error': 4.0.0 - '@semantic-release/github': 10.0.2(semantic-release@23.0.7) - '@semantic-release/npm': 12.0.0(semantic-release@23.0.7) - '@semantic-release/release-notes-generator': 13.0.0(semantic-release@23.0.7) + '@semantic-release/github': 10.0.3(semantic-release@23.0.8) + '@semantic-release/npm': 12.0.0(semantic-release@23.0.8) + '@semantic-release/release-notes-generator': 13.0.0(semantic-release@23.0.8) aggregate-error: 5.0.0 cosmiconfig: 9.0.0(typescript@5.0.2) debug: 4.3.4 @@ -9409,14 +9350,14 @@ packages: git-log-parser: 1.2.0 hook-std: 3.0.0 hosted-git-info: 7.0.1 - import-from-esm: 1.3.3 + import-from-esm: 1.3.4 lodash-es: 4.17.21 marked: 12.0.1 marked-terminal: 7.0.0(marked@12.0.1) micromatch: 4.0.5 p-each-series: 3.0.0 p-reduce: 3.0.0 - read-pkg-up: 11.0.0 + read-package-up: 11.0.0 resolve-from: 5.0.0 semver: 7.6.0 semver-diff: 4.0.0 @@ -9476,7 +9417,6 @@ packages: get-intrinsic: 1.2.4 gopd: 1.0.1 has-property-descriptors: 1.0.2 - dev: true /set-function-name@2.0.2: resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} @@ -9486,7 +9426,6 @@ packages: es-errors: 1.3.0 functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 - dev: true /shebang-command@2.0.0: resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} @@ -9506,7 +9445,6 @@ packages: es-errors: 1.3.0 get-intrinsic: 1.2.4 object-inspect: 1.13.1 - dev: true /signal-exit@3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} @@ -9730,7 +9668,6 @@ packages: define-properties: 1.2.1 es-abstract: 1.23.3 es-object-atoms: 1.0.0 - dev: true /string.prototype.trimend@1.0.8: resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} @@ -9738,7 +9675,6 @@ packages: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - dev: true /string.prototype.trimstart@1.0.8: resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} @@ -9747,7 +9683,6 @@ packages: call-bind: 1.0.7 define-properties: 1.2.1 es-object-atoms: 1.0.0 - dev: true /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} @@ -9797,7 +9732,7 @@ packages: engines: {node: '>=8'} dev: true - /styled-jsx@5.1.1(react@18.0.0): + /styled-jsx@5.1.1(react@18.2.0): resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -9811,7 +9746,7 @@ packages: optional: true dependencies: client-only: 0.0.1 - react: 18.0.0 + react: 18.2.0 dev: false /sucrase@3.35.0: @@ -9878,14 +9813,14 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - /swr@2.2.5(react@18.0.0): + /swr@2.2.5(react@18.2.0): resolution: {integrity: sha512-QtxqyclFeAsxEUeZIYmsaQ0UjimSq1RZ9Un7I68/0ClKK/U3LoyQunwkQfJZr2fc22DfIXLNDc2wFyTEikCUpg==} peerDependencies: react: ^16.11.0 || ^17.0.0 || ^18.0.0 dependencies: client-only: 0.0.1 - react: 18.0.0 - use-sync-external-store: 1.2.0(react@18.0.0) + react: 18.2.0 + use-sync-external-store: 1.2.0(react@18.2.0) dev: false /system-architecture@0.1.0: @@ -10041,9 +9976,13 @@ packages: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} dev: false - /traverse@0.6.8: - resolution: {integrity: sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==} + /traverse@0.6.9: + resolution: {integrity: sha512-7bBrcF+/LQzSgFmT0X5YclVqQxtv7TDJ1f8Wj7ibBu/U6BMLeOpUxuZjV7rMc44UtKxlnMFigdhFAIszSX1DMg==} engines: {node: '>= 0.4'} + dependencies: + gopd: 1.0.1 + typedarray.prototype.slice: 1.0.3 + which-typed-array: 1.1.15 dev: false /trough@2.2.0: @@ -10175,7 +10114,6 @@ packages: call-bind: 1.0.7 es-errors: 1.3.0 is-typed-array: 1.1.13 - dev: true /typed-array-byte-length@1.0.1: resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} @@ -10186,7 +10124,6 @@ packages: gopd: 1.0.1 has-proto: 1.0.3 is-typed-array: 1.1.13 - dev: true /typed-array-byte-offset@1.0.2: resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} @@ -10198,7 +10135,6 @@ packages: gopd: 1.0.1 has-proto: 1.0.3 is-typed-array: 1.1.13 - dev: true /typed-array-length@1.0.6: resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} @@ -10210,7 +10146,6 @@ packages: has-proto: 1.0.3 is-typed-array: 1.1.13 possible-typed-array-names: 1.0.0 - dev: true /typedarray-to-buffer@3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} @@ -10218,6 +10153,18 @@ packages: is-typedarray: 1.0.0 dev: false + /typedarray.prototype.slice@1.0.3: + resolution: {integrity: sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.1 + es-abstract: 1.23.3 + es-errors: 1.3.0 + typed-array-buffer: 1.0.2 + typed-array-byte-offset: 1.0.2 + dev: false + /typescript@5.0.2: resolution: {integrity: sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==} engines: {node: '>=12.20'} @@ -10258,7 +10205,6 @@ packages: has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - dev: true /uncrypto@0.1.3: resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} @@ -10344,7 +10290,7 @@ packages: engines: {node: '>= 10.0.0'} dev: false - /unstorage@1.10.2(idb-keyval@6.2.1)(ioredis@5.3.2): + /unstorage@1.10.2(idb-keyval@6.2.1)(ioredis@5.4.0): resolution: {integrity: sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==} peerDependencies: '@azure/app-configuration': ^1.5.0 @@ -10393,7 +10339,7 @@ packages: destr: 2.0.3 h3: 1.11.1 idb-keyval: 6.2.1 - ioredis: 5.3.2 + ioredis: 5.4.0 listhen: 1.7.2 lru-cache: 10.2.0 mri: 1.2.0 @@ -10451,7 +10397,7 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: false - /use-callback-ref@1.3.2(@types/react@18.0.0)(react@18.0.0): + /use-callback-ref@1.3.2(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} engines: {node: '>=10'} peerDependencies: @@ -10461,20 +10407,20 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.0 - react: 18.0.0 + '@types/react': 18.2.79 + react: 18.2.0 tslib: 2.6.2 dev: false - /use-reducer-async@2.1.1(react@18.0.0): + /use-reducer-async@2.1.1(react@18.2.0): resolution: {integrity: sha512-oPSFzOIEPgMenQkMHzqeRgsQLSpcyGkspAnyTWP4l1tKlt31wMVMz6wWj6g/jea/Ms7lRvBz4AL+Okt83Tntig==} peerDependencies: react: '>=16.8.0' dependencies: - react: 18.0.0 + react: 18.2.0 dev: false - /use-sidecar@1.1.2(@types/react@18.0.0)(react@18.0.0): + /use-sidecar@1.1.2(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -10484,18 +10430,18 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.0 + '@types/react': 18.2.79 detect-node-es: 1.1.0 - react: 18.0.0 + react: 18.2.0 tslib: 2.6.2 dev: false - /use-sync-external-store@1.2.0(react@18.0.0): + /use-sync-external-store@1.2.0(react@18.2.0): resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - react: 18.0.0 + react: 18.2.0 dev: false /utf-8-validate@5.0.10: @@ -10604,7 +10550,6 @@ packages: is-number-object: 1.0.7 is-string: 1.0.7 is-symbol: 1.0.4 - dev: true /which-builtin-type@1.1.3: resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} @@ -10643,7 +10588,6 @@ packages: for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.2 - dev: true /which@2.0.2: resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} @@ -10826,7 +10770,7 @@ packages: resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} dev: false - /zustand@4.5.2(@types/react@18.0.0)(react@18.0.0): + /zustand@4.5.2(@types/react@18.2.79)(react@18.2.0): resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==} engines: {node: '>=12.7.0'} peerDependencies: @@ -10841,9 +10785,9 @@ packages: react: optional: true dependencies: - '@types/react': 18.0.0 - react: 18.0.0 - use-sync-external-store: 1.2.0(react@18.0.0) + '@types/react': 18.2.79 + react: 18.2.0 + use-sync-external-store: 1.2.0(react@18.2.0) dev: false /zwitch@2.0.4: diff --git a/services/contracts/Pool.ts b/services/contracts/Pool.ts index 89b94e8..6fa598c 100644 --- a/services/contracts/Pool.ts +++ b/services/contracts/Pool.ts @@ -86,7 +86,6 @@ export class StakingPool { method: "periodFinish", args: [], to: this.address, - // from: this.sender, }); if (response?.length && BigNumber.isBigNumber(response[0])) { @@ -109,7 +108,6 @@ export class StakingPool { method: "lastUpdateTime", args: [], to: this.address, - // from: this.sender, }); if (response?.length && BigNumber.isBigNumber(response[0])) { @@ -132,7 +130,6 @@ export class StakingPool { method: "rewardsDuration", args: [], to: this.address, - // from: this.sender, }); if (response?.length && BigNumber.isBigNumber(response[0])) { @@ -155,7 +152,6 @@ export class StakingPool { method: "rewardPerToken", args: [], to: this.address, - from: this.sender, }); console.log("getRewardPerTokenStaked:", response); @@ -174,7 +170,6 @@ export class StakingPool { method: "balanceOf", args: [this.sender], to: this.address, - from: this.sender, }); if (response?.length && BigNumber.isBigNumber(response[0])) { @@ -192,7 +187,6 @@ export class StakingPool { method: "totalSupply", args: [], to: this.address, - // from: this.sender, }); if (response?.length && BigNumber.isBigNumber(response[0])) { @@ -204,16 +198,15 @@ export class StakingPool { } // total reward earned (claimed + unclaimed) - async getTotalRewardEarnedForAddress(): Promise { + async getClaimedRewardsForAddress(): Promise { try { const response: BigNumber[] = await this.provider.read({ abi: this.abi, - method: "earned", + method: "claimedRewards", args: [this.sender], to: this.address, - from: this.sender, }); - console.log("getTotalRewardEarnedForAddress: ", response); + console.log("getClaimedRewardsForAddress: ", response); if (response?.length && BigNumber.isBigNumber(response[0])) { return response[0]; } @@ -227,10 +220,9 @@ export class StakingPool { try { const response: BigNumber[] = await this.provider.read({ abi: this.abi, - method: "rewards", + method: "earned", args: [this.sender], to: this.address, - from: this.sender, }); console.log("getRewardAvailableForClaim: ", response); if (response?.length && BigNumber.isBigNumber(response[0])) { @@ -248,7 +240,6 @@ export class StakingPool { method: "rewardRate", args: [], to: this.address, - // from: this.sender, }); if (response?.length && BigNumber.isBigNumber(response[0])) { return response[0]; @@ -264,7 +255,7 @@ export class StakingPool { const rewardRate = await this.getCurrentRewardRate(); const rewardDuration = await this.getRewardDuration(); if (rewardRate && rewardDuration) { - const estimateAPR = rewardRate.mul(rewardDuration).mul(daysInYear * 100); + const estimateAPR = rewardRate.mul(rewardDuration).mul(daysInYear / 7 * 100); return estimateAPR; } return constants.Zero; diff --git a/services/contracts/Token.ts b/services/contracts/Token.ts index 5d4abf4..7548bdb 100644 --- a/services/contracts/Token.ts +++ b/services/contracts/Token.ts @@ -47,7 +47,6 @@ export class ERC20TokenInteraction { method: "balanceOf", args: [this.sender], to: this.address, - from: this.sender, }); if (response?.length && BigNumber.isBigNumber(response[0])) { @@ -67,7 +66,6 @@ export class ERC20TokenInteraction { method: "allowance", args: [this.sender, spenderAddress], to: this.address, - from: this.sender, }); if (response?.length && BigNumber.isBigNumber(response[0])) { diff --git a/store/flexible-staking.ts b/store/flexible-staking.ts index 719bf1c..566918c 100644 --- a/store/flexible-staking.ts +++ b/store/flexible-staking.ts @@ -115,7 +115,7 @@ export const useFlexibleStaking = create((set, get) => ({ const rewardDuration = BigNumber.isBigNumber(rewardDurationRes) ? rewardDurationRes : constants.Zero; - const apr = rewardRate.mul(rewardDuration).mul(daysInYear * 100); + const apr = rewardRate.mul(rewardDuration).mul((daysInYear / 7) * 100); //get pool staked amount const poolStakedAmount = BigNumber.isBigNumber(totalSupplyRes) @@ -159,7 +159,7 @@ export const useFlexibleStaking = create((set, get) => ({ getStakedAmount, getPoolStakedAmount, getUnclaimedRewards, - getTotalEarnedRewards, + getClaimedRewards, getStartDate, getFinishDate, ] = await Promise.allSettled([ @@ -171,7 +171,7 @@ export const useFlexibleStaking = create((set, get) => ({ poolContract.getSenderStakedAmount(), poolContract.getPoolTotalStakedAmount(), poolContract.getRewardAvailableForClaim(), - poolContract.getTotalRewardEarnedForAddress(), + poolContract.getClaimedRewardsForAddress(), poolContract.getPeriodStartDate(), poolContract.getPeriodFinishDate(), ]); @@ -190,7 +190,7 @@ export const useFlexibleStaking = create((set, get) => ({ getStakedAmount, getPoolStakedAmount, getUnclaimedRewards, - getTotalEarnedRewards, + getClaimedRewards, ].map((r) => r.status === "fulfilled" ? r.value || constants.Zero : constants.Zero ); diff --git a/store/wallet-balance.ts b/store/wallet-balance.ts index e4fd3cf..27cd619 100644 --- a/store/wallet-balance.ts +++ b/store/wallet-balance.ts @@ -143,7 +143,7 @@ export const useWalletBalance = create((set, get) => ({ ); const [getStakedAmount, getUnclaimedRewards] = await Promise.allSettled([ poolContract.balanceOf(defaultAddress), - poolContract.rewards(defaultAddress), + poolContract.earned(defaultAddress), ]); setValues({ balance: balances[index] || constants.Zero,