diff --git a/apps/node-status/.eslintrc.cjs b/apps/node-status/.eslintrc.cjs
new file mode 100644
index 0000000000..c1872fb900
--- /dev/null
+++ b/apps/node-status/.eslintrc.cjs
@@ -0,0 +1,8 @@
+module.exports = {
+ root: true,
+ extends: ['custom'],
+ parserOptions: {
+ project: true,
+ tsconfigRootDir: __dirname,
+ },
+};
diff --git a/apps/node-status/README.md b/apps/node-status/README.md
new file mode 100644
index 0000000000..9164caab8d
--- /dev/null
+++ b/apps/node-status/README.md
@@ -0,0 +1,18 @@
+# Penumbra node status page
+
+![Screenshot 2024-02-22 at 1 21 54 PM](https://github.com/penumbra-zone/web/assets/16624263/7422ff48-fe33-4f16-a13f-4e109998c7ec)
+
+### Overview
+
+This static site serves as a status page for the Penumbra node,
+displaying output from [GetStatus](https://buf.build/penumbra-zone/penumbra/docs/main:penumbra.util.tendermint_proxy.v1#penumbra.util.tendermint_proxy.v1.TendermintProxyService.GetStatus) rpc method
+and linking to minifront. Designed to be hosted by PD.
+
+### Run
+
+```
+pnpm install
+pnpm dev # for local development
+
+pnpm build # for getting build output for deployment on pd
+```
diff --git a/apps/node-status/index.html b/apps/node-status/index.html
new file mode 100644
index 0000000000..6c635a33c3
--- /dev/null
+++ b/apps/node-status/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+ Penumbra Node Status
+
+
+
+
+
+
diff --git a/apps/node-status/package.json b/apps/node-status/package.json
new file mode 100644
index 0000000000..82ba615732
--- /dev/null
+++ b/apps/node-status/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "node-status",
+ "version": "1.0.0",
+ "type": "module",
+ "scripts": {
+ "dev": "vite",
+ "build": "tsc && vite build",
+ "lint": "eslint . --ext ts,tsx",
+ "preview": "vite preview"
+ },
+ "dependencies": {
+ "@penumbra-zone/crypto-web": "workspace:*",
+ "@penumbra-zone/transport": "workspace:*",
+ "@penumbra-zone/ui": "workspace:*",
+ "date-fns": "^3.3.1",
+ "react": "^18.2.0",
+ "react-dom": "^18.2.0",
+ "react-loader-spinner": "^6.1.6",
+ "react-router-dom": "^6.22.1",
+ "tailwindcss": "^3.4.1"
+ },
+ "devDependencies": {
+ "@types/react": "^18.2.57",
+ "@types/react-dom": "^18.2.19",
+ "@typescript-eslint/eslint-plugin": "^7.0.2",
+ "@typescript-eslint/parser": "^7.0.2",
+ "@vitejs/plugin-react": "^4.2.1",
+ "eslint": "^8.56.0",
+ "eslint-plugin-react-hooks": "^4.6.0",
+ "eslint-plugin-react-refresh": "^0.4.5",
+ "typescript": "^5.3.3",
+ "vite": "^5.1.4"
+ }
+}
diff --git a/apps/node-status/postcss.config.js b/apps/node-status/postcss.config.js
new file mode 100644
index 0000000000..8e18cdcb77
--- /dev/null
+++ b/apps/node-status/postcss.config.js
@@ -0,0 +1 @@
+export { default } from '@penumbra-zone/ui/postcss.config.js';
diff --git a/apps/node-status/public/favicon.png b/apps/node-status/public/favicon.png
new file mode 100644
index 0000000000..5d7949b4e2
Binary files /dev/null and b/apps/node-status/public/favicon.png differ
diff --git a/apps/node-status/public/penumbra-rays.svg b/apps/node-status/public/penumbra-rays.svg
new file mode 100644
index 0000000000..96b7c3f48e
--- /dev/null
+++ b/apps/node-status/public/penumbra-rays.svg
@@ -0,0 +1,92 @@
+
+
+
+
diff --git a/apps/node-status/public/penumbra-text-logo.svg b/apps/node-status/public/penumbra-text-logo.svg
new file mode 100644
index 0000000000..0293e288a9
--- /dev/null
+++ b/apps/node-status/public/penumbra-text-logo.svg
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/apps/node-status/src/clients/grpc.ts b/apps/node-status/src/clients/grpc.ts
new file mode 100644
index 0000000000..c85b056750
--- /dev/null
+++ b/apps/node-status/src/clients/grpc.ts
@@ -0,0 +1,10 @@
+import { createGrpcWebTransport } from '@connectrpc/connect-web';
+import { createPromiseClient } from '@connectrpc/connect';
+import { TendermintProxyService } from '@buf/penumbra-zone_penumbra.connectrpc_es/penumbra/util/tendermint_proxy/v1/tendermint_proxy_connect';
+import { devBaseUrl, prodBaseUrl } from '../constants.ts';
+
+const transport = createGrpcWebTransport({
+ baseUrl: import.meta.env.MODE === 'production' ? prodBaseUrl : devBaseUrl,
+});
+
+export const tendermintClient = createPromiseClient(TendermintProxyService, transport);
diff --git a/apps/node-status/src/components/error-boundary.tsx b/apps/node-status/src/components/error-boundary.tsx
new file mode 100644
index 0000000000..2927484905
--- /dev/null
+++ b/apps/node-status/src/components/error-boundary.tsx
@@ -0,0 +1,13 @@
+import { useRouteError } from 'react-router-dom';
+
+export const ErrorBoundary = () => {
+ const error = useRouteError();
+
+ console.error(error);
+
+ return (
+
+
{String(error)}
+
+ );
+};
diff --git a/apps/node-status/src/components/frontend-referral.tsx b/apps/node-status/src/components/frontend-referral.tsx
new file mode 100644
index 0000000000..1a604049f6
--- /dev/null
+++ b/apps/node-status/src/components/frontend-referral.tsx
@@ -0,0 +1,14 @@
+import { Button } from '@penumbra-zone/ui';
+import { devFrontend, prodFrontend } from '../constants.ts';
+
+export const FrontendReferral = () => {
+ const onClickHandler = () => {
+ window.open(import.meta.env.MODE === 'production' ? prodFrontend : devFrontend);
+ };
+
+ return (
+
+ );
+};
diff --git a/apps/node-status/src/components/header.tsx b/apps/node-status/src/components/header.tsx
new file mode 100644
index 0000000000..231b0c054c
--- /dev/null
+++ b/apps/node-status/src/components/header.tsx
@@ -0,0 +1,41 @@
+import { Link } from 'react-router-dom';
+import { LineWave } from 'react-loader-spinner';
+import { cn } from '@penumbra-zone/ui/lib/utils.ts';
+import { useDeceleratedFetchState } from '../fetching/refetch-hook.ts';
+
+export const Header = () => {
+ const isLoading = useDeceleratedFetchState();
+
+ return (
+
+
+
+
+
+
+
+
+ Node Status
+
+
+
+
+ );
+};
diff --git a/apps/node-status/src/components/index.tsx b/apps/node-status/src/components/index.tsx
new file mode 100644
index 0000000000..b699dc7435
--- /dev/null
+++ b/apps/node-status/src/components/index.tsx
@@ -0,0 +1,26 @@
+import { Header } from './header.tsx';
+import { FrontendReferral } from './frontend-referral.tsx';
+import { NodeInfo } from './node-info.tsx';
+import { SyncInfo } from './sync-info.tsx';
+import { ValidatorInfo } from './validator-info.tsx';
+import { useRefetchStatusOnInterval } from '../fetching/refetch-hook.ts';
+
+export const Index = () => {
+ useRefetchStatusOnInterval();
+
+ return (
+ <>
+
+
+ >
+ );
+};
diff --git a/apps/node-status/src/components/node-info.tsx b/apps/node-status/src/components/node-info.tsx
new file mode 100644
index 0000000000..d22b178d16
--- /dev/null
+++ b/apps/node-status/src/components/node-info.tsx
@@ -0,0 +1,62 @@
+import { useLoaderData } from 'react-router-dom';
+import { uint8ArrayToBase64 } from '@penumbra-zone/types';
+import { Card, Identicon } from '@penumbra-zone/ui';
+import { IndexLoaderResponse } from '../fetching/loader.ts';
+
+export const NodeInfo = () => {
+ const {
+ status: { nodeInfo },
+ } = useLoaderData() as IndexLoaderResponse;
+ if (!nodeInfo) return <>>;
+
+ return (
+
+
+
Network
+
+
+ {nodeInfo.network}
+
+
Version
+
{nodeInfo.version}
+
+
+ Default Node ID
+ {nodeInfo.defaultNodeId}
+
+ {nodeInfo.protocolVersion && (
+
+ Protocol Version
+ Block: {nodeInfo.protocolVersion.block.toString()}
+ P2P: {nodeInfo.protocolVersion.p2p.toString()}
+ App: {nodeInfo.protocolVersion.app.toString()}
+
+ )}
+
+ Listen Address
+ {nodeInfo.listenAddr}
+
+
+ Channels
+ {uint8ArrayToBase64(nodeInfo.channels)}
+
+
+ Moniker
+ {nodeInfo.moniker}
+
+ {nodeInfo.other && (
+
+ Transaction Index
+ {nodeInfo.other.txIndex}
+ RPC Address
+ {nodeInfo.other.rpcAddress}
+
+ )}
+
+ );
+};
diff --git a/apps/node-status/src/components/router.tsx b/apps/node-status/src/components/router.tsx
new file mode 100644
index 0000000000..9f4d516476
--- /dev/null
+++ b/apps/node-status/src/components/router.tsx
@@ -0,0 +1,13 @@
+import { createHashRouter } from 'react-router-dom';
+import { ErrorBoundary } from './error-boundary.tsx';
+import { Index } from './index.tsx';
+import { IndexLoader } from '../fetching/loader.ts';
+
+export const router = createHashRouter([
+ {
+ path: '/',
+ loader: IndexLoader,
+ element: ,
+ errorElement: ,
+ },
+]);
diff --git a/apps/node-status/src/components/sync-info.tsx b/apps/node-status/src/components/sync-info.tsx
new file mode 100644
index 0000000000..11cb4f6187
--- /dev/null
+++ b/apps/node-status/src/components/sync-info.tsx
@@ -0,0 +1,65 @@
+import { useLoaderData } from 'react-router-dom';
+import { IndexLoaderResponse } from '../fetching/loader.ts';
+import { Card } from '@penumbra-zone/ui';
+import { format } from 'date-fns';
+import { SyncInfo as SyncInfoProto } from '@buf/penumbra-zone_penumbra.bufbuild_es/penumbra/util/tendermint_proxy/v1/tendermint_proxy_pb';
+
+const getFormattedTime = (syncInfo: SyncInfoProto): { date?: string; time?: string } => {
+ const dateObj = syncInfo.latestBlockTime?.toDate();
+ if (!dateObj) return {};
+
+ const date = format(dateObj, 'EEE MMM dd yyyy');
+ const time = format(dateObj, "HH:mm:ss 'GMT'x");
+
+ return { date, time };
+};
+
+export const SyncInfo = () => {
+ const {
+ status: { syncInfo },
+ latestBlockHash,
+ latestAppHash,
+ } = useLoaderData() as IndexLoaderResponse;
+ if (!syncInfo) return <>>;
+
+ const { date, time } = getFormattedTime(syncInfo);
+
+ return (
+
+
+
+ Latest Block Height{' '}
+ {syncInfo.latestBlockHeight.toString()}
+
+
+
Caught Up{' '}
+ {syncInfo.catchingUp ? (
+
+ False
+
+ ) : (
+
+ True
+
+ )}
+
+
+ Latest Block Time
+ {date}
+ {time}
+
+
+
+
+
+ Latest Block Hash:
+ {latestBlockHash}
+
+
+ Latest App Hash:
+ {latestAppHash}
+
+
+
+ );
+};
diff --git a/apps/node-status/src/components/validator-info.tsx b/apps/node-status/src/components/validator-info.tsx
new file mode 100644
index 0000000000..d884e5cf43
--- /dev/null
+++ b/apps/node-status/src/components/validator-info.tsx
@@ -0,0 +1,48 @@
+import { useLoaderData } from 'react-router-dom';
+import { uint8ArrayToHex, uint8ArrayToString } from '@penumbra-zone/types';
+import { Card } from '@penumbra-zone/ui';
+import { IndexLoaderResponse } from '../fetching/loader';
+import { PublicKey } from '@buf/tendermint_tendermint.bufbuild_es/tendermint/crypto/keys_pb';
+
+const PublicKeyComponent = ({ publicKey }: { publicKey: PublicKey | undefined }) => {
+ if (!publicKey) return null;
+
+ const publicKeyType = publicKey.sum.case;
+ const value = publicKey.sum.value ? uint8ArrayToHex(publicKey.sum.value) : undefined;
+
+ return (
+
+ Public Key
+ Type: {publicKeyType}
+ Value: {value}
+
+ );
+};
+
+export const ValidatorInfo = () => {
+ const {
+ status: { validatorInfo },
+ } = useLoaderData() as IndexLoaderResponse;
+ if (!validatorInfo) return <>>;
+
+ return (
+ // Outer div used to shrink to size instead of expand to sibling's size
+
+
+
+ Voting Power
+ {validatorInfo.votingPower.toString()}
+
+
+ Proposer Priority
+ {validatorInfo.proposerPriority.toString()}
+
+
+ Address
+ {uint8ArrayToString(validatorInfo.address)}
+
+
+
+
+ );
+};
diff --git a/apps/node-status/src/constants.ts b/apps/node-status/src/constants.ts
new file mode 100644
index 0000000000..339a4ec9f8
--- /dev/null
+++ b/apps/node-status/src/constants.ts
@@ -0,0 +1,5 @@
+export const prodBaseUrl = '/';
+export const devBaseUrl = 'https://grpc.testnet.penumbra.zone';
+
+export const prodFrontend = '/app/';
+export const devFrontend = 'https://app.testnet.penumbra.zone';
diff --git a/apps/node-status/src/fetching/loader.ts b/apps/node-status/src/fetching/loader.ts
new file mode 100644
index 0000000000..4e9aa8a2b4
--- /dev/null
+++ b/apps/node-status/src/fetching/loader.ts
@@ -0,0 +1,25 @@
+import { LoaderFunction } from 'react-router-dom';
+import { GetStatusResponse } from '@buf/penumbra-zone_penumbra.bufbuild_es/penumbra/util/tendermint_proxy/v1/tendermint_proxy_pb';
+import { sha256HashStr } from '@penumbra-zone/crypto-web';
+import { tendermintClient } from '../clients/grpc';
+
+export interface IndexLoaderResponse {
+ status: GetStatusResponse;
+ latestBlockHash: string | undefined;
+ latestAppHash: string | undefined;
+}
+
+export const IndexLoader: LoaderFunction = async (): Promise => {
+ const status = await tendermintClient.getStatus({});
+ const latestBlockHash = await getHash(status.syncInfo?.latestBlockHash);
+ const latestAppHash = await getHash(status.syncInfo?.latestAppHash);
+
+ return {
+ status,
+ latestBlockHash,
+ latestAppHash,
+ };
+};
+
+const getHash = async (uintArr?: Uint8Array): Promise =>
+ uintArr ? sha256HashStr(uintArr) : undefined;
diff --git a/apps/node-status/src/fetching/refetch-hook.ts b/apps/node-status/src/fetching/refetch-hook.ts
new file mode 100644
index 0000000000..877fbca72a
--- /dev/null
+++ b/apps/node-status/src/fetching/refetch-hook.ts
@@ -0,0 +1,34 @@
+import { useRevalidator } from 'react-router-dom';
+import { useEffect, useState } from 'react';
+
+const REFETCH_INTERVAL = 5000;
+
+export const useRefetchStatusOnInterval = () => {
+ const { revalidate } = useRevalidator();
+
+ useEffect(() => {
+ const interval = setInterval(revalidate, REFETCH_INTERVAL);
+ return () => clearInterval(interval); // Clear the interval when the component is unmounted
+ }, [revalidate]);
+};
+
+const VISIBILITY_STATE_CHANGE_DELAY = 800;
+
+// Meant to slow down the state transition from loading to idle so the UI can show a discernible spinner
+export const useDeceleratedFetchState = () => {
+ const { state } = useRevalidator();
+
+ const [isVisible, setIsVisible] = useState(false);
+
+ useEffect(() => {
+ if (state === 'loading') {
+ setIsVisible(true);
+ }
+
+ if (state === 'idle') {
+ setTimeout(() => setIsVisible(false), VISIBILITY_STATE_CHANGE_DELAY);
+ }
+ }, [state]);
+
+ return isVisible;
+};
diff --git a/apps/node-status/src/main.tsx b/apps/node-status/src/main.tsx
new file mode 100644
index 0000000000..a2ac1f1175
--- /dev/null
+++ b/apps/node-status/src/main.tsx
@@ -0,0 +1,15 @@
+import React from 'react';
+import { createRoot } from 'react-dom/client';
+import { RouterProvider } from 'react-router-dom';
+import { router } from './components/router.tsx';
+
+import '@penumbra-zone/ui/styles/globals.css';
+
+const Main = () => (
+
+
+
+);
+
+const rootElement = document.getElementById('root') as HTMLDivElement;
+createRoot(rootElement).render();
diff --git a/apps/node-status/src/vite-env.d.ts b/apps/node-status/src/vite-env.d.ts
new file mode 100644
index 0000000000..11f02fe2a0
--- /dev/null
+++ b/apps/node-status/src/vite-env.d.ts
@@ -0,0 +1 @@
+///
diff --git a/apps/node-status/tailwind.config.js b/apps/node-status/tailwind.config.js
new file mode 100644
index 0000000000..c97ca2ed8e
--- /dev/null
+++ b/apps/node-status/tailwind.config.js
@@ -0,0 +1 @@
+export { default } from '@penumbra-zone/tailwind-config';
diff --git a/apps/node-status/tsconfig.json b/apps/node-status/tsconfig.json
new file mode 100644
index 0000000000..12fa88f8bb
--- /dev/null
+++ b/apps/node-status/tsconfig.json
@@ -0,0 +1,5 @@
+{
+ "extends": "tsconfig/vite.json",
+ "include": ["src", "vite.config.ts"],
+ "exclude": ["node_modules"]
+}
diff --git a/apps/node-status/vite.config.ts b/apps/node-status/vite.config.ts
new file mode 100644
index 0000000000..0466183af6
--- /dev/null
+++ b/apps/node-status/vite.config.ts
@@ -0,0 +1,6 @@
+import { defineConfig } from 'vite';
+import react from '@vitejs/plugin-react';
+
+export default defineConfig({
+ plugins: [react()],
+});
diff --git a/apps/webapp/vite.config.ts b/apps/webapp/vite.config.ts
index 427d81e303..825b43a8b6 100644
--- a/apps/webapp/vite.config.ts
+++ b/apps/webapp/vite.config.ts
@@ -17,8 +17,4 @@ export default defineConfig({
},
},
},
- test: {
- environment: 'jsdom',
- setupFiles: ['./tests-setup.ts'],
- },
});
diff --git a/package.json b/package.json
index c6bff53d2b..58b7f2a588 100644
--- a/package.json
+++ b/package.json
@@ -21,6 +21,7 @@
"@buf/cosmos_ibc.connectrpc_es": "1.3.0-20240215124455-b32ecf3ebbcb.1",
"@buf/penumbra-zone_penumbra.bufbuild_es": "1.7.2-20240216020833-dd8ae3a6cd04.1",
"@buf/penumbra-zone_penumbra.connectrpc_es": "1.3.0-20240216020833-dd8ae3a6cd04.1",
+ "@buf/tendermint_tendermint.bufbuild_es": "1.7.2-20231117195010-33ed361a9051.1",
"@bufbuild/protobuf": "^1.7.2",
"@connectrpc/connect": "^1.3.0",
"@connectrpc/connect-web": "^1.3.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2363d2cef8..7eba6a1c03 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -20,6 +20,9 @@ importers:
'@buf/penumbra-zone_penumbra.connectrpc_es':
specifier: 1.3.0-20240216020833-dd8ae3a6cd04.1
version: 1.3.0-20240216020833-dd8ae3a6cd04.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0)
+ '@buf/tendermint_tendermint.bufbuild_es':
+ specifier: 1.7.2-20231117195010-33ed361a9051.1
+ version: 1.7.2-20231117195010-33ed361a9051.1(@bufbuild/protobuf@1.7.2)
'@bufbuild/protobuf':
specifier: ^1.7.2
version: 1.7.2
@@ -44,10 +47,10 @@ importers:
version: 1.12.4(@types/node@20.11.19)(typescript@5.3.3)
'@typescript-eslint/eslint-plugin':
specifier: ^7.0.1
- version: 7.0.1(@typescript-eslint/parser@7.0.1)(eslint@8.56.0)(typescript@5.3.3)
+ version: 7.0.2(@typescript-eslint/parser@7.0.2)(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/parser':
specifier: ^7.0.1
- version: 7.0.1(eslint@8.56.0)(typescript@5.3.3)
+ version: 7.0.2(eslint@8.56.0)(typescript@5.3.3)
eslint:
specifier: ^8.56.0
version: 8.56.0
@@ -71,7 +74,7 @@ importers:
version: 5.3.3
vitest:
specifier: ^1.2.2
- version: 1.2.2(@types/node@20.11.19)(@vitest/browser@1.2.2)(jsdom@24.0.0)
+ version: 1.3.1(@types/node@20.11.19)(@vitest/browser@1.3.1)(jsdom@24.0.0)
apps/extension:
dependencies:
@@ -104,7 +107,7 @@ importers:
version: link:../../packages/wasm
'@tanstack/react-query':
specifier: ^5.20.5
- version: 5.20.5(react@18.2.0)
+ version: 5.22.2(react@18.2.0)
buffer:
specifier: ^6.0.3
version: 6.0.3
@@ -125,16 +128,16 @@ importers:
version: 18.2.0(react@18.2.0)
react-router-dom:
specifier: ^6.22.0
- version: 6.22.0(react-dom@18.2.0)(react@18.2.0)
+ version: 6.22.1(react-dom@18.2.0)(react@18.2.0)
react-use-measure:
specifier: ^2.1.1
version: 2.1.1(react-dom@18.2.0)(react@18.2.0)
usehooks-ts:
specifier: ^2.14.0
- version: 2.14.0(react@18.2.0)
+ version: 2.15.0(react@18.2.0)
zustand:
specifier: ^4.5.0
- version: 4.5.0(@types/react@18.2.55)(immer@10.0.3)(react@18.2.0)
+ version: 4.5.1(@types/react@18.2.57)(immer@10.0.3)(react@18.2.0)
devDependencies:
'@radix-ui/react-icons':
specifier: ^1.3.0
@@ -150,7 +153,7 @@ importers:
version: 20.11.19
'@types/react':
specifier: ^18.2.55
- version: 18.2.55
+ version: 18.2.57
'@types/react-dom':
specifier: ^18.2.19
version: 18.2.19
@@ -159,50 +162,111 @@ importers:
version: 10.4.17(postcss@8.4.35)
copy-webpack-plugin:
specifier: ^12.0.2
- version: 12.0.2(webpack@5.90.2)
+ version: 12.0.2(webpack@5.90.3)
css-loader:
specifier: ^6.10.0
- version: 6.10.0(webpack@5.90.2)
+ version: 6.10.0(webpack@5.90.3)
html-webpack-plugin:
specifier: ^5.6.0
- version: 5.6.0(webpack@5.90.2)
+ version: 5.6.0(webpack@5.90.3)
postcss:
specifier: ^8.4.35
version: 8.4.35
postcss-loader:
specifier: ^8.1.0
- version: 8.1.0(postcss@8.4.35)(typescript@5.3.3)(webpack@5.90.2)
+ version: 8.1.0(postcss@8.4.35)(typescript@5.3.3)(webpack@5.90.3)
style-loader:
specifier: ^3.3.4
- version: 3.3.4(webpack@5.90.2)
+ version: 3.3.4(webpack@5.90.3)
tailwindcss:
specifier: ^3.4.1
version: 3.4.1
ts-loader:
specifier: ^9.5.1
- version: 9.5.1(typescript@5.3.3)(webpack@5.90.2)
+ version: 9.5.1(typescript@5.3.3)(webpack@5.90.3)
tsx:
specifier: ^4.7.1
version: 4.7.1
vite:
specifier: ^5.1.3
- version: 5.1.3(@types/node@20.11.19)
+ version: 5.1.4(@types/node@20.11.19)
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.1(vite@5.1.3)
+ version: 1.4.1(vite@5.1.4)
vite-plugin-wasm:
specifier: ^3.3.0
- version: 3.3.0(vite@5.1.3)
+ version: 3.3.0(vite@5.1.4)
webpack:
specifier: ^5.90.2
- version: 5.90.2(webpack-cli@5.1.4)
+ version: 5.90.3(webpack-cli@5.1.4)
webpack-cli:
specifier: ^5.1.4
- version: 5.1.4(webpack@5.90.2)
+ version: 5.1.4(webpack@5.90.3)
webpack-merge:
specifier: ^5.10.0
version: 5.10.0
+ apps/node-status:
+ dependencies:
+ '@penumbra-zone/crypto-web':
+ specifier: workspace:*
+ version: link:../../packages/crypto
+ '@penumbra-zone/transport':
+ specifier: workspace:*
+ version: link:../../packages/transport
+ '@penumbra-zone/ui':
+ specifier: workspace:*
+ version: link:../../packages/ui
+ date-fns:
+ specifier: ^3.3.1
+ version: 3.3.1
+ react:
+ specifier: ^18.2.0
+ version: 18.2.0
+ react-dom:
+ specifier: ^18.2.0
+ version: 18.2.0(react@18.2.0)
+ react-loader-spinner:
+ specifier: ^6.1.6
+ version: 6.1.6(react-dom@18.2.0)(react@18.2.0)
+ react-router-dom:
+ specifier: ^6.22.1
+ version: 6.22.1(react-dom@18.2.0)(react@18.2.0)
+ tailwindcss:
+ specifier: ^3.4.1
+ version: 3.4.1
+ devDependencies:
+ '@types/react':
+ specifier: ^18.2.57
+ version: 18.2.57
+ '@types/react-dom':
+ specifier: ^18.2.19
+ version: 18.2.19
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^7.0.2
+ version: 7.0.2(@typescript-eslint/parser@7.0.2)(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/parser':
+ specifier: ^7.0.2
+ version: 7.0.2(eslint@8.56.0)(typescript@5.3.3)
+ '@vitejs/plugin-react':
+ specifier: ^4.2.1
+ version: 4.2.1(vite@5.1.4)
+ eslint:
+ specifier: ^8.56.0
+ version: 8.56.0
+ eslint-plugin-react-hooks:
+ specifier: ^4.6.0
+ version: 4.6.0(eslint@8.56.0)
+ eslint-plugin-react-refresh:
+ specifier: ^0.4.5
+ version: 0.4.5(eslint@8.56.0)
+ typescript:
+ specifier: ^5.3.3
+ version: 5.3.3
+ vite:
+ specifier: ^5.1.4
+ version: 5.1.4(@types/node@20.11.19)
+
apps/webapp:
dependencies:
'@penumbra-zone/constants':
@@ -222,7 +286,7 @@ importers:
version: 1.3.0(react@18.2.0)
'@tanstack/react-query':
specifier: ^5.20.5
- version: 5.20.5(react@18.2.0)
+ version: 5.22.2(react@18.2.0)
bignumber.js:
specifier: ^9.1.2
version: 9.1.2
@@ -243,7 +307,7 @@ importers:
version: 6.1.6(react-dom@18.2.0)(react@18.2.0)
react-router-dom:
specifier: ^6.22.0
- version: 6.22.0(react-dom@18.2.0)(react@18.2.0)
+ version: 6.22.1(react-dom@18.2.0)(react@18.2.0)
sonner:
specifier: ^1.4.0
version: 1.4.0(react-dom@18.2.0)(react@18.2.0)
@@ -255,11 +319,11 @@ importers:
version: 3.22.4
zustand:
specifier: ^4.5.0
- version: 4.5.0(@types/react@18.2.55)(immer@10.0.3)(react@18.2.0)
+ version: 4.5.1(@types/react@18.2.57)(immer@10.0.3)(react@18.2.0)
devDependencies:
'@testing-library/jest-dom':
specifier: ^6.4.2
- version: 6.4.2(vitest@1.2.2)
+ version: 6.4.2(vitest@1.3.1)
'@testing-library/react':
specifier: ^14.2.1
version: 14.2.1(react-dom@18.2.0)(react@18.2.0)
@@ -268,7 +332,7 @@ importers:
version: 20.11.19
'@types/react':
specifier: ^18.2.55
- version: 18.2.55
+ version: 18.2.57
'@types/react-dom':
specifier: ^18.2.19
version: 18.2.19
@@ -277,22 +341,22 @@ importers:
version: 6.1.11
'@vitejs/plugin-basic-ssl':
specifier: ^1.1.0
- version: 1.1.0(vite@5.1.3)
+ version: 1.1.0(vite@5.1.4)
'@vitejs/plugin-react-swc':
specifier: ^3.6.0
- version: 3.6.0(vite@5.1.3)
+ version: 3.6.0(vite@5.1.4)
autoprefixer:
specifier: ^10.4.17
version: 10.4.17(postcss@8.4.35)
firebase-tools:
specifier: ^13.3.0
- version: 13.3.0
+ version: 13.3.1
postcss:
specifier: ^8.4.35
version: 8.4.35
vite:
specifier: ^5.1.3
- version: 5.1.3(@types/node@20.11.19)
+ version: 5.1.4(@types/node@20.11.19)
packages/constants: {}
@@ -310,19 +374,19 @@ importers:
version: 4.2.2
'@vitest/browser':
specifier: ^1.2.2
- version: 1.2.2(playwright@1.41.2)(vitest@1.2.2)
+ version: 1.3.1(playwright@1.41.2)(vitest@1.3.1)
vite:
specifier: ^5.1.3
- version: 5.1.3(@types/node@20.11.19)
+ version: 5.1.4(@types/node@20.11.19)
packages/eslint-config-custom:
dependencies:
'@typescript-eslint/eslint-plugin':
specifier: ^7.0.1
- version: 7.0.1(@typescript-eslint/parser@7.0.1)(eslint@8.56.0)(typescript@5.3.3)
+ version: 7.0.2(@typescript-eslint/parser@7.0.2)(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/parser':
specifier: ^7.0.1
- version: 7.0.1(eslint@8.56.0)(typescript@5.3.3)
+ version: 7.0.2(eslint@8.56.0)(typescript@5.3.3)
eslint-config-next:
specifier: ^14.1.0
version: 14.1.0(eslint@8.56.0)(typescript@5.3.3)
@@ -343,13 +407,13 @@ importers:
version: 0.4.5(eslint@8.56.0)
eslint-plugin-tailwindcss:
specifier: ^3.14.2
- version: 3.14.2(tailwindcss@3.4.1)
+ version: 3.14.3(tailwindcss@3.4.1)
eslint-plugin-turbo:
specifier: ^1.12.4
version: 1.12.4(eslint@8.56.0)
eslint-plugin-vitest:
specifier: ^0.3.22
- version: 0.3.22(@typescript-eslint/eslint-plugin@7.0.1)(eslint@8.56.0)(typescript@5.3.3)(vitest@1.2.2)
+ version: 0.3.22(@typescript-eslint/eslint-plugin@7.0.2)(eslint@8.56.0)(typescript@5.3.3)(vitest@1.3.1)
packages/query:
dependencies:
@@ -395,13 +459,13 @@ importers:
version: 0.0.260
vite:
specifier: ^5.1.3
- version: 5.1.3(@types/node@20.11.19)
+ version: 5.1.4(@types/node@20.11.19)
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.1(vite@5.1.3)
+ version: 1.4.1(vite@5.1.4)
vite-plugin-wasm:
specifier: ^3.3.0
- version: 3.3.0(vite@5.1.3)
+ version: 3.3.0(vite@5.1.4)
packages/services:
dependencies:
@@ -438,14 +502,14 @@ importers:
version: 8.0.0
vite:
specifier: ^5.1.3
- version: 5.1.3(@types/node@20.11.19)
+ version: 5.1.4(@types/node@20.11.19)
devDependencies:
'@types/chrome':
specifier: 0.0.260
version: 0.0.260
'@vitest/browser':
specifier: ^1.2.2
- version: 1.2.2(playwright@1.41.2)(vitest@1.2.2)
+ version: 1.3.1(playwright@1.41.2)(vitest@1.3.1)
playwright:
specifier: ^1.41.2
version: 1.41.2
@@ -489,46 +553,46 @@ importers:
dependencies:
'@radix-ui/react-checkbox':
specifier: ^1.0.4
- version: 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-dialog':
specifier: 1.0.5
- version: 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-icons':
specifier: ^1.3.0
version: 1.3.0(react@18.2.0)
'@radix-ui/react-navigation-menu':
specifier: ^1.1.4
- version: 1.1.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.1.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-popover':
specifier: ^1.0.7
- version: 1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-progress':
specifier: ^1.0.3
- version: 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-select':
specifier: ^2.0.0
- version: 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-slot':
specifier: ^1.0.2
- version: 1.0.2(@types/react@18.2.55)(react@18.2.0)
+ version: 1.0.2(@types/react@18.2.57)(react@18.2.0)
'@radix-ui/react-switch':
specifier: ^1.0.3
- version: 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-tabs':
specifier: ^1.0.4
- version: 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-toast':
specifier: ^1.1.5
- version: 1.1.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.1.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-toggle':
specifier: ^1.0.3
- version: 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-tooltip':
specifier: ^1.0.7
- version: 1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@testing-library/jest-dom':
specifier: ^6.4.2
- version: 6.4.2(vitest@1.2.2)
+ version: 6.4.2(vitest@1.3.1)
class-variance-authority:
specifier: ^0.7.0
version: 0.7.0
@@ -549,10 +613,10 @@ importers:
version: 18.2.0(react@18.2.0)
react-json-view:
specifier: ^1.21.3
- version: 1.21.3(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.21.3(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
react-router-dom:
specifier: ^6.22.0
- version: 6.22.0(react-dom@18.2.0)(react@18.2.0)
+ version: 6.22.1(react-dom@18.2.0)(react@18.2.0)
sonner:
specifier: ^1.4.0
version: 1.4.0(react-dom@18.2.0)(react@18.2.0)
@@ -565,28 +629,28 @@ importers:
devDependencies:
'@storybook/addon-essentials':
specifier: ^7.6.16
- version: 7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@storybook/addon-interactions':
specifier: ^7.6.16
- version: 7.6.16
+ version: 7.6.17
'@storybook/addon-links':
specifier: ^7.6.16
- version: 7.6.16(react@18.2.0)
+ version: 7.6.17(react@18.2.0)
'@storybook/addon-postcss':
specifier: ^2.0.0
- version: 2.0.0(webpack@5.90.2)
+ version: 2.0.0(webpack@5.90.3)
'@storybook/blocks':
specifier: ^7.6.16
- version: 7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ version: 7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
'@storybook/preview-api':
specifier: ^7.6.16
- version: 7.6.16
+ version: 7.6.17
'@storybook/react':
specifier: ^7.6.16
- version: 7.6.16(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ version: 7.6.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
'@storybook/react-vite':
specifier: ^7.6.16
- version: 7.6.16(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@5.1.3)
+ version: 7.6.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@5.1.4)
'@testing-library/react':
specifier: ^14.2.1
version: 14.2.1(react-dom@18.2.0)(react@18.2.0)
@@ -595,7 +659,7 @@ importers:
version: 20.11.19
'@types/react':
specifier: ^18.2.55
- version: 18.2.55
+ version: 18.2.57
'@types/react-dom':
specifier: ^18.2.19
version: 18.2.19
@@ -604,7 +668,7 @@ importers:
version: 1.4.6
'@vitest/browser':
specifier: ^1.2.2
- version: 1.2.2(playwright@1.41.2)(vitest@1.2.2)
+ version: 1.3.1(playwright@1.41.2)(vitest@1.3.1)
autoprefixer:
specifier: ^10.4.17
version: 10.4.17(postcss@8.4.35)
@@ -625,13 +689,13 @@ importers:
version: 18.2.0
storybook:
specifier: ^7.6.16
- version: 7.6.16
+ version: 7.6.17
tailwindcss:
specifier: ^3.4.1
version: 3.4.1
vite:
specifier: ^5.1.3
- version: 5.1.3(@types/node@20.11.19)
+ version: 5.1.4(@types/node@20.11.19)
packages/wasm:
dependencies:
@@ -650,10 +714,10 @@ importers:
version: 4.7.1
vite-plugin-top-level-await:
specifier: ^1.4.1
- version: 1.4.1(vite@5.1.3)
+ version: 1.4.1(vite@5.1.4)
vite-plugin-wasm:
specifier: ^3.3.0
- version: 3.3.0(vite@5.1.3)
+ version: 3.3.0(vite@5.1.4)
packages:
@@ -1983,7 +2047,7 @@ packages:
dev: true
/@buf/cosmos_cosmos-proto.bufbuild_es@1.6.0-20211202220400-1935555c206d.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-proto.bufbuild_es/-/cosmos_cosmos-proto.bufbuild_es-1.6.0-20211202220400-1935555c206d.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-proto.bufbuild_es/-/cosmos_cosmos-proto.bufbuild_es-1.6.0-20211202220400-1935555c206d.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -1991,7 +2055,7 @@ packages:
dev: false
/@buf/cosmos_cosmos-proto.bufbuild_es@1.7.2-20211202220400-1935555c206d.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-proto.bufbuild_es/-/cosmos_cosmos-proto.bufbuild_es-1.7.2-20211202220400-1935555c206d.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-proto.bufbuild_es/-/cosmos_cosmos-proto.bufbuild_es-1.7.2-20211202220400-1935555c206d.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -1999,7 +2063,7 @@ packages:
dev: false
/@buf/cosmos_cosmos-proto.connectrpc_es@1.3.0-20211202220400-1935555c206d.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-proto.connectrpc_es/-/cosmos_cosmos-proto.connectrpc_es-1.3.0-20211202220400-1935555c206d.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-proto.connectrpc_es/-/cosmos_cosmos-proto.connectrpc_es-1.3.0-20211202220400-1935555c206d.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2010,7 +2074,7 @@ packages:
dev: false
/@buf/cosmos_cosmos-sdk.bufbuild_es@1.6.0-20230522115704-e7a85cef453e.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.bufbuild_es/-/cosmos_cosmos-sdk.bufbuild_es-1.6.0-20230522115704-e7a85cef453e.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.bufbuild_es/-/cosmos_cosmos-sdk.bufbuild_es-1.6.0-20230522115704-e7a85cef453e.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2021,7 +2085,7 @@ packages:
dev: false
/@buf/cosmos_cosmos-sdk.bufbuild_es@1.6.0-20230719110346-aa25660f4ff7.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.bufbuild_es/-/cosmos_cosmos-sdk.bufbuild_es-1.6.0-20230719110346-aa25660f4ff7.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.bufbuild_es/-/cosmos_cosmos-sdk.bufbuild_es-1.6.0-20230719110346-aa25660f4ff7.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2032,7 +2096,7 @@ packages:
dev: false
/@buf/cosmos_cosmos-sdk.bufbuild_es@1.7.2-20230522115704-e7a85cef453e.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.bufbuild_es/-/cosmos_cosmos-sdk.bufbuild_es-1.7.2-20230522115704-e7a85cef453e.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.bufbuild_es/-/cosmos_cosmos-sdk.bufbuild_es-1.7.2-20230522115704-e7a85cef453e.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2043,7 +2107,7 @@ packages:
dev: false
/@buf/cosmos_cosmos-sdk.bufbuild_es@1.7.2-20230719110346-aa25660f4ff7.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.bufbuild_es/-/cosmos_cosmos-sdk.bufbuild_es-1.7.2-20230719110346-aa25660f4ff7.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.bufbuild_es/-/cosmos_cosmos-sdk.bufbuild_es-1.7.2-20230719110346-aa25660f4ff7.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2054,7 +2118,7 @@ packages:
dev: false
/@buf/cosmos_cosmos-sdk.connectrpc_es@1.3.0-20230522115704-e7a85cef453e.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.connectrpc_es/-/cosmos_cosmos-sdk.connectrpc_es-1.3.0-20230522115704-e7a85cef453e.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.connectrpc_es/-/cosmos_cosmos-sdk.connectrpc_es-1.3.0-20230522115704-e7a85cef453e.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2068,7 +2132,7 @@ packages:
dev: false
/@buf/cosmos_cosmos-sdk.connectrpc_es@1.3.0-20230719110346-aa25660f4ff7.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.connectrpc_es/-/cosmos_cosmos-sdk.connectrpc_es-1.3.0-20230719110346-aa25660f4ff7.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_cosmos-sdk.connectrpc_es/-/cosmos_cosmos-sdk.connectrpc_es-1.3.0-20230719110346-aa25660f4ff7.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2082,7 +2146,7 @@ packages:
dev: false
/@buf/cosmos_gogo-proto.bufbuild_es@1.6.0-20221020125208-34d970b699f8.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.bufbuild_es/-/cosmos_gogo-proto.bufbuild_es-1.6.0-20221020125208-34d970b699f8.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.bufbuild_es/-/cosmos_gogo-proto.bufbuild_es-1.6.0-20221020125208-34d970b699f8.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2090,7 +2154,7 @@ packages:
dev: false
/@buf/cosmos_gogo-proto.bufbuild_es@1.6.0-20230509103710-5e5b9fdd0180.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.bufbuild_es/-/cosmos_gogo-proto.bufbuild_es-1.6.0-20230509103710-5e5b9fdd0180.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.bufbuild_es/-/cosmos_gogo-proto.bufbuild_es-1.6.0-20230509103710-5e5b9fdd0180.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2098,7 +2162,7 @@ packages:
dev: false
/@buf/cosmos_gogo-proto.bufbuild_es@1.7.2-20221020125208-34d970b699f8.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.bufbuild_es/-/cosmos_gogo-proto.bufbuild_es-1.7.2-20221020125208-34d970b699f8.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.bufbuild_es/-/cosmos_gogo-proto.bufbuild_es-1.7.2-20221020125208-34d970b699f8.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2106,7 +2170,7 @@ packages:
dev: false
/@buf/cosmos_gogo-proto.bufbuild_es@1.7.2-20230509103710-5e5b9fdd0180.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.bufbuild_es/-/cosmos_gogo-proto.bufbuild_es-1.7.2-20230509103710-5e5b9fdd0180.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.bufbuild_es/-/cosmos_gogo-proto.bufbuild_es-1.7.2-20230509103710-5e5b9fdd0180.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2114,7 +2178,7 @@ packages:
dev: false
/@buf/cosmos_gogo-proto.connectrpc_es@1.3.0-20221020125208-34d970b699f8.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.connectrpc_es/-/cosmos_gogo-proto.connectrpc_es-1.3.0-20221020125208-34d970b699f8.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.connectrpc_es/-/cosmos_gogo-proto.connectrpc_es-1.3.0-20221020125208-34d970b699f8.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2125,7 +2189,7 @@ packages:
dev: false
/@buf/cosmos_gogo-proto.connectrpc_es@1.3.0-20230509103710-5e5b9fdd0180.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.connectrpc_es/-/cosmos_gogo-proto.connectrpc_es-1.3.0-20230509103710-5e5b9fdd0180.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_gogo-proto.connectrpc_es/-/cosmos_gogo-proto.connectrpc_es-1.3.0-20230509103710-5e5b9fdd0180.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2136,7 +2200,7 @@ packages:
dev: false
/@buf/cosmos_ibc.bufbuild_es@1.6.0-20230913112312-7ab44ae956a0.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.bufbuild_es/-/cosmos_ibc.bufbuild_es-1.6.0-20230913112312-7ab44ae956a0.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.bufbuild_es/-/cosmos_ibc.bufbuild_es-1.6.0-20230913112312-7ab44ae956a0.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2149,7 +2213,7 @@ packages:
dev: false
/@buf/cosmos_ibc.bufbuild_es@1.6.0-20240215124455-b32ecf3ebbcb.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.bufbuild_es/-/cosmos_ibc.bufbuild_es-1.6.0-20240215124455-b32ecf3ebbcb.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.bufbuild_es/-/cosmos_ibc.bufbuild_es-1.6.0-20240215124455-b32ecf3ebbcb.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2162,7 +2226,7 @@ packages:
dev: false
/@buf/cosmos_ibc.bufbuild_es@1.7.2-20230913112312-7ab44ae956a0.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.bufbuild_es/-/cosmos_ibc.bufbuild_es-1.7.2-20230913112312-7ab44ae956a0.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.bufbuild_es/-/cosmos_ibc.bufbuild_es-1.7.2-20230913112312-7ab44ae956a0.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2175,7 +2239,7 @@ packages:
dev: false
/@buf/cosmos_ibc.bufbuild_es@1.7.2-20240215124455-b32ecf3ebbcb.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.bufbuild_es/-/cosmos_ibc.bufbuild_es-1.7.2-20240215124455-b32ecf3ebbcb.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.bufbuild_es/-/cosmos_ibc.bufbuild_es-1.7.2-20240215124455-b32ecf3ebbcb.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2188,7 +2252,7 @@ packages:
dev: false
/@buf/cosmos_ibc.connectrpc_es@1.3.0-20230913112312-7ab44ae956a0.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.connectrpc_es/-/cosmos_ibc.connectrpc_es-1.3.0-20230913112312-7ab44ae956a0.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.connectrpc_es/-/cosmos_ibc.connectrpc_es-1.3.0-20230913112312-7ab44ae956a0.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2204,7 +2268,7 @@ packages:
dev: false
/@buf/cosmos_ibc.connectrpc_es@1.3.0-20240215124455-b32ecf3ebbcb.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.connectrpc_es/-/cosmos_ibc.connectrpc_es-1.3.0-20240215124455-b32ecf3ebbcb.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ibc.connectrpc_es/-/cosmos_ibc.connectrpc_es-1.3.0-20240215124455-b32ecf3ebbcb.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2220,7 +2284,7 @@ packages:
dev: false
/@buf/cosmos_ics23.bufbuild_es@1.6.0-20221207100654-55085f7c710a.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ics23.bufbuild_es/-/cosmos_ics23.bufbuild_es-1.6.0-20221207100654-55085f7c710a.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ics23.bufbuild_es/-/cosmos_ics23.bufbuild_es-1.6.0-20221207100654-55085f7c710a.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2228,7 +2292,7 @@ packages:
dev: false
/@buf/cosmos_ics23.bufbuild_es@1.7.2-20221207100654-55085f7c710a.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ics23.bufbuild_es/-/cosmos_ics23.bufbuild_es-1.7.2-20221207100654-55085f7c710a.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ics23.bufbuild_es/-/cosmos_ics23.bufbuild_es-1.7.2-20221207100654-55085f7c710a.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2236,7 +2300,7 @@ packages:
dev: false
/@buf/cosmos_ics23.connectrpc_es@1.3.0-20221207100654-55085f7c710a.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ics23.connectrpc_es/-/cosmos_ics23.connectrpc_es-1.3.0-20221207100654-55085f7c710a.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/cosmos_ics23.connectrpc_es/-/cosmos_ics23.connectrpc_es-1.3.0-20221207100654-55085f7c710a.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2247,7 +2311,7 @@ packages:
dev: false
/@buf/googleapis_googleapis.bufbuild_es@1.6.0-20220908150232-8d7204855ec1.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.6.0-20220908150232-8d7204855ec1.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.6.0-20220908150232-8d7204855ec1.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2255,7 +2319,7 @@ packages:
dev: false
/@buf/googleapis_googleapis.bufbuild_es@1.6.0-20221214150216-75b4300737fb.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.6.0-20221214150216-75b4300737fb.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.6.0-20221214150216-75b4300737fb.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2263,7 +2327,7 @@ packages:
dev: false
/@buf/googleapis_googleapis.bufbuild_es@1.6.0-20230502210827-cc916c318597.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.6.0-20230502210827-cc916c318597.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.6.0-20230502210827-cc916c318597.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2271,7 +2335,7 @@ packages:
dev: false
/@buf/googleapis_googleapis.bufbuild_es@1.7.2-20220908150232-8d7204855ec1.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.7.2-20220908150232-8d7204855ec1.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.7.2-20220908150232-8d7204855ec1.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2279,7 +2343,7 @@ packages:
dev: false
/@buf/googleapis_googleapis.bufbuild_es@1.7.2-20221214150216-75b4300737fb.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.7.2-20221214150216-75b4300737fb.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.7.2-20221214150216-75b4300737fb.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2287,7 +2351,7 @@ packages:
dev: false
/@buf/googleapis_googleapis.bufbuild_es@1.7.2-20230502210827-cc916c318597.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.7.2-20230502210827-cc916c318597.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.bufbuild_es/-/googleapis_googleapis.bufbuild_es-1.7.2-20230502210827-cc916c318597.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2295,7 +2359,7 @@ packages:
dev: false
/@buf/googleapis_googleapis.connectrpc_es@1.3.0-20220908150232-8d7204855ec1.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.connectrpc_es/-/googleapis_googleapis.connectrpc_es-1.3.0-20220908150232-8d7204855ec1.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.connectrpc_es/-/googleapis_googleapis.connectrpc_es-1.3.0-20220908150232-8d7204855ec1.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2306,7 +2370,7 @@ packages:
dev: false
/@buf/googleapis_googleapis.connectrpc_es@1.3.0-20221214150216-75b4300737fb.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.connectrpc_es/-/googleapis_googleapis.connectrpc_es-1.3.0-20221214150216-75b4300737fb.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.connectrpc_es/-/googleapis_googleapis.connectrpc_es-1.3.0-20221214150216-75b4300737fb.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2317,7 +2381,7 @@ packages:
dev: false
/@buf/googleapis_googleapis.connectrpc_es@1.3.0-20230502210827-cc916c318597.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.connectrpc_es/-/googleapis_googleapis.connectrpc_es-1.3.0-20230502210827-cc916c318597.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/googleapis_googleapis.connectrpc_es/-/googleapis_googleapis.connectrpc_es-1.3.0-20230502210827-cc916c318597.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2328,7 +2392,7 @@ packages:
dev: false
/@buf/penumbra-zone_penumbra.bufbuild_es@1.6.0-20240216020833-dd8ae3a6cd04.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/penumbra-zone_penumbra.bufbuild_es/-/penumbra-zone_penumbra.bufbuild_es-1.6.0-20240216020833-dd8ae3a6cd04.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/penumbra-zone_penumbra.bufbuild_es/-/penumbra-zone_penumbra.bufbuild_es-1.6.0-20240216020833-dd8ae3a6cd04.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.6.0
dependencies:
@@ -2342,7 +2406,7 @@ packages:
dev: false
/@buf/penumbra-zone_penumbra.bufbuild_es@1.7.2-20240216020833-dd8ae3a6cd04.1(@bufbuild/protobuf@1.7.2):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/penumbra-zone_penumbra.bufbuild_es/-/penumbra-zone_penumbra.bufbuild_es-1.7.2-20240216020833-dd8ae3a6cd04.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/penumbra-zone_penumbra.bufbuild_es/-/penumbra-zone_penumbra.bufbuild_es-1.7.2-20240216020833-dd8ae3a6cd04.1.tgz}
peerDependencies:
'@bufbuild/protobuf': ^1.7.2
dependencies:
@@ -2356,7 +2420,7 @@ packages:
dev: false
/@buf/penumbra-zone_penumbra.connectrpc_es@1.3.0-20240216020833-dd8ae3a6cd04.1(@bufbuild/protobuf@1.7.2)(@connectrpc/connect@1.3.0):
- resolution: {registry: https://buf.build/gen/npm/v1/, tarball: https://buf.build/gen/npm/v1/@buf/penumbra-zone_penumbra.connectrpc_es/-/penumbra-zone_penumbra.connectrpc_es-1.3.0-20240216020833-dd8ae3a6cd04.1.tgz}
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/penumbra-zone_penumbra.connectrpc_es/-/penumbra-zone_penumbra.connectrpc_es-1.3.0-20240216020833-dd8ae3a6cd04.1.tgz}
peerDependencies:
'@connectrpc/connect': ^1.3.0
dependencies:
@@ -2372,6 +2436,15 @@ packages:
- '@bufbuild/protobuf'
dev: false
+ /@buf/tendermint_tendermint.bufbuild_es@1.7.2-20231117195010-33ed361a9051.1(@bufbuild/protobuf@1.7.2):
+ resolution: {tarball: https://buf.build/gen/npm/v1/@buf/tendermint_tendermint.bufbuild_es/-/tendermint_tendermint.bufbuild_es-1.7.2-20231117195010-33ed361a9051.1.tgz}
+ peerDependencies:
+ '@bufbuild/protobuf': ^1.7.2
+ dependencies:
+ '@buf/cosmos_gogo-proto.bufbuild_es': 1.7.2-20230509103710-5e5b9fdd0180.1(@bufbuild/protobuf@1.7.2)
+ '@bufbuild/protobuf': 1.7.2
+ dev: false
+
/@bufbuild/protobuf@1.7.2:
resolution: {integrity: sha512-i5GE2Dk5ekdlK1TR7SugY4LWRrKSfb5T1Qn4unpIMbfxoeGKERKQ59HG3iYewacGD10SR7UzevfPnh6my4tNmQ==}
dev: false
@@ -3069,7 +3142,7 @@ packages:
chalk: 4.1.2
dev: true
- /@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.3.3)(vite@5.1.3):
+ /@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.3.3)(vite@5.1.4):
resolution: {integrity: sha512-2D6y7fNvFmsLmRt6UCOFJPvFoPMJGT0Uh1Wg0RaigUp7kdQPs6yYn8Dmx6GZkOH/NW0yMTwRz/p0SRMMRo50vA==}
peerDependencies:
typescript: '>= 4.3.x'
@@ -3083,7 +3156,7 @@ packages:
magic-string: 0.27.0
react-docgen-typescript: 2.2.2(typescript@5.3.3)
typescript: 5.3.3
- vite: 5.1.3(@types/node@20.11.19)
+ vite: 5.1.4(@types/node@20.11.19)
dev: true
/@jridgewell/gen-mapping@0.3.3:
@@ -3146,7 +3219,7 @@ packages:
react: '>=16'
dependencies:
'@types/mdx': 2.0.11
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
dev: true
@@ -3304,7 +3377,7 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
- /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
'@types/react': '*'
@@ -3318,13 +3391,13 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==}
peerDependencies:
'@types/react': '*'
@@ -3339,20 +3412,20 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
'@types/react': '*'
@@ -3366,16 +3439,16 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -3385,10 +3458,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-context@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-context@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
@@ -3398,10 +3471,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
peerDependencies:
'@types/react': '*'
@@ -3416,26 +3489,26 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-remove-scroll: 2.5.5(@types/react@18.2.55)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.57)(react@18.2.0)
dev: false
- /@radix-ui/react-direction@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-direction@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
@@ -3445,10 +3518,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
'@types/react': '*'
@@ -3463,17 +3536,17 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
peerDependencies:
'@types/react': '*'
@@ -3488,17 +3561,17 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
'@types/react': '*'
@@ -3508,10 +3581,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
peerDependencies:
'@types/react': '*'
@@ -3525,16 +3598,16 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
peerDependencies:
'@types/react': '*'
@@ -3548,10 +3621,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -3564,7 +3637,7 @@ packages:
dependencies:
react: 18.2.0
- /@radix-ui/react-id@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-id@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
@@ -3574,11 +3647,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-navigation-menu@1.1.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Cc+seCS3PmWmjI51ufGG7zp1cAAIRqHVw7C9LOA2TZ+R4hG6rDvHcTqIsEEFLmZO3zNVH72jOOE7kKNy8W+RtA==}
peerDependencies:
'@types/react': '*'
@@ -3593,26 +3666,26 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==}
peerDependencies:
'@types/react': '*'
@@ -3627,27 +3700,27 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-remove-scroll: 2.5.5(@types/react@18.2.55)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.57)(react@18.2.0)
dev: false
- /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
'@types/react': '*'
@@ -3662,22 +3735,22 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@floating-ui/react-dom': 2.0.8(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.55)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.57)(react@18.2.0)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
peerDependencies:
'@types/react': '*'
@@ -3692,22 +3765,22 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@floating-ui/react-dom': 2.0.8(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.55)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.57)(react@18.2.0)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
'@types/react': '*'
@@ -3721,14 +3794,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
peerDependencies:
'@types/react': '*'
@@ -3742,14 +3815,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
'@types/react': '*'
@@ -3763,15 +3836,15 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
@@ -3785,13 +3858,13 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-progress@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-progress@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-5G6Om/tYSxjSeEdrb1VfKkfZfn/1IlPWd731h2RfPuSbIfNUgfqAwbKfJCg/PP6nuUCTrYzalwHSpSinoWoCag==}
peerDependencies:
'@types/react': '*'
@@ -3805,15 +3878,15 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
'@types/react': '*'
@@ -3828,20 +3901,20 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-select@1.2.2(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
peerDependencies:
'@types/react': '*'
@@ -3857,32 +3930,32 @@ packages:
'@babel/runtime': 7.23.9
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-remove-scroll: 2.5.5(@types/react@18.2.55)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.57)(react@18.2.0)
dev: true
- /@radix-ui/react-select@2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-select@2.0.0(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==}
peerDependencies:
'@types/react': '*'
@@ -3898,32 +3971,32 @@ packages:
'@babel/runtime': 7.23.9
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-remove-scroll: 2.5.5(@types/react@18.2.55)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.57)(react@18.2.0)
dev: false
- /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
peerDependencies:
'@types/react': '*'
@@ -3937,14 +4010,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-slot@1.0.2(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-slot@1.0.2(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -3954,11 +4027,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==}
peerDependencies:
'@types/react': '*'
@@ -3973,19 +4046,19 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==}
peerDependencies:
'@types/react': '*'
@@ -4000,20 +4073,20 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-fRLn227WHIBRSzuRzGJ8W+5YALxofH23y0MlPLddaIpLpCDqdE0NZlS2NRQDRiptfxDeeCjgFIpexB1/zkxDlw==}
peerDependencies:
'@types/react': '*'
@@ -4028,24 +4101,24 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==}
peerDependencies:
'@types/react': '*'
@@ -4060,19 +4133,19 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==}
peerDependencies:
'@types/react': '*'
@@ -4087,14 +4160,14 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==}
peerDependencies:
'@types/react': '*'
@@ -4109,19 +4182,19 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==}
peerDependencies:
'@types/react': '*'
@@ -4136,24 +4209,24 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
'@types/react': '*'
@@ -4163,10 +4236,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
'@types/react': '*'
@@ -4176,11 +4249,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
'@types/react': '*'
@@ -4190,11 +4263,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
'@types/react': '*'
@@ -4204,10 +4277,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
'@types/react': '*'
@@ -4217,10 +4290,10 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
'@types/react': '*'
@@ -4231,10 +4304,10 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-use-size@1.0.1(@types/react@18.2.55)(react@18.2.0):
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
'@types/react': '*'
@@ -4244,11 +4317,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.55)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.57)(react@18.2.0)
+ '@types/react': 18.2.57
react: 18.2.0
- /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
'@types/react': '*'
@@ -4262,8 +4335,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.9
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.55
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.57
'@types/react-dom': 18.2.19
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -4273,8 +4346,8 @@ packages:
dependencies:
'@babel/runtime': 7.23.9
- /@remix-run/router@1.15.0:
- resolution: {integrity: sha512-HOil5aFtme37dVQTB6M34G95kPM3MMuqSmIRVCC52eKV+Y/tGSqw9P3rWhlAx6A+mz+MoX+XxsGsNJbaI5qCgQ==}
+ /@remix-run/router@1.15.1:
+ resolution: {integrity: sha512-zcU0gM3z+3iqj8UX45AmWY810l3oUmXM7uH4dt5xtzvMhRtYVhKGOmgOd1877dOPPepfCjUv57w+syamWIYe7w==}
engines: {node: '>=14.0.0'}
dev: false
@@ -4302,92 +4375,92 @@ packages:
picomatch: 2.3.1
dev: true
- /@rollup/rollup-android-arm-eabi@4.11.0:
- resolution: {integrity: sha512-BV+u2QSfK3i1o6FucqJh5IK9cjAU6icjFFhvknzFgu472jzl0bBojfDAkJLBEsHFMo+YZg6rthBvBBt8z12IBQ==}
+ /@rollup/rollup-android-arm-eabi@4.12.0:
+ resolution: {integrity: sha512-+ac02NL/2TCKRrJu2wffk1kZ+RyqxVUlbjSagNgPm94frxtr+XDL12E5Ll1enWskLrtrZ2r8L3wED1orIibV/w==}
cpu: [arm]
os: [android]
requiresBuild: true
optional: true
- /@rollup/rollup-android-arm64@4.11.0:
- resolution: {integrity: sha512-0ij3iw7sT5jbcdXofWO2NqDNjSVVsf6itcAkV2I6Xsq4+6wjW1A8rViVB67TfBEan7PV2kbLzT8rhOVWLI2YXw==}
+ /@rollup/rollup-android-arm64@4.12.0:
+ resolution: {integrity: sha512-OBqcX2BMe6nvjQ0Nyp7cC90cnumt8PXmO7Dp3gfAju/6YwG0Tj74z1vKrfRz7qAv23nBcYM8BCbhrsWqO7PzQQ==}
cpu: [arm64]
os: [android]
requiresBuild: true
optional: true
- /@rollup/rollup-darwin-arm64@4.11.0:
- resolution: {integrity: sha512-yPLs6RbbBMupArf6qv1UDk6dzZvlH66z6NLYEwqTU0VHtss1wkI4UYeeMS7TVj5QRVvaNAWYKP0TD/MOeZ76Zg==}
+ /@rollup/rollup-darwin-arm64@4.12.0:
+ resolution: {integrity: sha512-X64tZd8dRE/QTrBIEs63kaOBG0b5GVEd3ccoLtyf6IdXtHdh8h+I56C2yC3PtC9Ucnv0CpNFJLqKFVgCYe0lOQ==}
cpu: [arm64]
os: [darwin]
requiresBuild: true
optional: true
- /@rollup/rollup-darwin-x64@4.11.0:
- resolution: {integrity: sha512-OvqIgwaGAwnASzXaZEeoJY3RltOFg+WUbdkdfoluh2iqatd090UeOG3A/h0wNZmE93dDew9tAtXgm3/+U/B6bw==}
+ /@rollup/rollup-darwin-x64@4.12.0:
+ resolution: {integrity: sha512-cc71KUZoVbUJmGP2cOuiZ9HSOP14AzBAThn3OU+9LcA1+IUqswJyR1cAJj3Mg55HbjZP6OLAIscbQsQLrpgTOg==}
cpu: [x64]
os: [darwin]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm-gnueabihf@4.11.0:
- resolution: {integrity: sha512-X17s4hZK3QbRmdAuLd2EE+qwwxL8JxyVupEqAkxKPa/IgX49ZO+vf0ka69gIKsaYeo6c1CuwY3k8trfDtZ9dFg==}
+ /@rollup/rollup-linux-arm-gnueabihf@4.12.0:
+ resolution: {integrity: sha512-a6w/Y3hyyO6GlpKL2xJ4IOh/7d+APaqLYdMf86xnczU3nurFTaVN9s9jOXQg97BE4nYm/7Ga51rjec5nfRdrvA==}
cpu: [arm]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm64-gnu@4.11.0:
- resolution: {integrity: sha512-673Lu9EJwxVB9NfYeA4AdNu0FOHz7g9t6N1DmT7bZPn1u6bTF+oZjj+fuxUcrfxWXE0r2jxl5QYMa9cUOj9NFg==}
+ /@rollup/rollup-linux-arm64-gnu@4.12.0:
+ resolution: {integrity: sha512-0fZBq27b+D7Ar5CQMofVN8sggOVhEtzFUwOwPppQt0k+VR+7UHMZZY4y+64WJ06XOhBTKXtQB/Sv0NwQMXyNAA==}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-arm64-musl@4.11.0:
- resolution: {integrity: sha512-yFW2msTAQNpPJaMmh2NpRalr1KXI7ZUjlN6dY/FhWlOclMrZezm5GIhy3cP4Ts2rIAC+IPLAjNibjp1BsxCVGg==}
+ /@rollup/rollup-linux-arm64-musl@4.12.0:
+ resolution: {integrity: sha512-eTvzUS3hhhlgeAv6bfigekzWZjaEX9xP9HhxB0Dvrdbkk5w/b+1Sxct2ZuDxNJKzsRStSq1EaEkVSEe7A7ipgQ==}
cpu: [arm64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-riscv64-gnu@4.11.0:
- resolution: {integrity: sha512-kKT9XIuhbvYgiA3cPAGntvrBgzhWkGpBMzuk1V12Xuoqg7CI41chye4HU0vLJnGf9MiZzfNh4I7StPeOzOWJfA==}
+ /@rollup/rollup-linux-riscv64-gnu@4.12.0:
+ resolution: {integrity: sha512-ix+qAB9qmrCRiaO71VFfY8rkiAZJL8zQRXveS27HS+pKdjwUfEhqo2+YF2oI+H/22Xsiski+qqwIBxVewLK7sw==}
cpu: [riscv64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-x64-gnu@4.11.0:
- resolution: {integrity: sha512-6q4ESWlyTO+erp1PSCmASac+ixaDv11dBk1fqyIuvIUc/CmRAX2Zk+2qK1FGo5q7kyDcjHCFVwgGFCGIZGVwCA==}
+ /@rollup/rollup-linux-x64-gnu@4.12.0:
+ resolution: {integrity: sha512-TenQhZVOtw/3qKOPa7d+QgkeM6xY0LtwzR8OplmyL5LrgTWIXpTQg2Q2ycBf8jm+SFW2Wt/DTn1gf7nFp3ssVA==}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-linux-x64-musl@4.11.0:
- resolution: {integrity: sha512-vIAQUmXeMLmaDN78HSE4Kh6xqof2e3TJUKr+LPqXWU4NYNON0MDN9h2+t4KHrPAQNmU3w1GxBQ/n01PaWFwa5w==}
+ /@rollup/rollup-linux-x64-musl@4.12.0:
+ resolution: {integrity: sha512-LfFdRhNnW0zdMvdCb5FNuWlls2WbbSridJvxOvYWgSBOYZtgBfW9UGNJG//rwMqTX1xQE9BAodvMH9tAusKDUw==}
cpu: [x64]
os: [linux]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-arm64-msvc@4.11.0:
- resolution: {integrity: sha512-LVXo9dDTGPr0nezMdqa1hK4JeoMZ02nstUxGYY/sMIDtTYlli1ZxTXBYAz3vzuuvKO4X6NBETciIh7N9+abT1g==}
+ /@rollup/rollup-win32-arm64-msvc@4.12.0:
+ resolution: {integrity: sha512-JPDxovheWNp6d7AHCgsUlkuCKvtu3RB55iNEkaQcf0ttsDU/JZF+iQnYcQJSk/7PtT4mjjVG8N1kpwnI9SLYaw==}
cpu: [arm64]
os: [win32]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-ia32-msvc@4.11.0:
- resolution: {integrity: sha512-xZVt6K70Gr3I7nUhug2dN6VRR1ibot3rXqXS3wo+8JP64t7djc3lBFyqO4GiVrhNaAIhUCJtwQ/20dr0h0thmQ==}
+ /@rollup/rollup-win32-ia32-msvc@4.12.0:
+ resolution: {integrity: sha512-fjtuvMWRGJn1oZacG8IPnzIV6GF2/XG+h71FKn76OYFqySXInJtseAqdprVTDTyqPxQOG9Exak5/E9Z3+EJ8ZA==}
cpu: [ia32]
os: [win32]
requiresBuild: true
optional: true
- /@rollup/rollup-win32-x64-msvc@4.11.0:
- resolution: {integrity: sha512-f3I7h9oTg79UitEco9/2bzwdciYkWr8pITs3meSDSlr1TdvQ7IxkQaaYN2YqZXX5uZhiYL+VuYDmHwNzhx+HOg==}
+ /@rollup/rollup-win32-x64-msvc@4.12.0:
+ resolution: {integrity: sha512-ZYmr5mS2wd4Dew/JjT0Fqi2NPB/ZhZ2VvPp7SmvPZb4Y1CG/LRcS6tcRo2cYU7zLK5A7cdbhWnnWmUjoI4qapg==}
cpu: [x64]
os: [win32]
requiresBuild: true
@@ -4400,15 +4473,15 @@ packages:
/@sinclair/typebox@0.27.8:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
- /@sindresorhus/merge-streams@2.2.1:
- resolution: {integrity: sha512-255V7MMIKw6aQ43Wbqp9HZ+VHn6acddERTLiiLnlcPLU9PdTq9Aijl12oklAgUEblLWye+vHLzmqBx6f2TGcZw==}
+ /@sindresorhus/merge-streams@2.3.0:
+ resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
engines: {node: '>=18'}
dev: true
- /@storybook/addon-actions@7.6.16:
- resolution: {integrity: sha512-wCpZljLXnu08TZzp+qL5AXousfUBzY6TgHVwn4yoZkMhPg3WLxZTceKYnc+XAxoMmdTrDjwanEF7v/uQ9eu64Q==}
+ /@storybook/addon-actions@7.6.17:
+ resolution: {integrity: sha512-TBphs4v6LRfyTpFo/WINF0TkMaE3rrNog7wW5mbz6n0j8o53kDN4o9ZEcygSL5zQX43CAaghQTeDCss7ueG7ZQ==}
dependencies:
- '@storybook/core-events': 7.6.16
+ '@storybook/core-events': 7.6.17
'@storybook/global': 5.0.0
'@types/uuid': 9.0.8
dequal: 2.0.3
@@ -4416,18 +4489,18 @@ packages:
uuid: 9.0.1
dev: true
- /@storybook/addon-backgrounds@7.6.16:
- resolution: {integrity: sha512-q9985hjtoX3ytvReV2YC4UY0FVASXFq2fW6RNOrrivw81UbW2SWxVG01vh7ZXjMrWbQ6r3yC05X9vVAmCa7TdQ==}
+ /@storybook/addon-backgrounds@7.6.17:
+ resolution: {integrity: sha512-7dize7x8+37PH77kmt69b0xSaeDqOcZ4fpzW6+hk53hIaCVU26eGs4+j+743Xva31eOgZWNLupUhOpUDc6SqZw==}
dependencies:
'@storybook/global': 5.0.0
memoizerific: 1.11.3
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-controls@7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-WeIuwyGxaMMClWSHhSH0ibwPSarEFtxE6SPQxCTmGIeD11bn5vQ6UUrmm9A2xbFqHOJBoB60TJhw69alnI0AHA==}
+ /@storybook/addon-controls@7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-zR0aLaUF7FtV/nMRyfniFbCls/e0DAAoXACuOAUAwNAv0lbIS8AyZZiHSmKucCvziUQ6WceeCC7+du3C+9y0rQ==}
dependencies:
- '@storybook/blocks': 7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/blocks': 7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
lodash: 4.17.21
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -4439,27 +4512,27 @@ packages:
- supports-color
dev: true
- /@storybook/addon-docs@7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-X4WLAwwxGq9ki49FtERT5VHstGeZYca+l+8lxVXW6NQYuQ1xCeSy5puwknDv5p5u4thIVW2Fa4Uvma7wCfddtg==}
+ /@storybook/addon-docs@7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-FKa4Mdy7nhgvEVZJHpMkHriDzpVHbohn87zv9NCL+Ctjs1iAmzGwxEm0culszyDS1HN2ToVoY0h8CSi2RSSZqA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@jest/transform': 29.7.0
'@mdx-js/react': 2.3.0(react@18.2.0)
- '@storybook/blocks': 7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 7.6.16
- '@storybook/components': 7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/csf-plugin': 7.6.16
- '@storybook/csf-tools': 7.6.16
+ '@storybook/blocks': 7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.6.17
+ '@storybook/components': 7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/csf-plugin': 7.6.17
+ '@storybook/csf-tools': 7.6.17
'@storybook/global': 5.0.0
'@storybook/mdx2-csf': 1.1.0
- '@storybook/node-logger': 7.6.16
- '@storybook/postinstall': 7.6.16
- '@storybook/preview-api': 7.6.16
- '@storybook/react-dom-shim': 7.6.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/theming': 7.6.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.6.16
+ '@storybook/node-logger': 7.6.17
+ '@storybook/postinstall': 7.6.17
+ '@storybook/preview-api': 7.6.17
+ '@storybook/react-dom-shim': 7.6.17(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/theming': 7.6.17(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.17
fs-extra: 11.2.0
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -4473,25 +4546,25 @@ packages:
- supports-color
dev: true
- /@storybook/addon-essentials@7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-LTrsud7yphxA7dpbk8TvIsHXqk5Wkq3JAwby3yQDEOFakpgNeXj8b6rlr9CHJja2p13pB4LuXokLk8t+qJGnQQ==}
+ /@storybook/addon-essentials@7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-qlSpamxuYfT2taF953nC9QijGF2pSbg1ewMNpdwLTj16PTZvR/d8NCDMTJujI1bDwM2m18u8Yc43ibh5LEmxCw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/addon-actions': 7.6.16
- '@storybook/addon-backgrounds': 7.6.16
- '@storybook/addon-controls': 7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-docs': 7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/addon-highlight': 7.6.16
- '@storybook/addon-measure': 7.6.16
- '@storybook/addon-outline': 7.6.16
- '@storybook/addon-toolbars': 7.6.16
- '@storybook/addon-viewport': 7.6.16
- '@storybook/core-common': 7.6.16
- '@storybook/manager-api': 7.6.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/node-logger': 7.6.16
- '@storybook/preview-api': 7.6.16
+ '@storybook/addon-actions': 7.6.17
+ '@storybook/addon-backgrounds': 7.6.17
+ '@storybook/addon-controls': 7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-docs': 7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/addon-highlight': 7.6.17
+ '@storybook/addon-measure': 7.6.17
+ '@storybook/addon-outline': 7.6.17
+ '@storybook/addon-toolbars': 7.6.17
+ '@storybook/addon-viewport': 7.6.17
+ '@storybook/core-common': 7.6.17
+ '@storybook/manager-api': 7.6.17(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/node-logger': 7.6.17
+ '@storybook/preview-api': 7.6.17
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
ts-dedent: 2.2.0
@@ -4502,24 +4575,24 @@ packages:
- supports-color
dev: true
- /@storybook/addon-highlight@7.6.16:
- resolution: {integrity: sha512-DJtUBiButx6cz55eaRe5JFVBORVtp3Htr9PnxWVGEy4Ki5aoYCYWxMcPOuXVFvtWgBmh6d3HO0pEd888qPr60g==}
+ /@storybook/addon-highlight@7.6.17:
+ resolution: {integrity: sha512-R1yBPUUqGn+60aJakn8q+5Zt34E/gU3n3VmgPdryP0LJUdZ5q1/RZShoVDV+yYQ40htMH6oaCv3OyyPzFAGJ6A==}
dependencies:
'@storybook/global': 5.0.0
dev: true
- /@storybook/addon-interactions@7.6.16:
- resolution: {integrity: sha512-nOjbQCqX+u3yAwlaGHQZCoSkdsvctfiWxcUjMwDBdky2vPKUGLpfJs65w31ay/UgeR+ZWYROGwVMkOHzB4GOIA==}
+ /@storybook/addon-interactions@7.6.17:
+ resolution: {integrity: sha512-6zlX+RDQ1PlA6fp7C+hun8t7h2RXfCGs5dGrhEenp2lqnR/rYuUJRC0tmKpkZBb8kZVcbSChzkB/JYkBjBCzpQ==}
dependencies:
'@storybook/global': 5.0.0
- '@storybook/types': 7.6.16
+ '@storybook/types': 7.6.17
jest-mock: 27.5.1
polished: 4.3.1
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-links@7.6.16(react@18.2.0):
- resolution: {integrity: sha512-+582ePJxvweYZB5s133Uou6YRzZtnXGMRtKMJVovy/P5cWtq8FS5wzyMJPeK4z6ioR6BQJQVF2NV5lfrjoxpKQ==}
+ /@storybook/addon-links@7.6.17(react@18.2.0):
+ resolution: {integrity: sha512-iFUwKObRn0EKI0zMETsil2p9a/81rCuSMEWECsi+khkCAs1FUnD2cT6Ag5ydcNcBXsdtdfDJdtXQrkw+TSoStQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
peerDependenciesMeta:
@@ -4532,60 +4605,60 @@ packages:
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-measure@7.6.16:
- resolution: {integrity: sha512-lQw7WXEeLuvDe3bfi7699WnHMryLIRnoT/w7oHqvS19UHp2HR0TKqYiPPppI6Yy4RoWHx+qFhKZJlajFyKDGfg==}
+ /@storybook/addon-measure@7.6.17:
+ resolution: {integrity: sha512-O5vnHZNkduvZ95jf1UssbOl6ivIxzl5tv+4EpScPYId7w700bxWsJH+QX7ip6KlrCf2o3iUhmPe8bm05ghG2KA==}
dependencies:
'@storybook/global': 5.0.0
tiny-invariant: 1.3.1
dev: true
- /@storybook/addon-outline@7.6.16:
- resolution: {integrity: sha512-bG9KN10ANLUDIsm4e6RXRsCZ++b8pyfYTyu0MlSNXf6KdYcuDvdTY59gj6RIeVGKqWeX5yYCYUm2oPLtkms1NQ==}
+ /@storybook/addon-outline@7.6.17:
+ resolution: {integrity: sha512-9o9JXDsYjNaDgz/cY5+jv694+aik/1aiRGGvsCv68e1p/ob0glkGKav4lnJe2VJqD+gCmaARoD8GOJlhoQl8JQ==}
dependencies:
'@storybook/global': 5.0.0
ts-dedent: 2.2.0
dev: true
- /@storybook/addon-postcss@2.0.0(webpack@5.90.2):
+ /@storybook/addon-postcss@2.0.0(webpack@5.90.3):
resolution: {integrity: sha512-Nt82A7e9zJH4+A+VzLKKswUfru+T6FJTakj4dccP0i8DSn7a0CkzRPrLuZBq8tg4voV6gD74bcDf3gViCVBGtA==}
engines: {node: '>=10', yarn: ^1.17.0}
dependencies:
'@storybook/node-logger': 6.5.16
- css-loader: 3.6.0(webpack@5.90.2)
+ css-loader: 3.6.0(webpack@5.90.3)
postcss: 7.0.39
- postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.90.2)
- style-loader: 1.3.0(webpack@5.90.2)
+ postcss-loader: 4.3.0(postcss@7.0.39)(webpack@5.90.3)
+ style-loader: 1.3.0(webpack@5.90.3)
transitivePeerDependencies:
- webpack
dev: true
- /@storybook/addon-toolbars@7.6.16:
- resolution: {integrity: sha512-6wSNXe50auEVwHCcupYPrJkpzQFugumEBfgYuQ6ICW9k2xJtGtahy7TyM9sZbYgnDkoTm2ba7UhML6Noy3JuUg==}
+ /@storybook/addon-toolbars@7.6.17:
+ resolution: {integrity: sha512-UMrchbUHiyWrh6WuGnpy34Jqzkx/63B+MSgb3CW7YsQaXz64kE0Rol0TNSznnB+mYXplcqH+ndI4r4kFsmgwDg==}
dev: true
- /@storybook/addon-viewport@7.6.16:
- resolution: {integrity: sha512-WkvixYHncLXpAeEnktjfYIffJ3b6poymB+wDbHKK/tg7m3N8llLlys64nvyeb7DbZ/+1yJls3K1DVbk1AIEHrQ==}
+ /@storybook/addon-viewport@7.6.17:
+ resolution: {integrity: sha512-sA0QCcf4QAMixWvn8uvRYPfkKCSl6JajJaAspoPqXSxHEpK7uwOlpg3kqFU5XJJPXD0X957M+ONgNvBzYqSpEw==}
dependencies:
memoizerific: 1.11.3
dev: true
- /@storybook/blocks@7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-rWG9a7BbK0qYvge1oJTIpAbcQ4eOSxetKqgeZc7jxQGeJw0Xvq7C/CmkBY4ZrdP8nj7M7R1Yw49u6OV4aXlyOg==}
+ /@storybook/blocks@7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-PsNVoe0bX1mMn4Kk3nbKZ0ItDZZ0YJnYAFJ6toAbsyBAbgzg1sce88sQinzvbn58/RT9MPKeWMPB45ZS7ggiNg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@storybook/channels': 7.6.16
- '@storybook/client-logger': 7.6.16
- '@storybook/components': 7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/core-events': 7.6.16
+ '@storybook/channels': 7.6.17
+ '@storybook/client-logger': 7.6.17
+ '@storybook/components': 7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/core-events': 7.6.17
'@storybook/csf': 0.1.2
- '@storybook/docs-tools': 7.6.16
+ '@storybook/docs-tools': 7.6.17
'@storybook/global': 5.0.0
- '@storybook/manager-api': 7.6.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/preview-api': 7.6.16
- '@storybook/theming': 7.6.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.6.16
+ '@storybook/manager-api': 7.6.17(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/preview-api': 7.6.17
+ '@storybook/theming': 7.6.17(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.17
'@types/lodash': 4.14.202
color-convert: 2.0.1
dequal: 2.0.3
@@ -4607,13 +4680,13 @@ packages:
- supports-color
dev: true
- /@storybook/builder-manager@7.6.16:
- resolution: {integrity: sha512-QTmvjmk49tpPe5IFM3SwHvRb1P6G0PTip4mCO7ab/zKiWaXlg9QZF5su+2e3KSil4ATssr3ybUlKlkqSubaCyQ==}
+ /@storybook/builder-manager@7.6.17:
+ resolution: {integrity: sha512-Sj8hcDYiPCCMfeLzus37czl0zdrAxAz4IyYam2jBjVymrIrcDAFyL1OCZvnq33ft179QYQWhUs9qwzVmlR/ZWg==}
dependencies:
'@fal-works/esbuild-plugin-global-externals': 2.1.2
- '@storybook/core-common': 7.6.16
- '@storybook/manager': 7.6.16
- '@storybook/node-logger': 7.6.16
+ '@storybook/core-common': 7.6.17
+ '@storybook/manager': 7.6.17
+ '@storybook/node-logger': 7.6.17
'@types/ejs': 3.1.5
'@types/find-cache-dir': 3.2.1
'@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20)
@@ -4631,8 +4704,8 @@ packages:
- supports-color
dev: true
- /@storybook/builder-vite@7.6.16(typescript@5.3.3)(vite@5.1.3):
- resolution: {integrity: sha512-i0nL6ajWpcThnTP4ndUXdIKdOatYC6vWE4HxMjuRjfEgKBXn4pJbDBbQZ+L5jFau7aLGOTXiSQ69ONEhSjhllg==}
+ /@storybook/builder-vite@7.6.17(typescript@5.3.3)(vite@5.1.4):
+ resolution: {integrity: sha512-2Q32qalI401EsKKr9Hkk8TAOcHEerqwsjCpQgTNJnCu6GgCVKoVUcb99oRbR9Vyg0xh+jb19XiWqqQujFtLYlQ==}
peerDependencies:
'@preact/preset-vite': '*'
typescript: '>= 4.3.x'
@@ -4646,14 +4719,14 @@ packages:
vite-plugin-glimmerx:
optional: true
dependencies:
- '@storybook/channels': 7.6.16
- '@storybook/client-logger': 7.6.16
- '@storybook/core-common': 7.6.16
- '@storybook/csf-plugin': 7.6.16
- '@storybook/node-logger': 7.6.16
- '@storybook/preview': 7.6.16
- '@storybook/preview-api': 7.6.16
- '@storybook/types': 7.6.16
+ '@storybook/channels': 7.6.17
+ '@storybook/client-logger': 7.6.17
+ '@storybook/core-common': 7.6.17
+ '@storybook/csf-plugin': 7.6.17
+ '@storybook/node-logger': 7.6.17
+ '@storybook/preview': 7.6.17
+ '@storybook/preview-api': 7.6.17
+ '@storybook/types': 7.6.17
'@types/find-cache-dir': 3.2.1
browser-assert: 1.2.1
es-module-lexer: 0.9.3
@@ -4663,39 +4736,39 @@ packages:
magic-string: 0.30.7
rollup: 3.29.4
typescript: 5.3.3
- vite: 5.1.3(@types/node@20.11.19)
+ vite: 5.1.4(@types/node@20.11.19)
transitivePeerDependencies:
- encoding
- supports-color
dev: true
- /@storybook/channels@7.6.16:
- resolution: {integrity: sha512-LKB0t4OGISez1O4TRJ/CDPxlb2wAW7gg8YRL91VVUHeffVyr4bnpklvMbLbuEcYrysM82Q2UMB9ipQdyK6Issg==}
+ /@storybook/channels@7.6.17:
+ resolution: {integrity: sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==}
dependencies:
- '@storybook/client-logger': 7.6.16
- '@storybook/core-events': 7.6.16
+ '@storybook/client-logger': 7.6.17
+ '@storybook/core-events': 7.6.17
'@storybook/global': 5.0.0
qs: 6.11.2
telejson: 7.2.0
tiny-invariant: 1.3.1
dev: true
- /@storybook/cli@7.6.16:
- resolution: {integrity: sha512-bFEiAXv69ZLqFnxAMCEBTxZqLnPG0GAEpGqwpPbt2lk6lLtro8g+//OR9RiztZt0YFHpp0YK5WCy6Xq0gwXcPw==}
+ /@storybook/cli@7.6.17:
+ resolution: {integrity: sha512-1sCo+nCqyR+nKfTcEidVu8XzNoECC7Y1l+uW38/r7s2f/TdDorXaIGAVrpjbSaXSoQpx5DxYJVaKCcQuOgqwcA==}
hasBin: true
dependencies:
'@babel/core': 7.23.9
'@babel/preset-env': 7.23.9(@babel/core@7.23.9)
'@babel/types': 7.23.9
'@ndelangen/get-tarball': 3.0.9
- '@storybook/codemod': 7.6.16
- '@storybook/core-common': 7.6.16
- '@storybook/core-events': 7.6.16
- '@storybook/core-server': 7.6.16
- '@storybook/csf-tools': 7.6.16
- '@storybook/node-logger': 7.6.16
- '@storybook/telemetry': 7.6.16
- '@storybook/types': 7.6.16
+ '@storybook/codemod': 7.6.17
+ '@storybook/core-common': 7.6.17
+ '@storybook/core-events': 7.6.17
+ '@storybook/core-server': 7.6.17
+ '@storybook/csf-tools': 7.6.17
+ '@storybook/node-logger': 7.6.17
+ '@storybook/telemetry': 7.6.17
+ '@storybook/types': 7.6.17
'@types/semver': 7.5.7
'@yarnpkg/fslib': 2.10.3
'@yarnpkg/libzip': 2.3.0
@@ -4712,7 +4785,7 @@ packages:
get-port: 5.1.1
giget: 1.2.1
globby: 11.1.0
- jscodeshift: 0.15.1(@babel/preset-env@7.23.9)
+ jscodeshift: 0.15.2(@babel/preset-env@7.23.9)
leven: 3.1.0
ora: 5.4.1
prettier: 2.8.8
@@ -4731,26 +4804,26 @@ packages:
- utf-8-validate
dev: true
- /@storybook/client-logger@7.6.16:
- resolution: {integrity: sha512-Vquhmgk/SO0VeAkojcA1juuicBHoTST+f4XwBvyUNiebOSOdGIkxHVxpDFXu2kS0aKflFBEutX2IgoysDup+fQ==}
+ /@storybook/client-logger@7.6.17:
+ resolution: {integrity: sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==}
dependencies:
'@storybook/global': 5.0.0
dev: true
- /@storybook/codemod@7.6.16:
- resolution: {integrity: sha512-RlL2I7UV+ef3j+6NaFa1Y6j/hU9KDKssync1GfKypUKlFAP76ozfpRWdDVEkc/29JruEEkbvMiUxQdP7CE3PMQ==}
+ /@storybook/codemod@7.6.17:
+ resolution: {integrity: sha512-JuTmf2u3C4fCnjO7o3dqRgrq3ozNYfWlrRP8xuIdvT7niMap7a396hJtSKqS10FxCgKFcMAOsRgrCalH1dWxUg==}
dependencies:
'@babel/core': 7.23.9
'@babel/preset-env': 7.23.9(@babel/core@7.23.9)
'@babel/types': 7.23.9
'@storybook/csf': 0.1.2
- '@storybook/csf-tools': 7.6.16
- '@storybook/node-logger': 7.6.16
- '@storybook/types': 7.6.16
+ '@storybook/csf-tools': 7.6.17
+ '@storybook/node-logger': 7.6.17
+ '@storybook/types': 7.6.17
'@types/cross-spawn': 6.0.6
cross-spawn: 7.0.3
globby: 11.1.0
- jscodeshift: 0.15.1(@babel/preset-env@7.23.9)
+ jscodeshift: 0.15.2(@babel/preset-env@7.23.9)
lodash: 4.17.21
prettier: 2.8.8
recast: 0.23.4
@@ -4758,19 +4831,19 @@ packages:
- supports-color
dev: true
- /@storybook/components@7.6.16(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-5KZQqxFiVEGM485ceF/7PmiNEkHgouEa8ZUJvDGrW9Ap5MfN0xqAuyTTveHvZzGrKp0YlOcOnpqwu/cSk0HQKA==}
+ /@storybook/components@7.6.17(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-lbh7GynMidA+CZcJnstVku6Nhs+YkqjYaZ+mKPugvlVhGVWv0DaaeQFVuZ8cJtUGJ/5FFU4Y+n+gylYUHkGBMA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
- '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0)
- '@storybook/client-logger': 7.6.16
+ '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.19)(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/client-logger': 7.6.17
'@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
- '@storybook/theming': 7.6.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.6.16
+ '@storybook/theming': 7.6.17(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.17
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -4781,19 +4854,19 @@ packages:
- '@types/react-dom'
dev: true
- /@storybook/core-client@7.6.16:
- resolution: {integrity: sha512-ogVwvjpNPrcv8Lk9oSa38b7X4NNgYIgVnCjvvr9FCmhh4xAuA4XNUyB+vyAdK4JOT0/CoMKRpTp+VL5e2+BZbg==}
+ /@storybook/core-client@7.6.17:
+ resolution: {integrity: sha512-LuDbADK+DPNAOOCXOlvY09hdGVueXlDetsdOJ/DgYnSa9QSWv9Uv+F8QcEgR3QckZJbPlztKJIVLgP2n/Xkijw==}
dependencies:
- '@storybook/client-logger': 7.6.16
- '@storybook/preview-api': 7.6.16
+ '@storybook/client-logger': 7.6.17
+ '@storybook/preview-api': 7.6.17
dev: true
- /@storybook/core-common@7.6.16:
- resolution: {integrity: sha512-Xn3Fbo4k9RRKgYzOBx9CeJFpWgS9gkcdo3J9XMMzmUqdZ+MUGT74kl2sMmzSypcH5aI1AUl5vZIKvLwloliejw==}
+ /@storybook/core-common@7.6.17:
+ resolution: {integrity: sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==}
dependencies:
- '@storybook/core-events': 7.6.16
- '@storybook/node-logger': 7.6.16
- '@storybook/types': 7.6.16
+ '@storybook/core-events': 7.6.17
+ '@storybook/node-logger': 7.6.17
+ '@storybook/types': 7.6.17
'@types/find-cache-dir': 3.2.1
'@types/node': 18.19.17
'@types/node-fetch': 2.6.11
@@ -4819,30 +4892,30 @@ packages:
- supports-color
dev: true
- /@storybook/core-events@7.6.16:
- resolution: {integrity: sha512-mkBqzrbp6vmdjo0fBZGrFQQ4YdvMFxF6AesdKTf8EzPa69FoxnhQLrmQ4aXF+9vXkxfXVJF2HfpoTEdfqqAo+w==}
+ /@storybook/core-events@7.6.17:
+ resolution: {integrity: sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==}
dependencies:
ts-dedent: 2.2.0
dev: true
- /@storybook/core-server@7.6.16:
- resolution: {integrity: sha512-Sj8j45XMg1bI7ktMqj9gxXHsZ4d1KgR+2A2eaxR7Heho7253WkUltLYxhu3hdH01rRJXYFxn/zZBxYfEib94Vg==}
+ /@storybook/core-server@7.6.17:
+ resolution: {integrity: sha512-KWGhTTaL1Q14FolcoKKZgytlPJUbH6sbJ1Ptj/84EYWFewcnEgVs0Zlnh1VStRZg+Rd1WC1V4yVd/bbDzxrvQA==}
dependencies:
'@aw-web-design/x-default-browser': 1.4.126
'@discoveryjs/json-ext': 0.5.7
- '@storybook/builder-manager': 7.6.16
- '@storybook/channels': 7.6.16
- '@storybook/core-common': 7.6.16
- '@storybook/core-events': 7.6.16
+ '@storybook/builder-manager': 7.6.17
+ '@storybook/channels': 7.6.17
+ '@storybook/core-common': 7.6.17
+ '@storybook/core-events': 7.6.17
'@storybook/csf': 0.1.2
- '@storybook/csf-tools': 7.6.16
+ '@storybook/csf-tools': 7.6.17
'@storybook/docs-mdx': 0.1.0
'@storybook/global': 5.0.0
- '@storybook/manager': 7.6.16
- '@storybook/node-logger': 7.6.16
- '@storybook/preview-api': 7.6.16
- '@storybook/telemetry': 7.6.16
- '@storybook/types': 7.6.16
+ '@storybook/manager': 7.6.17
+ '@storybook/node-logger': 7.6.17
+ '@storybook/preview-api': 7.6.17
+ '@storybook/telemetry': 7.6.17
+ '@storybook/types': 7.6.17
'@types/detect-port': 1.3.5
'@types/node': 18.19.17
'@types/pretty-hrtime': 1.0.3
@@ -4855,7 +4928,7 @@ packages:
express: 4.18.2
fs-extra: 11.2.0
globby: 11.1.0
- ip: 2.0.0
+ ip: 2.0.1
lodash: 4.17.21
open: 8.4.2
pretty-hrtime: 1.0.3
@@ -4876,24 +4949,24 @@ packages:
- utf-8-validate
dev: true
- /@storybook/csf-plugin@7.6.16:
- resolution: {integrity: sha512-hslhGtnijMpL7HAcYYgIuo6acVLP7BDptflMwIyGFWKK3MHjMxqWTZ3Sj+BV1yg/pYZdqC2NYyUypeuuSpivSA==}
+ /@storybook/csf-plugin@7.6.17:
+ resolution: {integrity: sha512-xTHv9BUh3bkDVCvcbmdfVF0/e96BdrEgqPJ3G3RmKbSzWLOkQ2U9yiPfHzT0KJWPhVwj12fjfZp0zunu+pcS6Q==}
dependencies:
- '@storybook/csf-tools': 7.6.16
+ '@storybook/csf-tools': 7.6.17
unplugin: 1.7.1
transitivePeerDependencies:
- supports-color
dev: true
- /@storybook/csf-tools@7.6.16:
- resolution: {integrity: sha512-8kVBq3UKDrEQq7rTHlNMoe1TDOTdO8iL8Jtv/FMDu/Qzj6AoT8/bjrtPsGjGMfVjP7QwBDeiLn6rStT4TlVGog==}
+ /@storybook/csf-tools@7.6.17:
+ resolution: {integrity: sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==}
dependencies:
'@babel/generator': 7.23.6
'@babel/parser': 7.23.9
'@babel/traverse': 7.23.9
'@babel/types': 7.23.9
'@storybook/csf': 0.1.2
- '@storybook/types': 7.6.16
+ '@storybook/types': 7.6.17
fs-extra: 11.2.0
recast: 0.23.4
ts-dedent: 2.2.0
@@ -4917,12 +4990,12 @@ packages:
resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==}
dev: true
- /@storybook/docs-tools@7.6.16:
- resolution: {integrity: sha512-meuq5uLGBLOSJXKeCt9iEH0uVKgGqwfEBi2T4E2w3BcubC/6oQ3VeZl25/KO+l1XcLmOg9LkN2ZOtLV9TEiVLQ==}
+ /@storybook/docs-tools@7.6.17:
+ resolution: {integrity: sha512-bYrLoj06adqklyLkEwD32C0Ww6t+9ZVvrJHiVT42bIhTRpFiFPAetl1a9KPHtFLnfduh4n2IxIr1jv32ThPDTA==}
dependencies:
- '@storybook/core-common': 7.6.16
- '@storybook/preview-api': 7.6.16
- '@storybook/types': 7.6.16
+ '@storybook/core-common': 7.6.17
+ '@storybook/preview-api': 7.6.17
+ '@storybook/types': 7.6.17
'@types/doctrine': 0.0.3
assert: 2.1.0
doctrine: 3.0.0
@@ -4936,21 +5009,21 @@ packages:
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
dev: true
- /@storybook/manager-api@7.6.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-pX3xw4DsPhYTWEDspsnJiZSoakn0z3Rdt9YmHU0/NaFBLn64EClzd9XMDnGXnZzW1DtdG6T6l2CwDNDCNIVkWg==}
+ /@storybook/manager-api@7.6.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-IJIV1Yc6yw1dhCY4tReHCfBnUKDqEBnMyHp3mbXpsaHxnxJZrXO45WjRAZIKlQKhl/Ge1CrnznmHRCmYgqmrWg==}
dependencies:
- '@storybook/channels': 7.6.16
- '@storybook/client-logger': 7.6.16
- '@storybook/core-events': 7.6.16
+ '@storybook/channels': 7.6.17
+ '@storybook/client-logger': 7.6.17
+ '@storybook/core-events': 7.6.17
'@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
- '@storybook/router': 7.6.16
- '@storybook/theming': 7.6.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.6.16
+ '@storybook/router': 7.6.17
+ '@storybook/theming': 7.6.17(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.17
dequal: 2.0.3
lodash: 4.17.21
memoizerific: 1.11.3
- store2: 2.14.2
+ store2: 2.14.3
telejson: 7.2.0
ts-dedent: 2.2.0
transitivePeerDependencies:
@@ -4958,8 +5031,8 @@ packages:
- react-dom
dev: true
- /@storybook/manager@7.6.16:
- resolution: {integrity: sha512-CPDhgT4jjF0CDgLDxT/R+amMJXpXxSsVp+XzahPbEB9Yu4v0W0HW3f2vSuNJXwpfofrPSkbJweO/oC4ioOtavw==}
+ /@storybook/manager@7.6.17:
+ resolution: {integrity: sha512-A1LDDIqMpwRzq/dqkbbiza0QI04o4ZHCl2a3UMDZUV/+QLc2nsr2DAaLk4CVL4/cIc5zGqmIcaOTvprx2YKVBw==}
dev: true
/@storybook/mdx2-csf@1.1.0:
@@ -4976,23 +5049,23 @@ packages:
pretty-hrtime: 1.0.3
dev: true
- /@storybook/node-logger@7.6.16:
- resolution: {integrity: sha512-s18wgtLynLWnunz47lkVIpjk8J6LxT/OmfzkggieU8cG2XYRbf//t7/EOUpOqK77+Xqm3epSwgDAxOXGfjOjAA==}
+ /@storybook/node-logger@7.6.17:
+ resolution: {integrity: sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==}
dev: true
- /@storybook/postinstall@7.6.16:
- resolution: {integrity: sha512-axWxj8e90+iLUZPGU9Zvn2Jc/GQrWspu8DpwRCS7N23epTVW6n6OWp31GAShdSx8Oh5lmCMXGegTd1v2Mwc61A==}
+ /@storybook/postinstall@7.6.17:
+ resolution: {integrity: sha512-WaWqB8o9vUc9aaVls+povQSVirf1Xd1LZcVhUKfAocAF3mzYUsnJsVqvnbjRj/F96UFVihOyDt9Zjl/9OvrCvQ==}
dev: true
- /@storybook/preview-api@7.6.16:
- resolution: {integrity: sha512-V9x9HOhi4CJuiX+0a7GU0JlfRAp6txStGMkV0DrCATbxSWpK+6d5x2Te521z16V3RIMMmYn33aEyarOp5WjTqw==}
+ /@storybook/preview-api@7.6.17:
+ resolution: {integrity: sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==}
dependencies:
- '@storybook/channels': 7.6.16
- '@storybook/client-logger': 7.6.16
- '@storybook/core-events': 7.6.16
+ '@storybook/channels': 7.6.17
+ '@storybook/client-logger': 7.6.17
+ '@storybook/core-events': 7.6.17
'@storybook/csf': 0.1.2
'@storybook/global': 5.0.0
- '@storybook/types': 7.6.16
+ '@storybook/types': 7.6.17
'@types/qs': 6.9.11
dequal: 2.0.3
lodash: 4.17.21
@@ -5003,12 +5076,12 @@ packages:
util-deprecate: 1.0.2
dev: true
- /@storybook/preview@7.6.16:
- resolution: {integrity: sha512-q4DbLn9kEK8JM9s+2oIjXBPHQhY0tQzsZ5hFeq833vNFcmuHnXS+WYk20b+UkmzL6j+E8pLm8WpI7rdbi0ZUVA==}
+ /@storybook/preview@7.6.17:
+ resolution: {integrity: sha512-LvkMYK/y6alGjwRVNDIKL1lFlbyZ0H0c8iAbcQkiMoaFiujMQyVswMDKlWcj42Upfr/B1igydiruomc+eUt0mw==}
dev: true
- /@storybook/react-dom-shim@7.6.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-F6pGgL2pWy5utn6m2YAVz1PYZO3pdlNHfT85g5Om3q7CR4msWpMQ1O/oEVYgqfJ9UfOqCV/mHeDWICzUa7pv6g==}
+ /@storybook/react-dom-shim@7.6.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-32Sa/G+WnvaPiQ1Wvjjw5UM9rr2c4GDohwCcWVv3/LJuiFPqNS6zglAtmnsrlIBnUwRBMLMh/ekCTdqMiUmfDw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -5017,24 +5090,24 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/react-vite@7.6.16(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@5.1.3):
- resolution: {integrity: sha512-6Qu04cnKtpHyIWHt/1pjcRYS3ROoiF9gV1jgE8bubMODbFuT38w0Hu6JIcyH2FdAvhujjt4gQT5oXJRvXX1cqQ==}
+ /@storybook/react-vite@7.6.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@5.1.4):
+ resolution: {integrity: sha512-4dIm3CuRl44X1TLzN3WoZh/bChzJF7Ud28li9atj9C8db0bb/y0zl8cahrsRFoR7/LyfqdOVLqaztrnA5SsWfg==}
engines: {node: '>=16'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.3.3)(vite@5.1.3)
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.3.3)(vite@5.1.4)
'@rollup/pluginutils': 5.1.0
- '@storybook/builder-vite': 7.6.16(typescript@5.3.3)(vite@5.1.3)
- '@storybook/react': 7.6.16(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
- '@vitejs/plugin-react': 3.1.0(vite@5.1.3)
+ '@storybook/builder-vite': 7.6.17(typescript@5.3.3)(vite@5.1.4)
+ '@storybook/react': 7.6.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)
+ '@vitejs/plugin-react': 3.1.0(vite@5.1.4)
magic-string: 0.30.7
react: 18.2.0
react-docgen: 7.0.3
react-dom: 18.2.0(react@18.2.0)
- vite: 5.1.3(@types/node@20.11.19)
+ vite: 5.1.4(@types/node@20.11.19)
transitivePeerDependencies:
- '@preact/preset-vite'
- encoding
@@ -5044,8 +5117,8 @@ packages:
- vite-plugin-glimmerx
dev: true
- /@storybook/react@7.6.16(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
- resolution: {integrity: sha512-3vzjtEHu9xXLz827JiwC448ZVattzAR5qkfVg3dVOD1MtLH8LTJ/gOqv/8Kq0fOtEgOdlcAF4jQV/XAL6pEAkQ==}
+ /@storybook/react@7.6.17(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-lVqzQSU03rRJWYW+gK2gq6mSo3/qtnVICY8B8oP7gc36jVu4ksDIu45bTfukM618ODkUZy0vZe6T4engK3azjA==}
engines: {node: '>=16.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -5055,13 +5128,13 @@ packages:
typescript:
optional: true
dependencies:
- '@storybook/client-logger': 7.6.16
- '@storybook/core-client': 7.6.16
- '@storybook/docs-tools': 7.6.16
+ '@storybook/client-logger': 7.6.17
+ '@storybook/core-client': 7.6.17
+ '@storybook/docs-tools': 7.6.17
'@storybook/global': 5.0.0
- '@storybook/preview-api': 7.6.16
- '@storybook/react-dom-shim': 7.6.16(react-dom@18.2.0)(react@18.2.0)
- '@storybook/types': 7.6.16
+ '@storybook/preview-api': 7.6.17
+ '@storybook/react-dom-shim': 7.6.17(react-dom@18.2.0)(react@18.2.0)
+ '@storybook/types': 7.6.17
'@types/escodegen': 0.0.6
'@types/estree': 0.0.51
'@types/node': 18.19.17
@@ -5084,20 +5157,20 @@ packages:
- supports-color
dev: true
- /@storybook/router@7.6.16:
- resolution: {integrity: sha512-PgVuzs83g4dq2r1qdcc0wvS1Pe1UpKdq54uy4TkBrrei7hBzB/+POztPXs0rVXXBXdCQT/jomLmRo/yC45bsGg==}
+ /@storybook/router@7.6.17:
+ resolution: {integrity: sha512-GnyC0j6Wi5hT4qRhSyT8NPtJfGmf82uZw97LQRWeyYu5gWEshUdM7aj40XlNiScd5cZDp0owO1idduVF2k2l2A==}
dependencies:
- '@storybook/client-logger': 7.6.16
+ '@storybook/client-logger': 7.6.17
memoizerific: 1.11.3
qs: 6.11.2
dev: true
- /@storybook/telemetry@7.6.16:
- resolution: {integrity: sha512-5Uaz6zSRBEio89ScrAN7KKz+mBTJ5Jc/8Uf0uUHIhAxiHprs16PhIBo6MtBeWPQoiNwytN884sAtiUFAP4zFQQ==}
+ /@storybook/telemetry@7.6.17:
+ resolution: {integrity: sha512-WOcOAmmengYnGInH98Px44F47DSpLyk20BM+Z/IIQDzfttGOLlxNqBBG1XTEhNRn+AYuk4aZ2JEed2lCjVIxcA==}
dependencies:
- '@storybook/client-logger': 7.6.16
- '@storybook/core-common': 7.6.16
- '@storybook/csf-tools': 7.6.16
+ '@storybook/client-logger': 7.6.17
+ '@storybook/core-common': 7.6.17
+ '@storybook/csf-tools': 7.6.17
chalk: 4.1.2
detect-package-manager: 2.0.1
fetch-retry: 5.0.6
@@ -5108,31 +5181,31 @@ packages:
- supports-color
dev: true
- /@storybook/theming@7.6.16(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-ZiUyakApTzAiAR28JwqbqY426U1OlJPG/Y7ddQgYgTsdoRFR1iMewAxWW1LId1q3B1dtiIHAccqhocEMNcYkLA==}
+ /@storybook/theming@7.6.17(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-ZbaBt3KAbmBtfjNqgMY7wPMBshhSJlhodyMNQypv+95xLD/R+Az6aBYbpVAOygLaUQaQk4ar7H/Ww6lFIoiFbA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies:
'@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
- '@storybook/client-logger': 7.6.16
+ '@storybook/client-logger': 7.6.17
'@storybook/global': 5.0.0
memoizerific: 1.11.3
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: true
- /@storybook/types@7.6.16:
- resolution: {integrity: sha512-Ld4dKbgSbvqThdBNwNlOxQu5AiS6U9DXI5evf/j83eWs6skO3OBdQp+GWa6sUCI9eRqH8tFsw/YmMcIZ4uZrBQ==}
+ /@storybook/types@7.6.17:
+ resolution: {integrity: sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==}
dependencies:
- '@storybook/channels': 7.6.16
+ '@storybook/channels': 7.6.17
'@types/babel__core': 7.20.5
'@types/express': 4.17.21
file-system-cache: 2.3.0
dev: true
- /@swc/core-darwin-arm64@1.4.1:
- resolution: {integrity: sha512-ePyfx0348UbR4DOAW24TedeJbafnzha8liXFGuQ4bdXtEVXhLfPngprrxKrAddCuv42F9aTxydlF6+adD3FBhA==}
+ /@swc/core-darwin-arm64@1.4.2:
+ resolution: {integrity: sha512-1uSdAn1MRK5C1m/TvLZ2RDvr0zLvochgrZ2xL+lRzugLlCTlSA+Q4TWtrZaOz+vnnFVliCpw7c7qu0JouhgQIw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
@@ -5140,8 +5213,8 @@ packages:
dev: true
optional: true
- /@swc/core-darwin-x64@1.4.1:
- resolution: {integrity: sha512-eLf4JSe6VkCMdDowjM8XNC5rO+BrgfbluEzAVtKR8L2HacNYukieumN7EzpYCi0uF1BYwu1ku6tLyG2r0VcGxA==}
+ /@swc/core-darwin-x64@1.4.2:
+ resolution: {integrity: sha512-TYD28+dCQKeuxxcy7gLJUCFLqrwDZnHtC2z7cdeGfZpbI2mbfppfTf2wUPzqZk3gEC96zHd4Yr37V3Tvzar+lQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -5149,8 +5222,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.4.1:
- resolution: {integrity: sha512-K8VtTLWMw+rkN/jDC9o/Q9SMmzdiHwYo2CfgkwVT29NsGccwmNhCQx6XoYiPKyKGIFKt4tdQnJHKUFzxUqQVtQ==}
+ /@swc/core-linux-arm-gnueabihf@1.4.2:
+ resolution: {integrity: sha512-Eyqipf7ZPGj0vplKHo8JUOoU1un2sg5PjJMpEesX0k+6HKE2T8pdyeyXODN0YTFqzndSa/J43EEPXm+rHAsLFQ==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
@@ -5158,8 +5231,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-gnu@1.4.1:
- resolution: {integrity: sha512-0e8p4g0Bfkt8lkiWgcdiENH3RzkcqKtpRXIVNGOmVc0OBkvc2tpm2WTx/eoCnes2HpTT4CTtR3Zljj4knQ4Fvw==}
+ /@swc/core-linux-arm64-gnu@1.4.2:
+ resolution: {integrity: sha512-wZn02DH8VYPv3FC0ub4my52Rttsus/rFw+UUfzdb3tHMHXB66LqN+rR0ssIOZrH6K+VLN6qpTw9VizjyoH0BxA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -5167,8 +5240,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-musl@1.4.1:
- resolution: {integrity: sha512-b/vWGQo2n7lZVUnSQ7NBq3Qrj85GrAPPiRbpqaIGwOytiFSk8VULFihbEUwDe0rXgY4LDm8z8wkgADZcLnmdUA==}
+ /@swc/core-linux-arm64-musl@1.4.2:
+ resolution: {integrity: sha512-3G0D5z9hUj9bXNcwmA1eGiFTwe5rWkuL3DsoviTj73TKLpk7u64ND0XjEfO0huVv4vVu9H1jodrKb7nvln/dlw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -5176,8 +5249,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-gnu@1.4.1:
- resolution: {integrity: sha512-AFMQlvkKEdNi1Vk2GFTxxJzbICttBsOQaXa98kFTeWTnFFIyiIj2w7Sk8XRTEJ/AjF8ia8JPKb1zddBWr9+bEQ==}
+ /@swc/core-linux-x64-gnu@1.4.2:
+ resolution: {integrity: sha512-LFxn9U8cjmYHw3jrdPNqPAkBGglKE3tCZ8rA7hYyp0BFxuo7L2ZcEnPm4RFpmSCCsExFH+LEJWuMGgWERoktvg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -5185,8 +5258,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-musl@1.4.1:
- resolution: {integrity: sha512-QX2MxIECX1gfvUVZY+jk528/oFkS9MAl76e3ZRvG2KC/aKlCQL0KSzcTSm13mOxkDKS30EaGRDRQWNukGpMeRg==}
+ /@swc/core-linux-x64-musl@1.4.2:
+ resolution: {integrity: sha512-dp0fAmreeVVYTUcb4u9njTPrYzKnbIH0EhH2qvC9GOYNNREUu2GezSIDgonjOXkHiTCvopG4xU7y56XtXj4VrQ==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -5194,8 +5267,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-arm64-msvc@1.4.1:
- resolution: {integrity: sha512-OklkJYXXI/tntD2zaY8i3iZldpyDw5q+NAP3k9OlQ7wXXf37djRsHLV0NW4+ZNHBjE9xp2RsXJ0jlOJhfgGoFA==}
+ /@swc/core-win32-arm64-msvc@1.4.2:
+ resolution: {integrity: sha512-HlVIiLMQkzthAdqMslQhDkoXJ5+AOLUSTV6fm6shFKZKqc/9cJvr4S8UveNERL9zUficA36yM3bbfo36McwnvQ==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
@@ -5203,8 +5276,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-ia32-msvc@1.4.1:
- resolution: {integrity: sha512-MBuc3/QfKX9FnLOU7iGN+6yHRTQaPQ9WskiC8s8JFiKQ+7I2p25tay2RplR9dIEEGgVAu6L7auv96LbNTh+FaA==}
+ /@swc/core-win32-ia32-msvc@1.4.2:
+ resolution: {integrity: sha512-WCF8faPGjCl4oIgugkp+kL9nl3nUATlzKXCEGFowMEmVVCFM0GsqlmGdPp1pjZoWc9tpYanoXQDnp5IvlDSLhA==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
@@ -5212,8 +5285,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-x64-msvc@1.4.1:
- resolution: {integrity: sha512-lu4h4wFBb/bOK6N2MuZwg7TrEpwYXgpQf5R7ObNSXL65BwZ9BG8XRzD+dLJmALu8l5N08rP/TrpoKRoGT4WSxw==}
+ /@swc/core-win32-x64-msvc@1.4.2:
+ resolution: {integrity: sha512-oV71rwiSpA5xre2C5570BhCsg1HF97SNLsZ/12xv7zayGzqr3yvFALFJN8tHKpqUdCB4FGPjoP3JFdV3i+1wUw==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -5221,8 +5294,8 @@ packages:
dev: true
optional: true
- /@swc/core@1.4.1:
- resolution: {integrity: sha512-3y+Y8js+e7BbM16iND+6Rcs3jdiL28q3iVtYsCviYSSpP2uUVKkp5sJnCY4pg8AaVvyN7CGQHO7gLEZQ5ByozQ==}
+ /@swc/core@1.4.2:
+ resolution: {integrity: sha512-vWgY07R/eqj1/a0vsRKLI9o9klGZfpLNOVEnrv4nrccxBgYPjcf22IWwAoaBJ+wpA7Q4fVjCUM8lP0m01dpxcg==}
engines: {node: '>=10'}
requiresBuild: true
peerDependencies:
@@ -5234,16 +5307,16 @@ packages:
'@swc/counter': 0.1.3
'@swc/types': 0.1.5
optionalDependencies:
- '@swc/core-darwin-arm64': 1.4.1
- '@swc/core-darwin-x64': 1.4.1
- '@swc/core-linux-arm-gnueabihf': 1.4.1
- '@swc/core-linux-arm64-gnu': 1.4.1
- '@swc/core-linux-arm64-musl': 1.4.1
- '@swc/core-linux-x64-gnu': 1.4.1
- '@swc/core-linux-x64-musl': 1.4.1
- '@swc/core-win32-arm64-msvc': 1.4.1
- '@swc/core-win32-ia32-msvc': 1.4.1
- '@swc/core-win32-x64-msvc': 1.4.1
+ '@swc/core-darwin-arm64': 1.4.2
+ '@swc/core-darwin-x64': 1.4.2
+ '@swc/core-linux-arm-gnueabihf': 1.4.2
+ '@swc/core-linux-arm64-gnu': 1.4.2
+ '@swc/core-linux-arm64-musl': 1.4.2
+ '@swc/core-linux-x64-gnu': 1.4.2
+ '@swc/core-linux-x64-musl': 1.4.2
+ '@swc/core-win32-arm64-msvc': 1.4.2
+ '@swc/core-win32-ia32-msvc': 1.4.2
+ '@swc/core-win32-x64-msvc': 1.4.2
dev: true
/@swc/counter@0.1.3:
@@ -5254,16 +5327,16 @@ packages:
resolution: {integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==}
dev: true
- /@tanstack/query-core@5.20.5:
- resolution: {integrity: sha512-T1W28gGgWn0A++tH3lxj3ZuUVZZorsiKcv+R50RwmPYz62YoDEkG4/aXHZELGkRp4DfrW07dyq2K5dvJ4Wl1aA==}
+ /@tanstack/query-core@5.22.2:
+ resolution: {integrity: sha512-z3PwKFUFACMUqe1eyesCIKg3Jv1mysSrYfrEW5ww5DCDUD4zlpTKBvUDaEjsfZzL3ULrFLDM9yVUxI/fega1Qg==}
dev: false
- /@tanstack/react-query@5.20.5(react@18.2.0):
- resolution: {integrity: sha512-6MHwJ8G9cnOC/XKrwt56QMc91vN7hLlAQNUA0ubP7h9Jj3a/CmkUwT6ALdFbnVP+PsYdhW3WONa8WQ4VcTaSLQ==}
+ /@tanstack/react-query@5.22.2(react@18.2.0):
+ resolution: {integrity: sha512-TaxJDRzJ8/NWRT4lY2jguKCrNI6MRN+67dELzPjNUlvqzTxGANlMp68l7aC7hG8Bd1uHNxHl7ihv7MT50i/43A==}
peerDependencies:
react: ^18.0.0
dependencies:
- '@tanstack/query-core': 5.20.5
+ '@tanstack/query-core': 5.22.2
react: 18.2.0
dev: false
@@ -5281,7 +5354,7 @@ packages:
pretty-format: 27.5.1
dev: true
- /@testing-library/jest-dom@6.4.2(vitest@1.2.2):
+ /@testing-library/jest-dom@6.4.2(vitest@1.3.1):
resolution: {integrity: sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==}
engines: {node: '>=14', npm: '>=6', yarn: '>=1'}
peerDependencies:
@@ -5310,7 +5383,7 @@ packages:
dom-accessibility-api: 0.6.3
lodash: 4.17.21
redent: 3.0.0
- vitest: 1.2.2(@types/node@20.11.19)(@vitest/browser@1.2.2)(jsdom@24.0.0)
+ vitest: 1.3.1(@types/node@20.11.19)(@vitest/browser@1.3.1)(jsdom@24.0.0)
/@testing-library/react@14.2.1(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-sGdjws32ai5TLerhvzThYFbpnF9XtL65Cjf+gB0Dhr29BGqK+mAeN7SURSdu+eqgET4ANcWoC7FQpkaiGvBr+A==}
@@ -5688,16 +5761,16 @@ packages:
/@types/react-dom@18.2.19:
resolution: {integrity: sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA==}
dependencies:
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
/@types/react-helmet@6.1.11:
resolution: {integrity: sha512-0QcdGLddTERotCXo3VFlUSWO3ztraw8nZ6e3zJSgG7apwV5xt+pJUS8ewPBqT4NYB1optGLprNQzFleIY84u/g==}
dependencies:
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
dev: true
- /@types/react@18.2.55:
- resolution: {integrity: sha512-Y2Tz5P4yz23brwm2d7jNon39qoAtMMmalOQv6+fEFt1mT+FcM3D841wDpoUvFXhaYenuROCy3FZYqdTjM7qVyA==}
+ /@types/react@18.2.57:
+ resolution: {integrity: sha512-ZvQsktJgSYrQiMirAN60y4O/LRevIV8hUzSOSNB6gfR3/o3wCBFQx3sPwIYtuDMeiVgsSS3UzCV26tEzgnfvQw==}
dependencies:
'@types/prop-types': 15.7.11
'@types/scheduler': 0.16.8
@@ -5777,8 +5850,8 @@ packages:
'@types/yargs-parser': 21.0.3
dev: true
- /@typescript-eslint/eslint-plugin@7.0.1(@typescript-eslint/parser@7.0.1)(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-OLvgeBv3vXlnnJGIAgCLYKjgMEU+wBGj07MQ/nxAaON+3mLzX7mJbhRYrVGiVvFiXtwFlkcBa/TtmglHy0UbzQ==}
+ /@typescript-eslint/eslint-plugin@7.0.2(@typescript-eslint/parser@7.0.2)(eslint@8.56.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-/XtVZJtbaphtdrWjr+CJclaCVGPtOdBpFEnvtNf/jRV0IiEemRrL0qABex/nEt8isYcnFacm3nPHYQwL+Wb7qg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
'@typescript-eslint/parser': ^7.0.0
@@ -5789,11 +5862,11 @@ packages:
optional: true
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.0.1(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/scope-manager': 7.0.1
- '@typescript-eslint/type-utils': 7.0.1(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/utils': 7.0.1(eslint@8.56.0)(typescript@5.3.3)
- '@typescript-eslint/visitor-keys': 7.0.1
+ '@typescript-eslint/parser': 7.0.2(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/scope-manager': 7.0.2
+ '@typescript-eslint/type-utils': 7.0.2(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/utils': 7.0.2(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/visitor-keys': 7.0.2
debug: 4.3.4
eslint: 8.56.0
graphemer: 1.4.0
@@ -5826,8 +5899,8 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/parser@7.0.1(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-8GcRRZNzaHxKzBPU3tKtFNing571/GwPBeCvmAUw0yBtfE2XVd0zFKJIMSWkHJcPQi0ekxjIts6L/rrZq5cxGQ==}
+ /@typescript-eslint/parser@7.0.2(eslint@8.56.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-GdwfDglCxSmU+QTS9vhz2Sop46ebNCXpPPvsByK7hu0rFGRHL+AusKQJ7SoN+LbLh6APFpQwHKmDSwN35Z700Q==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -5836,10 +5909,10 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 7.0.1
- '@typescript-eslint/types': 7.0.1
- '@typescript-eslint/typescript-estree': 7.0.1(typescript@5.3.3)
- '@typescript-eslint/visitor-keys': 7.0.1
+ '@typescript-eslint/scope-manager': 7.0.2
+ '@typescript-eslint/types': 7.0.2
+ '@typescript-eslint/typescript-estree': 7.0.2(typescript@5.3.3)
+ '@typescript-eslint/visitor-keys': 7.0.2
debug: 4.3.4
eslint: 8.56.0
typescript: 5.3.3
@@ -5862,15 +5935,15 @@ packages:
'@typescript-eslint/visitor-keys': 6.21.0
dev: false
- /@typescript-eslint/scope-manager@7.0.1:
- resolution: {integrity: sha512-v7/T7As10g3bcWOOPAcbnMDuvctHzCFYCG/8R4bK4iYzdFqsZTbXGln0cZNVcwQcwewsYU2BJLay8j0/4zOk4w==}
+ /@typescript-eslint/scope-manager@7.0.2:
+ resolution: {integrity: sha512-l6sa2jF3h+qgN2qUMjVR3uCNGjWw4ahGfzIYsCtFrQJCjhbrDPdiihYT8FnnqFwsWX+20hK592yX9I2rxKTP4g==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 7.0.1
- '@typescript-eslint/visitor-keys': 7.0.1
+ '@typescript-eslint/types': 7.0.2
+ '@typescript-eslint/visitor-keys': 7.0.2
- /@typescript-eslint/type-utils@7.0.1(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-YtT9UcstTG5Yqy4xtLiClm1ZpM/pWVGFnkAa90UfdkkZsR1eP2mR/1jbHeYp8Ay1l1JHPyGvoUYR6o3On5Nhmw==}
+ /@typescript-eslint/type-utils@7.0.2(eslint@8.56.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-IKKDcFsKAYlk8Rs4wiFfEwJTQlHcdn8CLwLaxwd6zb8HNiMcQIFX9sWax2k4Cjj7l7mGS5N1zl7RCHOVwHq2VQ==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -5879,8 +5952,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 7.0.1(typescript@5.3.3)
- '@typescript-eslint/utils': 7.0.1(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/typescript-estree': 7.0.2(typescript@5.3.3)
+ '@typescript-eslint/utils': 7.0.2(eslint@8.56.0)(typescript@5.3.3)
debug: 4.3.4
eslint: 8.56.0
ts-api-utils: 1.2.1(typescript@5.3.3)
@@ -5898,8 +5971,8 @@ packages:
engines: {node: ^16.0.0 || >=18.0.0}
dev: false
- /@typescript-eslint/types@7.0.1:
- resolution: {integrity: sha512-uJDfmirz4FHib6ENju/7cz9SdMSkeVvJDK3VcMFvf/hAShg8C74FW+06MaQPODHfDJp/z/zHfgawIJRjlu0RLg==}
+ /@typescript-eslint/types@7.0.2:
+ resolution: {integrity: sha512-ZzcCQHj4JaXFjdOql6adYV4B/oFOFjPOC9XYwCaZFRvqN8Llfvv4gSxrkQkd2u4Ci62i2c6W6gkDwQJDaRc4nA==}
engines: {node: ^16.0.0 || >=18.0.0}
/@typescript-eslint/typescript-estree@5.62.0(typescript@5.3.3):
@@ -5945,8 +6018,8 @@ packages:
- supports-color
dev: false
- /@typescript-eslint/typescript-estree@7.0.1(typescript@5.3.3):
- resolution: {integrity: sha512-SO9wHb6ph0/FN5OJxH4MiPscGah5wjOd0RRpaLvuBv9g8565Fgu0uMySFEPqwPHiQU90yzJ2FjRYKGrAhS1xig==}
+ /@typescript-eslint/typescript-estree@7.0.2(typescript@5.3.3):
+ resolution: {integrity: sha512-3AMc8khTcELFWcKcPc0xiLviEvvfzATpdPj/DXuOGIdQIIFybf4DMT1vKRbuAEOFMwhWt7NFLXRkbjsvKZQyvw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
@@ -5954,8 +6027,8 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 7.0.1
- '@typescript-eslint/visitor-keys': 7.0.1
+ '@typescript-eslint/types': 7.0.2
+ '@typescript-eslint/visitor-keys': 7.0.2
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -6005,8 +6078,8 @@ packages:
- typescript
dev: false
- /@typescript-eslint/utils@7.0.1(eslint@8.56.0)(typescript@5.3.3):
- resolution: {integrity: sha512-oe4his30JgPbnv+9Vef1h48jm0S6ft4mNwi9wj7bX10joGn07QRfqIqFHoMiajrtoU88cIhXf8ahwgrcbNLgPA==}
+ /@typescript-eslint/utils@7.0.2(eslint@8.56.0)(typescript@5.3.3):
+ resolution: {integrity: sha512-PZPIONBIB/X684bhT1XlrkjNZJIEevwkKDsdwfiu1WeqBxYEEdIgVDgm8/bbKHVu+6YOpeRqcfImTdImx/4Bsw==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -6014,9 +6087,9 @@ packages:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.7
- '@typescript-eslint/scope-manager': 7.0.1
- '@typescript-eslint/types': 7.0.1
- '@typescript-eslint/typescript-estree': 7.0.1(typescript@5.3.3)
+ '@typescript-eslint/scope-manager': 7.0.2
+ '@typescript-eslint/types': 7.0.2
+ '@typescript-eslint/typescript-estree': 7.0.2(typescript@5.3.3)
eslint: 8.56.0
semver: 7.6.0
transitivePeerDependencies:
@@ -6039,37 +6112,37 @@ packages:
eslint-visitor-keys: 3.4.3
dev: false
- /@typescript-eslint/visitor-keys@7.0.1:
- resolution: {integrity: sha512-hwAgrOyk++RTXrP4KzCg7zB2U0xt7RUU0ZdMSCsqF3eKUwkdXUMyTb0qdCuji7VIbcpG62kKTU9M1J1c9UpFBw==}
+ /@typescript-eslint/visitor-keys@7.0.2:
+ resolution: {integrity: sha512-8Y+YiBmqPighbm5xA2k4wKTxRzx9EkBu7Rlw+WHqMvRJ3RPz/BMBO9b2ru0LUNmXg120PHUXD5+SWFy2R8DqlQ==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
- '@typescript-eslint/types': 7.0.1
+ '@typescript-eslint/types': 7.0.2
eslint-visitor-keys: 3.4.3
/@ungap/structured-clone@1.2.0:
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
- /@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.3):
+ /@vitejs/plugin-basic-ssl@1.1.0(vite@5.1.4):
resolution: {integrity: sha512-wO4Dk/rm8u7RNhOf95ZzcEmC9rYOncYgvq4z3duaJrCgjN8BxAnDVyndanfcJZ0O6XZzHz6Q0hTimxTg8Y9g/A==}
engines: {node: '>=14.6.0'}
peerDependencies:
vite: ^3.0.0 || ^4.0.0 || ^5.0.0
dependencies:
- vite: 5.1.3(@types/node@20.11.19)
+ vite: 5.1.4(@types/node@20.11.19)
dev: true
- /@vitejs/plugin-react-swc@3.6.0(vite@5.1.3):
+ /@vitejs/plugin-react-swc@3.6.0(vite@5.1.4):
resolution: {integrity: sha512-XFRbsGgpGxGzEV5i5+vRiro1bwcIaZDIdBRP16qwm+jP68ue/S8FJTBEgOeojtVDYrbSua3XFp71kC8VJE6v+g==}
peerDependencies:
vite: ^4 || ^5
dependencies:
- '@swc/core': 1.4.1
- vite: 5.1.3(@types/node@20.11.19)
+ '@swc/core': 1.4.2
+ vite: 5.1.4(@types/node@20.11.19)
transitivePeerDependencies:
- '@swc/helpers'
dev: true
- /@vitejs/plugin-react@3.1.0(vite@5.1.3):
+ /@vitejs/plugin-react@3.1.0(vite@5.1.4):
resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -6080,17 +6153,33 @@ packages:
'@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.9)
magic-string: 0.27.0
react-refresh: 0.14.0
- vite: 5.1.3(@types/node@20.11.19)
+ vite: 5.1.4(@types/node@20.11.19)
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@vitejs/plugin-react@4.2.1(vite@5.1.4):
+ resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ vite: ^4.2.0 || ^5.0.0
+ dependencies:
+ '@babel/core': 7.23.9
+ '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.9)
+ '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.9)
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.14.0
+ vite: 5.1.4(@types/node@20.11.19)
transitivePeerDependencies:
- supports-color
dev: true
- /@vitest/browser@1.2.2(playwright@1.41.2)(vitest@1.2.2):
- resolution: {integrity: sha512-N8myxNVLbS9AbZ7B2cK33HTGYVzUTDArbMh3hLojOxaj7s7ZrBYYmzs0Q5J2wyDrOgs51p6OUrrzAIb1Z+Ck3A==}
+ /@vitest/browser@1.3.1(playwright@1.41.2)(vitest@1.3.1):
+ resolution: {integrity: sha512-pRof8G8nqRWwg3ouyIctyhfIVk5jXgF056uF//sqdi37+pVtDz9kBI/RMu0xlc8tgCyJ2aEMfbgJZPUydlEVaQ==}
peerDependencies:
playwright: '*'
safaridriver: '*'
- vitest: ^1.0.0
+ vitest: 1.3.1
webdriverio: '*'
peerDependenciesMeta:
playwright:
@@ -6100,40 +6189,40 @@ packages:
webdriverio:
optional: true
dependencies:
- '@vitest/utils': 1.2.2
+ '@vitest/utils': 1.3.1
magic-string: 0.30.7
playwright: 1.41.2
sirv: 2.0.4
- vitest: 1.2.2(@types/node@20.11.19)(@vitest/browser@1.2.2)(jsdom@24.0.0)
+ vitest: 1.3.1(@types/node@20.11.19)(@vitest/browser@1.3.1)(jsdom@24.0.0)
- /@vitest/expect@1.2.2:
- resolution: {integrity: sha512-3jpcdPAD7LwHUUiT2pZTj2U82I2Tcgg2oVPvKxhn6mDI2On6tfvPQTjAI4628GUGDZrCm4Zna9iQHm5cEexOAg==}
+ /@vitest/expect@1.3.1:
+ resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==}
dependencies:
- '@vitest/spy': 1.2.2
- '@vitest/utils': 1.2.2
+ '@vitest/spy': 1.3.1
+ '@vitest/utils': 1.3.1
chai: 4.4.1
- /@vitest/runner@1.2.2:
- resolution: {integrity: sha512-JctG7QZ4LSDXr5CsUweFgcpEvrcxOV1Gft7uHrvkQ+fsAVylmWQvnaAr/HDp3LAH1fztGMQZugIheTWjaGzYIg==}
+ /@vitest/runner@1.3.1:
+ resolution: {integrity: sha512-5FzF9c3jG/z5bgCnjr8j9LNq/9OxV2uEBAITOXfoe3rdZJTdO7jzThth7FXv/6b+kdY65tpRQB7WaKhNZwX+Kg==}
dependencies:
- '@vitest/utils': 1.2.2
+ '@vitest/utils': 1.3.1
p-limit: 5.0.0
pathe: 1.1.2
- /@vitest/snapshot@1.2.2:
- resolution: {integrity: sha512-SmGY4saEw1+bwE1th6S/cZmPxz/Q4JWsl7LvbQIky2tKE35US4gd0Mjzqfr84/4OD0tikGWaWdMja/nWL5NIPA==}
+ /@vitest/snapshot@1.3.1:
+ resolution: {integrity: sha512-EF++BZbt6RZmOlE3SuTPu/NfwBF6q4ABS37HHXzs2LUVPBLx2QoY/K0fKpRChSo8eLiuxcbCVfqKgx/dplCDuQ==}
dependencies:
magic-string: 0.30.7
pathe: 1.1.2
pretty-format: 29.7.0
- /@vitest/spy@1.2.2:
- resolution: {integrity: sha512-k9Gcahssw8d7X3pSLq3e3XEu/0L78mUkCjivUqCQeXJm9clfXR/Td8+AP+VC1O6fKPIDLcHDTAmBOINVuv6+7g==}
+ /@vitest/spy@1.3.1:
+ resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==}
dependencies:
tinyspy: 2.2.1
- /@vitest/utils@1.2.2:
- resolution: {integrity: sha512-WKITBHLsBHlpjnDQahr+XK6RE7MiAsgrIkr0pGhQ9ygoxBfUeG0lUG5iLlzqjmKSlBv3+j5EGsriBzh+C3Tq9g==}
+ /@vitest/utils@1.3.1:
+ resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==}
dependencies:
diff-sequences: 29.6.3
estree-walker: 3.0.3
@@ -6246,29 +6335,29 @@ packages:
'@xtuc/long': 4.2.2
dev: true
- /@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.90.2):
+ /@webpack-cli/configtest@2.1.1(webpack-cli@5.1.4)(webpack@5.90.3):
resolution: {integrity: sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==}
engines: {node: '>=14.15.0'}
peerDependencies:
webpack: 5.x.x
webpack-cli: 5.x.x
dependencies:
- webpack: 5.90.2(webpack-cli@5.1.4)
- webpack-cli: 5.1.4(webpack@5.90.2)
+ webpack: 5.90.3(webpack-cli@5.1.4)
+ webpack-cli: 5.1.4(webpack@5.90.3)
dev: true
- /@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.90.2):
+ /@webpack-cli/info@2.0.2(webpack-cli@5.1.4)(webpack@5.90.3):
resolution: {integrity: sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==}
engines: {node: '>=14.15.0'}
peerDependencies:
webpack: 5.x.x
webpack-cli: 5.x.x
dependencies:
- webpack: 5.90.2(webpack-cli@5.1.4)
- webpack-cli: 5.1.4(webpack@5.90.2)
+ webpack: 5.90.3(webpack-cli@5.1.4)
+ webpack-cli: 5.1.4(webpack@5.90.3)
dev: true
- /@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack@5.90.2):
+ /@webpack-cli/serve@2.0.5(webpack-cli@5.1.4)(webpack@5.90.3):
resolution: {integrity: sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==}
engines: {node: '>=14.15.0'}
peerDependencies:
@@ -6279,8 +6368,8 @@ packages:
webpack-dev-server:
optional: true
dependencies:
- webpack: 5.90.2(webpack-cli@5.1.4)
- webpack-cli: 5.1.4(webpack@5.90.2)
+ webpack: 5.90.3(webpack-cli@5.1.4)
+ webpack-cli: 5.1.4(webpack@5.90.3)
dev: true
/@xtuc/ieee754@1.2.0:
@@ -6715,7 +6804,7 @@ packages:
es-errors: 1.3.0
get-intrinsic: 1.2.4
is-array-buffer: 3.0.4
- is-shared-array-buffer: 1.0.2
+ is-shared-array-buffer: 1.0.3
dev: false
/arrify@2.0.1:
@@ -6797,7 +6886,7 @@ packages:
postcss: ^8.1.0
dependencies:
browserslist: 4.23.0
- caniuse-lite: 1.0.30001587
+ caniuse-lite: 1.0.30001589
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.0.0
@@ -6805,9 +6894,11 @@ packages:
postcss-value-parser: 4.2.0
dev: true
- /available-typed-arrays@1.0.6:
- resolution: {integrity: sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==}
+ /available-typed-arrays@1.0.7:
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
+ dependencies:
+ possible-typed-array-names: 1.0.0
/axe-core@4.7.0:
resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
@@ -7045,8 +7136,8 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001587
- electron-to-chromium: 1.4.671
+ caniuse-lite: 1.0.30001589
+ electron-to-chromium: 1.4.679
node-releases: 2.0.14
update-browserslist-db: 1.0.13(browserslist@4.23.0)
dev: true
@@ -7173,8 +7264,8 @@ packages:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
dev: false
- /caniuse-lite@1.0.30001587:
- resolution: {integrity: sha512-HMFNotUmLXn71BQxg8cijvqxnIAofforZOwGsxyXJ0qugTdspUF4sPSJ2vhgprHCB996tIDzEq1ubumPDV8ULA==}
+ /caniuse-lite@1.0.30001589:
+ resolution: {integrity: sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg==}
dev: true
/cardinal@2.1.1:
@@ -7610,7 +7701,7 @@ packages:
engines: {node: '>= 0.6'}
dev: true
- /copy-webpack-plugin@12.0.2(webpack@5.90.2):
+ /copy-webpack-plugin@12.0.2(webpack@5.90.3):
resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
@@ -7622,7 +7713,7 @@ packages:
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.90.2(webpack-cli@5.1.4)
+ webpack: 5.90.3(webpack-cli@5.1.4)
dev: true
/core-js-compat@3.36.0:
@@ -7747,7 +7838,7 @@ packages:
engines: {node: '>=4'}
dev: false
- /css-loader@3.6.0(webpack@5.90.2):
+ /css-loader@3.6.0(webpack@5.90.3):
resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==}
engines: {node: '>= 8.9.0'}
peerDependencies:
@@ -7766,10 +7857,10 @@ packages:
postcss-value-parser: 4.2.0
schema-utils: 2.7.1
semver: 6.3.1
- webpack: 5.90.2(esbuild@0.18.20)
+ webpack: 5.90.3(esbuild@0.18.20)
dev: true
- /css-loader@6.10.0(webpack@5.90.2):
+ /css-loader@6.10.0(webpack@5.90.3):
resolution: {integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==}
engines: {node: '>= 12.13.0'}
peerDependencies:
@@ -7789,7 +7880,7 @@ packages:
postcss-modules-values: 4.0.0(postcss@8.4.35)
postcss-value-parser: 4.2.0
semver: 7.6.0
- webpack: 5.90.2(webpack-cli@5.1.4)
+ webpack: 5.90.3(webpack-cli@5.1.4)
dev: true
/css-select@4.3.0:
@@ -7861,6 +7952,10 @@ packages:
whatwg-mimetype: 4.0.0
whatwg-url: 14.0.0
+ /date-fns@3.3.1:
+ resolution: {integrity: sha512-y8e109LYGgoQDveiEBD3DYXKba1jWf5BA8YU1FL5Tvm0BTdEfy54WLCwnuYWZNnzzvALy/QQ4Hov+Q9RVRv+Zw==}
+ dev: false
+
/debounce@1.2.1:
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
dev: false
@@ -7930,7 +8025,7 @@ packages:
is-array-buffer: 3.0.4
is-date-object: 1.0.5
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
+ is-shared-array-buffer: 1.0.3
isarray: 2.0.5
object-is: 1.1.5
object-keys: 1.1.1
@@ -8186,8 +8281,8 @@ packages:
engines: {node: '>=12'}
dev: false
- /dotenv@16.4.4:
- resolution: {integrity: sha512-XvPXc8XAQThSjAbY6cQ/9PcBXmFoWuw1sQ3b8HqUCR6ziGXjkTi//kB9SWa2UwqlgdAIuRqAa/9hVljzPehbYg==}
+ /dotenv@16.4.5:
+ resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
dev: true
@@ -8231,8 +8326,8 @@ packages:
jake: 10.8.7
dev: true
- /electron-to-chromium@1.4.671:
- resolution: {integrity: sha512-UUlE+/rWbydmp+FW8xlnnTA5WNA0ZZd2XL8CuMS72rh+k4y1f8+z6yk3UQhEwqHQWj6IBdL78DwWOdGMvYfQyA==}
+ /electron-to-chromium@1.4.679:
+ resolution: {integrity: sha512-NhQMsz5k0d6m9z3qAxnsOR/ebal4NAGsrNVRwcDo4Kc/zQ7KdsTKZUxZoygHcVRb0QDW3waEDIcE3isZ79RP6g==}
dev: true
/emoji-regex@8.0.0:
@@ -8319,11 +8414,11 @@ packages:
dependencies:
array-buffer-byte-length: 1.0.1
arraybuffer.prototype.slice: 1.0.3
- available-typed-arrays: 1.0.6
+ available-typed-arrays: 1.0.7
call-bind: 1.0.7
es-define-property: 1.0.0
es-errors: 1.3.0
- es-set-tostringtag: 2.0.2
+ es-set-tostringtag: 2.0.3
es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
get-intrinsic: 1.2.4
@@ -8331,15 +8426,15 @@ packages:
globalthis: 1.0.3
gopd: 1.0.1
has-property-descriptors: 1.0.2
- has-proto: 1.0.1
+ has-proto: 1.0.3
has-symbols: 1.0.3
hasown: 2.0.1
internal-slot: 1.0.7
is-array-buffer: 3.0.4
is-callable: 1.2.7
- is-negative-zero: 2.0.2
+ is-negative-zero: 2.0.3
is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
+ is-shared-array-buffer: 1.0.3
is-string: 1.0.7
is-typed-array: 1.1.13
is-weakref: 1.0.2
@@ -8352,10 +8447,10 @@ packages:
string.prototype.trim: 1.2.8
string.prototype.trimend: 1.0.7
string.prototype.trimstart: 1.0.7
- typed-array-buffer: 1.0.1
- typed-array-byte-length: 1.0.0
- typed-array-byte-offset: 1.0.0
- typed-array-length: 1.0.4
+ typed-array-buffer: 1.0.2
+ typed-array-byte-length: 1.0.1
+ typed-array-byte-offset: 1.0.2
+ typed-array-length: 1.0.5
unbox-primitive: 1.0.2
which-typed-array: 1.1.14
dev: false
@@ -8397,12 +8492,12 @@ packages:
define-properties: 1.2.1
es-abstract: 1.22.4
es-errors: 1.3.0
- es-set-tostringtag: 2.0.2
+ es-set-tostringtag: 2.0.3
function-bind: 1.1.2
get-intrinsic: 1.2.4
globalthis: 1.0.3
has-property-descriptors: 1.0.2
- has-proto: 1.0.1
+ has-proto: 1.0.3
has-symbols: 1.0.3
internal-slot: 1.0.7
iterator.prototype: 1.1.2
@@ -8417,8 +8512,8 @@ packages:
resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
dev: true
- /es-set-tostringtag@2.0.2:
- resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==}
+ /es-set-tostringtag@2.0.3:
+ resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
engines: {node: '>= 0.4'}
dependencies:
get-intrinsic: 1.2.4
@@ -8584,7 +8679,7 @@ packages:
eslint: 8.56.0
eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.56.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.0.1)(eslint@8.56.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.0.2)(eslint@8.56.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
eslint-plugin-react: 7.33.2(eslint@8.56.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0)
@@ -8633,7 +8728,7 @@ packages:
enhanced-resolve: 5.15.0
eslint: 8.56.0
eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.56.0)
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.0.1)(eslint@8.56.0)
+ eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.0.2)(eslint@8.56.0)
fast-glob: 3.3.2
get-tsconfig: 4.7.2
is-core-module: 2.13.1
@@ -8675,7 +8770,7 @@ packages:
- supports-color
dev: false
- /eslint-module-utils@2.8.0(@typescript-eslint/parser@7.0.1)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0):
+ /eslint-module-utils@2.8.0(@typescript-eslint/parser@7.0.2)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -8696,7 +8791,7 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 7.0.1(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 7.0.2(eslint@8.56.0)(typescript@5.3.3)
debug: 3.2.7
eslint: 8.56.0
eslint-import-resolver-node: 0.3.9
@@ -8704,7 +8799,7 @@ packages:
- supports-color
dev: false
- /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.0.1)(eslint@8.56.0):
+ /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.0.2)(eslint@8.56.0):
resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'}
peerDependencies:
@@ -8714,7 +8809,7 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 7.0.1(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/parser': 7.0.2(eslint@8.56.0)(typescript@5.3.3)
array-includes: 3.1.7
array.prototype.findlastindex: 1.2.4
array.prototype.flat: 1.3.2
@@ -8723,7 +8818,7 @@ packages:
doctrine: 2.1.0
eslint: 8.56.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.0.1)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0)
+ eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.0.2)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0)
hasown: 2.0.1
is-core-module: 2.13.1
is-glob: 4.0.3
@@ -8771,7 +8866,6 @@ packages:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
eslint: 8.56.0
- dev: false
/eslint-plugin-react-refresh@0.4.5(eslint@8.56.0):
resolution: {integrity: sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w==}
@@ -8779,7 +8873,6 @@ packages:
eslint: '>=7'
dependencies:
eslint: 8.56.0
- dev: false
/eslint-plugin-react@7.33.2(eslint@8.56.0):
resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
@@ -8822,8 +8915,8 @@ packages:
- typescript
dev: true
- /eslint-plugin-tailwindcss@3.14.2(tailwindcss@3.4.1):
- resolution: {integrity: sha512-fNzdf4poZP2yQC0xC2prQxMuArMSb5mnellLQvwb9HC3NcLzxs+0IVKWIg1BqUqyui0c+bbjMmhWcKUWK67SLQ==}
+ /eslint-plugin-tailwindcss@3.14.3(tailwindcss@3.4.1):
+ resolution: {integrity: sha512-1MKT8CrVuqVJleHxb7ICHsF2QwO0G+VJ28athTtlcOkccp0qmwK7nCUa1C9paCZ+VVgQU4fonsjLz/wUxoMHJQ==}
engines: {node: '>=12.13.0'}
peerDependencies:
tailwindcss: ^3.4.0
@@ -8842,7 +8935,7 @@ packages:
eslint: 8.56.0
dev: false
- /eslint-plugin-vitest@0.3.22(@typescript-eslint/eslint-plugin@7.0.1)(eslint@8.56.0)(typescript@5.3.3)(vitest@1.2.2):
+ /eslint-plugin-vitest@0.3.22(@typescript-eslint/eslint-plugin@7.0.2)(eslint@8.56.0)(typescript@5.3.3)(vitest@1.3.1):
resolution: {integrity: sha512-atkFGQ7aVgcuSeSMDqnyevIyUpfBPMnosksgEPrKE7Y8xQlqG/5z2IQ6UDau05zXaaFv7Iz8uzqvIuKshjZ0Zw==}
engines: {node: ^18.0.0 || >= 20.0.0}
peerDependencies:
@@ -8855,10 +8948,10 @@ packages:
vitest:
optional: true
dependencies:
- '@typescript-eslint/eslint-plugin': 7.0.1(@typescript-eslint/parser@7.0.1)(eslint@8.56.0)(typescript@5.3.3)
+ '@typescript-eslint/eslint-plugin': 7.0.2(@typescript-eslint/parser@7.0.2)(eslint@8.56.0)(typescript@5.3.3)
'@typescript-eslint/utils': 6.21.0(eslint@8.56.0)(typescript@5.3.3)
eslint: 8.56.0
- vitest: 1.2.2(@types/node@20.11.19)(@vitest/browser@1.2.2)(jsdom@24.0.0)
+ vitest: 1.3.1(@types/node@20.11.19)(@vitest/browser@1.3.1)(jsdom@24.0.0)
transitivePeerDependencies:
- supports-color
- typescript
@@ -9217,7 +9310,7 @@ packages:
engines: {node: ^12.20 || >= 14.13}
dependencies:
node-domexception: 1.0.0
- web-streams-polyfill: 3.3.2
+ web-streams-polyfill: 3.3.3
dev: false
/fetch-retry@5.0.6:
@@ -9331,8 +9424,8 @@ packages:
locate-path: 6.0.0
path-exists: 4.0.0
- /firebase-tools@13.3.0:
- resolution: {integrity: sha512-WooMk02Wucre63XGHNOopwRp/FFCL/zjq1Jz0itZ6fDeytdTxZabhlcvnX+HMCyccPhuwbs3extIEh/T6SFWtA==}
+ /firebase-tools@13.3.1:
+ resolution: {integrity: sha512-+yvUK+tcyZhNVqYe7z8U70Jf3l9mGUwcThVVIJCe/dQIjdAv8ZDcibGbhPxTp4Jpw7PyAPRQCo3RgUFnC0RrpA==}
engines: {node: '>=18.0.0 || >=20.0.0'}
hasBin: true
dependencies:
@@ -9358,9 +9451,11 @@ packages:
filesize: 6.4.0
form-data: 4.0.0
fs-extra: 10.1.0
+ fuzzy: 0.1.3
glob: 7.2.3
google-auth-library: 7.14.1
inquirer: 8.2.6
+ inquirer-autocomplete-prompt: 2.0.1(inquirer@8.2.6)
js-yaml: 3.14.1
jsonwebtoken: 9.0.2
leven: 3.1.0
@@ -9406,7 +9501,7 @@ packages:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
dependencies:
- flatted: 3.2.9
+ flatted: 3.3.1
keyv: 4.5.4
rimraf: 3.0.2
@@ -9415,8 +9510,8 @@ packages:
hasBin: true
dev: true
- /flatted@3.2.9:
- resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
+ /flatted@3.3.1:
+ resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
/flow-parser@0.229.0:
resolution: {integrity: sha512-mOYmMuvJwAo/CvnMFEq4SHftq7E5188hYMTTxJyQOXk2nh+sgslRdYMw3wTthH+FMcFaZLtmBPuMu6IwztdoUQ==}
@@ -9579,6 +9674,11 @@ packages:
/functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ /fuzzy@0.1.3:
+ resolution: {integrity: sha512-/gZffu4ykarLrCiP3Ygsa86UAo1E5vEVlvTrpkKywXSbP9Xhln3oSp9QSV57gEq3JFFpGJ4GZ+5zdEp3FcUh4w==}
+ engines: {node: '>= 0.6.0'}
+ dev: true
+
/gauge@3.0.2:
resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==}
engines: {node: '>=10'}
@@ -9662,7 +9762,7 @@ packages:
dependencies:
es-errors: 1.3.0
function-bind: 1.1.2
- has-proto: 1.0.1
+ has-proto: 1.0.3
has-symbols: 1.0.3
hasown: 2.0.1
@@ -9863,7 +9963,7 @@ packages:
resolution: {integrity: sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==}
engines: {node: '>=18'}
dependencies:
- '@sindresorhus/merge-streams': 2.2.1
+ '@sindresorhus/merge-streams': 2.3.0
fast-glob: 3.3.2
ignore: 5.3.1
path-type: 5.0.0
@@ -10037,8 +10137,8 @@ packages:
dependencies:
es-define-property: 1.0.0
- /has-proto@1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
+ /has-proto@1.0.3:
+ resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
/has-symbols@1.0.3:
@@ -10104,7 +10204,7 @@ packages:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.27.1
+ terser: 5.27.2
dev: true
/html-tags@3.3.1:
@@ -10112,7 +10212,7 @@ packages:
engines: {node: '>=8'}
dev: true
- /html-webpack-plugin@5.6.0(webpack@5.90.2):
+ /html-webpack-plugin@5.6.0(webpack@5.90.3):
resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==}
engines: {node: '>=10.13.0'}
peerDependencies:
@@ -10129,7 +10229,7 @@ packages:
lodash: 4.17.21
pretty-error: 4.0.0
tapable: 2.2.1
- webpack: 5.90.2(webpack-cli@5.1.4)
+ webpack: 5.90.3(webpack-cli@5.1.4)
dev: true
/htmlparser2@6.1.0:
@@ -10298,6 +10398,20 @@ packages:
engines: {node: '>=10'}
dev: true
+ /inquirer-autocomplete-prompt@2.0.1(inquirer@8.2.6):
+ resolution: {integrity: sha512-jUHrH0btO7j5r8DTQgANf2CBkTZChoVySD8zF/wp5fZCOLIuUbleXhf4ZY5jNBOc1owA3gdfWtfZuppfYBhcUg==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ inquirer: ^8.0.0
+ dependencies:
+ ansi-escapes: 4.3.2
+ figures: 3.2.0
+ inquirer: 8.2.6
+ picocolors: 1.0.0
+ run-async: 2.4.1
+ rxjs: 7.8.1
+ dev: true
+
/inquirer@7.3.3:
resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==}
engines: {node: '>=8.0.0'}
@@ -10376,8 +10490,8 @@ packages:
engines: {node: '>=8'}
dev: true
- /ip@2.0.0:
- resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==}
+ /ip@2.0.1:
+ resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==}
dev: true
/ipaddr.js@1.9.1:
@@ -10538,8 +10652,8 @@ packages:
define-properties: 1.2.1
dev: true
- /is-negative-zero@2.0.2:
- resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
+ /is-negative-zero@2.0.3:
+ resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
engines: {node: '>= 0.4'}
dev: false
@@ -10597,8 +10711,9 @@ packages:
/is-set@2.0.2:
resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
- /is-shared-array-buffer@1.0.2:
- resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
+ /is-shared-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
@@ -10757,7 +10872,7 @@ packages:
get-intrinsic: 1.2.4
has-symbols: 1.0.3
reflect.getprototypeof: 1.0.5
- set-function-name: 2.0.1
+ set-function-name: 2.0.2
dev: false
/jackspeak@2.3.6:
@@ -10862,6 +10977,9 @@ packages:
/js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ /js-tokens@8.0.3:
+ resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==}
+
/js-yaml@3.14.1:
resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
hasBin: true
@@ -10886,8 +11004,8 @@ packages:
resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
dev: true
- /jscodeshift@0.15.1(@babel/preset-env@7.23.9):
- resolution: {integrity: sha512-hIJfxUy8Rt4HkJn/zZPU9ChKfKZM1342waJ1QC2e2YsPcWhM+3BJ4dcfQCzArTrk1jJeNLB341H+qOcEHRxJZg==}
+ /jscodeshift@0.15.2(@babel/preset-env@7.23.9):
+ resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==}
hasBin: true
peerDependencies:
'@babel/preset-env': ^7.1.6
@@ -11146,7 +11264,7 @@ packages:
engines: {node: '>=14.0.0'}
dependencies:
app-root-dir: 1.0.2
- dotenv: 16.4.4
+ dotenv: 16.4.5
dotenv-expand: 10.0.0
dev: true
@@ -11191,8 +11309,8 @@ packages:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
- /lilconfig@3.1.0:
- resolution: {integrity: sha512-p3cz0JV5vw/XeouBU3Ldnp+ZkBjE+n8ydJ4mcwBrOiXXPqNlrzGBqWs9X4MWF7f+iKUBu794Y8Hh8yawiJbCjw==}
+ /lilconfig@3.1.1:
+ resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==}
engines: {node: '>=14'}
/lines-and-columns@1.2.4:
@@ -11231,7 +11349,7 @@ packages:
resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
engines: {node: '>=14'}
dependencies:
- mlly: 1.5.0
+ mlly: 1.6.0
pkg-types: 1.0.3
/locate-path@3.0.0:
@@ -11746,8 +11864,8 @@ packages:
hasBin: true
dev: true
- /mlly@1.5.0:
- resolution: {integrity: sha512-NPVQvAY1xr1QoVeG0cy8yUYC7FQcOx6evl/RjT1wL5FvzPnzOysoqB/jmx/DhssT2dYa8nxECLAaFI/+gVLhDQ==}
+ /mlly@1.6.0:
+ resolution: {integrity: sha512-YOvg9hfYQmnaB56Yb+KrJE2u0Yzz5zR+sLejEvF4fzwzV1Al6hkf2vyHTwqCRyv0hCi9rVCqVoXpyYevQIRwLQ==}
dependencies:
acorn: 8.11.3
pathe: 1.1.2
@@ -12476,7 +12594,7 @@ packages:
resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==}
dependencies:
jsonc-parser: 3.2.1
- mlly: 1.5.0
+ mlly: 1.6.0
pathe: 1.1.2
/playwright-core@1.41.2:
@@ -12511,6 +12629,10 @@ packages:
- supports-color
dev: true
+ /possible-typed-array-names@1.0.0:
+ resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
+ engines: {node: '>= 0.4'}
+
/postcss-import@15.1.0(postcss@8.4.35):
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
@@ -12543,11 +12665,11 @@ packages:
ts-node:
optional: true
dependencies:
- lilconfig: 3.1.0
+ lilconfig: 3.1.1
postcss: 8.4.35
yaml: 2.3.4
- /postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.90.2):
+ /postcss-loader@4.3.0(postcss@7.0.39)(webpack@5.90.3):
resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -12560,10 +12682,10 @@ packages:
postcss: 7.0.39
schema-utils: 3.3.0
semver: 7.6.0
- webpack: 5.90.2(esbuild@0.18.20)
+ webpack: 5.90.3(esbuild@0.18.20)
dev: true
- /postcss-loader@8.1.0(postcss@8.4.35)(typescript@5.3.3)(webpack@5.90.2):
+ /postcss-loader@8.1.0(postcss@8.4.35)(typescript@5.3.3)(webpack@5.90.3):
resolution: {integrity: sha512-AbperNcX3rlob7Ay7A/HQcrofug1caABBkopoFeOQMspZBqcqj6giYn1Bwey/0uiOPAcR+NQD0I2HC7rXzk91w==}
engines: {node: '>= 18.12.0'}
peerDependencies:
@@ -12580,7 +12702,7 @@ packages:
jiti: 1.21.0
postcss: 8.4.35
semver: 7.6.0
- webpack: 5.90.2(webpack-cli@5.1.4)
+ webpack: 5.90.3(webpack-cli@5.1.4)
transitivePeerDependencies:
- typescript
dev: true
@@ -13124,7 +13246,7 @@ packages:
/react-is@18.2.0:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
- /react-json-view@1.21.3(@types/react@18.2.55)(react-dom@18.2.0)(react@18.2.0):
+ /react-json-view@1.21.3(@types/react@18.2.57)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==}
peerDependencies:
react: ^17.0.0 || ^16.3.0 || ^15.5.4
@@ -13135,7 +13257,7 @@ packages:
react-base16-styling: 0.6.0
react-dom: 18.2.0(react@18.2.0)
react-lifecycles-compat: 3.0.4
- react-textarea-autosize: 8.5.3(@types/react@18.2.55)(react@18.2.0)
+ react-textarea-autosize: 8.5.3(@types/react@18.2.57)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- encoding
@@ -13163,8 +13285,8 @@ packages:
engines: {node: '>=0.10.0'}
dev: true
- /react-remove-scroll-bar@2.3.4(@types/react@18.2.55)(react@18.2.0):
- resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
+ /react-remove-scroll-bar@2.3.5(@types/react@18.2.57)(react@18.2.0):
+ resolution: {integrity: sha512-3cqjOqg6s0XbOjWvmasmqHch+RLxIEk2r/70rzGXuz3iIGQsQheEQyqYCBb5EECoD01Vo2SIbDqW4paLeLTASw==}
engines: {node: '>=10'}
peerDependencies:
'@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0
@@ -13173,12 +13295,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- react-style-singleton: 2.2.1(@types/react@18.2.55)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.57)(react@18.2.0)
tslib: 2.6.2
- /react-remove-scroll@2.5.5(@types/react@18.2.55)(react@18.2.0):
+ /react-remove-scroll@2.5.5(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
@@ -13188,34 +13310,34 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- react-remove-scroll-bar: 2.3.4(@types/react@18.2.55)(react@18.2.0)
- react-style-singleton: 2.2.1(@types/react@18.2.55)(react@18.2.0)
+ react-remove-scroll-bar: 2.3.5(@types/react@18.2.57)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.57)(react@18.2.0)
tslib: 2.6.2
- use-callback-ref: 1.3.1(@types/react@18.2.55)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.2.55)(react@18.2.0)
+ use-callback-ref: 1.3.1(@types/react@18.2.57)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.2.57)(react@18.2.0)
- /react-router-dom@6.22.0(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-z2w+M4tH5wlcLmH3BMMOMdrtrJ9T3oJJNsAlBJbwk+8Syxd5WFJ7J5dxMEW0/GEXD1BBis4uXRrNIz3mORr0ag==}
+ /react-router-dom@6.22.1(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-iwMyyyrbL7zkKY7MRjOVRy+TMnS/OPusaFVxM2P11x9dzSzGmLsebkCvYirGq0DWB9K9hOspHYYtDz33gE5Duw==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
react-dom: '>=16.8'
dependencies:
- '@remix-run/router': 1.15.0
+ '@remix-run/router': 1.15.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-router: 6.22.0(react@18.2.0)
+ react-router: 6.22.1(react@18.2.0)
dev: false
- /react-router@6.22.0(react@18.2.0):
- resolution: {integrity: sha512-q2yemJeg6gw/YixRlRnVx6IRJWZD6fonnfZhN1JIOhV2iJCPeRNSH3V1ISwHf+JWcESzLC3BOLD1T07tmO5dmg==}
+ /react-router@6.22.1(react@18.2.0):
+ resolution: {integrity: sha512-0pdoRGwLtemnJqn1K0XHUbnKiX0S4X8CgvVVmHGOWmofESj31msHo/1YiqcJWK7Wxfq2a4uvvtS01KAQyWK/CQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: '>=16.8'
dependencies:
- '@remix-run/router': 1.15.0
+ '@remix-run/router': 1.15.1
react: 18.2.0
dev: false
@@ -13227,7 +13349,7 @@ packages:
react: 18.2.0
dev: false
- /react-style-singleton@2.2.1(@types/react@18.2.55)(react@18.2.0):
+ /react-style-singleton@2.2.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -13237,13 +13359,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.2.0
tslib: 2.6.2
- /react-textarea-autosize@8.5.3(@types/react@18.2.55)(react@18.2.0):
+ /react-textarea-autosize@8.5.3(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -13252,7 +13374,7 @@ packages:
'@babel/runtime': 7.23.9
react: 18.2.0
use-composed-ref: 1.3.0(react@18.2.0)
- use-latest: 1.2.1(@types/react@18.2.55)(react@18.2.0)
+ use-latest: 1.2.1(@types/react@18.2.57)(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
dev: false
@@ -13402,7 +13524,7 @@ packages:
call-bind: 1.0.7
define-properties: 1.2.1
es-errors: 1.3.0
- set-function-name: 2.0.1
+ set-function-name: 2.0.2
/regexpu-core@5.3.2:
resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
@@ -13606,26 +13728,26 @@ packages:
fsevents: 2.3.3
dev: true
- /rollup@4.11.0:
- resolution: {integrity: sha512-2xIbaXDXjf3u2tajvA5xROpib7eegJ9Y/uPlSFhXLNpK9ampCczXAhLEb5yLzJyG3LAdI1NWtNjDXiLyniNdjQ==}
+ /rollup@4.12.0:
+ resolution: {integrity: sha512-wz66wn4t1OHIJw3+XU7mJJQV/2NAfw5OAk6G6Hoo3zcvz/XOfQ52Vgi+AN4Uxoxi0KBBwk2g8zPrTDA4btSB/Q==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.11.0
- '@rollup/rollup-android-arm64': 4.11.0
- '@rollup/rollup-darwin-arm64': 4.11.0
- '@rollup/rollup-darwin-x64': 4.11.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.11.0
- '@rollup/rollup-linux-arm64-gnu': 4.11.0
- '@rollup/rollup-linux-arm64-musl': 4.11.0
- '@rollup/rollup-linux-riscv64-gnu': 4.11.0
- '@rollup/rollup-linux-x64-gnu': 4.11.0
- '@rollup/rollup-linux-x64-musl': 4.11.0
- '@rollup/rollup-win32-arm64-msvc': 4.11.0
- '@rollup/rollup-win32-ia32-msvc': 4.11.0
- '@rollup/rollup-win32-x64-msvc': 4.11.0
+ '@rollup/rollup-android-arm-eabi': 4.12.0
+ '@rollup/rollup-android-arm64': 4.12.0
+ '@rollup/rollup-darwin-arm64': 4.12.0
+ '@rollup/rollup-darwin-x64': 4.12.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.12.0
+ '@rollup/rollup-linux-arm64-gnu': 4.12.0
+ '@rollup/rollup-linux-arm64-musl': 4.12.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.12.0
+ '@rollup/rollup-linux-x64-gnu': 4.12.0
+ '@rollup/rollup-linux-x64-musl': 4.12.0
+ '@rollup/rollup-win32-arm64-msvc': 4.12.0
+ '@rollup/rollup-win32-ia32-msvc': 4.12.0
+ '@rollup/rollup-win32-x64-msvc': 4.12.0
fsevents: 2.3.3
/router@1.3.8:
@@ -13827,11 +13949,12 @@ packages:
gopd: 1.0.1
has-property-descriptors: 1.0.2
- /set-function-name@2.0.1:
- resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
+ /set-function-name@2.0.2:
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
dependencies:
define-data-property: 1.1.4
+ es-errors: 1.3.0
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
@@ -14056,15 +14179,15 @@ packages:
internal-slot: 1.0.7
dev: true
- /store2@2.14.2:
- resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==}
+ /store2@2.14.3:
+ resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==}
dev: true
- /storybook@7.6.16:
- resolution: {integrity: sha512-VSfaYoV/iurMtLE/OcVtKvYe/Skkc+JGQYN0uni2djTlrDbZ1IbG2ig+E2MGOE6KlPmC3wCZhW6CevZyjdFhTQ==}
+ /storybook@7.6.17:
+ resolution: {integrity: sha512-8+EIo91bwmeFWPg1eysrxXlhIYv3OsXrznTr4+4Eq0NikqAoq6oBhtlN5K2RGS2lBVF537eN+9jTCNbR+WrzDA==}
hasBin: true
dependencies:
- '@storybook/cli': 7.6.16
+ '@storybook/cli': 7.6.17
transitivePeerDependencies:
- bufferutil
- encoding
@@ -14114,7 +14237,7 @@ packages:
has-symbols: 1.0.3
internal-slot: 1.0.7
regexp.prototype.flags: 1.5.2
- set-function-name: 2.0.1
+ set-function-name: 2.0.2
side-channel: 1.0.5
dev: false
@@ -14204,12 +14327,12 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
- /strip-literal@1.3.0:
- resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
+ /strip-literal@2.0.0:
+ resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==}
dependencies:
- acorn: 8.11.3
+ js-tokens: 8.0.3
- /style-loader@1.3.0(webpack@5.90.2):
+ /style-loader@1.3.0(webpack@5.90.3):
resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==}
engines: {node: '>= 8.9.0'}
peerDependencies:
@@ -14217,16 +14340,16 @@ packages:
dependencies:
loader-utils: 2.0.4
schema-utils: 2.7.1
- webpack: 5.90.2(esbuild@0.18.20)
+ webpack: 5.90.3(esbuild@0.18.20)
dev: true
- /style-loader@3.3.4(webpack@5.90.2):
+ /style-loader@3.3.4(webpack@5.90.3):
resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
dependencies:
- webpack: 5.90.2(webpack-cli@5.1.4)
+ webpack: 5.90.3(webpack-cli@5.1.4)
dev: true
/styled-components@6.1.8(react-dom@18.2.0)(react@18.2.0):
@@ -14460,7 +14583,7 @@ packages:
unique-string: 2.0.0
dev: true
- /terser-webpack-plugin@5.3.10(esbuild@0.18.20)(webpack@5.90.2):
+ /terser-webpack-plugin@5.3.10(esbuild@0.18.20)(webpack@5.90.3):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -14481,11 +14604,11 @@ packages:
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.27.1
- webpack: 5.90.2(esbuild@0.18.20)
+ terser: 5.27.2
+ webpack: 5.90.3(esbuild@0.18.20)
dev: true
- /terser-webpack-plugin@5.3.10(webpack@5.90.2):
+ /terser-webpack-plugin@5.3.10(webpack@5.90.3):
resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
engines: {node: '>= 10.13.0'}
peerDependencies:
@@ -14505,12 +14628,12 @@ packages:
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.27.1
- webpack: 5.90.2(webpack-cli@5.1.4)
+ terser: 5.27.2
+ webpack: 5.90.3(webpack-cli@5.1.4)
dev: true
- /terser@5.27.1:
- resolution: {integrity: sha512-29wAr6UU/oQpnTw5HoadwjUZnFQXGdOfj0LjZ4sVxzqwHh/QVkvr7m8y9WoR4iN3FRitVduTc6KdjcW38Npsug==}
+ /terser@5.27.2:
+ resolution: {integrity: sha512-sHXmLSkImesJ4p5apTeT63DsV4Obe1s37qT8qvwHRmVxKTBH7Rv9Wr26VcAMmLbmk9UliiwK8z+657NyJHHy/w==}
engines: {node: '>=10'}
hasBin: true
dependencies:
@@ -14677,7 +14800,7 @@ packages:
/ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- /ts-loader@9.5.1(typescript@5.3.3)(webpack@5.90.2):
+ /ts-loader@9.5.1(typescript@5.3.3)(webpack@5.90.3):
resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==}
engines: {node: '>=12.0.0'}
peerDependencies:
@@ -14690,7 +14813,7 @@ packages:
semver: 7.6.0
source-map: 0.7.4
typescript: 5.3.3
- webpack: 5.90.2(webpack-cli@5.1.4)
+ webpack: 5.90.3(webpack-cli@5.1.4)
dev: true
/ts-node@10.9.2(@types/node@20.11.19)(typescript@5.3.3):
@@ -14884,8 +15007,8 @@ packages:
mime-types: 2.1.35
dev: true
- /typed-array-buffer@1.0.1:
- resolution: {integrity: sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ==}
+ /typed-array-buffer@1.0.2:
+ resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
@@ -14893,33 +15016,39 @@ packages:
is-typed-array: 1.1.13
dev: false
- /typed-array-byte-length@1.0.0:
- resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
+ /typed-array-byte-length@1.0.1:
+ resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
for-each: 0.3.3
- has-proto: 1.0.1
+ gopd: 1.0.1
+ has-proto: 1.0.3
is-typed-array: 1.1.13
dev: false
- /typed-array-byte-offset@1.0.0:
- resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==}
+ /typed-array-byte-offset@1.0.2:
+ resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
engines: {node: '>= 0.4'}
dependencies:
- available-typed-arrays: 1.0.6
+ available-typed-arrays: 1.0.7
call-bind: 1.0.7
for-each: 0.3.3
- has-proto: 1.0.1
+ gopd: 1.0.1
+ has-proto: 1.0.3
is-typed-array: 1.1.13
dev: false
- /typed-array-length@1.0.4:
- resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
+ /typed-array-length@1.0.5:
+ resolution: {integrity: sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA==}
+ engines: {node: '>= 0.4'}
dependencies:
call-bind: 1.0.7
for-each: 0.3.3
+ gopd: 1.0.1
+ has-proto: 1.0.3
is-typed-array: 1.1.13
+ possible-typed-array-names: 1.0.0
dev: false
/typedarray-to-buffer@3.1.5:
@@ -15148,7 +15277,7 @@ packages:
querystringify: 2.2.0
requires-port: 1.0.0
- /use-callback-ref@1.3.1(@types/react@18.2.55)(react@18.2.0):
+ /use-callback-ref@1.3.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -15158,7 +15287,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
tslib: 2.6.2
@@ -15170,7 +15299,7 @@ packages:
react: 18.2.0
dev: false
- /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.55)(react@18.2.0):
+ /use-isomorphic-layout-effect@1.1.2(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==}
peerDependencies:
'@types/react': '*'
@@ -15179,11 +15308,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
dev: false
- /use-latest@1.2.1(@types/react@18.2.55)(react@18.2.0):
+ /use-latest@1.2.1(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==}
peerDependencies:
'@types/react': '*'
@@ -15192,9 +15321,9 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
react: 18.2.0
- use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.55)(react@18.2.0)
+ use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.57)(react@18.2.0)
dev: false
/use-resize-observer@9.1.0(react-dom@18.2.0)(react@18.2.0):
@@ -15208,7 +15337,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: true
- /use-sidecar@1.1.2(@types/react@18.2.55)(react@18.2.0):
+ /use-sidecar@1.1.2(@types/react@18.2.57)(react@18.2.0):
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
@@ -15218,7 +15347,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
detect-node-es: 1.1.0
react: 18.2.0
tslib: 2.6.2
@@ -15231,8 +15360,8 @@ packages:
react: 18.2.0
dev: false
- /usehooks-ts@2.14.0(react@18.2.0):
- resolution: {integrity: sha512-jnhrjTRJoJS7cFxz63tRYc5mzTKf/h+Ii8P0PDHymT9qDe4ZA2/gzDRmDR4WGausg5X8wMIdghwi3BBCN9JKow==}
+ /usehooks-ts@2.15.0(react@18.2.0):
+ resolution: {integrity: sha512-2bLQ632044hD1Hp879yAFOPabXfx7SbzEZYnpIiaCw6lTHiuvsNS1sc2UBVycasjvQImD6QsNERQXjKg7OuTaA==}
engines: {node: '>=16.15.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18
@@ -15300,8 +15429,8 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /vite-node@1.2.2(@types/node@20.11.19):
- resolution: {integrity: sha512-1as4rDTgVWJO3n1uHmUYqq7nsFgINQ9u+mRcXpjeOMJUmviqNKjcZB7UfRZrlM7MjYXMKpuWp5oGkjaFLnjawg==}
+ /vite-node@1.3.1(@types/node@20.11.19):
+ resolution: {integrity: sha512-azbRrqRxlWTJEVbzInZCTchx0X69M/XPTCz4H+TLvlTcR/xH/3hkRqhOakT41fMJCMzXTu4UvegkZiEoJAWvng==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
dependencies:
@@ -15309,7 +15438,7 @@ packages:
debug: 4.3.4
pathe: 1.1.2
picocolors: 1.0.0
- vite: 5.1.3(@types/node@20.11.19)
+ vite: 5.1.4(@types/node@20.11.19)
transitivePeerDependencies:
- '@types/node'
- less
@@ -15320,30 +15449,30 @@ packages:
- supports-color
- terser
- /vite-plugin-top-level-await@1.4.1(vite@5.1.3):
+ /vite-plugin-top-level-await@1.4.1(vite@5.1.4):
resolution: {integrity: sha512-hogbZ6yT7+AqBaV6lK9JRNvJDn4/IJvHLu6ET06arNfo0t2IsyCaon7el9Xa8OumH+ESuq//SDf8xscZFE0rWw==}
peerDependencies:
vite: '>=2.8'
dependencies:
'@rollup/plugin-virtual': 3.0.2
- '@swc/core': 1.4.1
+ '@swc/core': 1.4.2
uuid: 9.0.1
- vite: 5.1.3(@types/node@20.11.19)
+ vite: 5.1.4(@types/node@20.11.19)
transitivePeerDependencies:
- '@swc/helpers'
- rollup
dev: true
- /vite-plugin-wasm@3.3.0(vite@5.1.3):
+ /vite-plugin-wasm@3.3.0(vite@5.1.4):
resolution: {integrity: sha512-tVhz6w+W9MVsOCHzxo6SSMSswCeIw4HTrXEi6qL3IRzATl83jl09JVO1djBqPSwfjgnpVHNLYcaMbaDX5WB/pg==}
peerDependencies:
vite: ^2 || ^3 || ^4 || ^5
dependencies:
- vite: 5.1.3(@types/node@20.11.19)
+ vite: 5.1.4(@types/node@20.11.19)
dev: true
- /vite@5.1.3(@types/node@20.11.19):
- resolution: {integrity: sha512-UfmUD36DKkqhi/F75RrxvPpry+9+tTkrXfMNZD+SboZqBCMsxKtO52XeGzzuh7ioz+Eo/SYDBbdb0Z7vgcDJew==}
+ /vite@5.1.4(@types/node@20.11.19):
+ resolution: {integrity: sha512-n+MPqzq+d9nMVTKyewqw6kSt+R3CkvF9QAKY8obiQn8g1fwTscKxyfaYnC632HtBXAQGc1Yjomphwn1dtwGAHg==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -15373,19 +15502,19 @@ packages:
'@types/node': 20.11.19
esbuild: 0.19.12
postcss: 8.4.35
- rollup: 4.11.0
+ rollup: 4.12.0
optionalDependencies:
fsevents: 2.3.3
- /vitest@1.2.2(@types/node@20.11.19)(@vitest/browser@1.2.2)(jsdom@24.0.0):
- resolution: {integrity: sha512-d5Ouvrnms3GD9USIK36KG8OZ5bEvKEkITFtnGv56HFaSlbItJuYr7hv2Lkn903+AvRAgSixiamozUVfORUekjw==}
+ /vitest@1.3.1(@types/node@20.11.19)(@vitest/browser@1.3.1)(jsdom@24.0.0):
+ resolution: {integrity: sha512-/1QJqXs8YbCrfv/GPQ05wAZf2eakUPLPa18vkJAKE7RXOKfVHqMZZ1WlTjiwl6Gcn65M5vpNUB6EFLnEdRdEXQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': ^1.0.0
- '@vitest/ui': ^1.0.0
+ '@vitest/browser': 1.3.1
+ '@vitest/ui': 1.3.1
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -15403,14 +15532,13 @@ packages:
optional: true
dependencies:
'@types/node': 20.11.19
- '@vitest/browser': 1.2.2(playwright@1.41.2)(vitest@1.2.2)
- '@vitest/expect': 1.2.2
- '@vitest/runner': 1.2.2
- '@vitest/snapshot': 1.2.2
- '@vitest/spy': 1.2.2
- '@vitest/utils': 1.2.2
+ '@vitest/browser': 1.3.1(playwright@1.41.2)(vitest@1.3.1)
+ '@vitest/expect': 1.3.1
+ '@vitest/runner': 1.3.1
+ '@vitest/snapshot': 1.3.1
+ '@vitest/spy': 1.3.1
+ '@vitest/utils': 1.3.1
acorn-walk: 8.3.2
- cac: 6.7.14
chai: 4.4.1
debug: 4.3.4
execa: 8.0.1
@@ -15420,11 +15548,11 @@ packages:
pathe: 1.1.2
picocolors: 1.0.0
std-env: 3.7.0
- strip-literal: 1.3.0
+ strip-literal: 2.0.0
tinybench: 2.6.0
tinypool: 0.8.2
- vite: 5.1.3(@types/node@20.11.19)
- vite-node: 1.2.2(@types/node@20.11.19)
+ vite: 5.1.4(@types/node@20.11.19)
+ vite-node: 1.3.1(@types/node@20.11.19)
why-is-node-running: 2.2.2
transitivePeerDependencies:
- less
@@ -15461,8 +15589,8 @@ packages:
defaults: 1.0.4
dev: true
- /web-streams-polyfill@3.3.2:
- resolution: {integrity: sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==}
+ /web-streams-polyfill@3.3.3:
+ resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
engines: {node: '>= 8'}
dev: false
@@ -15473,7 +15601,7 @@ packages:
resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
engines: {node: '>=12'}
- /webpack-cli@5.1.4(webpack@5.90.2):
+ /webpack-cli@5.1.4(webpack@5.90.3):
resolution: {integrity: sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==}
engines: {node: '>=14.15.0'}
hasBin: true
@@ -15491,9 +15619,9 @@ packages:
optional: true
dependencies:
'@discoveryjs/json-ext': 0.5.7
- '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4)(webpack@5.90.2)
- '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4)(webpack@5.90.2)
- '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4)(webpack@5.90.2)
+ '@webpack-cli/configtest': 2.1.1(webpack-cli@5.1.4)(webpack@5.90.3)
+ '@webpack-cli/info': 2.0.2(webpack-cli@5.1.4)(webpack@5.90.3)
+ '@webpack-cli/serve': 2.0.5(webpack-cli@5.1.4)(webpack@5.90.3)
colorette: 2.0.20
commander: 10.0.1
cross-spawn: 7.0.3
@@ -15502,7 +15630,7 @@ packages:
import-local: 3.1.0
interpret: 3.1.1
rechoir: 0.8.0
- webpack: 5.90.2(webpack-cli@5.1.4)
+ webpack: 5.90.3(webpack-cli@5.1.4)
webpack-merge: 5.10.0
dev: true
@@ -15524,8 +15652,8 @@ packages:
resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}
dev: true
- /webpack@5.90.2(esbuild@0.18.20):
- resolution: {integrity: sha512-ziXu8ABGr0InCMEYFnHrYweinHK2PWrMqnwdHk2oK3rRhv/1B+2FnfwYv5oD+RrknK/Pp/Hmyvu+eAsaMYhzCw==}
+ /webpack@5.90.3(esbuild@0.18.20):
+ resolution: {integrity: sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -15555,7 +15683,7 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.18.20)(webpack@5.90.2)
+ terser-webpack-plugin: 5.3.10(esbuild@0.18.20)(webpack@5.90.3)
watchpack: 2.4.0
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -15564,8 +15692,8 @@ packages:
- uglify-js
dev: true
- /webpack@5.90.2(webpack-cli@5.1.4):
- resolution: {integrity: sha512-ziXu8ABGr0InCMEYFnHrYweinHK2PWrMqnwdHk2oK3rRhv/1B+2FnfwYv5oD+RrknK/Pp/Hmyvu+eAsaMYhzCw==}
+ /webpack@5.90.3(webpack-cli@5.1.4):
+ resolution: {integrity: sha512-h6uDYlWCctQRuXBs1oYpVe6sFcWedl0dpcVaTf/YF67J9bKvwJajFulMVSYKHrksMB3I/pIagRzDxwxkebuzKA==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -15595,9 +15723,9 @@ packages:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.90.2)
+ terser-webpack-plugin: 5.3.10(webpack@5.90.3)
watchpack: 2.4.0
- webpack-cli: 5.1.4(webpack@5.90.2)
+ webpack-cli: 5.1.4(webpack@5.90.3)
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
@@ -15671,7 +15799,7 @@ packages:
resolution: {integrity: sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==}
engines: {node: '>= 0.4'}
dependencies:
- available-typed-arrays: 1.0.6
+ available-typed-arrays: 1.0.7
call-bind: 1.0.7
for-each: 0.3.3
gopd: 1.0.1
@@ -15947,8 +16075,8 @@ packages:
resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==}
dev: false
- /zustand@4.5.0(@types/react@18.2.55)(immer@10.0.3)(react@18.2.0):
- resolution: {integrity: sha512-zlVFqS5TQ21nwijjhJlx4f9iGrXSL0o/+Dpy4txAP22miJ8Ti6c1Ol1RLNN98BMib83lmDH/2KmLwaNXpjrO1A==}
+ /zustand@4.5.1(@types/react@18.2.57)(immer@10.0.3)(react@18.2.0):
+ resolution: {integrity: sha512-XlauQmH64xXSC1qGYNv00ODaQ3B+tNPoy22jv2diYiP4eoDKr9LA+Bh5Bc3gplTrFdb6JVI+N4kc1DZ/tbtfPg==}
engines: {node: '>=12.7.0'}
peerDependencies:
'@types/react': '>=16.8'
@@ -15962,7 +16090,7 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.55
+ '@types/react': 18.2.57
immer: 10.0.3
react: 18.2.0
use-sync-external-store: 1.2.0(react@18.2.0)