diff --git a/apps/desktop/package.json b/apps/desktop/package.json
index 8d6374d5..f33d6d1c 100644
--- a/apps/desktop/package.json
+++ b/apps/desktop/package.json
@@ -32,7 +32,7 @@
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"@tauri-apps/api": "2.0.0-alpha.13",
"@tauri-apps/plugin-autostart": "2.0.0-alpha.5",
"@tauri-apps/plugin-clipboard-manager": "2.0.0-alpha.5",
@@ -62,14 +62,14 @@
"smol-toml": "^1.1.3",
"sonner": "^1.3.1",
"unique-names-generator": "^4.7.1",
- "virtua": "^0.20.4"
+ "virtua": "^0.20.5"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/node": "^20.11.0",
- "@types/react": "^18.2.47",
+ "@types/node": "^20.11.3",
+ "@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.16",
diff --git a/apps/desktop/src/router.tsx b/apps/desktop/src/router.tsx
index ad471711..79f4e666 100644
--- a/apps/desktop/src/router.tsx
+++ b/apps/desktop/src/router.tsx
@@ -269,42 +269,6 @@ export default function Router() {
return { Component: OnboardingScreen };
},
},
- {
- path: "tutorials/note",
- async lazy() {
- const { TutorialNoteScreen } = await import(
- "./routes/auth/tutorials/note"
- );
- return { Component: TutorialNoteScreen };
- },
- },
- {
- path: "tutorials/widget",
- async lazy() {
- const { TutorialWidgetScreen } = await import(
- "./routes/auth/tutorials/widget"
- );
- return { Component: TutorialWidgetScreen };
- },
- },
- {
- path: "tutorials/posting",
- async lazy() {
- const { TutorialPostingScreen } = await import(
- "./routes/auth/tutorials/posting"
- );
- return { Component: TutorialPostingScreen };
- },
- },
- {
- path: "tutorials/finish",
- async lazy() {
- const { TutorialFinishScreen } = await import(
- "./routes/auth/tutorials/finish"
- );
- return { Component: TutorialFinishScreen };
- },
- },
],
},
]);
diff --git a/apps/desktop/src/routes/auth/tutorials/finish.tsx b/apps/desktop/src/routes/auth/tutorials/finish.tsx
deleted file mode 100644
index 5a08ea63..00000000
--- a/apps/desktop/src/routes/auth/tutorials/finish.tsx
+++ /dev/null
@@ -1,46 +0,0 @@
-import { Link } from "react-router-dom";
-
-export function TutorialFinishScreen() {
- return (
-
-
-
-
-
- Yo, you've understood basic features 🎉
-
-
-
-
- Start using Lume
-
-
- Learn more about Nostr
-
-
- If you've trouble when user Lume, you can report the issue{" "}
-
- here
-
-
-
-
-
- );
-}
diff --git a/apps/desktop/src/routes/auth/tutorials/note.tsx b/apps/desktop/src/routes/auth/tutorials/note.tsx
deleted file mode 100644
index cced2a95..00000000
--- a/apps/desktop/src/routes/auth/tutorials/note.tsx
+++ /dev/null
@@ -1,102 +0,0 @@
-import { TextNote } from "@lume/ark";
-import {
- EditIcon,
- ReactionIcon,
- ReplyIcon,
- RepostIcon,
- ZapIcon,
-} from "@lume/icons";
-import { NDKEvent } from "@nostr-dev-kit/ndk";
-import { Link } from "react-router-dom";
-
-export function TutorialNoteScreen() {
- const exampleEvent = new NDKEvent(undefined, {
- id: "a3527670dd9b178bf7c2a9ea673b63bc8bfe774942b196691145343623c45821",
- pubkey: "04c915daefee38317fa734444acee390a8269fe5810b2241e5e6dd343dfbecc9",
- created_at: 1701355223,
- kind: 1,
- tags: [],
- content: "good morning nostr, stay humble and stack sats 🫡",
- sig: "9e0bd67ec25598744f20bff0fe360fdf190c4240edb9eea260e50f77e07f94ea767ececcc6270819b7f64e5e7ca1fe20b4971f46dc120e6db43114557f3a6dae",
- });
-
- return (
-
-
-
-
-
-
-
- What is a Note?
-
-
-
-
- Posts on Nostr based Social Network client are usually called
- 'Notes.' Notes are arranged chronologically on the
- timeline and are updated in real-time.
-
-
Here is one example:
-
-
- Here are how you can interact with a note:
-
-
-
-
-
-
-
- Reply - Click on this button to reply to a note. It's also
- possible to reply to replies, continuing the conversation like a
- thread.
-
-
-
-
-
-
-
- Reaction - You can add reactions to the Note to express your
- concern.
-
-
-
-
-
-
-
- Repost - You can share that note to your own timeline. You can
- also quote them with your comments.
-
-
-
-
-
-
-
- Zap - You can send tip in Bitcoin to that note owner with
- zero-fees
-
-
-
-
-
- Back
-
-
- Continue
-
-
-
-
-
- );
-}
diff --git a/apps/desktop/src/routes/auth/tutorials/posting.tsx b/apps/desktop/src/routes/auth/tutorials/posting.tsx
deleted file mode 100644
index 0a2ddeaf..00000000
--- a/apps/desktop/src/routes/auth/tutorials/posting.tsx
+++ /dev/null
@@ -1,3 +0,0 @@
-export function TutorialPostingScreen() {
- return
;
-}
diff --git a/apps/desktop/src/routes/auth/tutorials/widget.tsx b/apps/desktop/src/routes/auth/tutorials/widget.tsx
deleted file mode 100644
index 8230d33f..00000000
--- a/apps/desktop/src/routes/auth/tutorials/widget.tsx
+++ /dev/null
@@ -1,67 +0,0 @@
-import { BellIcon, HomeIcon, PlusIcon } from "@lume/icons";
-import { Link } from "react-router-dom";
-
-export function TutorialWidgetScreen() {
- return (
-
-
-
-
-
-
-
- The concept of Widgets
-
-
-
-
- Lume provides multiple widgets based on usage. You always can
- control what you need to show on your Home.
-
-
Default widgets:
-
-
-
-
-
Newsfeed - You can view notes from accounts you follow.
-
-
-
-
-
-
- Notification - You can view all notifications related to your
- account.
-
-
-
- If you want to add more widget, you can click to this button on Home
- Screen.
-
-
-
-
- Back
-
-
- Continue
-
-
-
-
-
- );
-}
diff --git a/apps/desktop/src/routes/settings/editProfile.tsx b/apps/desktop/src/routes/settings/editProfile.tsx
index 7031681d..6e01f923 100644
--- a/apps/desktop/src/routes/settings/editProfile.tsx
+++ b/apps/desktop/src/routes/settings/editProfile.tsx
@@ -5,7 +5,6 @@ import {
PlusIcon,
UnverifiedIcon,
} from "@lume/icons";
-import { useStorage } from "@lume/storage";
import { NDKKind, NDKUserProfile } from "@nostr-dev-kit/ndk";
import { useQueryClient } from "@tanstack/react-query";
import { message } from "@tauri-apps/plugin-dialog";
@@ -20,7 +19,6 @@ export function EditProfileScreen() {
const [nip05, setNIP05] = useState({ verified: true, text: "" });
const ark = useArk();
- const storage = useStorage();
const {
register,
@@ -56,7 +54,7 @@ export function EditProfileScreen() {
setLoading(true);
- const image = await ark.upload({});
+ const image = await ark.upload({ fileExts: [] });
if (image) {
setPicture(image);
setLoading(false);
@@ -74,7 +72,7 @@ export function EditProfileScreen() {
try {
setLoading(true);
- const image = await ark.upload({});
+ const image = await ark.upload({ fileExts: [] });
if (image) {
setBanner(image);
diff --git a/packages/ark/package.json b/packages/ark/package.json
index cbb8606c..2996b261 100644
--- a/packages/ark/package.json
+++ b/packages/ark/package.json
@@ -18,7 +18,7 @@
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-tooltip": "^1.0.7",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"@tauri-apps/api": "2.0.0-alpha.13",
"@tauri-apps/plugin-clipboard-manager": "2.0.0-alpha.5",
"@tauri-apps/plugin-dialog": "2.0.0-alpha.5",
@@ -52,7 +52,7 @@
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
diff --git a/packages/icons/package.json b/packages/icons/package.json
index 656698e7..2e03dee0 100644
--- a/packages/icons/package.json
+++ b/packages/icons/package.json
@@ -8,7 +8,7 @@
},
"devDependencies": {
"@lume/tsconfig": "workspace:*",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"typescript": "^5.3.3"
}
}
\ No newline at end of file
diff --git a/packages/lume-column-activity/package.json b/packages/lume-column-activity/package.json
index f2970ea7..67ccc3d9 100644
--- a/packages/lume-column-activity/package.json
+++ b/packages/lume-column-activity/package.json
@@ -9,17 +9,17 @@
"@lume/ui": "workspace:^",
"@lume/utils": "workspace:^",
"@nostr-dev-kit/ndk": "^2.3.2",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"react": "^18.2.0",
"react-router-dom": "^6.21.2",
"sonner": "^1.3.1",
- "virtua": "^0.20.4"
+ "virtua": "^0.20.5"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"tailwind": "^4.0.0",
"typescript": "^5.3.3"
}
diff --git a/packages/lume-column-antenas/package.json b/packages/lume-column-antenas/package.json
index 38a9c3ba..10869f70 100644
--- a/packages/lume-column-antenas/package.json
+++ b/packages/lume-column-antenas/package.json
@@ -9,17 +9,17 @@
"@lume/ui": "workspace:^",
"@lume/utils": "workspace:^",
"@nostr-dev-kit/ndk": "^2.3.2",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"react": "^18.2.0",
"react-router-dom": "^6.21.2",
"sonner": "^1.3.1",
- "virtua": "^0.20.4"
+ "virtua": "^0.20.5"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"tailwind": "^4.0.0",
"typescript": "^5.3.3"
}
diff --git a/packages/lume-column-default/package.json b/packages/lume-column-default/package.json
index 53a458d6..02516ccc 100644
--- a/packages/lume-column-default/package.json
+++ b/packages/lume-column-default/package.json
@@ -9,17 +9,17 @@
"@lume/ui": "workspace:^",
"@lume/utils": "workspace:^",
"@nostr-dev-kit/ndk": "^2.3.2",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"react": "^18.2.0",
"react-router-dom": "^6.21.2",
"sonner": "^1.3.1",
- "virtua": "^0.20.4"
+ "virtua": "^0.20.5"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"tailwind": "^4.0.0",
"typescript": "^5.3.3"
}
diff --git a/packages/lume-column-group/package.json b/packages/lume-column-group/package.json
index fe7d7355..a2227477 100644
--- a/packages/lume-column-group/package.json
+++ b/packages/lume-column-group/package.json
@@ -9,17 +9,17 @@
"@lume/ui": "workspace:^",
"@lume/utils": "workspace:^",
"@nostr-dev-kit/ndk": "^2.3.2",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"react": "^18.2.0",
"react-router-dom": "^6.21.2",
"sonner": "^1.3.1",
- "virtua": "^0.20.4"
+ "virtua": "^0.20.5"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"tailwind": "^4.0.0",
"typescript": "^5.3.3"
}
diff --git a/packages/lume-column-hashtag/package.json b/packages/lume-column-hashtag/package.json
index 5fb114cc..6c91e271 100644
--- a/packages/lume-column-hashtag/package.json
+++ b/packages/lume-column-hashtag/package.json
@@ -9,17 +9,17 @@
"@lume/ui": "workspace:^",
"@lume/utils": "workspace:^",
"@nostr-dev-kit/ndk": "^2.3.2",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"react": "^18.2.0",
"react-router-dom": "^6.21.2",
"sonner": "^1.3.1",
- "virtua": "^0.20.4"
+ "virtua": "^0.20.5"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"tailwind": "^4.0.0",
"typescript": "^5.3.3"
}
diff --git a/packages/lume-column-thread/package.json b/packages/lume-column-thread/package.json
index c0ca7fec..9da5cdc6 100644
--- a/packages/lume-column-thread/package.json
+++ b/packages/lume-column-thread/package.json
@@ -9,17 +9,17 @@
"@lume/ui": "workspace:^",
"@lume/utils": "workspace:^",
"@nostr-dev-kit/ndk": "^2.3.2",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"react": "^18.2.0",
"react-router-dom": "^6.21.2",
"sonner": "^1.3.1",
- "virtua": "^0.20.4"
+ "virtua": "^0.20.5"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"tailwind": "^4.0.0",
"typescript": "^5.3.3"
}
diff --git a/packages/lume-column-timeline/package.json b/packages/lume-column-timeline/package.json
index 58005b24..a81a8930 100644
--- a/packages/lume-column-timeline/package.json
+++ b/packages/lume-column-timeline/package.json
@@ -9,17 +9,17 @@
"@lume/ui": "workspace:^",
"@lume/utils": "workspace:^",
"@nostr-dev-kit/ndk": "^2.3.2",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"react": "^18.2.0",
"react-router-dom": "^6.21.2",
"sonner": "^1.3.1",
- "virtua": "^0.20.4"
+ "virtua": "^0.20.5"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"tailwind": "^4.0.0",
"typescript": "^5.3.3"
}
diff --git a/packages/lume-column-user/package.json b/packages/lume-column-user/package.json
index 77b5718a..23f2e595 100644
--- a/packages/lume-column-user/package.json
+++ b/packages/lume-column-user/package.json
@@ -9,17 +9,17 @@
"@lume/ui": "workspace:^",
"@lume/utils": "workspace:^",
"@nostr-dev-kit/ndk": "^2.3.2",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"react": "^18.2.0",
"react-router-dom": "^6.21.2",
"sonner": "^1.3.1",
- "virtua": "^0.20.4"
+ "virtua": "^0.20.5"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"tailwind": "^4.0.0",
"typescript": "^5.3.3"
}
diff --git a/packages/ndk-cache-tauri/package.json b/packages/ndk-cache-tauri/package.json
index 0e7438c0..a5bbdb5f 100644
--- a/packages/ndk-cache-tauri/package.json
+++ b/packages/ndk-cache-tauri/package.json
@@ -17,7 +17,7 @@
},
"devDependencies": {
"@lume/tsconfig": "workspace:*",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"typescript": "^5.3.3"
}
}
\ No newline at end of file
diff --git a/packages/storage/package.json b/packages/storage/package.json
index 6c9cda8e..1af7aa76 100644
--- a/packages/storage/package.json
+++ b/packages/storage/package.json
@@ -18,7 +18,7 @@
"devDependencies": {
"@lume/tsconfig": "workspace:*",
"@lume/types": "workspace:*",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"typescript": "^5.3.3"
}
}
diff --git a/packages/ui/package.json b/packages/ui/package.json
index b1770b06..84d07a09 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -17,7 +17,7 @@
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.0.7",
"@radix-ui/react-popover": "^1.0.7",
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"@tauri-apps/api": "2.0.0-alpha.13",
"@tauri-apps/plugin-http": "2.0.0-alpha.6",
"@tauri-apps/plugin-os": "2.0.0-alpha.6",
@@ -28,19 +28,19 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
- "react-hotkeys-hook": "^4.4.3",
+ "react-hotkeys-hook": "^4.4.4",
"react-router-dom": "^6.21.2",
"slate": "^0.101.5",
"slate-react": "^0.101.5",
"sonner": "^1.3.1",
"uqr": "^0.1.2",
- "virtua": "^0.20.4"
+ "virtua": "^0.20.5"
},
"devDependencies": {
"@lume/tailwindcss": "workspace:^",
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"tailwind-merge": "^2.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
diff --git a/packages/ui/src/onboarding/finish.tsx b/packages/ui/src/onboarding/finish.tsx
index dbd0f938..dd613f10 100644
--- a/packages/ui/src/onboarding/finish.tsx
+++ b/packages/ui/src/onboarding/finish.tsx
@@ -1,5 +1,5 @@
+import { useArk } from "@lume/ark";
import { CheckIcon, LoaderIcon } from "@lume/icons";
-import { useStorage } from "@lume/storage";
import { onboardingAtom } from "@lume/utils";
import { useQueryClient } from "@tanstack/react-query";
import { motion } from "framer-motion";
@@ -7,7 +7,7 @@ import { useSetAtom } from "jotai";
import { useState } from "react";
export function OnboardingFinishScreen() {
- const storage = useStorage();
+ const ark = useArk();
const queryClient = useQueryClient();
const setOnboarding = useSetAtom(onboardingAtom);
diff --git a/packages/ui/src/replyList.tsx b/packages/ui/src/replyList.tsx
index 0d18d3d6..e03bd925 100644
--- a/packages/ui/src/replyList.tsx
+++ b/packages/ui/src/replyList.tsx
@@ -1,6 +1,7 @@
import { Reply, useArk } from "@lume/ark";
import { LoaderIcon } from "@lume/icons";
import { NDKEventWithReplies } from "@lume/types";
+import { type NDKSubscription } from "@nostr-dev-kit/ndk";
import { useEffect, useState } from "react";
import { twMerge } from "tailwind-merge";
@@ -13,7 +14,7 @@ export function ReplyList({
const [data, setData] = useState(null);
useEffect(() => {
- let sub;
+ let sub: NDKSubscription;
let isCancelled = false;
async function fetchRepliesAndSub() {
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 846fc786..dccfa8aa 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -8,7 +8,7 @@
"access": "public"
},
"dependencies": {
- "@tanstack/react-query": "^5.17.9",
+ "@tanstack/react-query": "^5.17.12",
"@tauri-apps/api": "2.0.0-alpha.13",
"@tauri-apps/plugin-notification": "2.0.0-alpha.5",
"clsx": "^2.1.0",
@@ -21,7 +21,7 @@
"devDependencies": {
"@lume/tsconfig": "workspace:^",
"@lume/types": "workspace:^",
- "@types/react": "^18.2.47",
+ "@types/react": "^18.2.48",
"typescript": "^5.3.3"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 6118b902..cf7cde9d 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -68,40 +68,40 @@ importers:
version: 2.3.2(typescript@5.3.3)
'@radix-ui/react-accordion':
specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-alert-dialog':
specifier: ^1.0.5
- version: 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-avatar':
specifier: ^1.0.4
- version: 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-collapsible':
specifier: ^1.0.3
- version: 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-dropdown-menu':
specifier: ^2.0.6
- version: 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-hover-card':
specifier: ^1.0.7
- version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 2.0.0(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-switch':
specifier: ^1.0.3
- version: 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
'@tauri-apps/api':
specifier: 2.0.0-alpha.13
version: 2.0.0-alpha.13
@@ -143,13 +143,13 @@ importers:
version: 2.0.0-alpha.5
'@vidstack/react':
specifier: ^1.9.8
- version: 1.9.8(@types/react@18.2.47)(react@18.2.0)
+ version: 1.9.8(@types/react@18.2.48)(react@18.2.0)
framer-motion:
specifier: ^10.18.0
version: 10.18.0(react-dom@18.2.0)(react@18.2.0)
jotai:
specifier: ^2.6.1
- version: 2.6.1(@types/react@18.2.47)(react@18.2.0)
+ version: 2.6.1(@types/react@18.2.48)(react@18.2.0)
minidenticons:
specifier: ^4.2.0
version: 4.2.0
@@ -190,8 +190,8 @@ importers:
specifier: ^4.7.1
version: 4.7.1
virtua:
- specifier: ^0.20.4
- version: 0.20.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^0.20.5
+ version: 0.20.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@lume/tailwindcss':
specifier: workspace:^
@@ -203,11 +203,11 @@ importers:
specifier: workspace:^
version: link:../../packages/types
'@types/node':
- specifier: ^20.11.0
- version: 20.11.0
+ specifier: ^20.11.3
+ version: 20.11.3
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
'@types/react-dom':
specifier: ^18.2.18
version: 18.2.18
@@ -237,7 +237,7 @@ importers:
version: 5.3.3
vite:
specifier: ^5.0.11
- version: 5.0.11(@types/node@20.11.0)
+ version: 5.0.11(@types/node@20.11.3)
vite-plugin-top-level-await:
specifier: ^1.4.1
version: 1.4.1(vite@5.0.11)
@@ -270,28 +270,28 @@ importers:
version: 0.15.0(@nostr-dev-kit/ndk@2.3.2)(nostr-fetch@0.15.0)
'@radix-ui/react-avatar':
specifier: ^1.0.4
- version: 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-collapsible':
specifier: ^1.0.3
- version: 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-dropdown-menu':
specifier: ^2.0.6
- version: 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-hover-card':
specifier: ^1.0.7
- version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
'@tauri-apps/api':
specifier: 2.0.0-alpha.13
version: 2.0.0-alpha.13
@@ -324,13 +324,13 @@ importers:
version: 2.0.0-alpha.5
'@vidstack/react':
specifier: ^1.9.8
- version: 1.9.8(@types/react@18.2.47)(react@18.2.0)
+ version: 1.9.8(@types/react@18.2.48)(react@18.2.0)
get-urls:
specifier: ^12.1.0
version: 12.1.0
jotai:
specifier: ^2.6.1
- version: 2.6.1(@types/react@18.2.47)(react@18.2.0)
+ version: 2.6.1(@types/react@18.2.48)(react@18.2.0)
linkify-react:
specifier: ^4.1.3
version: 4.1.3(linkifyjs@4.1.3)(react@18.2.0)
@@ -387,8 +387,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
tailwind-merge:
specifier: ^2.2.0
version: 2.2.0
@@ -409,8 +409,8 @@ importers:
specifier: workspace:*
version: link:../tsconfig
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
typescript:
specifier: ^5.3.3
version: 5.3.3
@@ -433,8 +433,8 @@ importers:
specifier: ^2.3.2
version: 2.3.2(typescript@5.3.3)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -445,8 +445,8 @@ importers:
specifier: ^1.3.1
version: 1.3.1(react-dom@18.2.0)(react@18.2.0)
virtua:
- specifier: ^0.20.4
- version: 0.20.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^0.20.5
+ version: 0.20.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@lume/tailwindcss':
specifier: workspace:^
@@ -458,8 +458,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
tailwind:
specifier: ^4.0.0
version: 4.0.0
@@ -485,8 +485,8 @@ importers:
specifier: ^2.3.2
version: 2.3.2(typescript@5.3.3)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -497,8 +497,8 @@ importers:
specifier: ^1.3.1
version: 1.3.1(react-dom@18.2.0)(react@18.2.0)
virtua:
- specifier: ^0.20.4
- version: 0.20.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^0.20.5
+ version: 0.20.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@lume/tailwindcss':
specifier: workspace:^
@@ -510,8 +510,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
tailwind:
specifier: ^4.0.0
version: 4.0.0
@@ -537,8 +537,8 @@ importers:
specifier: ^2.3.2
version: 2.3.2(typescript@5.3.3)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -549,8 +549,8 @@ importers:
specifier: ^1.3.1
version: 1.3.1(react-dom@18.2.0)(react@18.2.0)
virtua:
- specifier: ^0.20.4
- version: 0.20.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^0.20.5
+ version: 0.20.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@lume/tailwindcss':
specifier: workspace:^
@@ -562,8 +562,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
tailwind:
specifier: ^4.0.0
version: 4.0.0
@@ -589,8 +589,8 @@ importers:
specifier: ^2.3.2
version: 2.3.2(typescript@5.3.3)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -601,8 +601,8 @@ importers:
specifier: ^1.3.1
version: 1.3.1(react-dom@18.2.0)(react@18.2.0)
virtua:
- specifier: ^0.20.4
- version: 0.20.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^0.20.5
+ version: 0.20.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@lume/tailwindcss':
specifier: workspace:^
@@ -614,8 +614,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
tailwind:
specifier: ^4.0.0
version: 4.0.0
@@ -641,8 +641,8 @@ importers:
specifier: ^2.3.2
version: 2.3.2(typescript@5.3.3)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -653,8 +653,8 @@ importers:
specifier: ^1.3.1
version: 1.3.1(react-dom@18.2.0)(react@18.2.0)
virtua:
- specifier: ^0.20.4
- version: 0.20.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^0.20.5
+ version: 0.20.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@lume/tailwindcss':
specifier: workspace:^
@@ -666,8 +666,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
tailwind:
specifier: ^4.0.0
version: 4.0.0
@@ -693,8 +693,8 @@ importers:
specifier: ^2.3.2
version: 2.3.2(typescript@5.3.3)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -705,8 +705,8 @@ importers:
specifier: ^1.3.1
version: 1.3.1(react-dom@18.2.0)(react@18.2.0)
virtua:
- specifier: ^0.20.4
- version: 0.20.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^0.20.5
+ version: 0.20.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@lume/tailwindcss':
specifier: workspace:^
@@ -718,8 +718,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
tailwind:
specifier: ^4.0.0
version: 4.0.0
@@ -745,8 +745,8 @@ importers:
specifier: ^2.3.2
version: 2.3.2(typescript@5.3.3)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -757,8 +757,8 @@ importers:
specifier: ^1.3.1
version: 1.3.1(react-dom@18.2.0)(react@18.2.0)
virtua:
- specifier: ^0.20.4
- version: 0.20.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^0.20.5
+ version: 0.20.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@lume/tailwindcss':
specifier: workspace:^
@@ -770,8 +770,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
tailwind:
specifier: ^4.0.0
version: 4.0.0
@@ -797,8 +797,8 @@ importers:
specifier: ^2.3.2
version: 2.3.2(typescript@5.3.3)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
react:
specifier: ^18.2.0
version: 18.2.0
@@ -809,8 +809,8 @@ importers:
specifier: ^1.3.1
version: 1.3.1(react-dom@18.2.0)(react@18.2.0)
virtua:
- specifier: ^0.20.4
- version: 0.20.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^0.20.5
+ version: 0.20.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@lume/tailwindcss':
specifier: workspace:^
@@ -822,8 +822,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
tailwind:
specifier: ^4.0.0
version: 4.0.0
@@ -856,8 +856,8 @@ importers:
specifier: workspace:*
version: link:../tsconfig
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
typescript:
specifier: ^5.3.3
version: 5.3.3
@@ -890,8 +890,8 @@ importers:
specifier: workspace:*
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
typescript:
specifier: ^5.3.3
version: 5.3.3
@@ -949,28 +949,28 @@ importers:
version: 2.3.2(typescript@5.3.3)
'@radix-ui/react-accordion':
specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-alert-dialog':
specifier: ^1.0.5
- version: 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-avatar':
specifier: ^1.0.4
- version: 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-dropdown-menu':
specifier: ^2.0.6
- version: 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@radix-ui/react-hover-card':
specifier: ^1.0.7
- version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
+ version: 1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
'@tauri-apps/api':
specifier: 2.0.0-alpha.13
version: 2.0.0-alpha.13
@@ -985,7 +985,7 @@ importers:
version: 10.18.0(react-dom@18.2.0)(react@18.2.0)
jotai:
specifier: ^2.6.1
- version: 2.6.1(@types/react@18.2.47)(react@18.2.0)
+ version: 2.6.1(@types/react@18.2.48)(react@18.2.0)
minidenticons:
specifier: ^4.2.0
version: 4.2.0
@@ -1002,8 +1002,8 @@ importers:
specifier: ^7.49.3
version: 7.49.3(react@18.2.0)
react-hotkeys-hook:
- specifier: ^4.4.3
- version: 4.4.3(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^4.4.4
+ version: 4.4.4(react-dom@18.2.0)(react@18.2.0)
react-router-dom:
specifier: ^6.21.2
version: 6.21.2(react-dom@18.2.0)(react@18.2.0)
@@ -1020,8 +1020,8 @@ importers:
specifier: ^0.1.2
version: 0.1.2
virtua:
- specifier: ^0.20.4
- version: 0.20.4(react-dom@18.2.0)(react@18.2.0)
+ specifier: ^0.20.5
+ version: 0.20.5(react-dom@18.2.0)(react@18.2.0)
devDependencies:
'@lume/tailwindcss':
specifier: workspace:^
@@ -1033,8 +1033,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
tailwind-merge:
specifier: ^2.2.0
version: 2.2.0
@@ -1048,8 +1048,8 @@ importers:
packages/utils:
dependencies:
'@tanstack/react-query':
- specifier: ^5.17.9
- version: 5.17.9(react@18.2.0)
+ specifier: ^5.17.12
+ version: 5.17.12(react@18.2.0)
'@tauri-apps/api':
specifier: 2.0.0-alpha.13
version: 2.0.0-alpha.13
@@ -1064,7 +1064,7 @@ importers:
version: 1.11.10
jotai:
specifier: ^2.6.1
- version: 2.6.1(@types/react@18.2.47)(react@18.2.0)
+ version: 2.6.1(@types/react@18.2.48)(react@18.2.0)
nostr-tools:
specifier: 1.17.0
version: 1.17.0(typescript@5.3.3)
@@ -1082,8 +1082,8 @@ importers:
specifier: workspace:^
version: link:../types
'@types/react':
- specifier: ^18.2.47
- version: 18.2.47
+ specifier: ^18.2.48
+ version: 18.2.48
typescript:
specifier: ^5.3.3
version: 5.3.3
@@ -1857,7 +1857,7 @@ packages:
'@babel/runtime': 7.23.8
dev: false
- /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==}
peerDependencies:
'@types/react': '*'
@@ -1872,21 +1872,21 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-OrVIOcZL0tl6xibeuGt5/+UxoT2N27KCFOPjFyfXMnchxSHZ/OW7cCX2nGlIYJrbHK/fczPcFzAwvNBB6XBNMA==}
peerDependencies:
'@types/react': '*'
@@ -1901,18 +1901,18 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
'@types/react': '*'
@@ -1926,14 +1926,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-avatar@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-avatar@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-kVK2K7ZD3wwj3qhle0ElXhOjbezIgyl2hVvgwfIdexL3rN6zJmy5AqqIf+D31lxVppdzV8CjAfZ6PklkmInZLw==}
peerDependencies:
'@types/react': '*'
@@ -1947,17 +1947,17 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==}
peerDependencies:
'@types/react': '*'
@@ -1972,20 +1972,20 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
'@types/react': '*'
@@ -1999,17 +1999,17 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -2019,11 +2019,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-context@1.0.1(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-context@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
@@ -2033,11 +2033,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==}
peerDependencies:
'@types/react': '*'
@@ -2052,26 +2052,26 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
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.47)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.48)(react@18.2.0)
dev: false
- /@radix-ui/react-direction@1.0.1(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-direction@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
@@ -2081,11 +2081,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==}
peerDependencies:
'@types/react': '*'
@@ -2100,17 +2100,17 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==}
peerDependencies:
'@types/react': '*'
@@ -2125,19 +2125,19 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
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.47)(react@18.2.0):
+ /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
'@types/react': '*'
@@ -2147,11 +2147,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==}
peerDependencies:
'@types/react': '*'
@@ -2165,16 +2165,16 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-OcUN2FU0YpmajD/qkph3XzMcK/NmSk9hGWnjV68p6QiZMgILugusgQwnLSDs3oFSJYGKf3Y49zgFedhGh04k9A==}
peerDependencies:
'@types/react': '*'
@@ -2189,21 +2189,21 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-id@1.0.1(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-id@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
@@ -2213,12 +2213,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==}
peerDependencies:
'@types/react': '*'
@@ -2233,30 +2233,30 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
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.47)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.48)(react@18.2.0)
dev: false
- /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==}
peerDependencies:
'@types/react': '*'
@@ -2271,27 +2271,27 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
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.47)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.48)(react@18.2.0)
dev: false
- /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==}
peerDependencies:
'@types/react': '*'
@@ -2306,22 +2306,22 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@floating-ui/react-dom': 2.0.5(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.47)(react@18.2.0)
+ '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.48)(react@18.2.0)
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==}
peerDependencies:
'@types/react': '*'
@@ -2335,14 +2335,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
'@types/react': '*'
@@ -2356,15 +2356,15 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
@@ -2378,14 +2378,14 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
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.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==}
peerDependencies:
'@types/react': '*'
@@ -2400,21 +2400,21 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-select@2.0.0(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-select@2.0.0(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==}
peerDependencies:
'@types/react': '*'
@@ -2430,32 +2430,32 @@ packages:
'@babel/runtime': 7.23.8
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-direction': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-direction': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
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.47)(react@18.2.0)
+ react-remove-scroll: 2.5.5(@types/react@18.2.48)(react@18.2.0)
dev: false
- /@radix-ui/react-slot@1.0.2(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-slot@1.0.2(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -2465,12 +2465,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==}
peerDependencies:
'@types/react': '*'
@@ -2485,19 +2485,19 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
dev: false
- /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==}
peerDependencies:
'@types/react': '*'
@@ -2512,24 +2512,24 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-context': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-id': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@radix-ui/react-slot': 1.0.2(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-context': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-id': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@radix-ui/react-slot': 1.0.2(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
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.47)(react@18.2.0):
+ /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
'@types/react': '*'
@@ -2539,11 +2539,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
'@types/react': '*'
@@ -2553,12 +2553,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
'@types/react': '*'
@@ -2568,12 +2568,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
'@types/react': '*'
@@ -2583,11 +2583,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
'@types/react': '*'
@@ -2597,11 +2597,11 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
'@types/react': '*'
@@ -2612,11 +2612,11 @@ packages:
dependencies:
'@babel/runtime': 7.23.8
'@radix-ui/rect': 1.0.1
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-use-size@1.0.1(@types/react@18.2.47)(react@18.2.0):
+ /@radix-ui/react-use-size@1.0.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
'@types/react': '*'
@@ -2626,12 +2626,12 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.47)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.48)(react@18.2.0)
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
- /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0):
+ /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
'@types/react': '*'
@@ -2645,8 +2645,8 @@ packages:
optional: true
dependencies:
'@babel/runtime': 7.23.8
- '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.47)(react-dom@18.2.0)(react@18.2.0)
- '@types/react': 18.2.47
+ '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.18)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
+ '@types/react': 18.2.48
'@types/react-dom': 18.2.18
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -2800,8 +2800,8 @@ packages:
'@scure/base': 1.1.1
dev: false
- /@swc/core-darwin-arm64@1.3.102:
- resolution: {integrity: sha512-CJDxA5Wd2cUMULj3bjx4GEoiYyyiyL8oIOu4Nhrs9X+tlg8DnkCm4nI57RJGP8Mf6BaXPIJkHX8yjcefK2RlDA==}
+ /@swc/core-darwin-arm64@1.3.103:
+ resolution: {integrity: sha512-Dqqz48mvdm/3PHPPA6YeAEofkF9H5Krgqd/baPf0dXcarzng6U9Ilv2aCtDjq7dfI9jfkVCW5zuwq98PE2GEdw==}
engines: {node: '>=10'}
cpu: [arm64]
os: [darwin]
@@ -2809,8 +2809,8 @@ packages:
dev: true
optional: true
- /@swc/core-darwin-x64@1.3.102:
- resolution: {integrity: sha512-X5akDkHwk6oAer49oER0qZMjNMkLH3IOZaV1m98uXIasAGyjo5WH1MKPeMLY1sY6V6TrufzwiSwD4ds571ytcg==}
+ /@swc/core-darwin-x64@1.3.103:
+ resolution: {integrity: sha512-mhUVSCEAyFLqtrDtwr9qPbe891J8cKxq53CD873/ZsUnyasHMPyWXzTvy9qjmbYyfDIArm6fGqjF5YsDKwGGNg==}
engines: {node: '>=10'}
cpu: [x64]
os: [darwin]
@@ -2818,8 +2818,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm-gnueabihf@1.3.102:
- resolution: {integrity: sha512-kJH3XtZP9YQdjq/wYVBeFuiVQl4HaC4WwRrIxAHwe2OyvrwUI43dpW3LpxSggBnxXcVCXYWf36sTnv8S75o2Gw==}
+ /@swc/core-linux-arm-gnueabihf@1.3.103:
+ resolution: {integrity: sha512-rYLmwxr01ZHOI6AzooqwB0DOkMm0oU8Jznk6uutV1lHgcwyxsNiC1Css8yf77Xr/sYTvKvuTfBjThqa5H716pA==}
engines: {node: '>=10'}
cpu: [arm]
os: [linux]
@@ -2827,8 +2827,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-gnu@1.3.102:
- resolution: {integrity: sha512-flQP2WDyCgO24WmKA1wjjTx+xfCmavUete2Kp6yrM+631IHLGnr17eu7rYJ/d4EnDBId/ytMyrnWbTVkaVrpbQ==}
+ /@swc/core-linux-arm64-gnu@1.3.103:
+ resolution: {integrity: sha512-w+5XFpUqxiAGUBiyRyYR28Ghddp5uVyo+dHAkCnY1u3V6RsZkY3vRwmoXT7/HxVGV7csodJ1P9Cp9VaRnNvTKA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -2836,8 +2836,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-arm64-musl@1.3.102:
- resolution: {integrity: sha512-bQEQSnC44DyoIGLw1+fNXKVGoCHi7eJOHr8BdH0y1ooy9ArskMjwobBFae3GX4T1AfnrTaejyr0FvLYIb0Zkog==}
+ /@swc/core-linux-arm64-musl@1.3.103:
+ resolution: {integrity: sha512-lS5p8ewAIar7adX6t0OrkICTcw92PXrn3ZmYyG5hvfjUg4RPQFjMfFMDQSne32ZJhGXHBf0LVm1R8wHwkcpwgA==}
engines: {node: '>=10'}
cpu: [arm64]
os: [linux]
@@ -2845,8 +2845,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-gnu@1.3.102:
- resolution: {integrity: sha512-dFvnhpI478svQSxqISMt00MKTDS0e4YtIr+ioZDG/uJ/q+RpcNy3QI2KMm05Fsc8Y0d4krVtvCKWgfUMsJZXAg==}
+ /@swc/core-linux-x64-gnu@1.3.103:
+ resolution: {integrity: sha512-Lf2cHDoEPNB6TwexHBEZCsAO2C7beb0YljhtQS+QfjWLLVqCiwt5LRCPuKN2Bav7el9KZXOI5baXedUeFj0oFg==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -2854,8 +2854,8 @@ packages:
dev: true
optional: true
- /@swc/core-linux-x64-musl@1.3.102:
- resolution: {integrity: sha512-+a0M3CvjeIRNA/jTCzWEDh2V+mhKGvLreHOL7J97oULZy5yg4gf7h8lQX9J8t9QLbf6fsk+0F8bVH1Ie/PbXjA==}
+ /@swc/core-linux-x64-musl@1.3.103:
+ resolution: {integrity: sha512-HR1Y9iiLEO3F49P47vjbHczBza9RbdXWRWC8NpcOcGJ4Wnw0c2DLWAh416fGH3VYCF/19EuglLEXhvSj0NXGuA==}
engines: {node: '>=10'}
cpu: [x64]
os: [linux]
@@ -2863,8 +2863,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-arm64-msvc@1.3.102:
- resolution: {integrity: sha512-w76JWLjkZNOfkB25nqdWUNCbt0zJ41CnWrJPZ+LxEai3zAnb2YtgB/cCIrwxDebRuMgE9EJXRj7gDDaTEAMOOQ==}
+ /@swc/core-win32-arm64-msvc@1.3.103:
+ resolution: {integrity: sha512-3/GfROD1GPyf2hi6R0l4iZ5nrrKG8IU29hYhZCb7r0ZqhL/58kktVPlkib8X/EAJI8xbhM/NMl76h8ElrnyH5w==}
engines: {node: '>=10'}
cpu: [arm64]
os: [win32]
@@ -2872,8 +2872,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-ia32-msvc@1.3.102:
- resolution: {integrity: sha512-vlDb09HiGqKwz+2cxDS9T5/461ipUQBplvuhW+cCbzzGuPq8lll2xeyZU0N1E4Sz3MVdSPx1tJREuRvlQjrwNg==}
+ /@swc/core-win32-ia32-msvc@1.3.103:
+ resolution: {integrity: sha512-9ejEFjfgPi0ibNmtuiRbYq9p4RRV6oH1DN9XjkYM8zh2qHlpZHKQZ3n4eHS0VtJO4rEGZxL8ebcnTNs62wqJig==}
engines: {node: '>=10'}
cpu: [ia32]
os: [win32]
@@ -2881,8 +2881,8 @@ packages:
dev: true
optional: true
- /@swc/core-win32-x64-msvc@1.3.102:
- resolution: {integrity: sha512-E/jfSD7sShllxBwwgDPeXp1UxvIqehj/ShSUqq1pjR/IDRXngcRSXKJK92mJkNFY7suH6BcCWwzrxZgkO7sWmw==}
+ /@swc/core-win32-x64-msvc@1.3.103:
+ resolution: {integrity: sha512-/1RvaOmZolXurWAUdnELYynVlFUiT0hj3PyTPoo+YK6+KV7er4EqUalRsoUf3zzGepQuhKFZFDpQn6Xi9kJX1A==}
engines: {node: '>=10'}
cpu: [x64]
os: [win32]
@@ -2890,8 +2890,8 @@ packages:
dev: true
optional: true
- /@swc/core@1.3.102:
- resolution: {integrity: sha512-OAjNLY/f6QWKSDzaM3bk31A+OYHu6cPa9P/rFIx8X5d24tHXUpRiiq6/PYI6SQRjUPlB72GjsjoEU8F+ALadHg==}
+ /@swc/core@1.3.103:
+ resolution: {integrity: sha512-PYtt8KzRXIFDwxeD7BA9ylmXNQ4hRVcmDVuAmL3yvL9rgx7Tn3qn6T37wiMVZnP1OjqGyhuHRPNycd+ssr+byw==}
engines: {node: '>=10'}
requiresBuild: true
peerDependencies:
@@ -2903,16 +2903,16 @@ packages:
'@swc/counter': 0.1.2
'@swc/types': 0.1.5
optionalDependencies:
- '@swc/core-darwin-arm64': 1.3.102
- '@swc/core-darwin-x64': 1.3.102
- '@swc/core-linux-arm-gnueabihf': 1.3.102
- '@swc/core-linux-arm64-gnu': 1.3.102
- '@swc/core-linux-arm64-musl': 1.3.102
- '@swc/core-linux-x64-gnu': 1.3.102
- '@swc/core-linux-x64-musl': 1.3.102
- '@swc/core-win32-arm64-msvc': 1.3.102
- '@swc/core-win32-ia32-msvc': 1.3.102
- '@swc/core-win32-x64-msvc': 1.3.102
+ '@swc/core-darwin-arm64': 1.3.103
+ '@swc/core-darwin-x64': 1.3.103
+ '@swc/core-linux-arm-gnueabihf': 1.3.103
+ '@swc/core-linux-arm64-gnu': 1.3.103
+ '@swc/core-linux-arm64-musl': 1.3.103
+ '@swc/core-linux-x64-gnu': 1.3.103
+ '@swc/core-linux-x64-musl': 1.3.103
+ '@swc/core-win32-arm64-msvc': 1.3.103
+ '@swc/core-win32-ia32-msvc': 1.3.103
+ '@swc/core-win32-x64-msvc': 1.3.103
dev: true
/@swc/counter@0.1.2:
@@ -2944,16 +2944,16 @@ packages:
tailwindcss: 3.4.1
dev: true
- /@tanstack/query-core@5.17.9:
- resolution: {integrity: sha512-8xcvpWIPaRMDNLMvG9ugcUJMgFK316ZsqkPPbsI+TMZsb10N9jk0B6XgPk4/kgWC2ziHyWR7n7wUhxmD0pChQw==}
+ /@tanstack/query-core@5.17.10:
+ resolution: {integrity: sha512-bJ2oQUDBftvHcEkLS3gyzzShSeZpJyzNNRu8oHK13iNdsofyaDXtNO/c1Zy/PZYVX+PhqOXwoT42gMiEMRSSfQ==}
dev: false
- /@tanstack/react-query@5.17.9(react@18.2.0):
- resolution: {integrity: sha512-M5E9gwUq1Stby/pdlYjBlL24euIVuGbWKIFCbtnQxSdXI4PgzjTSdXdV3QE6fc+itF+TUvX/JPTKIwq8yuBXcg==}
+ /@tanstack/react-query@5.17.12(react@18.2.0):
+ resolution: {integrity: sha512-mJQ+3da1ug4t9b+GycUuNzMs5hd6t+F4tJ1hqyaN/dlETP+bWwYwrv2GXFIbZIfI1K1Hu+XWZ6HUhRPbNtZ4QQ==}
peerDependencies:
react: ^18.0.0
dependencies:
- '@tanstack/query-core': 5.17.9
+ '@tanstack/query-core': 5.17.10
react: 18.2.0
dev: false
@@ -3153,8 +3153,8 @@ packages:
resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==}
dev: false
- /@types/node@20.11.0:
- resolution: {integrity: sha512-o9bjXmDNcF7GbM4CNQpmi+TutCgap/K3w1JyKgxAjqx41zp9qlIAVFi0IhCNsJcXolEqLWhbFbEeL0PvYm4pcQ==}
+ /@types/node@20.11.3:
+ resolution: {integrity: sha512-nrlmbvGPNGaj84IJZXMPhQuCMEVTT/hXZMJJG/aIqVL9fKxqk814sGGtJA4GI6hpJSLQjpi6cn0Qx9eOf9SDVg==}
dependencies:
undici-types: 5.26.5
dev: true
@@ -3165,10 +3165,10 @@ packages:
/@types/react-dom@18.2.18:
resolution: {integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==}
dependencies:
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
- /@types/react@18.2.47:
- resolution: {integrity: sha512-xquNkkOirwyCgoClNk85BjP+aqnIS+ckAJ8i37gAbDs14jfW/J23f2GItAf33oiUPQnqNMALiFeoM9Y5mbjpVQ==}
+ /@types/react@18.2.48:
+ resolution: {integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==}
dependencies:
'@types/prop-types': 15.7.11
'@types/scheduler': 0.16.8
@@ -3177,14 +3177,14 @@ packages:
/@types/scheduler@0.16.8:
resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==}
- /@vidstack/react@1.9.8(@types/react@18.2.47)(react@18.2.0):
+ /@vidstack/react@1.9.8(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-1gGlCXpmGriKZ+sgP1WLgm4tpkU2buXeAIPFoh8t7V4X3jV1l15oZS4whfPswCY6/9jAwVKq0jQBLryAuBYZww==}
engines: {node: '>=18'}
peerDependencies:
'@types/react': ^18.0.0
react: ^18.0.0
dependencies:
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
media-captions: 1.0.2
react: 18.2.0
dev: false
@@ -3194,8 +3194,8 @@ packages:
peerDependencies:
vite: ^4 || ^5
dependencies:
- '@swc/core': 1.3.102
- vite: 5.0.11(@types/node@20.11.0)
+ '@swc/core': 1.3.103
+ vite: 5.0.11(@types/node@20.11.3)
transitivePeerDependencies:
- '@swc/helpers'
dev: true
@@ -3428,7 +3428,7 @@ packages:
hasBin: true
dependencies:
caniuse-lite: 1.0.30001576
- electron-to-chromium: 1.4.629
+ electron-to-chromium: 1.4.631
node-releases: 2.0.14
update-browserslist-db: 1.0.13(browserslist@4.22.2)
@@ -3458,7 +3458,7 @@ packages:
dependencies:
function-bind: 1.1.2
get-intrinsic: 1.2.2
- set-function-length: 1.1.1
+ set-function-length: 1.2.0
dev: true
/camelcase-css@2.0.1:
@@ -3764,8 +3764,8 @@ packages:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
dev: true
- /electron-to-chromium@1.4.629:
- resolution: {integrity: sha512-5UUkr3k3CZ/k+9Sw7vaaIMyOzMC0XbPyprKI3n0tbKDqkzTDOjK4izm7DxlkueRMim6ZZQ1ja9F7hoFVplHihA==}
+ /electron-to-chromium@1.4.631:
+ resolution: {integrity: sha512-g73CJB/rMPjdxpiNJYmV1homV7mLVUNe/R0z/HhqMfpjkt58FpYmkTjbtuv3zymdbTTJ+VOEqe1c+lkTjSOhmQ==}
/emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -3818,7 +3818,7 @@ packages:
object-keys: 1.1.1
object.assign: 4.1.5
regexp.prototype.flags: 1.5.1
- safe-array-concat: 1.0.1
+ safe-array-concat: 1.1.0
safe-regex-test: 1.0.2
string.prototype.trim: 1.2.8
string.prototype.trimend: 1.0.7
@@ -4511,7 +4511,7 @@ packages:
hasBin: true
dev: true
- /jotai@2.6.1(@types/react@18.2.47)(react@18.2.0):
+ /jotai@2.6.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-GLQtAnA9iEKRMXnyCjf1azIxfQi5JausX2EI5qSlb59j4i73ZEyV/EXPDEAQj4uQNZYEefi3degv/Pw3+L/Dtg==}
engines: {node: '>=12.20.0'}
peerDependencies:
@@ -4523,7 +4523,7 @@ packages:
react:
optional: true
dependencies:
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
dev: false
@@ -4956,7 +4956,7 @@ packages:
call-bind: 1.0.5
define-properties: 1.2.1
es-abstract: 1.22.3
- safe-array-concat: 1.0.1
+ safe-array-concat: 1.1.0
dev: true
/on-finished@2.3.0:
@@ -5184,8 +5184,8 @@ packages:
react: 18.2.0
dev: false
- /react-hotkeys-hook@4.4.3(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-G6psp7OUm9xxY4G2vL48tBwWUVJLvD/PeInaPdPvqRJ8GoXBu6Djqr6WIw5gu1M0SbR1epNUlvpccxu2ZzmtFQ==}
+ /react-hotkeys-hook@4.4.4(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-wzZmqb/Obr0ds9Myc1sIFPJ52GA/Eeg/vXBWV0HA1LvHlVAW5Va3KB0q6EZNlNSHQWscWZ2K8+6w0GYSie2o7A==}
peerDependencies:
react: '>=16.8.1'
react-dom: '>=16.8.1'
@@ -5194,7 +5194,7 @@ packages:
react-dom: 18.2.0(react@18.2.0)
dev: false
- /react-remove-scroll-bar@2.3.4(@types/react@18.2.47)(react@18.2.0):
+ /react-remove-scroll-bar@2.3.4(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
engines: {node: '>=10'}
peerDependencies:
@@ -5204,13 +5204,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
- react-style-singleton: 2.2.1(@types/react@18.2.47)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0)
tslib: 2.6.2
dev: false
- /react-remove-scroll@2.5.5(@types/react@18.2.47)(react@18.2.0):
+ /react-remove-scroll@2.5.5(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
@@ -5220,13 +5220,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
- react-remove-scroll-bar: 2.3.4(@types/react@18.2.47)(react@18.2.0)
- react-style-singleton: 2.2.1(@types/react@18.2.47)(react@18.2.0)
+ react-remove-scroll-bar: 2.3.4(@types/react@18.2.48)(react@18.2.0)
+ react-style-singleton: 2.2.1(@types/react@18.2.48)(react@18.2.0)
tslib: 2.6.2
- use-callback-ref: 1.3.1(@types/react@18.2.47)(react@18.2.0)
- use-sidecar: 1.1.2(@types/react@18.2.47)(react@18.2.0)
+ use-callback-ref: 1.3.1(@types/react@18.2.48)(react@18.2.0)
+ use-sidecar: 1.1.2(@types/react@18.2.48)(react@18.2.0)
dev: false
/react-router-dom@6.21.2(react-dom@18.2.0)(react@18.2.0):
@@ -5257,7 +5257,7 @@ packages:
engines: {node: '>=0.12.0'}
dev: false
- /react-style-singleton@2.2.1(@types/react@18.2.47)(react@18.2.0):
+ /react-style-singleton@2.2.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -5267,7 +5267,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.2.0
@@ -5387,8 +5387,8 @@ packages:
queue-microtask: 1.2.3
dev: true
- /safe-array-concat@1.0.1:
- resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
+ /safe-array-concat@1.1.0:
+ resolution: {integrity: sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==}
engines: {node: '>=0.4'}
dependencies:
call-bind: 1.0.5
@@ -5473,11 +5473,12 @@ packages:
- supports-color
dev: true
- /set-function-length@1.1.1:
- resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
+ /set-function-length@1.2.0:
+ resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==}
engines: {node: '>= 0.4'}
dependencies:
define-data-property: 1.1.1
+ function-bind: 1.1.2
get-intrinsic: 1.2.2
gopd: 1.0.1
has-property-descriptors: 1.0.1
@@ -6078,7 +6079,7 @@ packages:
tlds: 1.248.0
dev: false
- /use-callback-ref@1.3.1(@types/react@18.2.47)(react@18.2.0):
+ /use-callback-ref@1.3.1(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ==}
engines: {node: '>=10'}
peerDependencies:
@@ -6088,7 +6089,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
react: 18.2.0
tslib: 2.6.2
dev: false
@@ -6111,7 +6112,7 @@ packages:
scheduler: 0.23.0
dev: false
- /use-sidecar@1.1.2(@types/react@18.2.47)(react@18.2.0):
+ /use-sidecar@1.1.2(@types/react@18.2.48)(react@18.2.0):
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
@@ -6121,7 +6122,7 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.2.47
+ '@types/react': 18.2.48
detect-node-es: 1.1.0
react: 18.2.0
tslib: 2.6.2
@@ -6190,8 +6191,8 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /virtua@0.20.4(react-dom@18.2.0)(react@18.2.0):
- resolution: {integrity: sha512-WJ2VOABorQa/OgN3XCjmBLbGFzwgYnyt432ZQWK4zrqAWDanPxY5o8badIFsiLUk64nNjpmrnb/ZJ5e0nfulxw==}
+ /virtua@0.20.5(react-dom@18.2.0)(react@18.2.0):
+ resolution: {integrity: sha512-GHL+kSTotf5L1x3/Wcir0KkNKxmQIdWiDrcrBNz+DMiLUdNtskKs+E76Z0SSeeL0+I/PFutBrI8fXw/j7N+6sQ==}
peerDependencies:
react: '>=16.14.0'
react-dom: '>=16.14.0'
@@ -6214,9 +6215,9 @@ packages:
vite: '>=2.8'
dependencies:
'@rollup/plugin-virtual': 3.0.2
- '@swc/core': 1.3.102
+ '@swc/core': 1.3.103
uuid: 9.0.1
- vite: 5.0.11(@types/node@20.11.0)
+ vite: 5.0.11(@types/node@20.11.3)
transitivePeerDependencies:
- '@swc/helpers'
- rollup
@@ -6233,13 +6234,13 @@ packages:
debug: 4.3.4
globrex: 0.1.2
tsconfck: 2.1.2(typescript@5.3.3)
- vite: 5.0.11(@types/node@20.11.0)
+ vite: 5.0.11(@types/node@20.11.3)
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /vite@5.0.11(@types/node@20.11.0):
+ /vite@5.0.11(@types/node@20.11.3):
resolution: {integrity: sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -6267,7 +6268,7 @@ packages:
terser:
optional: true
dependencies:
- '@types/node': 20.11.0
+ '@types/node': 20.11.3
esbuild: 0.19.11
postcss: 8.4.33
rollup: 4.9.5
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index 17e78883..ef80f94d 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -8,7 +8,7 @@
"withGlobalTauri": true
},
"package": {
- "productName": "Lume",
+ "productName": "Lume 3",
"version": "3.0.0"
},
"plugins": {