- {isOpen ? : }
+ {isOpen ? (
+
+ ) : (
+
+ )}
{segment && (
diff --git a/context/user.tsx b/context/user.tsx
index d9c1bca..715bb14 100644
--- a/context/user.tsx
+++ b/context/user.tsx
@@ -2,7 +2,7 @@
import { useMe } from '@/lib/hooks/use-players';
import type { Player } from '@/lib/players';
-import { createContext, type ReactNode } from 'react';
+import { createContext, useContext, type ReactNode } from 'react';
export const UserContext = createContext<{
data: Player | null | undefined;
@@ -14,6 +14,19 @@ export const UserContext = createContext<{
error: null
});
+/**
+ * Custom hook to get the user data from the context.
+ *
+ * @returns {Player | null | undefined} The user data.
+ */
+export const useUser = () => {
+ const context = useContext(UserContext);
+ if (context === undefined) {
+ throw new Error('useUser must be used within a UserProvider');
+ }
+ return context;
+};
+
export const UserProvider = ({ token, children }: { token: string; children: ReactNode }) => {
const { data, isLoading, error } = useMe({ token });
return
{children} ;
diff --git a/lib/hooks/use-toast.ts b/lib/hooks/use-toast.ts
deleted file mode 100644
index 69a5989..0000000
--- a/lib/hooks/use-toast.ts
+++ /dev/null
@@ -1,187 +0,0 @@
-// Inspired by react-hot-toast library
-import * as React from 'react';
-
-import type { ToastActionElement, ToastProps } from '@/components/ui/Toast';
-
-const TOAST_LIMIT = 1;
-const TOAST_REMOVE_DELAY = 1000000;
-
-type ToasterToast = ToastProps & {
- id: string;
- title?: React.ReactNode;
- description?: React.ReactNode;
- action?: ToastActionElement;
-};
-
-const actionTypes = {
- ADD_TOAST: 'ADD_TOAST',
- UPDATE_TOAST: 'UPDATE_TOAST',
- DISMISS_TOAST: 'DISMISS_TOAST',
- REMOVE_TOAST: 'REMOVE_TOAST'
-} as const;
-
-let count = 0;
-
-function genId() {
- count = (count + 1) % Number.MAX_VALUE;
- return count.toString();
-}
-
-type ActionType = typeof actionTypes;
-
-type Action =
- | {
- type: ActionType['ADD_TOAST'];
- toast: ToasterToast;
- }
- | {
- type: ActionType['UPDATE_TOAST'];
- toast: Partial
;
- }
- | {
- type: ActionType['DISMISS_TOAST'];
- toastId?: ToasterToast['id'];
- }
- | {
- type: ActionType['REMOVE_TOAST'];
- toastId?: ToasterToast['id'];
- };
-
-interface State {
- toasts: ToasterToast[];
-}
-
-const toastTimeouts = new Map>();
-
-const addToRemoveQueue = (toastId: string) => {
- if (toastTimeouts.has(toastId)) {
- return;
- }
-
- const timeout = setTimeout(() => {
- toastTimeouts.delete(toastId);
- dispatch({
- type: 'REMOVE_TOAST',
- toastId: toastId
- });
- }, TOAST_REMOVE_DELAY);
-
- toastTimeouts.set(toastId, timeout);
-};
-
-export const reducer = (state: State, action: Action): State => {
- switch (action.type) {
- case 'ADD_TOAST':
- return {
- ...state,
- toasts: [action.toast, ...state.toasts].slice(0, TOAST_LIMIT)
- };
-
- case 'UPDATE_TOAST':
- return {
- ...state,
- toasts: state.toasts.map((t) => (t.id === action.toast.id ? { ...t, ...action.toast } : t))
- };
-
- case 'DISMISS_TOAST': {
- const { toastId } = action;
-
- // ! Side effects ! - This could be extracted into a dismissToast() action,
- // but I'll keep it here for simplicity
- if (toastId) {
- addToRemoveQueue(toastId);
- } else {
- state.toasts.forEach((toast) => {
- addToRemoveQueue(toast.id);
- });
- }
-
- return {
- ...state,
- toasts: state.toasts.map((t) =>
- t.id === toastId || toastId === undefined
- ? {
- ...t,
- open: false
- }
- : t
- )
- };
- }
- case 'REMOVE_TOAST':
- if (action.toastId === undefined) {
- return {
- ...state,
- toasts: []
- };
- }
- return {
- ...state,
- toasts: state.toasts.filter((t) => t.id !== action.toastId)
- };
- }
-};
-
-const listeners: Array<(state: State) => void> = [];
-
-let memoryState: State = { toasts: [] };
-
-function dispatch(action: Action) {
- memoryState = reducer(memoryState, action);
- listeners.forEach((listener) => {
- listener(memoryState);
- });
-}
-
-type Toast = Omit;
-
-function toast({ ...props }: Toast) {
- const id = genId();
-
- const update = (props: ToasterToast) =>
- dispatch({
- type: 'UPDATE_TOAST',
- toast: { ...props, id }
- });
- const dismiss = () => dispatch({ type: 'DISMISS_TOAST', toastId: id });
-
- dispatch({
- type: 'ADD_TOAST',
- toast: {
- ...props,
- id,
- open: true,
- onOpenChange: (open: any) => {
- if (!open) dismiss();
- }
- }
- });
-
- return {
- id: id,
- dismiss,
- update
- };
-}
-
-function useToast() {
- const [state, setState] = React.useState(memoryState);
-
- React.useEffect(() => {
- listeners.push(setState);
- return () => {
- const index = listeners.indexOf(setState);
- if (index > -1) {
- listeners.splice(index, 1);
- }
- };
- }, [state]);
-
- return {
- ...state,
- toast,
- dismiss: (toastId?: string) => dispatch({ type: 'DISMISS_TOAST', toastId })
- };
-}
-
-export { useToast, toast };
diff --git a/lib/nav-items.ts b/lib/nav-items.ts
index f4a8daf..409165f 100644
--- a/lib/nav-items.ts
+++ b/lib/nav-items.ts
@@ -1,5 +1,4 @@
-import { Icons, type Icon } from '@/components/ui/Icon';
-import { ReactNode } from 'react';
+import { Award, BarChart2, Code, LayoutDashboard, Settings2, type LucideIcon } from 'lucide-react';
/**
* A navigation item.
@@ -13,7 +12,7 @@ import { ReactNode } from 'react';
export type NavItem = {
name: string;
slug: string;
- icon: string;
+ icon: LucideIcon | React.JSXElementConstructor>;
disabled?: boolean;
};
@@ -26,31 +25,31 @@ export const navItems: NavItem[] = [
{
name: 'Dashboard',
slug: 'dashboard',
- icon: 'dashboard-line',
+ icon: LayoutDashboard,
disabled: false
},
{
name: 'Classement',
slug: 'dashboard/leaderboard',
- icon: 'line-chart-line',
+ icon: BarChart2,
disabled: false
},
{
name: 'Puzzles',
slug: 'dashboard/puzzles',
- icon: 'code-s-slash-line',
+ icon: Code,
disabled: false
},
{
name: 'Badges',
slug: 'dashboard/badges',
- icon: 'award-fill',
+ icon: Award,
disabled: false
},
{
name: 'Paramètres',
slug: 'dashboard/settings',
- icon: 'equalizer-line',
+ icon: Settings2,
disabled: false
}
];
diff --git a/next.config.js b/next.config.js
index 7c2dfbb..8b749dd 100644
--- a/next.config.js
+++ b/next.config.js
@@ -2,6 +2,10 @@
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
+ output: 'standalone',
+ eslint: {
+ ignoreDuringBuilds: true
+ },
redirects: async () => {
return [
{
@@ -14,37 +18,60 @@ const nextConfig = {
headers: async () => {
return [
{
- source: '/:path*',
- headers: [
- {
- key: 'X-Frame-Options',
- value: 'DENY'
- },
- // {
- // key: 'Content-Security-Policy',
- // value:
- // "connect-src 'self' https://api.peerat.dev wss://api.peerat.dev; default-src 'self'; font-src 'self'; frame-ancestors 'none'; img-src 'self' data:; script-src 'self'; style-src 'self' https://fonts.googleapis.com;"
- // },
- {
- key: 'X-Content-Type-Options',
- value: 'nosniff'
- },
- {
- key: 'Permissions-Policy',
- value: 'camera=(), battery=(), geolocation=(), microphone=(), browsing-topics=()'
- },
- {
- key: 'Referrer-Policy',
- value: 'strict-origin-when-cross-origin'
- },
- {
- key: 'Strict-Transport-Security',
- value: 'max-age=31536000; includeSubDomains; preload'
- }
- ]
+ source: '/(.*)',
+ headers: securityHeaders
}
];
}
};
+// https://nextjs.org/docs/advanced-features/security-headers
+const ContentSecurityPolicy = `
+default-src 'self';
+script-src 'self' 'unsafe-eval' 'unsafe-inline';
+style-src 'self' 'unsafe-inline';
+img-src * blob: data:;
+media-src 'none';
+connect-src *;
+font-src 'self' data:;
+`;
+
+const securityHeaders = [
+ // https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
+ {
+ key: 'Content-Security-Policy',
+ value: ContentSecurityPolicy.replace(/\n/g, '')
+ },
+ // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
+ {
+ key: 'Referrer-Policy',
+ value: 'origin-when-cross-origin'
+ },
+ // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
+ {
+ key: 'X-Frame-Options',
+ value: 'DENY'
+ },
+ // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
+ {
+ key: 'X-Content-Type-Options',
+ value: 'nosniff'
+ },
+ // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-DNS-Prefetch-Control
+ {
+ key: 'X-DNS-Prefetch-Control',
+ value: 'on'
+ },
+ // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
+ {
+ key: 'Strict-Transport-Security',
+ value: 'max-age=31536000; includeSubDomains; preload'
+ },
+ // https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy
+ {
+ key: 'Permissions-Policy',
+ value: 'camera=(), microphone=(), geolocation=()'
+ }
+];
+
module.exports = nextConfig;
diff --git a/package.json b/package.json
index 96ed901..3934984 100644
--- a/package.json
+++ b/package.json
@@ -3,8 +3,8 @@
"private": true,
"scripts": {
"dev": "next dev",
- "build": "next build",
- "start": "next start",
+ "build": "next",
+ "start": "node .next/standalone/server.js",
"lint": "next lint",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check \"**/*.{ts,tsx,json}\"",
@@ -20,52 +20,52 @@
},
"homepage": "https://github.com/Peer-at-Code/peer-at-code#readme",
"dependencies": {
- "@hookform/resolvers": "^3.1.0",
- "@radix-ui/react-dialog": "^1.0.3",
+ "@hookform/resolvers": "^3.1.1",
+ "@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
- "@radix-ui/react-popover": "^1.0.5",
+ "@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
+ "@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
- "boring-avatars": "^1.7.0",
- "class-variance-authority": "^0.6.0",
- "clsx": "^1.2.1",
- "edge-csrf": "^1.0.3",
- "framer-motion": "^10.12.4",
- "js-cookie": "^3.0.1",
- "lucide-react": "^0.252.0",
- "next": "13.4.8",
+ "boring-avatars": "^1.10.1",
+ "class-variance-authority": "^0.7.0",
+ "clsx": "^2.0.0",
+ "edge-csrf": "^1.0.4",
+ "framer-motion": "^10.12.22",
+ "js-cookie": "^3.0.5",
+ "lucide-react": "^0.261.0",
+ "next": "13.4.10",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
- "react-hook-form": "^7.44.2",
- "react-markdown": "^8.0.5",
- "remark-breaks": "^3.0.2",
+ "react-hook-form": "^7.45.2",
+ "react-markdown": "^8.0.7",
+ "remark-breaks": "^3.0.3",
"remark-gfm": "^3.0.1",
- "remixicon": "^3.3.0",
- "sharp": "^0.32.1",
- "swr": "^2.0.3",
- "tailwind-merge": "^1.12.0",
- "tailwindcss-animate": "^1.0.5",
+ "sharp": "^0.32.3",
+ "swr": "^2.2.0",
+ "tailwind-merge": "^1.14.0",
+ "tailwindcss-animate": "^1.0.6",
"zod": "^3.21.4"
},
"devDependencies": {
- "@tailwindcss/forms": "^0.5.3",
+ "@tailwindcss/forms": "^0.5.4",
"@types/js-cookie": "^3.0.3",
- "@types/node": "18.11.18",
- "@types/react": "18.0.27",
- "@types/react-dom": "18.0.10",
- "@typescript-eslint/eslint-plugin": "^5.50.0",
- "@typescript-eslint/parser": "^5.50.0",
- "autoprefixer": "^10.4.13",
- "eslint": "8.33.0",
- "eslint-config-next": "13.3.1",
- "eslint-config-prettier": "^8.6.0",
- "eslint-plugin-prettier": "^4.2.1",
- "postcss": "^8.4.21",
- "prettier": "^2.8.3",
- "prettier-plugin-tailwindcss": "^0.2.7",
- "tailwindcss": "^3.2.4",
- "typescript": "4.9.5"
+ "@types/node": "20.4.2",
+ "@types/react": "18.2.15",
+ "@types/react-dom": "18.2.7",
+ "@typescript-eslint/eslint-plugin": "^6.1.0",
+ "@typescript-eslint/parser": "^6.1.0",
+ "autoprefixer": "^10.4.14",
+ "eslint": "8.45.0",
+ "eslint-config-next": "13.4.10",
+ "eslint-config-prettier": "^8.8.0",
+ "eslint-plugin-prettier": "^5.0.0",
+ "postcss": "^8.4.26",
+ "prettier": "^3.0.0",
+ "prettier-plugin-tailwindcss": "^0.4.1",
+ "tailwindcss": "^3.3.3",
+ "typescript": "5.1.6"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index eca2be1..adad0f1 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,109 +1,114 @@
lockfileVersion: 5.4
specifiers:
- '@hookform/resolvers': ^3.1.0
- '@radix-ui/react-dialog': ^1.0.3
+ '@hookform/resolvers': ^3.1.1
+ '@radix-ui/react-dialog': ^1.0.4
'@radix-ui/react-label': ^2.0.2
- '@radix-ui/react-popover': ^1.0.5
+ '@radix-ui/react-popover': ^1.0.6
'@radix-ui/react-select': ^1.2.2
+ '@radix-ui/react-separator': ^1.0.3
'@radix-ui/react-slot': ^1.0.2
'@radix-ui/react-toast': ^1.1.4
- '@tailwindcss/forms': ^0.5.3
+ '@tailwindcss/forms': ^0.5.4
'@types/js-cookie': ^3.0.3
- '@types/node': 18.11.18
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
- '@typescript-eslint/eslint-plugin': ^5.50.0
- '@typescript-eslint/parser': ^5.50.0
- autoprefixer: ^10.4.13
- boring-avatars: ^1.7.0
- class-variance-authority: ^0.6.0
- clsx: ^1.2.1
- edge-csrf: ^1.0.3
- eslint: 8.33.0
- eslint-config-next: 13.3.1
- eslint-config-prettier: ^8.6.0
- eslint-plugin-prettier: ^4.2.1
- framer-motion: ^10.12.4
- js-cookie: ^3.0.1
- lucide-react: ^0.252.0
- next: 13.4.8
+ '@types/node': 20.4.2
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
+ '@typescript-eslint/eslint-plugin': ^6.1.0
+ '@typescript-eslint/parser': ^6.1.0
+ autoprefixer: ^10.4.14
+ boring-avatars: ^1.10.1
+ class-variance-authority: ^0.7.0
+ clsx: ^2.0.0
+ edge-csrf: ^1.0.4
+ eslint: 8.45.0
+ eslint-config-next: 13.4.10
+ eslint-config-prettier: ^8.8.0
+ eslint-plugin-prettier: ^5.0.0
+ framer-motion: ^10.12.22
+ js-cookie: ^3.0.5
+ lucide-react: ^0.261.0
+ next: 13.4.10
next-themes: ^0.2.1
- postcss: ^8.4.21
- prettier: ^2.8.3
- prettier-plugin-tailwindcss: ^0.2.7
+ postcss: ^8.4.26
+ prettier: ^3.0.0
+ prettier-plugin-tailwindcss: ^0.4.1
react: 18.2.0
react-dom: 18.2.0
- react-hook-form: ^7.44.2
- react-markdown: ^8.0.5
- remark-breaks: ^3.0.2
+ react-hook-form: ^7.45.2
+ react-markdown: ^8.0.7
+ remark-breaks: ^3.0.3
remark-gfm: ^3.0.1
- remixicon: ^3.3.0
- sharp: ^0.32.1
- swr: ^2.0.3
- tailwind-merge: ^1.12.0
- tailwindcss: ^3.2.4
- tailwindcss-animate: ^1.0.5
- typescript: 4.9.5
+ sharp: ^0.32.3
+ swr: ^2.2.0
+ tailwind-merge: ^1.14.0
+ tailwindcss: ^3.3.3
+ tailwindcss-animate: ^1.0.6
+ typescript: 5.1.6
zod: ^3.21.4
dependencies:
- '@hookform/resolvers': 3.1.0_react-hook-form@7.44.2
- '@radix-ui/react-dialog': 1.0.4_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-label': 2.0.2_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-popover': 1.0.6_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-select': 1.2.2_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-slot': 1.0.2_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-toast': 1.1.4_fxtgt6bjwd6p4cwoordejim2zi
- boring-avatars: 1.7.0
- class-variance-authority: 0.6.0_typescript@4.9.5
- clsx: 1.2.1
- edge-csrf: 1.0.3_next@13.4.8
- framer-motion: 10.12.16_biqbaboplfbrettd7655fr4n2y
+ '@hookform/resolvers': 3.1.1_react-hook-form@7.45.2
+ '@radix-ui/react-dialog': 1.0.4_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-label': 2.0.2_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-popover': 1.0.6_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-select': 1.2.2_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-separator': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-slot': 1.0.2_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-toast': 1.1.4_uas4yajzsllemiyrexr66mus4q
+ boring-avatars: 1.10.1
+ class-variance-authority: 0.7.0
+ clsx: 2.0.0
+ edge-csrf: 1.0.4_next@13.4.10
+ framer-motion: 10.12.22_biqbaboplfbrettd7655fr4n2y
js-cookie: 3.0.5
- lucide-react: 0.252.0_react@18.2.0
- next: 13.4.8_biqbaboplfbrettd7655fr4n2y
- next-themes: 0.2.1_huavqdni4pobvfczobpbvo6vhq
+ lucide-react: 0.261.0_react@18.2.0
+ next: 13.4.10_biqbaboplfbrettd7655fr4n2y
+ next-themes: 0.2.1_ajgs2obdksmy6bafrtpl2cn7xi
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- react-hook-form: 7.44.2_react@18.2.0
- react-markdown: 8.0.7_3stiutgnnbnfnf3uowm5cip22i
+ react-hook-form: 7.45.2_react@18.2.0
+ react-markdown: 8.0.7_tznpbkknyqq5lcv5sgrl332jvu
remark-breaks: 3.0.3
remark-gfm: 3.0.1
- remixicon: 3.3.0
- sharp: 0.32.1
- swr: 2.1.5_react@18.2.0
- tailwind-merge: 1.12.0
- tailwindcss-animate: 1.0.5_tailwindcss@3.3.2
+ sharp: 0.32.3
+ swr: 2.2.0_react@18.2.0
+ tailwind-merge: 1.14.0
+ tailwindcss-animate: 1.0.6_tailwindcss@3.3.3
zod: 3.21.4
devDependencies:
- '@tailwindcss/forms': 0.5.3_tailwindcss@3.3.2
+ '@tailwindcss/forms': 0.5.4_tailwindcss@3.3.3
'@types/js-cookie': 3.0.3
- '@types/node': 18.11.18
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
- '@typescript-eslint/eslint-plugin': 5.59.8_fhb3kvfktlykk2c4fj73t2wera
- '@typescript-eslint/parser': 5.59.8_4vsywjlpuriuw3tl5oq6zy5a64
- autoprefixer: 10.4.14_postcss@8.4.24
- eslint: 8.33.0
- eslint-config-next: 13.3.1_4vsywjlpuriuw3tl5oq6zy5a64
- eslint-config-prettier: 8.8.0_eslint@8.33.0
- eslint-plugin-prettier: 4.2.1_dqyzymronrq2n72ulhdi2p3t54
- postcss: 8.4.24
- prettier: 2.8.8
- prettier-plugin-tailwindcss: 0.2.8_prettier@2.8.8
- tailwindcss: 3.3.2
- typescript: 4.9.5
+ '@types/node': 20.4.2
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
+ '@typescript-eslint/eslint-plugin': 6.1.0_ddwllfjrppzgeb7ohd2ng4d3za
+ '@typescript-eslint/parser': 6.1.0_ko3fmmbeyij36muomfgt2u76xu
+ autoprefixer: 10.4.14_postcss@8.4.26
+ eslint: 8.45.0
+ eslint-config-next: 13.4.10_ko3fmmbeyij36muomfgt2u76xu
+ eslint-config-prettier: 8.8.0_eslint@8.45.0
+ eslint-plugin-prettier: 5.0.0_yjgmq4klicndfvjoi45ockwhk4
+ postcss: 8.4.26
+ prettier: 3.0.0
+ prettier-plugin-tailwindcss: 0.4.1_prettier@3.0.0
+ tailwindcss: 3.3.3
+ typescript: 5.1.6
packages:
+ /@aashutoshrathi/word-wrap/1.2.6:
+ resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
+ engines: {node: '>=0.10.0'}
+ dev: true
+
/@alloc/quick-lru/5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
- /@babel/runtime/7.22.3:
- resolution: {integrity: sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==}
+ /@babel/runtime/7.22.6:
+ resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==}
engines: {node: '>=6.9.0'}
dependencies:
regenerator-runtime: 0.13.11
@@ -121,13 +126,13 @@ packages:
dev: false
optional: true
- /@eslint-community/eslint-utils/4.4.0_eslint@8.33.0:
+ /@eslint-community/eslint-utils/4.4.0_eslint@8.45.0:
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
dependencies:
- eslint: 8.33.0
+ eslint: 8.45.0
eslint-visitor-keys: 3.4.1
dev: true
@@ -136,13 +141,13 @@ packages:
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
dev: true
- /@eslint/eslintrc/1.4.1:
- resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==}
+ /@eslint/eslintrc/2.1.0:
+ resolution: {integrity: sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
ajv: 6.12.6
debug: 4.3.4
- espree: 9.5.2
+ espree: 9.6.1
globals: 13.20.0
ignore: 5.2.4
import-fresh: 3.3.0
@@ -153,37 +158,42 @@ packages:
- supports-color
dev: true
- /@floating-ui/core/1.2.6:
- resolution: {integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg==}
+ /@eslint/js/8.44.0:
+ resolution: {integrity: sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dev: true
+
+ /@floating-ui/core/1.3.1:
+ resolution: {integrity: sha512-Bu+AMaXNjrpjh41znzHqaz3r2Nr8hHuHZT6V2LBKMhyMl0FgKA62PNYbqnfgmzOhoWZj70Zecisbo4H1rotP5g==}
dev: false
- /@floating-ui/dom/1.2.9:
- resolution: {integrity: sha512-sosQxsqgxMNkV3C+3UqTS6LxP7isRLwX8WMepp843Rb3/b0Wz8+MdUkxJksByip3C2WwLugLHN1b4ibn//zKwQ==}
+ /@floating-ui/dom/1.4.5:
+ resolution: {integrity: sha512-96KnRWkRnuBSSFbj0sFGwwOUd8EkiecINVl0O9wiZlZ64EkpyAOG3Xc2vKKNJmru0Z7RqWNymA+6b8OZqjgyyw==}
dependencies:
- '@floating-ui/core': 1.2.6
+ '@floating-ui/core': 1.3.1
dev: false
- /@floating-ui/react-dom/2.0.0_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-Ke0oU3SeuABC2C4OFu2mSAwHIP5WUiV98O9YWoHV4Q5aT6E9k06DV0Khi5uYspR8xmmBk08t8ZDcz3TR3ARkEg==}
+ /@floating-ui/react-dom/2.0.1_biqbaboplfbrettd7655fr4n2y:
+ resolution: {integrity: sha512-rZtAmSht4Lry6gdhAJDrCp/6rKN7++JnL1/Anbr/DdeyYXQPxvg/ivrbYvJulbRf4vL8b212suwMM2lxbv+RQA==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
dependencies:
- '@floating-ui/dom': 1.2.9
+ '@floating-ui/dom': 1.4.5
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@hookform/resolvers/3.1.0_react-hook-form@7.44.2:
- resolution: {integrity: sha512-z0A8K+Nxq+f83Whm/ajlwE6VtQlp/yPHZnXw7XWVPIGm1Vx0QV8KThU3BpbBRfAZ7/dYqCKKBNnQh85BkmBKkA==}
+ /@hookform/resolvers/3.1.1_react-hook-form@7.45.2:
+ resolution: {integrity: sha512-tS16bAUkqjITNSvbJuO1x7MXbn7Oe8ZziDTJdA9mMvsoYthnOOiznOTGBYwbdlYBgU+tgpI/BtTU3paRbCuSlg==}
peerDependencies:
react-hook-form: ^7.0.0
dependencies:
- react-hook-form: 7.44.2_react@18.2.0
+ react-hook-form: 7.45.2_react@18.2.0
dev: false
- /@humanwhocodes/config-array/0.11.8:
- resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
+ /@humanwhocodes/config-array/0.11.10:
+ resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==}
engines: {node: '>=10.10.0'}
dependencies:
'@humanwhocodes/object-schema': 1.2.1
@@ -230,18 +240,18 @@ packages:
'@jridgewell/resolve-uri': 3.1.0
'@jridgewell/sourcemap-codec': 1.4.14
- /@next/env/13.4.8:
- resolution: {integrity: sha512-twuSf1klb3k9wXI7IZhbZGtFCWvGD4wXTY2rmvzIgVhXhs7ISThrbNyutBx3jWIL8Y/Hk9+woytFz5QsgtcRKQ==}
+ /@next/env/13.4.10:
+ resolution: {integrity: sha512-3G1yD/XKTSLdihyDSa8JEsaWOELY+OWe08o0LUYzfuHp1zHDA8SObQlzKt+v+wrkkPcnPweoLH1ImZeUa0A1NQ==}
dev: false
- /@next/eslint-plugin-next/13.3.1:
- resolution: {integrity: sha512-Hpd74UrYGF+bq9bBSRDXRsRfaWkPpcwjhvachy3sr/R/5fY6feC0T0s047pUthyqcaeNsqKOY1nUGQQJNm4WyA==}
+ /@next/eslint-plugin-next/13.4.10:
+ resolution: {integrity: sha512-YJqyq6vk39JQfvaNtN83t/p5Jy45+bazRL+V4QI8FPd3FBqFYMEsULiwRLgSJMgFqkk4t4JbeZurz+gILEAFpA==}
dependencies:
glob: 7.1.7
dev: true
- /@next/swc-darwin-arm64/13.4.8:
- resolution: {integrity: sha512-MSFplVM4dTWOuKAUv0XR9gY7AWtMSBu9os9f+kp+s5rWhM1I2CdR3obFttd6366nS/W/VZxbPM5oEIdlIa46zA==}
+ /@next/swc-darwin-arm64/13.4.10:
+ resolution: {integrity: sha512-4bsdfKmmg7mgFGph0UorD1xWfZ5jZEw4kKRHYEeTK9bT1QnMbPVPlVXQRIiFPrhoDQnZUoa6duuPUJIEGLV1Jg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
@@ -249,8 +259,8 @@ packages:
dev: false
optional: true
- /@next/swc-darwin-x64/13.4.8:
- resolution: {integrity: sha512-Reox+UXgonon9P0WNDE6w85DGtyBqGitl/ryznOvn6TvfxEaZIpTgeu3ZrJLU9dHSMhiK7YAM793mE/Zii2/Qw==}
+ /@next/swc-darwin-x64/13.4.10:
+ resolution: {integrity: sha512-ngXhUBbcZIWZWqNbQSNxQrB9T1V+wgfCzAor2olYuo/YpaL6mUYNUEgeBMhr8qwV0ARSgKaOp35lRvB7EmCRBg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
@@ -258,8 +268,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-gnu/13.4.8:
- resolution: {integrity: sha512-kdyzYvAYtqQVgzIKNN7e1rLU8aZv86FDSRqPlOkKZlvqudvTO0iohuTPmnEEDlECeBM6qRPShNffotDcU/R2KA==}
+ /@next/swc-linux-arm64-gnu/13.4.10:
+ resolution: {integrity: sha512-SjCZZCOmHD4uyM75MVArSAmF5Y+IJSGroPRj2v9/jnBT36SYFTORN8Ag/lhw81W9EeexKY/CUg2e9mdebZOwsg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -267,8 +277,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-arm64-musl/13.4.8:
- resolution: {integrity: sha512-oWxx4yRkUGcR81XwbI+T0zhZ3bDF6V1aVLpG+C7hSG50ULpV8gC39UxVO22/bv93ZlcfMY4zl8xkz9Klct6dpQ==}
+ /@next/swc-linux-arm64-musl/13.4.10:
+ resolution: {integrity: sha512-F+VlcWijX5qteoYIOxNiBbNE8ruaWuRlcYyIRK10CugqI/BIeCDzEDyrHIHY8AWwbkTwe6GRHabMdE688Rqq4Q==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -276,8 +286,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-gnu/13.4.8:
- resolution: {integrity: sha512-anhtvuO6eE9YRhYnaEGTfbpH3L5gT/9qPFcNoi6xS432r/4DAtpJY8kNktqkTVevVIC/pVumqO8tV59PR3zbNg==}
+ /@next/swc-linux-x64-gnu/13.4.10:
+ resolution: {integrity: sha512-WDv1YtAV07nhfy3i1visr5p/tjiH6CeXp4wX78lzP1jI07t4PnHHG1WEDFOduXh3WT4hG6yN82EQBQHDi7hBrQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -285,8 +295,8 @@ packages:
dev: false
optional: true
- /@next/swc-linux-x64-musl/13.4.8:
- resolution: {integrity: sha512-aR+J4wWfNgH1DwCCBNjan7Iumx0lLtn+2/rEYuhIrYLY4vnxqSVGz9u3fXcgUwo6Q9LT8NFkaqK1vPprdq+BXg==}
+ /@next/swc-linux-x64-musl/13.4.10:
+ resolution: {integrity: sha512-zFkzqc737xr6qoBgDa3AwC7jPQzGLjDlkNmt/ljvQJ/Veri5ECdHjZCUuiTUfVjshNIIpki6FuP0RaQYK9iCRg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -294,8 +304,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-arm64-msvc/13.4.8:
- resolution: {integrity: sha512-OWBKIrJwQBTqrat0xhxEB/jcsjJR3+diD9nc/Y8F1mRdQzsn4bPsomgJyuqPVZs6Lz3K18qdIkvywmfSq75SsQ==}
+ /@next/swc-win32-arm64-msvc/13.4.10:
+ resolution: {integrity: sha512-IboRS8IWz5mWfnjAdCekkl8s0B7ijpWeDwK2O8CdgZkoCDY0ZQHBSGiJ2KViAG6+BJVfLvcP+a2fh6cdyBr9QQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
@@ -303,8 +313,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-ia32-msvc/13.4.8:
- resolution: {integrity: sha512-agiPWGjUndXGTOn4ChbKipQXRA6/UPkywAWIkx7BhgGv48TiJfHTK6MGfBoL9tS6B4mtW39++uy0wFPnfD0JWg==}
+ /@next/swc-win32-ia32-msvc/13.4.10:
+ resolution: {integrity: sha512-bSA+4j8jY4EEiwD/M2bol4uVEu1lBlgsGdvM+mmBm/BbqofNBfaZ2qwSbwE2OwbAmzNdVJRFRXQZ0dkjopTRaQ==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
@@ -312,8 +322,8 @@ packages:
dev: false
optional: true
- /@next/swc-win32-x64-msvc/13.4.8:
- resolution: {integrity: sha512-UIRKoByVKbuR6SnFG4JM8EMFlJrfEGuUQ1ihxzEleWcNwRMMiVaCj1KyqfTOW8VTQhJ0u8P1Ngg6q1RwnIBTtw==}
+ /@next/swc-win32-x64-msvc/13.4.10:
+ resolution: {integrity: sha512-g2+tU63yTWmcVQKDGY0MV1PjjqgZtwM4rB1oVVi/v0brdZAcrcTV+04agKzWtvWroyFz6IqtT0MoZJA7PNyLVw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -339,31 +349,31 @@ packages:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.15.0
- /@pkgr/utils/2.4.1:
- resolution: {integrity: sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==}
+ /@pkgr/utils/2.4.2:
+ resolution: {integrity: sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
dependencies:
cross-spawn: 7.0.3
- fast-glob: 3.2.12
+ fast-glob: 3.3.0
is-glob: 4.0.3
open: 9.1.0
picocolors: 1.0.0
- tslib: 2.5.2
+ tslib: 2.6.0
dev: true
/@radix-ui/number/1.0.1:
resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==}
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.22.6
dev: false
/@radix-ui/primitive/1.0.1:
resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==}
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.22.6
dev: false
- /@radix-ui/react-arrow/1.0.3_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-arrow/1.0.3_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==}
peerDependencies:
'@types/react': '*'
@@ -376,15 +386,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-collection/1.0.3_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-collection/1.0.3_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==}
peerDependencies:
'@types/react': '*'
@@ -397,18 +407,18 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-compose-refs': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-context': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-slot': 1.0.2_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-compose-refs': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-context': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-slot': 1.0.2_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-compose-refs/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-compose-refs/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
peerDependencies:
'@types/react': '*'
@@ -417,12 +427,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-context/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-context/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==}
peerDependencies:
'@types/react': '*'
@@ -431,12 +441,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-dialog/1.0.4_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-dialog/1.0.4_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-hJtRy/jPULGQZceSAP2Re6/4NpKo8im6V8P2hUqZsdFiSL8l35kYsw3qbRI6Ay5mQd2+wlLqje770eq+RJ3yZg==}
peerDependencies:
'@types/react': '*'
@@ -449,28 +459,28 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.22.6
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-context': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-dismissable-layer': 1.0.4_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-focus-guards': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-focus-scope': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-id': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-portal': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-presence': 1.0.1_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-slot': 1.0.2_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-controllable-state': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@radix-ui/react-compose-refs': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-context': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-dismissable-layer': 1.0.4_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-focus-guards': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-focus-scope': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-id': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-portal': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-presence': 1.0.1_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-slot': 1.0.2_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-controllable-state': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- react-remove-scroll: 2.5.5_3stiutgnnbnfnf3uowm5cip22i
+ react-remove-scroll: 2.5.5_tznpbkknyqq5lcv5sgrl332jvu
dev: false
- /@radix-ui/react-direction/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-direction/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==}
peerDependencies:
'@types/react': '*'
@@ -479,12 +489,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-dismissable-layer/1.0.4_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-dismissable-layer/1.0.4_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==}
peerDependencies:
'@types/react': '*'
@@ -497,19 +507,19 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.22.6
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-use-callback-ref': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-escape-keydown': 1.0.3_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@radix-ui/react-compose-refs': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-use-callback-ref': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-escape-keydown': 1.0.3_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-focus-guards/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-focus-guards/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==}
peerDependencies:
'@types/react': '*'
@@ -518,12 +528,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-focus-scope/1.0.3_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-focus-scope/1.0.3_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==}
peerDependencies:
'@types/react': '*'
@@ -536,17 +546,17 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-compose-refs': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-use-callback-ref': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-compose-refs': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-use-callback-ref': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-id/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-id/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==}
peerDependencies:
'@types/react': '*'
@@ -555,13 +565,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-use-layout-effect': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-use-layout-effect': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-label/2.0.2_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-label/2.0.2_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==}
peerDependencies:
'@types/react': '*'
@@ -574,15 +584,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-popover/1.0.6_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-popover/1.0.6_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-cZ4defGpkZ0qTRtlIBzJLSzL6ht7ofhhW4i1+pkemjV1IKXm0wgCRnee154qlV6r9Ttunmh2TNZhMfV2bavUyA==}
peerDependencies:
'@types/react': '*'
@@ -595,29 +605,29 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.22.6
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-compose-refs': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-context': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-dismissable-layer': 1.0.4_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-focus-guards': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-focus-scope': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-id': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-popper': 1.1.2_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-portal': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-presence': 1.0.1_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-slot': 1.0.2_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-controllable-state': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@radix-ui/react-compose-refs': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-context': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-dismissable-layer': 1.0.4_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-focus-guards': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-focus-scope': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-id': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-popper': 1.1.2_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-portal': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-presence': 1.0.1_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-slot': 1.0.2_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-controllable-state': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- react-remove-scroll: 2.5.5_3stiutgnnbnfnf3uowm5cip22i
+ react-remove-scroll: 2.5.5_tznpbkknyqq5lcv5sgrl332jvu
dev: false
- /@radix-ui/react-popper/1.1.2_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-popper/1.1.2_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==}
peerDependencies:
'@types/react': '*'
@@ -630,24 +640,24 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@floating-ui/react-dom': 2.0.0_biqbaboplfbrettd7655fr4n2y
- '@radix-ui/react-arrow': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-compose-refs': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-context': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-use-callback-ref': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-layout-effect': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-rect': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-size': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
+ '@babel/runtime': 7.22.6
+ '@floating-ui/react-dom': 2.0.1_biqbaboplfbrettd7655fr4n2y
+ '@radix-ui/react-arrow': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-compose-refs': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-context': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-use-callback-ref': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-layout-effect': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-rect': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-size': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
'@radix-ui/rect': 1.0.1
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-portal/1.0.3_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-portal/1.0.3_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==}
peerDependencies:
'@types/react': '*'
@@ -660,15 +670,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-presence/1.0.1_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-presence/1.0.1_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==}
peerDependencies:
'@types/react': '*'
@@ -681,16 +691,16 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-compose-refs': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-layout-effect': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-compose-refs': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-layout-effect': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-primitive/1.0.3_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-primitive/1.0.3_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==}
peerDependencies:
'@types/react': '*'
@@ -703,15 +713,15 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-slot': 1.0.2_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-slot': 1.0.2_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-select/1.2.2_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-select/1.2.2_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==}
peerDependencies:
'@types/react': '*'
@@ -724,35 +734,56 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.22.6
'@radix-ui/number': 1.0.1
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-compose-refs': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-context': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-direction': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-dismissable-layer': 1.0.4_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-focus-guards': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-focus-scope': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-id': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-popper': 1.1.2_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-portal': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-slot': 1.0.2_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-callback-ref': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-controllable-state': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-layout-effect': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-previous': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-visually-hidden': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@radix-ui/react-collection': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-compose-refs': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-context': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-direction': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-dismissable-layer': 1.0.4_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-focus-guards': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-focus-scope': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-id': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-popper': 1.1.2_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-portal': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-slot': 1.0.2_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-callback-ref': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-controllable-state': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-layout-effect': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-previous': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-visually-hidden': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
aria-hidden: 1.2.3
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- react-remove-scroll: 2.5.5_3stiutgnnbnfnf3uowm5cip22i
+ react-remove-scroll: 2.5.5_tznpbkknyqq5lcv5sgrl332jvu
dev: false
- /@radix-ui/react-slot/1.0.2_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-separator/1.0.3_uas4yajzsllemiyrexr66mus4q:
+ resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==}
+ peerDependencies:
+ '@types/react': '*'
+ '@types/react-dom': '*'
+ react: ^16.8 || ^17.0 || ^18.0
+ react-dom: ^16.8 || ^17.0 || ^18.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+ dependencies:
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
+ react: 18.2.0
+ react-dom: 18.2.0_react@18.2.0
+ dev: false
+
+ /@radix-ui/react-slot/1.0.2_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
peerDependencies:
'@types/react': '*'
@@ -761,13 +792,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-compose-refs': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-compose-refs': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-toast/1.1.4_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-toast/1.1.4_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-wf+fc8DOywrpRK3jlPlWVe+ELYGHdKDaaARJZNuUTWyWYq7+ANCFLp4rTjZ/mcGkJJQ/vZ949Zis9xxEpfq9OA==}
peerDependencies:
'@types/react': '*'
@@ -780,26 +811,26 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.22.6
'@radix-ui/primitive': 1.0.1
- '@radix-ui/react-collection': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-compose-refs': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-context': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-dismissable-layer': 1.0.4_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-portal': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-presence': 1.0.1_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@radix-ui/react-use-callback-ref': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-controllable-state': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-use-layout-effect': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@radix-ui/react-visually-hidden': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@radix-ui/react-collection': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-compose-refs': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-context': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-dismissable-layer': 1.0.4_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-portal': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-presence': 1.0.1_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@radix-ui/react-use-callback-ref': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-controllable-state': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-use-layout-effect': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@radix-ui/react-visually-hidden': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /@radix-ui/react-use-callback-ref/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-use-callback-ref/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==}
peerDependencies:
'@types/react': '*'
@@ -808,12 +839,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-use-controllable-state/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-use-controllable-state/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==}
peerDependencies:
'@types/react': '*'
@@ -822,13 +853,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-use-callback-ref': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-use-callback-ref': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-use-escape-keydown/1.0.3_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-use-escape-keydown/1.0.3_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==}
peerDependencies:
'@types/react': '*'
@@ -837,13 +868,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-use-callback-ref': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-use-callback-ref': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-use-layout-effect/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-use-layout-effect/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==}
peerDependencies:
'@types/react': '*'
@@ -852,12 +883,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-use-previous/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-use-previous/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==}
peerDependencies:
'@types/react': '*'
@@ -866,12 +897,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-use-rect/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-use-rect/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==}
peerDependencies:
'@types/react': '*'
@@ -880,13 +911,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.22.6
'@radix-ui/rect': 1.0.1
- '@types/react': 18.0.27
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-use-size/1.0.1_3stiutgnnbnfnf3uowm5cip22i:
+ /@radix-ui/react-use-size/1.0.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==}
peerDependencies:
'@types/react': '*'
@@ -895,13 +926,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-use-layout-effect': 1.0.1_3stiutgnnbnfnf3uowm5cip22i
- '@types/react': 18.0.27
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-use-layout-effect': 1.0.1_tznpbkknyqq5lcv5sgrl332jvu
+ '@types/react': 18.2.15
react: 18.2.0
dev: false
- /@radix-ui/react-visually-hidden/1.0.3_fxtgt6bjwd6p4cwoordejim2zi:
+ /@radix-ui/react-visually-hidden/1.0.3_uas4yajzsllemiyrexr66mus4q:
resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==}
peerDependencies:
'@types/react': '*'
@@ -914,10 +945,10 @@ packages:
'@types/react-dom':
optional: true
dependencies:
- '@babel/runtime': 7.22.3
- '@radix-ui/react-primitive': 1.0.3_fxtgt6bjwd6p4cwoordejim2zi
- '@types/react': 18.0.27
- '@types/react-dom': 18.0.10
+ '@babel/runtime': 7.22.6
+ '@radix-ui/react-primitive': 1.0.3_uas4yajzsllemiyrexr66mus4q
+ '@types/react': 18.2.15
+ '@types/react-dom': 18.2.7
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
@@ -925,26 +956,26 @@ packages:
/@radix-ui/rect/1.0.1:
resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==}
dependencies:
- '@babel/runtime': 7.22.3
+ '@babel/runtime': 7.22.6
dev: false
- /@rushstack/eslint-patch/1.3.0:
- resolution: {integrity: sha512-IthPJsJR85GhOkp3Hvp8zFOPK5ynKn6STyHa/WZpioK7E1aYDiBzpqQPrngc14DszIUkIrdd3k9Iu0XSzlP/1w==}
+ /@rushstack/eslint-patch/1.3.2:
+ resolution: {integrity: sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==}
dev: true
/@swc/helpers/0.5.1:
resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==}
dependencies:
- tslib: 2.5.2
+ tslib: 2.6.0
dev: false
- /@tailwindcss/forms/0.5.3_tailwindcss@3.3.2:
- resolution: {integrity: sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==}
+ /@tailwindcss/forms/0.5.4_tailwindcss@3.3.3:
+ resolution: {integrity: sha512-YAm12D3R7/9Mh4jFbYSMnsd6jG++8KxogWgqs7hbdo/86aWjjlIEvL7+QYdVELmAI0InXTpZqFIg5e7aDVWI2Q==}
peerDependencies:
tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1'
dependencies:
mini-svg-data-uri: 1.4.4
- tailwindcss: 3.3.2
+ tailwindcss: 3.3.3
dev: true
/@types/debug/4.1.8:
@@ -953,10 +984,10 @@ packages:
'@types/ms': 0.7.31
dev: false
- /@types/hast/2.3.4:
- resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
+ /@types/hast/2.3.5:
+ resolution: {integrity: sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.7
dev: false
/@types/js-cookie/3.0.3:
@@ -971,30 +1002,30 @@ packages:
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
dev: true
- /@types/mdast/3.0.11:
- resolution: {integrity: sha512-Y/uImid8aAwrEA24/1tcRZwpxX3pIFTSilcNDKSPn+Y2iDywSEachzRuvgAYYLR3wpGXAsMbv5lvKLDZLeYPAw==}
+ /@types/mdast/3.0.12:
+ resolution: {integrity: sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.7
dev: false
/@types/ms/0.7.31:
resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
dev: false
- /@types/node/18.11.18:
- resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==}
+ /@types/node/20.4.2:
+ resolution: {integrity: sha512-Dd0BYtWgnWJKwO1jkmTrzofjK2QXXcai0dmtzvIBhcA+RsG5h8R3xlyta0kGOZRNfL9GuRtb1knmPEhQrePCEw==}
dev: true
/@types/prop-types/15.7.5:
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
- /@types/react-dom/18.0.10:
- resolution: {integrity: sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==}
+ /@types/react-dom/18.2.7:
+ resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==}
dependencies:
- '@types/react': 18.0.27
+ '@types/react': 18.2.15
- /@types/react/18.0.27:
- resolution: {integrity: sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA==}
+ /@types/react/18.2.15:
+ resolution: {integrity: sha512-oEjE7TQt1fFTFSbf8kkNuc798ahTUzn3Le67/PWjE8MAfYAD/qB7O8hSTcromLFqHCt9bcdOg5GXMokzTjJ5SA==}
dependencies:
'@types/prop-types': 15.7.5
'@types/scheduler': 0.16.3
@@ -1007,40 +1038,42 @@ packages:
resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==}
dev: true
- /@types/unist/2.0.6:
- resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
+ /@types/unist/2.0.7:
+ resolution: {integrity: sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==}
dev: false
- /@typescript-eslint/eslint-plugin/5.59.8_fhb3kvfktlykk2c4fj73t2wera:
- resolution: {integrity: sha512-JDMOmhXteJ4WVKOiHXGCoB96ADWg9q7efPWHRViT/f09bA8XOMLAVHHju3l0MkZnG1izaWXYmgvQcUjTRcpShQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@typescript-eslint/eslint-plugin/6.1.0_ddwllfjrppzgeb7ohd2ng4d3za:
+ resolution: {integrity: sha512-qg7Bm5TyP/I7iilGyp6DRqqkt8na00lI6HbjWZObgk3FFSzH5ypRwAHXJhJkwiRtTcfn+xYQIMOR5kJgpo6upw==}
+ engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
- '@typescript-eslint/parser': ^5.0.0
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
+ eslint: ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@eslint-community/regexpp': 4.5.1
- '@typescript-eslint/parser': 5.59.8_4vsywjlpuriuw3tl5oq6zy5a64
- '@typescript-eslint/scope-manager': 5.59.8
- '@typescript-eslint/type-utils': 5.59.8_4vsywjlpuriuw3tl5oq6zy5a64
- '@typescript-eslint/utils': 5.59.8_4vsywjlpuriuw3tl5oq6zy5a64
+ '@typescript-eslint/parser': 6.1.0_ko3fmmbeyij36muomfgt2u76xu
+ '@typescript-eslint/scope-manager': 6.1.0
+ '@typescript-eslint/type-utils': 6.1.0_ko3fmmbeyij36muomfgt2u76xu
+ '@typescript-eslint/utils': 6.1.0_ko3fmmbeyij36muomfgt2u76xu
+ '@typescript-eslint/visitor-keys': 6.1.0
debug: 4.3.4
- eslint: 8.33.0
- grapheme-splitter: 1.0.4
+ eslint: 8.45.0
+ graphemer: 1.4.0
ignore: 5.2.4
+ natural-compare: 1.4.0
natural-compare-lite: 1.4.0
- semver: 7.5.1
- tsutils: 3.21.0_typescript@4.9.5
- typescript: 4.9.5
+ semver: 7.5.4
+ ts-api-utils: 1.0.1_typescript@5.1.6
+ typescript: 5.1.6
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/parser/5.59.8_4vsywjlpuriuw3tl5oq6zy5a64:
- resolution: {integrity: sha512-AnR19RjJcpjoeGojmwZtCwBX/RidqDZtzcbG3xHrmz0aHHoOcbWnpDllenRDmDvsV0RQ6+tbb09/kyc+UT9Orw==}
+ /@typescript-eslint/parser/5.62.0_ko3fmmbeyij36muomfgt2u76xu:
+ resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
@@ -1049,51 +1082,85 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/scope-manager': 5.59.8
- '@typescript-eslint/types': 5.59.8
- '@typescript-eslint/typescript-estree': 5.59.8_typescript@4.9.5
+ '@typescript-eslint/scope-manager': 5.62.0
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/typescript-estree': 5.62.0_typescript@5.1.6
debug: 4.3.4
- eslint: 8.33.0
- typescript: 4.9.5
+ eslint: 8.45.0
+ typescript: 5.1.6
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/scope-manager/5.59.8:
- resolution: {integrity: sha512-/w08ndCYI8gxGf+9zKf1vtx/16y8MHrZs5/tnjHhMLNSixuNcJavSX4wAiPf4aS5x41Es9YPCn44MIe4cxIlig==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- dependencies:
- '@typescript-eslint/types': 5.59.8
- '@typescript-eslint/visitor-keys': 5.59.8
- dev: true
-
- /@typescript-eslint/type-utils/5.59.8_4vsywjlpuriuw3tl5oq6zy5a64:
- resolution: {integrity: sha512-+5M518uEIHFBy3FnyqZUF3BMP+AXnYn4oyH8RF012+e7/msMY98FhGL5SrN29NQ9xDgvqCgYnsOiKp1VjZ/fpA==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@typescript-eslint/parser/6.1.0_ko3fmmbeyij36muomfgt2u76xu:
+ resolution: {integrity: sha512-hIzCPvX4vDs4qL07SYzyomamcs2/tQYXg5DtdAfj35AyJ5PIUqhsLf4YrEIFzZcND7R2E8tpQIZKayxg8/6Wbw==}
+ engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
- eslint: '*'
+ eslint: ^7.0.0 || ^8.0.0
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@typescript-eslint/typescript-estree': 5.59.8_typescript@4.9.5
- '@typescript-eslint/utils': 5.59.8_4vsywjlpuriuw3tl5oq6zy5a64
+ '@typescript-eslint/scope-manager': 6.1.0
+ '@typescript-eslint/types': 6.1.0
+ '@typescript-eslint/typescript-estree': 6.1.0_typescript@5.1.6
+ '@typescript-eslint/visitor-keys': 6.1.0
debug: 4.3.4
- eslint: 8.33.0
- tsutils: 3.21.0_typescript@4.9.5
- typescript: 4.9.5
+ eslint: 8.45.0
+ typescript: 5.1.6
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/types/5.59.8:
- resolution: {integrity: sha512-+uWuOhBTj/L6awoWIg0BlWy0u9TyFpCHrAuQ5bNfxDaZ1Ppb3mx6tUigc74LHcbHpOHuOTOJrBoAnhdHdaea1w==}
+ /@typescript-eslint/scope-manager/5.62.0:
+ resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ dependencies:
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
+ dev: true
+
+ /@typescript-eslint/scope-manager/6.1.0:
+ resolution: {integrity: sha512-AxjgxDn27hgPpe2rQe19k0tXw84YCOsjDJ2r61cIebq1t+AIxbgiXKvD4999Wk49GVaAcdJ/d49FYel+Pp3jjw==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 6.1.0
+ '@typescript-eslint/visitor-keys': 6.1.0
+ dev: true
+
+ /@typescript-eslint/type-utils/6.1.0_ko3fmmbeyij36muomfgt2u76xu:
+ resolution: {integrity: sha512-kFXBx6QWS1ZZ5Ni89TyT1X9Ag6RXVIVhqDs0vZE/jUeWlBv/ixq2diua6G7ece6+fXw3TvNRxP77/5mOMusx2w==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ dependencies:
+ '@typescript-eslint/typescript-estree': 6.1.0_typescript@5.1.6
+ '@typescript-eslint/utils': 6.1.0_ko3fmmbeyij36muomfgt2u76xu
+ debug: 4.3.4
+ eslint: 8.45.0
+ ts-api-utils: 1.0.1_typescript@5.1.6
+ typescript: 5.1.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/types/5.62.0:
+ resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /@typescript-eslint/typescript-estree/5.59.8_typescript@4.9.5:
- resolution: {integrity: sha512-Jy/lPSDJGNow14vYu6IrW790p7HIf/SOV1Bb6lZ7NUkLc2iB2Z9elESmsaUtLw8kVqogSbtLH9tut5GCX1RLDg==}
+ /@typescript-eslint/types/6.1.0:
+ resolution: {integrity: sha512-+Gfd5NHCpDoHDOaU/yIF3WWRI2PcBRKKpP91ZcVbL0t5tQpqYWBs3z/GGhvU+EV1D0262g9XCnyqQh19prU0JQ==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dev: true
+
+ /@typescript-eslint/typescript-estree/5.62.0_typescript@5.1.6:
+ resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
typescript: '*'
@@ -1101,56 +1168,84 @@ packages:
typescript:
optional: true
dependencies:
- '@typescript-eslint/types': 5.59.8
- '@typescript-eslint/visitor-keys': 5.59.8
+ '@typescript-eslint/types': 5.62.0
+ '@typescript-eslint/visitor-keys': 5.62.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.5.1
- tsutils: 3.21.0_typescript@4.9.5
- typescript: 4.9.5
+ semver: 7.5.4
+ tsutils: 3.21.0_typescript@5.1.6
+ typescript: 5.1.6
transitivePeerDependencies:
- supports-color
dev: true
- /@typescript-eslint/utils/5.59.8_4vsywjlpuriuw3tl5oq6zy5a64:
- resolution: {integrity: sha512-Tr65630KysnNn9f9G7ROF3w1b5/7f6QVCJ+WK9nhIocWmx9F+TmCAcglF26Vm7z8KCTwoKcNEBZrhlklla3CKg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ /@typescript-eslint/typescript-estree/6.1.0_typescript@5.1.6:
+ resolution: {integrity: sha512-nUKAPWOaP/tQjU1IQw9sOPCDavs/iU5iYLiY/6u7gxS7oKQoi4aUxXS1nrrVGTyBBaGesjkcwwHkbkiD5eBvcg==}
+ engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ typescript: '*'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
dependencies:
- '@eslint-community/eslint-utils': 4.4.0_eslint@8.33.0
+ '@typescript-eslint/types': 6.1.0
+ '@typescript-eslint/visitor-keys': 6.1.0
+ debug: 4.3.4
+ globby: 11.1.0
+ is-glob: 4.0.3
+ semver: 7.5.4
+ ts-api-utils: 1.0.1_typescript@5.1.6
+ typescript: 5.1.6
+ transitivePeerDependencies:
+ - supports-color
+ dev: true
+
+ /@typescript-eslint/utils/6.1.0_ko3fmmbeyij36muomfgt2u76xu:
+ resolution: {integrity: sha512-wp652EogZlKmQoMS5hAvWqRKplXvkuOnNzZSE0PVvsKjpexd/XznRVHAtrfHFYmqaJz0DFkjlDsGYC9OXw+OhQ==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ peerDependencies:
+ eslint: ^7.0.0 || ^8.0.0
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0_eslint@8.45.0
'@types/json-schema': 7.0.12
'@types/semver': 7.5.0
- '@typescript-eslint/scope-manager': 5.59.8
- '@typescript-eslint/types': 5.59.8
- '@typescript-eslint/typescript-estree': 5.59.8_typescript@4.9.5
- eslint: 8.33.0
- eslint-scope: 5.1.1
- semver: 7.5.1
+ '@typescript-eslint/scope-manager': 6.1.0
+ '@typescript-eslint/types': 6.1.0
+ '@typescript-eslint/typescript-estree': 6.1.0_typescript@5.1.6
+ eslint: 8.45.0
+ semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
dev: true
- /@typescript-eslint/visitor-keys/5.59.8:
- resolution: {integrity: sha512-pJhi2ms0x0xgloT7xYabil3SGGlojNNKjK/q6dB3Ey0uJLMjK2UDGJvHieiyJVW/7C3KI+Z4Q3pEHkm4ejA+xQ==}
+ /@typescript-eslint/visitor-keys/5.62.0:
+ resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- '@typescript-eslint/types': 5.59.8
+ '@typescript-eslint/types': 5.62.0
eslint-visitor-keys: 3.4.1
dev: true
- /acorn-jsx/5.3.2_acorn@8.8.2:
+ /@typescript-eslint/visitor-keys/6.1.0:
+ resolution: {integrity: sha512-yQeh+EXhquh119Eis4k0kYhj9vmFzNpbhM3LftWQVwqVjipCkwHBQOZutcYW+JVkjtTG9k8nrZU1UoNedPDd1A==}
+ engines: {node: ^16.0.0 || >=18.0.0}
+ dependencies:
+ '@typescript-eslint/types': 6.1.0
+ eslint-visitor-keys: 3.4.1
+ dev: true
+
+ /acorn-jsx/5.3.2_acorn@8.10.0:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
dependencies:
- acorn: 8.8.2
+ acorn: 8.10.0
dev: true
- /acorn/8.8.2:
- resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
+ /acorn/8.10.0:
+ resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
engines: {node: '>=0.4.0'}
hasBin: true
dev: true
@@ -1197,13 +1292,13 @@ packages:
resolution: {integrity: sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ==}
engines: {node: '>=10'}
dependencies:
- tslib: 2.5.2
+ tslib: 2.6.0
dev: false
- /aria-query/5.1.3:
- resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==}
+ /aria-query/5.3.0:
+ resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
dependencies:
- deep-equal: 2.2.1
+ dequal: 2.0.3
dev: true
/array-buffer-byte-length/1.0.0:
@@ -1219,7 +1314,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
get-intrinsic: 1.2.1
is-string: 1.0.7
dev: true
@@ -1235,7 +1330,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
es-shim-unscopables: 1.0.0
dev: true
@@ -1245,7 +1340,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
es-shim-unscopables: 1.0.0
dev: true
@@ -1254,28 +1349,40 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
es-shim-unscopables: 1.0.0
get-intrinsic: 1.2.1
dev: true
+ /arraybuffer.prototype.slice/1.0.1:
+ resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ array-buffer-byte-length: 1.0.0
+ call-bind: 1.0.2
+ define-properties: 1.2.0
+ get-intrinsic: 1.2.1
+ is-array-buffer: 3.0.2
+ is-shared-array-buffer: 1.0.2
+ dev: true
+
/ast-types-flow/0.0.7:
resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==}
dev: true
- /autoprefixer/10.4.14_postcss@8.4.24:
+ /autoprefixer/10.4.14_postcss@8.4.26:
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
dependencies:
- browserslist: 4.21.7
- caniuse-lite: 1.0.30001492
+ browserslist: 4.21.9
+ caniuse-lite: 1.0.30001517
fraction.js: 4.2.0
normalize-range: 0.1.2
picocolors: 1.0.0
- postcss: 8.4.24
+ postcss: 8.4.26
postcss-value-parser: 4.2.0
dev: true
@@ -1289,12 +1396,16 @@ packages:
engines: {node: '>=4'}
dev: true
- /axobject-query/3.1.1:
- resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==}
+ /axobject-query/3.2.1:
+ resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
dependencies:
- deep-equal: 2.2.1
+ dequal: 2.0.3
dev: true
+ /b4a/1.6.4:
+ resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==}
+ dev: false
+
/bail/2.0.2:
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
dev: false
@@ -1323,8 +1434,8 @@ packages:
readable-stream: 3.6.2
dev: false
- /boring-avatars/1.7.0:
- resolution: {integrity: sha512-ZNHd8J7C/V0IjQMGQowLJ5rScEFU23WxePigH6rqKcT2Esf0qhYvYxw8s9i3srmlfCnCV00ddBjaoGey1eNOfA==}
+ /boring-avatars/1.10.1:
+ resolution: {integrity: sha512-WcgHDeLrazCR03CDPEvCchLsUecZAZvs4F6FnMiGlTEjyQQf15Q5TRl4EUaAQ1dacvhPq7lC9EOTWkCojQ6few==}
dev: false
/bplist-parser/0.2.0:
@@ -1346,15 +1457,15 @@ packages:
dependencies:
fill-range: 7.0.1
- /browserslist/4.21.7:
- resolution: {integrity: sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==}
+ /browserslist/4.21.9:
+ resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
dependencies:
- caniuse-lite: 1.0.30001492
- electron-to-chromium: 1.4.416
- node-releases: 2.0.12
- update-browserslist-db: 1.0.11_browserslist@4.21.7
+ caniuse-lite: 1.0.30001517
+ electron-to-chromium: 1.4.464
+ node-releases: 2.0.13
+ update-browserslist-db: 1.0.11_browserslist@4.21.9
dev: true
/buffer/5.7.1:
@@ -1394,8 +1505,8 @@ packages:
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
engines: {node: '>= 6'}
- /caniuse-lite/1.0.30001492:
- resolution: {integrity: sha512-2efF8SAZwgAX1FJr87KWhvuJxnGJKOnctQa8xLOskAXNXq8oiuqgl6u1kk3fFpsp3GgvzlRjiK1sl63hNtFADw==}
+ /caniuse-lite/1.0.30001517:
+ resolution: {integrity: sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==}
/ccount/2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
@@ -1431,24 +1542,18 @@ packages:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
dev: false
- /class-variance-authority/0.6.0_typescript@4.9.5:
- resolution: {integrity: sha512-qdRDgfjx3GRb9fpwpSvn+YaidnT7IUJNe4wt5/SWwM+PmUwJUhQRk/8zAyNro0PmVfmen2635UboTjIBXXxy5A==}
- peerDependencies:
- typescript: '>= 4.5.5 < 6'
- peerDependenciesMeta:
- typescript:
- optional: true
+ /class-variance-authority/0.7.0:
+ resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
dependencies:
- clsx: 1.2.1
- typescript: 4.9.5
+ clsx: 2.0.0
dev: false
/client-only/0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
dev: false
- /clsx/1.2.1:
- resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
+ /clsx/2.0.0:
+ resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
engines: {node: '>=6'}
dev: false
@@ -1543,29 +1648,6 @@ packages:
mimic-response: 3.1.0
dev: false
- /deep-equal/2.2.1:
- resolution: {integrity: sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==}
- dependencies:
- array-buffer-byte-length: 1.0.0
- call-bind: 1.0.2
- es-get-iterator: 1.1.3
- get-intrinsic: 1.2.1
- is-arguments: 1.1.1
- is-array-buffer: 3.0.2
- is-date-object: 1.0.5
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- isarray: 2.0.5
- object-is: 1.1.5
- object-keys: 1.1.1
- object.assign: 4.1.4
- regexp.prototype.flags: 1.5.0
- side-channel: 1.0.4
- which-boxed-primitive: 1.0.2
- which-collection: 1.0.1
- which-typed-array: 1.1.9
- dev: true
-
/deep-extend/0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
@@ -1609,10 +1691,9 @@ packages:
/dequal/2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- dev: false
- /detect-libc/2.0.1:
- resolution: {integrity: sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==}
+ /detect-libc/2.0.2:
+ resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==}
engines: {node: '>=8'}
dev: false
@@ -1652,16 +1733,16 @@ packages:
esutils: 2.0.3
dev: true
- /edge-csrf/1.0.3_next@13.4.8:
- resolution: {integrity: sha512-miYuAv+tLaKw+niVD8Os5zQcMOB4Sdc748DKz3w6VIkou+WU2GHCUeL3fn9NyNeHAfNsUrOTB9Y/zlBVmnSTEQ==}
+ /edge-csrf/1.0.4_next@13.4.10:
+ resolution: {integrity: sha512-h8TQ8kCchUNx1HC/hYed6YlHxup/uCnWRRPgadZ7BHFrrE1LQs59tTyZgtOBMOfeKBOhurSyQAINIdO2OL2U9g==}
peerDependencies:
next: ^13.0.0
dependencies:
- next: 13.4.8_biqbaboplfbrettd7655fr4n2y
+ next: 13.4.10_biqbaboplfbrettd7655fr4n2y
dev: false
- /electron-to-chromium/1.4.416:
- resolution: {integrity: sha512-AUYh0XDTb2vrj0rj82jb3P9hHSyzQNdTPYWZIhPdCOui7/vpme7+HTE07BE5jwuqg/34TZ8ktlRz6GImJ4IXjA==}
+ /electron-to-chromium/1.4.464:
+ resolution: {integrity: sha512-guZ84yoou4+ILNdj0XEbmGs6DEWj6zpVOWYpY09GU66yEb0DSYvP/biBPzHn0GuW/3RC/pnaYNUWlQE1fJYtgA==}
dev: true
/emoji-regex/9.2.2:
@@ -1674,19 +1755,20 @@ packages:
once: 1.4.0
dev: false
- /enhanced-resolve/5.14.1:
- resolution: {integrity: sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==}
+ /enhanced-resolve/5.15.0:
+ resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
dev: true
- /es-abstract/1.21.2:
- resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==}
+ /es-abstract/1.22.1:
+ resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==}
engines: {node: '>= 0.4'}
dependencies:
array-buffer-byte-length: 1.0.0
+ arraybuffer.prototype.slice: 1.0.1
available-typed-arrays: 1.0.5
call-bind: 1.0.2
es-set-tostringtag: 2.0.1
@@ -1707,33 +1789,23 @@ packages:
is-regex: 1.1.4
is-shared-array-buffer: 1.0.2
is-string: 1.0.7
- is-typed-array: 1.1.10
+ is-typed-array: 1.1.12
is-weakref: 1.0.2
object-inspect: 1.12.3
object-keys: 1.1.1
object.assign: 4.1.4
regexp.prototype.flags: 1.5.0
+ safe-array-concat: 1.0.0
safe-regex-test: 1.0.0
string.prototype.trim: 1.2.7
string.prototype.trimend: 1.0.6
string.prototype.trimstart: 1.0.6
+ typed-array-buffer: 1.0.0
+ typed-array-byte-length: 1.0.0
+ typed-array-byte-offset: 1.0.0
typed-array-length: 1.0.4
unbox-primitive: 1.0.2
- which-typed-array: 1.1.9
- dev: true
-
- /es-get-iterator/1.1.3:
- resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
- has-symbols: 1.0.3
- is-arguments: 1.1.1
- is-map: 2.0.2
- is-set: 2.0.2
- is-string: 1.0.7
- isarray: 2.0.5
- stop-iteration-iterator: 1.0.0
+ which-typed-array: 1.1.11
dev: true
/es-set-tostringtag/2.0.1:
@@ -1775,8 +1847,8 @@ packages:
engines: {node: '>=12'}
dev: false
- /eslint-config-next/13.3.1_4vsywjlpuriuw3tl5oq6zy5a64:
- resolution: {integrity: sha512-DieA5djybeE3Q0IqnDXihmhgRSp44x1ywWBBpVRA9pSx+m5Icj8hFclx7ffXlAvb9MMLN6cgj/hqJ4lka/QmvA==}
+ /eslint-config-next/13.4.10_ko3fmmbeyij36muomfgt2u76xu:
+ resolution: {integrity: sha512-+JjcM6lQmFR5Mw0ORm9o1CR29+z/uajgSfYAPEGIBxOhTHBgCMs7ysuwi72o7LkMmA8E3N7/h09pSGZxs0s85g==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0
typescript: '>=3.3.1'
@@ -1784,29 +1856,29 @@ packages:
typescript:
optional: true
dependencies:
- '@next/eslint-plugin-next': 13.3.1
- '@rushstack/eslint-patch': 1.3.0
- '@typescript-eslint/parser': 5.59.8_4vsywjlpuriuw3tl5oq6zy5a64
- eslint: 8.33.0
+ '@next/eslint-plugin-next': 13.4.10
+ '@rushstack/eslint-patch': 1.3.2
+ '@typescript-eslint/parser': 5.62.0_ko3fmmbeyij36muomfgt2u76xu
+ eslint: 8.45.0
eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.5.5_te6s726wnterdmyzmkgblowjde
- eslint-plugin-import: 2.27.5_dpyttaqesa5wzj6xtc5ydnyunq
- eslint-plugin-jsx-a11y: 6.7.1_eslint@8.33.0
- eslint-plugin-react: 7.32.2_eslint@8.33.0
- eslint-plugin-react-hooks: 4.6.0_eslint@8.33.0
- typescript: 4.9.5
+ eslint-import-resolver-typescript: 3.5.5_cdc5xe3wvne6hrtfkml3hht7uq
+ eslint-plugin-import: 2.27.5_e5imconihjuiegtkjrayaxwwxe
+ eslint-plugin-jsx-a11y: 6.7.1_eslint@8.45.0
+ eslint-plugin-react: 7.32.2_eslint@8.45.0
+ eslint-plugin-react-hooks: 5.0.0-canary-7118f5dd7-20230705_eslint@8.45.0
+ typescript: 5.1.6
transitivePeerDependencies:
- eslint-import-resolver-webpack
- supports-color
dev: true
- /eslint-config-prettier/8.8.0_eslint@8.33.0:
+ /eslint-config-prettier/8.8.0_eslint@8.45.0:
resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
dependencies:
- eslint: 8.33.0
+ eslint: 8.45.0
dev: true
/eslint-import-resolver-node/0.3.7:
@@ -1819,7 +1891,7 @@ packages:
- supports-color
dev: true
- /eslint-import-resolver-typescript/3.5.5_te6s726wnterdmyzmkgblowjde:
+ /eslint-import-resolver-typescript/3.5.5_cdc5xe3wvne6hrtfkml3hht7uq:
resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -1827,12 +1899,12 @@ packages:
eslint-plugin-import: '*'
dependencies:
debug: 4.3.4
- enhanced-resolve: 5.14.1
- eslint: 8.33.0
- eslint-module-utils: 2.8.0_oc7j7ua6bukww2geri2w6g3mle
- eslint-plugin-import: 2.27.5_dpyttaqesa5wzj6xtc5ydnyunq
- get-tsconfig: 4.6.0
- globby: 13.1.4
+ enhanced-resolve: 5.15.0
+ eslint: 8.45.0
+ eslint-module-utils: 2.8.0_7iazily2npofyqvhfberdgmshe
+ eslint-plugin-import: 2.27.5_e5imconihjuiegtkjrayaxwwxe
+ get-tsconfig: 4.6.2
+ globby: 13.2.2
is-core-module: 2.12.1
is-glob: 4.0.3
synckit: 0.8.5
@@ -1843,7 +1915,7 @@ packages:
- supports-color
dev: true
- /eslint-module-utils/2.8.0_oc7j7ua6bukww2geri2w6g3mle:
+ /eslint-module-utils/2.8.0_7iazily2npofyqvhfberdgmshe:
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'}
peerDependencies:
@@ -1864,16 +1936,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
dependencies:
- '@typescript-eslint/parser': 5.59.8_4vsywjlpuriuw3tl5oq6zy5a64
+ '@typescript-eslint/parser': 5.62.0_ko3fmmbeyij36muomfgt2u76xu
debug: 3.2.7
- eslint: 8.33.0
+ eslint: 8.45.0
eslint-import-resolver-node: 0.3.7
- eslint-import-resolver-typescript: 3.5.5_te6s726wnterdmyzmkgblowjde
+ eslint-import-resolver-typescript: 3.5.5_cdc5xe3wvne6hrtfkml3hht7uq
transitivePeerDependencies:
- supports-color
dev: true
- /eslint-plugin-import/2.27.5_dpyttaqesa5wzj6xtc5ydnyunq:
+ /eslint-plugin-import/2.27.5_e5imconihjuiegtkjrayaxwwxe:
resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==}
engines: {node: '>=4'}
peerDependencies:
@@ -1883,22 +1955,22 @@ packages:
'@typescript-eslint/parser':
optional: true
dependencies:
- '@typescript-eslint/parser': 5.59.8_4vsywjlpuriuw3tl5oq6zy5a64
+ '@typescript-eslint/parser': 5.62.0_ko3fmmbeyij36muomfgt2u76xu
array-includes: 3.1.6
array.prototype.flat: 1.3.1
array.prototype.flatmap: 1.3.1
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.33.0
+ eslint: 8.45.0
eslint-import-resolver-node: 0.3.7
- eslint-module-utils: 2.8.0_oc7j7ua6bukww2geri2w6g3mle
+ eslint-module-utils: 2.8.0_7iazily2npofyqvhfberdgmshe
has: 1.0.3
is-core-module: 2.12.1
is-glob: 4.0.3
minimatch: 3.1.2
object.values: 1.1.6
resolve: 1.22.2
- semver: 6.3.0
+ semver: 6.3.1
tsconfig-paths: 3.14.2
transitivePeerDependencies:
- eslint-import-resolver-typescript
@@ -1906,58 +1978,62 @@ packages:
- supports-color
dev: true
- /eslint-plugin-jsx-a11y/6.7.1_eslint@8.33.0:
+ /eslint-plugin-jsx-a11y/6.7.1_eslint@8.45.0:
resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==}
engines: {node: '>=4.0'}
peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies:
- '@babel/runtime': 7.22.3
- aria-query: 5.1.3
+ '@babel/runtime': 7.22.6
+ aria-query: 5.3.0
array-includes: 3.1.6
array.prototype.flatmap: 1.3.1
ast-types-flow: 0.0.7
axe-core: 4.7.2
- axobject-query: 3.1.1
+ axobject-query: 3.2.1
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
- eslint: 8.33.0
+ eslint: 8.45.0
has: 1.0.3
- jsx-ast-utils: 3.3.3
+ jsx-ast-utils: 3.3.4
language-tags: 1.0.5
minimatch: 3.1.2
object.entries: 1.1.6
object.fromentries: 2.0.6
- semver: 6.3.0
+ semver: 6.3.1
dev: true
- /eslint-plugin-prettier/4.2.1_dqyzymronrq2n72ulhdi2p3t54:
- resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
- engines: {node: '>=12.0.0'}
+ /eslint-plugin-prettier/5.0.0_yjgmq4klicndfvjoi45ockwhk4:
+ resolution: {integrity: sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==}
+ engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- eslint: '>=7.28.0'
+ '@types/eslint': '>=8.0.0'
+ eslint: '>=8.0.0'
eslint-config-prettier: '*'
- prettier: '>=2.0.0'
+ prettier: '>=3.0.0'
peerDependenciesMeta:
+ '@types/eslint':
+ optional: true
eslint-config-prettier:
optional: true
dependencies:
- eslint: 8.33.0
- eslint-config-prettier: 8.8.0_eslint@8.33.0
- prettier: 2.8.8
+ eslint: 8.45.0
+ eslint-config-prettier: 8.8.0_eslint@8.45.0
+ prettier: 3.0.0
prettier-linter-helpers: 1.0.0
+ synckit: 0.8.5
dev: true
- /eslint-plugin-react-hooks/4.6.0_eslint@8.33.0:
- resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
+ /eslint-plugin-react-hooks/5.0.0-canary-7118f5dd7-20230705_eslint@8.45.0:
+ resolution: {integrity: sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==}
engines: {node: '>=10'}
peerDependencies:
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
dependencies:
- eslint: 8.33.0
+ eslint: 8.45.0
dev: true
- /eslint-plugin-react/7.32.2_eslint@8.33.0:
+ /eslint-plugin-react/7.32.2_eslint@8.45.0:
resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==}
engines: {node: '>=4'}
peerDependencies:
@@ -1967,9 +2043,9 @@ packages:
array.prototype.flatmap: 1.3.1
array.prototype.tosorted: 1.1.1
doctrine: 2.1.0
- eslint: 8.33.0
+ eslint: 8.45.0
estraverse: 5.3.0
- jsx-ast-utils: 3.3.3
+ jsx-ast-utils: 3.3.4
minimatch: 3.1.2
object.entries: 1.1.6
object.fromentries: 2.0.6
@@ -1977,53 +2053,33 @@ packages:
object.values: 1.1.6
prop-types: 15.8.1
resolve: 2.0.0-next.4
- semver: 6.3.0
+ semver: 6.3.1
string.prototype.matchall: 4.0.8
dev: true
- /eslint-scope/5.1.1:
- resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
- engines: {node: '>=8.0.0'}
- dependencies:
- esrecurse: 4.3.0
- estraverse: 4.3.0
- dev: true
-
- /eslint-scope/7.2.0:
- resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==}
+ /eslint-scope/7.2.1:
+ resolution: {integrity: sha512-CvefSOsDdaYYvxChovdrPo/ZGt8d5lrJWleAc1diXRKhHGiTYEI26cvo8Kle/wGnsizoCJjK73FMg1/IkIwiNA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
dev: true
- /eslint-utils/3.0.0_eslint@8.33.0:
- resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
- engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
- peerDependencies:
- eslint: '>=5'
- dependencies:
- eslint: 8.33.0
- eslint-visitor-keys: 2.1.0
- dev: true
-
- /eslint-visitor-keys/2.1.0:
- resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
- engines: {node: '>=10'}
- dev: true
-
/eslint-visitor-keys/3.4.1:
resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true
- /eslint/8.33.0:
- resolution: {integrity: sha512-WjOpFQgKK8VrCnAtl8We0SUOy/oVZ5NHykyMiagV1M9r8IFpIJX7DduK6n1mpfhlG7T1NLWm2SuD8QB7KFySaA==}
+ /eslint/8.45.0:
+ resolution: {integrity: sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
hasBin: true
dependencies:
- '@eslint/eslintrc': 1.4.1
- '@humanwhocodes/config-array': 0.11.8
+ '@eslint-community/eslint-utils': 4.4.0_eslint@8.45.0
+ '@eslint-community/regexpp': 4.5.1
+ '@eslint/eslintrc': 2.1.0
+ '@eslint/js': 8.44.0
+ '@humanwhocodes/config-array': 0.11.10
'@humanwhocodes/module-importer': 1.0.1
'@nodelib/fs.walk': 1.2.8
ajv: 6.12.6
@@ -2032,10 +2088,9 @@ packages:
debug: 4.3.4
doctrine: 3.0.0
escape-string-regexp: 4.0.0
- eslint-scope: 7.2.0
- eslint-utils: 3.0.0_eslint@8.33.0
+ eslint-scope: 7.2.1
eslint-visitor-keys: 3.4.1
- espree: 9.5.2
+ espree: 9.6.1
esquery: 1.5.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
@@ -2043,34 +2098,30 @@ packages:
find-up: 5.0.0
glob-parent: 6.0.2
globals: 13.20.0
- grapheme-splitter: 1.0.4
+ graphemer: 1.4.0
ignore: 5.2.4
- import-fresh: 3.3.0
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
- js-sdsl: 4.4.0
js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.1
- regexpp: 3.2.0
+ optionator: 0.9.3
strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
text-table: 0.2.0
transitivePeerDependencies:
- supports-color
dev: true
- /espree/9.5.2:
- resolution: {integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==}
+ /espree/9.6.1:
+ resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dependencies:
- acorn: 8.8.2
- acorn-jsx: 5.3.2_acorn@8.8.2
+ acorn: 8.10.0
+ acorn-jsx: 5.3.2_acorn@8.10.0
eslint-visitor-keys: 3.4.1
dev: true
@@ -2088,11 +2139,6 @@ packages:
estraverse: 5.3.0
dev: true
- /estraverse/4.3.0:
- resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
- engines: {node: '>=4.0'}
- dev: true
-
/estraverse/5.3.0:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
@@ -2150,8 +2196,12 @@ packages:
resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
dev: true
- /fast-glob/3.2.12:
- resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
+ /fast-fifo/1.3.0:
+ resolution: {integrity: sha512-IgfweLvEpwyA4WgiQe9Nx6VV2QkML2NkvZnk1oKnIzXgXdWxuhF7zw4DvLTPZJn6PIUneiAXPF24QmoEqHTjyw==}
+ dev: false
+
+ /fast-glob/3.3.0:
+ resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==}
engines: {node: '>=8.6.0'}
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -2216,8 +2266,8 @@ packages:
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
dev: true
- /framer-motion/10.12.16_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-w/SfWEIWJkYSgRHYBmln7EhcNo31ao8Xexol8lGXf1pR/tlnBtf1HcxoUmEiEh6pacB4/geku5ami53AAQWHMQ==}
+ /framer-motion/10.12.22_biqbaboplfbrettd7655fr4n2y:
+ resolution: {integrity: sha512-bBGYPOxvxcfzS7/py9MEqDucmXBkVl2g42HNlXXPieSTSGGkr8L7+MilCnrU6uX3HrNk/tcB++1SkWE8BosHFw==}
peerDependencies:
react: ^18.0.0
react-dom: ^18.0.0
@@ -2229,7 +2279,7 @@ packages:
dependencies:
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
- tslib: 2.5.2
+ tslib: 2.6.0
optionalDependencies:
'@emotion/is-prop-valid': 0.8.8
dev: false
@@ -2257,7 +2307,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
functions-have-names: 1.2.3
dev: true
@@ -2292,8 +2342,8 @@ packages:
get-intrinsic: 1.2.1
dev: true
- /get-tsconfig/4.6.0:
- resolution: {integrity: sha512-lgbo68hHTQnFddybKbbs/RDRJnJT5YyGy2kQzVwbq+g67X73i+5MVTval34QxGkOe9X5Ujf1UYpCaphLyltjEg==}
+ /get-tsconfig/4.6.2:
+ resolution: {integrity: sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==}
dependencies:
resolve-pkg-maps: 1.0.0
dev: true
@@ -2370,18 +2420,18 @@ packages:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.2.12
+ fast-glob: 3.3.0
ignore: 5.2.4
merge2: 1.4.1
slash: 3.0.0
dev: true
- /globby/13.1.4:
- resolution: {integrity: sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==}
+ /globby/13.2.2:
+ resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
dependencies:
dir-glob: 3.0.1
- fast-glob: 3.2.12
+ fast-glob: 3.3.0
ignore: 5.2.4
merge2: 1.4.1
slash: 4.0.0
@@ -2396,8 +2446,8 @@ packages:
/graceful-fs/4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- /grapheme-splitter/1.0.4:
- resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
+ /graphemer/1.4.0:
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
dev: true
/has-bigints/1.0.2:
@@ -2506,20 +2556,12 @@ packages:
loose-envify: 1.4.0
dev: false
- /is-arguments/1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- has-tostringtag: 1.0.0
- dev: true
-
/is-array-buffer/3.0.2:
resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
dependencies:
call-bind: 1.0.2
get-intrinsic: 1.2.1
- is-typed-array: 1.1.10
+ is-typed-array: 1.1.12
dev: true
/is-arrayish/0.3.2:
@@ -2598,10 +2640,6 @@ packages:
is-docker: 3.0.0
dev: true
- /is-map/2.0.2:
- resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==}
- dev: true
-
/is-negative-zero/2.0.2:
resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
engines: {node: '>= 0.4'}
@@ -2636,10 +2674,6 @@ packages:
has-tostringtag: 1.0.0
dev: true
- /is-set/2.0.2:
- resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==}
- dev: true
-
/is-shared-array-buffer/1.0.2:
resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
dependencies:
@@ -2670,19 +2704,11 @@ packages:
has-symbols: 1.0.3
dev: true
- /is-typed-array/1.1.10:
- resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==}
+ /is-typed-array/1.1.12:
+ resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
engines: {node: '>= 0.4'}
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.2
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
- dev: true
-
- /is-weakmap/2.0.1:
- resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==}
+ which-typed-array: 1.1.11
dev: true
/is-weakref/1.0.2:
@@ -2691,13 +2717,6 @@ packages:
call-bind: 1.0.2
dev: true
- /is-weakset/2.0.2:
- resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
- dependencies:
- call-bind: 1.0.2
- get-intrinsic: 1.2.1
- dev: true
-
/is-wsl/2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
@@ -2713,8 +2732,8 @@ packages:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
dev: true
- /jiti/1.18.2:
- resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==}
+ /jiti/1.19.1:
+ resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==}
hasBin: true
/js-cookie/3.0.5:
@@ -2722,10 +2741,6 @@ packages:
engines: {node: '>=14'}
dev: false
- /js-sdsl/4.4.0:
- resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==}
- dev: true
-
/js-tokens/4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -2751,12 +2766,14 @@ packages:
minimist: 1.2.8
dev: true
- /jsx-ast-utils/3.3.3:
- resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==}
+ /jsx-ast-utils/3.3.4:
+ resolution: {integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==}
engines: {node: '>=4.0'}
dependencies:
array-includes: 3.1.6
+ array.prototype.flat: 1.3.1
object.assign: 4.1.4
+ object.values: 1.1.6
dev: true
/kleur/4.1.5:
@@ -2816,8 +2833,8 @@ packages:
dependencies:
yallist: 4.0.0
- /lucide-react/0.252.0_react@18.2.0:
- resolution: {integrity: sha512-98hUdm23F3YlC3UN4mzv1FAsWr81YYdxF31cYhm19c51FwOph4dn5B4NjKp45UXBiR1Xx+cKrdmSIZX0ldS8zw==}
+ /lucide-react/0.261.0_react@18.2.0:
+ resolution: {integrity: sha512-gzxEvIxf8+hGbm2ZQU/VP5TxTcnTu3ODDmYoS3a53wC4gkW9ukxmexKjTcZUzz3q8ema+DMwmPypx9Z0Bvvxog==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0
dependencies:
@@ -2831,15 +2848,15 @@ packages:
/mdast-util-definitions/5.1.2:
resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
+ '@types/mdast': 3.0.12
+ '@types/unist': 2.0.7
unist-util-visit: 4.1.2
dev: false
/mdast-util-find-and-replace/2.2.2:
resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
escape-string-regexp: 5.0.0
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
@@ -2848,8 +2865,8 @@ packages:
/mdast-util-from-markdown/1.3.1:
resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
+ '@types/mdast': 3.0.12
+ '@types/unist': 2.0.7
decode-named-character-reference: 1.0.2
mdast-util-to-string: 3.2.0
micromark: 3.2.0
@@ -2867,7 +2884,7 @@ packages:
/mdast-util-gfm-autolink-literal/1.0.3:
resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
ccount: 2.0.1
mdast-util-find-and-replace: 2.2.2
micromark-util-character: 1.2.0
@@ -2876,7 +2893,7 @@ packages:
/mdast-util-gfm-footnote/1.0.2:
resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-to-markdown: 1.5.0
micromark-util-normalize-identifier: 1.1.0
dev: false
@@ -2884,14 +2901,14 @@ packages:
/mdast-util-gfm-strikethrough/1.0.3:
resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-to-markdown: 1.5.0
dev: false
/mdast-util-gfm-table/1.0.7:
resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
markdown-table: 3.0.3
mdast-util-from-markdown: 1.3.1
mdast-util-to-markdown: 1.5.0
@@ -2902,7 +2919,7 @@ packages:
/mdast-util-gfm-task-list-item/1.0.2:
resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-to-markdown: 1.5.0
dev: false
@@ -2923,22 +2940,22 @@ packages:
/mdast-util-newline-to-break/1.0.0:
resolution: {integrity: sha512-491LcYv3gbGhhCrLoeALncQmega2xPh+m3gbsIhVsOX4sw85+ShLFPvPyibxc1Swx/6GtzxgVodq+cGa/47ULg==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-find-and-replace: 2.2.2
dev: false
/mdast-util-phrasing/3.0.1:
resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
unist-util-is: 5.2.1
dev: false
/mdast-util-to-hast/12.3.0:
resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
dependencies:
- '@types/hast': 2.3.4
- '@types/mdast': 3.0.11
+ '@types/hast': 2.3.5
+ '@types/mdast': 3.0.12
mdast-util-definitions: 5.1.2
micromark-util-sanitize-uri: 1.2.0
trim-lines: 3.0.1
@@ -2950,8 +2967,8 @@ packages:
/mdast-util-to-markdown/1.5.0:
resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
dependencies:
- '@types/mdast': 3.0.11
- '@types/unist': 2.0.6
+ '@types/mdast': 3.0.12
+ '@types/unist': 2.0.7
longest-streak: 3.1.0
mdast-util-phrasing: 3.0.1
mdast-util-to-string: 3.2.0
@@ -2963,7 +2980,7 @@ packages:
/mdast-util-to-string/3.2.0:
resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
dev: false
/merge-stream/2.0.0:
@@ -3296,20 +3313,20 @@ packages:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
dev: true
- /next-themes/0.2.1_huavqdni4pobvfczobpbvo6vhq:
+ /next-themes/0.2.1_ajgs2obdksmy6bafrtpl2cn7xi:
resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==}
peerDependencies:
next: '*'
react: '*'
react-dom: '*'
dependencies:
- next: 13.4.8_biqbaboplfbrettd7655fr4n2y
+ next: 13.4.10_biqbaboplfbrettd7655fr4n2y
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
dev: false
- /next/13.4.8_biqbaboplfbrettd7655fr4n2y:
- resolution: {integrity: sha512-lxUjndYKjZHGK3CWeN2RI+/6ni6EUvjiqGWXAYPxUfGIdFGQ5XoisrqAJ/dF74aP27buAfs8MKIbIMMdxjqSBg==}
+ /next/13.4.10_biqbaboplfbrettd7655fr4n2y:
+ resolution: {integrity: sha512-4ep6aKxVTQ7rkUW2fBLhpBr/5oceCuf4KmlUpvG/aXuDTIf9mexNSpabUD6RWPspu6wiJJvozZREhXhueYO36A==}
engines: {node: '>=16.8.0'}
hasBin: true
peerDependencies:
@@ -3326,10 +3343,10 @@ packages:
sass:
optional: true
dependencies:
- '@next/env': 13.4.8
+ '@next/env': 13.4.10
'@swc/helpers': 0.5.1
busboy: 1.6.0
- caniuse-lite: 1.0.30001492
+ caniuse-lite: 1.0.30001517
postcss: 8.4.14
react: 18.2.0
react-dom: 18.2.0_react@18.2.0
@@ -3337,33 +3354,33 @@ packages:
watchpack: 2.4.0
zod: 3.21.4
optionalDependencies:
- '@next/swc-darwin-arm64': 13.4.8
- '@next/swc-darwin-x64': 13.4.8
- '@next/swc-linux-arm64-gnu': 13.4.8
- '@next/swc-linux-arm64-musl': 13.4.8
- '@next/swc-linux-x64-gnu': 13.4.8
- '@next/swc-linux-x64-musl': 13.4.8
- '@next/swc-win32-arm64-msvc': 13.4.8
- '@next/swc-win32-ia32-msvc': 13.4.8
- '@next/swc-win32-x64-msvc': 13.4.8
+ '@next/swc-darwin-arm64': 13.4.10
+ '@next/swc-darwin-x64': 13.4.10
+ '@next/swc-linux-arm64-gnu': 13.4.10
+ '@next/swc-linux-arm64-musl': 13.4.10
+ '@next/swc-linux-x64-gnu': 13.4.10
+ '@next/swc-linux-x64-musl': 13.4.10
+ '@next/swc-win32-arm64-msvc': 13.4.10
+ '@next/swc-win32-ia32-msvc': 13.4.10
+ '@next/swc-win32-x64-msvc': 13.4.10
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
dev: false
- /node-abi/3.43.0:
- resolution: {integrity: sha512-QB0MMv+tn9Ur2DtJrc8y09n0n6sw88CyDniWSX2cHW10goQXYPK9ZpFJOktDS4ron501edPX6h9i7Pg+RnH5nQ==}
+ /node-abi/3.45.0:
+ resolution: {integrity: sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ==}
engines: {node: '>=10'}
dependencies:
- semver: 7.5.1
+ semver: 7.5.4
dev: false
/node-addon-api/6.1.0:
resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==}
dev: false
- /node-releases/2.0.12:
- resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==}
+ /node-releases/2.0.13:
+ resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
dev: true
/normalize-path/3.0.0:
@@ -3401,14 +3418,6 @@ packages:
resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==}
dev: true
- /object-is/1.1.5:
- resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
- engines: {node: '>= 0.4'}
- dependencies:
- call-bind: 1.0.2
- define-properties: 1.2.0
- dev: true
-
/object-keys/1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
@@ -3430,7 +3439,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
dev: true
/object.fromentries/2.0.6:
@@ -3439,14 +3448,14 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
dev: true
/object.hasown/1.1.2:
resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
dependencies:
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
dev: true
/object.values/1.1.6:
@@ -3455,7 +3464,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
dev: true
/once/1.4.0:
@@ -3487,16 +3496,16 @@ packages:
is-wsl: 2.2.0
dev: true
- /optionator/0.9.1:
- resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
+ /optionator/0.9.3:
+ resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
engines: {node: '>= 0.8.0'}
dependencies:
+ '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
- word-wrap: 1.2.3
dev: true
/p-limit/3.1.0:
@@ -3558,31 +3567,31 @@ packages:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'}
- /pirates/4.0.5:
- resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
+ /pirates/4.0.6:
+ resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
- /postcss-import/15.1.0_postcss@8.4.24:
+ /postcss-import/15.1.0_postcss@8.4.26:
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
engines: {node: '>=14.0.0'}
peerDependencies:
postcss: ^8.0.0
dependencies:
- postcss: 8.4.24
+ postcss: 8.4.26
postcss-value-parser: 4.2.0
read-cache: 1.0.0
resolve: 1.22.2
- /postcss-js/4.0.1_postcss@8.4.24:
+ /postcss-js/4.0.1_postcss@8.4.26:
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
engines: {node: ^12 || ^14 || >= 16}
peerDependencies:
postcss: ^8.4.21
dependencies:
camelcase-css: 2.0.1
- postcss: 8.4.24
+ postcss: 8.4.26
- /postcss-load-config/4.0.1_postcss@8.4.24:
+ /postcss-load-config/4.0.1_postcss@8.4.26:
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
engines: {node: '>= 14'}
peerDependencies:
@@ -3595,16 +3604,16 @@ packages:
optional: true
dependencies:
lilconfig: 2.1.0
- postcss: 8.4.24
+ postcss: 8.4.26
yaml: 2.3.1
- /postcss-nested/6.0.1_postcss@8.4.24:
+ /postcss-nested/6.0.1_postcss@8.4.26:
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
engines: {node: '>=12.0'}
peerDependencies:
postcss: ^8.2.14
dependencies:
- postcss: 8.4.24
+ postcss: 8.4.26
postcss-selector-parser: 6.0.13
/postcss-selector-parser/6.0.13:
@@ -3626,8 +3635,8 @@ packages:
source-map-js: 1.0.2
dev: false
- /postcss/8.4.24:
- resolution: {integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==}
+ /postcss/8.4.26:
+ resolution: {integrity: sha512-jrXHFF8iTloAenySjM/ob3gSj7pCu0Ji49hnjqzsgSRa50hkWCKD0HQ+gMNJkW38jBI68MpAAg7ZWwHwX8NMMw==}
engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.6
@@ -3639,13 +3648,13 @@ packages:
engines: {node: '>=10'}
hasBin: true
dependencies:
- detect-libc: 2.0.1
+ detect-libc: 2.0.2
expand-template: 2.0.3
github-from-package: 0.0.0
minimist: 1.2.8
mkdirp-classic: 0.5.3
napi-build-utils: 1.0.2
- node-abi: 3.43.0
+ node-abi: 3.45.0
pump: 3.0.0
rc: 1.2.8
simple-get: 4.0.1
@@ -3665,8 +3674,8 @@ packages:
fast-diff: 1.3.0
dev: true
- /prettier-plugin-tailwindcss/0.2.8_prettier@2.8.8:
- resolution: {integrity: sha512-KgPcEnJeIijlMjsA6WwYgRs5rh3/q76oInqtMXBA/EMcamrcYJpyhtRhyX1ayT9hnHlHTuO8sIifHF10WuSDKg==}
+ /prettier-plugin-tailwindcss/0.4.1_prettier@3.0.0:
+ resolution: {integrity: sha512-hwn2EiJmv8M+AW4YDkbjJ6HlZCTzLyz1QlySn9sMuKV/Px0fjwldlB7tol8GzdgqtkdPtzT3iJ4UzdnYXP25Ag==}
engines: {node: '>=12.17.0'}
peerDependencies:
'@ianvs/prettier-plugin-sort-imports': '*'
@@ -3674,11 +3683,12 @@ packages:
'@shopify/prettier-plugin-liquid': '*'
'@shufo/prettier-plugin-blade': '*'
'@trivago/prettier-plugin-sort-imports': '*'
- prettier: '>=2.2.0'
+ prettier: ^2.2 || ^3.0
prettier-plugin-astro: '*'
prettier-plugin-css-order: '*'
prettier-plugin-import-sort: '*'
prettier-plugin-jsdoc: '*'
+ prettier-plugin-marko: '*'
prettier-plugin-organize-attributes: '*'
prettier-plugin-organize-imports: '*'
prettier-plugin-style-order: '*'
@@ -3703,6 +3713,8 @@ packages:
optional: true
prettier-plugin-jsdoc:
optional: true
+ prettier-plugin-marko:
+ optional: true
prettier-plugin-organize-attributes:
optional: true
prettier-plugin-organize-imports:
@@ -3714,12 +3726,12 @@ packages:
prettier-plugin-twig-melody:
optional: true
dependencies:
- prettier: 2.8.8
+ prettier: 3.0.0
dev: true
- /prettier/2.8.8:
- resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
- engines: {node: '>=10.13.0'}
+ /prettier/3.0.0:
+ resolution: {integrity: sha512-zBf5eHpwHOGPC47h0zrPyNn+eAEIdEzfywMoYn2XPi0P44Zp0tSq64rq0xAREh4auw2cJZHo9QUob+NqCQky4g==}
+ engines: {node: '>=14'}
hasBin: true
dev: true
@@ -3749,6 +3761,10 @@ packages:
/queue-microtask/1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
+ /queue-tick/1.0.1:
+ resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==}
+ dev: false
+
/rc/1.2.8:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
@@ -3769,8 +3785,8 @@ packages:
scheduler: 0.23.0
dev: false
- /react-hook-form/7.44.2_react@18.2.0:
- resolution: {integrity: sha512-IyihmIbCwzDI/iqlecTRa7+4BCnzNx40upSlGvIU7qwENhTf6APatm4bmL9ANtWKPYlD67SIlxfls7GwCUe+Lg==}
+ /react-hook-form/7.45.2_react@18.2.0:
+ resolution: {integrity: sha512-9s45OdTaKN+4NSTbXVqeDITd/nwIg++nxJGL8+OD5uf1DxvhsXQ641kaYHk5K28cpIOTYm71O/fYk7rFaygb3A==}
engines: {node: '>=12.22.0'}
peerDependencies:
react: ^16.8.0 || ^17 || ^18
@@ -3785,16 +3801,16 @@ packages:
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
dev: false
- /react-markdown/8.0.7_3stiutgnnbnfnf3uowm5cip22i:
+ /react-markdown/8.0.7_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-bvWbzG4MtOU62XqBx3Xx+zB2raaFFsq4mYiAzfjXJMEz2sixgeAfraA3tvzULF02ZdOMUOKTBFFaZJDDrq+BJQ==}
peerDependencies:
'@types/react': '>=16'
react: '>=16'
dependencies:
- '@types/hast': 2.3.4
+ '@types/hast': 2.3.5
'@types/prop-types': 15.7.5
- '@types/react': 18.0.27
- '@types/unist': 2.0.6
+ '@types/react': 18.2.15
+ '@types/unist': 2.0.7
comma-separated-tokens: 2.0.3
hast-util-whitespace: 2.0.1
prop-types: 15.8.1
@@ -3812,7 +3828,7 @@ packages:
- supports-color
dev: false
- /react-remove-scroll-bar/2.3.4_3stiutgnnbnfnf3uowm5cip22i:
+ /react-remove-scroll-bar/2.3.4_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==}
engines: {node: '>=10'}
peerDependencies:
@@ -3822,13 +3838,13 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.0.27
+ '@types/react': 18.2.15
react: 18.2.0
- react-style-singleton: 2.2.1_3stiutgnnbnfnf3uowm5cip22i
- tslib: 2.5.2
+ react-style-singleton: 2.2.1_tznpbkknyqq5lcv5sgrl332jvu
+ tslib: 2.6.0
dev: false
- /react-remove-scroll/2.5.5_3stiutgnnbnfnf3uowm5cip22i:
+ /react-remove-scroll/2.5.5_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==}
engines: {node: '>=10'}
peerDependencies:
@@ -3838,16 +3854,16 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.0.27
+ '@types/react': 18.2.15
react: 18.2.0
- react-remove-scroll-bar: 2.3.4_3stiutgnnbnfnf3uowm5cip22i
- react-style-singleton: 2.2.1_3stiutgnnbnfnf3uowm5cip22i
- tslib: 2.5.2
- use-callback-ref: 1.3.0_3stiutgnnbnfnf3uowm5cip22i
- use-sidecar: 1.1.2_3stiutgnnbnfnf3uowm5cip22i
+ react-remove-scroll-bar: 2.3.4_tznpbkknyqq5lcv5sgrl332jvu
+ react-style-singleton: 2.2.1_tznpbkknyqq5lcv5sgrl332jvu
+ tslib: 2.6.0
+ use-callback-ref: 1.3.0_tznpbkknyqq5lcv5sgrl332jvu
+ use-sidecar: 1.1.2_tznpbkknyqq5lcv5sgrl332jvu
dev: false
- /react-style-singleton/2.2.1_3stiutgnnbnfnf3uowm5cip22i:
+ /react-style-singleton/2.2.1_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==}
engines: {node: '>=10'}
peerDependencies:
@@ -3857,11 +3873,11 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.0.27
+ '@types/react': 18.2.15
get-nonce: 1.0.1
invariant: 2.2.4
react: 18.2.0
- tslib: 2.5.2
+ tslib: 2.6.0
dev: false
/react/18.2.0:
@@ -3903,15 +3919,10 @@ packages:
functions-have-names: 1.2.3
dev: true
- /regexpp/3.2.0:
- resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
- engines: {node: '>=8'}
- dev: true
-
/remark-breaks/3.0.3:
resolution: {integrity: sha512-C7VkvcUp1TPUc2eAYzsPdaUh8Xj4FSbQnYA5A9f80diApLZscTDeG7efiWP65W8hV2sEy3JuGVU0i6qr5D8Hug==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-newline-to-break: 1.0.0
unified: 10.1.2
dev: false
@@ -3919,7 +3930,7 @@ packages:
/remark-gfm/3.0.1:
resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-gfm: 2.0.2
micromark-extension-gfm: 2.0.3
unified: 10.1.2
@@ -3930,7 +3941,7 @@ packages:
/remark-parse/10.0.2:
resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==}
dependencies:
- '@types/mdast': 3.0.11
+ '@types/mdast': 3.0.12
mdast-util-from-markdown: 1.3.1
unified: 10.1.2
transitivePeerDependencies:
@@ -3940,16 +3951,12 @@ packages:
/remark-rehype/10.1.0:
resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
dependencies:
- '@types/hast': 2.3.4
- '@types/mdast': 3.0.11
+ '@types/hast': 2.3.5
+ '@types/mdast': 3.0.12
mdast-util-to-hast: 12.3.0
unified: 10.1.2
dev: false
- /remixicon/3.3.0:
- resolution: {integrity: sha512-iNeRbwVgd8Ef467IjMd/+joFWSBOYfqsLtxtSzsS8fWn75a1H7sgGu5uWE4c3NLjP2C1giFlx8gw63qZd96yJQ==}
- dev: false
-
/resolve-from/4.0.0:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
@@ -4006,6 +4013,16 @@ packages:
mri: 1.2.0
dev: false
+ /safe-array-concat/1.0.0:
+ resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==}
+ engines: {node: '>=0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.2.1
+ has-symbols: 1.0.3
+ isarray: 2.0.5
+ dev: true
+
/safe-buffer/5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
dev: false
@@ -4024,30 +4041,30 @@ packages:
loose-envify: 1.4.0
dev: false
- /semver/6.3.0:
- resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
+ /semver/6.3.1:
+ resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
dev: true
- /semver/7.5.1:
- resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==}
+ /semver/7.5.4:
+ resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==}
engines: {node: '>=10'}
hasBin: true
dependencies:
lru-cache: 6.0.0
- /sharp/0.32.1:
- resolution: {integrity: sha512-kQTFtj7ldpUqSe8kDxoGLZc1rnMFU0AO2pqbX6pLy3b7Oj8ivJIdoKNwxHVQG2HN6XpHPJqCSM2nsma2gOXvOg==}
+ /sharp/0.32.3:
+ resolution: {integrity: sha512-i1gFPiNqyqxC4ouVvCKj5G8WfPIMeeSxpKcMrjic6NY4e8zktW7bIdqHPc3FCG+pNKU/XCEabKA57hhvZi8UmQ==}
engines: {node: '>=14.15.0'}
requiresBuild: true
dependencies:
color: 4.2.3
- detect-libc: 2.0.1
+ detect-libc: 2.0.2
node-addon-api: 6.1.0
prebuild-install: 7.1.1
- semver: 7.5.1
+ semver: 7.5.4
simple-get: 4.0.1
- tar-fs: 2.1.1
+ tar-fs: 3.0.4
tunnel-agent: 0.6.0
dev: false
@@ -4111,24 +4128,24 @@ packages:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
dev: false
- /stop-iteration-iterator/1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
- engines: {node: '>= 0.4'}
- dependencies:
- internal-slot: 1.0.5
- dev: true
-
/streamsearch/1.1.0:
resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
engines: {node: '>=10.0.0'}
dev: false
+ /streamx/2.15.0:
+ resolution: {integrity: sha512-HcxY6ncGjjklGs1xsP1aR71INYcsXFJet5CU1CHqihQ2J5nOsbd4OjgjHO42w/4QNv9gZb3BueV+Vxok5pLEXg==}
+ dependencies:
+ fast-fifo: 1.3.0
+ queue-tick: 1.0.1
+ dev: false
+
/string.prototype.matchall/4.0.8:
resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
get-intrinsic: 1.2.1
has-symbols: 1.0.3
internal-slot: 1.0.5
@@ -4142,7 +4159,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
dev: true
/string.prototype.trimend/1.0.6:
@@ -4150,7 +4167,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
dev: true
/string.prototype.trimstart/1.0.6:
@@ -4158,7 +4175,7 @@ packages:
dependencies:
call-bind: 1.0.2
define-properties: 1.2.0
- es-abstract: 1.21.2
+ es-abstract: 1.22.1
dev: true
/string_decoder/1.3.0:
@@ -4222,8 +4239,8 @@ packages:
react: 18.2.0
dev: false
- /sucrase/3.32.0:
- resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==}
+ /sucrase/3.33.0:
+ resolution: {integrity: sha512-ARGC7vbufOHfpvyGcZZXFaXCMZ9A4fffOGC5ucOW7+WHDGlAe8LJdf3Jts1sWhDeiI1RSWrKy5Hodl+JWGdW2A==}
engines: {node: '>=8'}
hasBin: true
dependencies:
@@ -4232,7 +4249,7 @@ packages:
glob: 7.1.6
lines-and-columns: 1.2.4
mz: 2.7.0
- pirates: 4.0.5
+ pirates: 4.0.6
ts-interface-checker: 0.1.13
/supports-color/7.2.0:
@@ -4246,8 +4263,8 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
- /swr/2.1.5_react@18.2.0:
- resolution: {integrity: sha512-/OhfZMcEpuz77KavXST5q6XE9nrOBOVcBLWjMT+oAE/kQHyE3PASrevXCtQDZ8aamntOfFkbVJp7Il9tNBQWrw==}
+ /swr/2.2.0_react@18.2.0:
+ resolution: {integrity: sha512-AjqHOv2lAhkuUdIiBu9xbuettzAzWXmCEcLONNKJRba87WAefz8Ca9d6ds/SzrPc235n1IxWYdhJ2zF3MNUaoQ==}
peerDependencies:
react: ^16.11.0 || ^17.0.0 || ^18.0.0
dependencies:
@@ -4259,24 +4276,24 @@ packages:
resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==}
engines: {node: ^14.18.0 || >=16.0.0}
dependencies:
- '@pkgr/utils': 2.4.1
- tslib: 2.5.2
+ '@pkgr/utils': 2.4.2
+ tslib: 2.6.0
dev: true
- /tailwind-merge/1.12.0:
- resolution: {integrity: sha512-Y17eDp7FtN1+JJ4OY0Bqv9OA41O+MS8c1Iyr3T6JFLnOgLg3EvcyMKZAnQ8AGyvB5Nxm3t9Xb5Mhe139m8QT/g==}
+ /tailwind-merge/1.14.0:
+ resolution: {integrity: sha512-3mFKyCo/MBcgyOTlrY8T7odzZFx+w+qKSMAmdFzRvqBfLlSigU6TZnlFHK0lkMwj9Bj8OYU+9yW9lmGuS0QEnQ==}
dev: false
- /tailwindcss-animate/1.0.5_tailwindcss@3.3.2:
- resolution: {integrity: sha512-UU3qrOJ4lFQABY+MVADmBm+0KW3xZyhMdRvejwtXqYOL7YjHYxmuREFAZdmVG5LPe5E9CAst846SLC4j5I3dcw==}
+ /tailwindcss-animate/1.0.6_tailwindcss@3.3.3:
+ resolution: {integrity: sha512-4WigSGMvbl3gCCact62ZvOngA+PRqhAn7si3TQ3/ZuPuQZcIEtVap+ENSXbzWhpojKB8CpvnIsrwBu8/RnHtuw==}
peerDependencies:
tailwindcss: '>=3.0.0 || insiders'
dependencies:
- tailwindcss: 3.3.2
+ tailwindcss: 3.3.3
dev: false
- /tailwindcss/3.3.2:
- resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==}
+ /tailwindcss/3.3.3:
+ resolution: {integrity: sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==}
engines: {node: '>=14.0.0'}
hasBin: true
dependencies:
@@ -4285,24 +4302,23 @@ packages:
chokidar: 3.5.3
didyoumean: 1.2.2
dlv: 1.1.3
- fast-glob: 3.2.12
+ fast-glob: 3.3.0
glob-parent: 6.0.2
is-glob: 4.0.3
- jiti: 1.18.2
+ jiti: 1.19.1
lilconfig: 2.1.0
micromatch: 4.0.5
normalize-path: 3.0.0
object-hash: 3.0.0
picocolors: 1.0.0
- postcss: 8.4.24
- postcss-import: 15.1.0_postcss@8.4.24
- postcss-js: 4.0.1_postcss@8.4.24
- postcss-load-config: 4.0.1_postcss@8.4.24
- postcss-nested: 6.0.1_postcss@8.4.24
+ postcss: 8.4.26
+ postcss-import: 15.1.0_postcss@8.4.26
+ postcss-js: 4.0.1_postcss@8.4.26
+ postcss-load-config: 4.0.1_postcss@8.4.26
+ postcss-nested: 6.0.1_postcss@8.4.26
postcss-selector-parser: 6.0.13
- postcss-value-parser: 4.2.0
resolve: 1.22.2
- sucrase: 3.32.0
+ sucrase: 3.33.0
transitivePeerDependencies:
- ts-node
@@ -4320,6 +4336,14 @@ packages:
tar-stream: 2.2.0
dev: false
+ /tar-fs/3.0.4:
+ resolution: {integrity: sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==}
+ dependencies:
+ mkdirp-classic: 0.5.3
+ pump: 3.0.0
+ tar-stream: 3.1.6
+ dev: false
+
/tar-stream/2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
@@ -4331,6 +4355,14 @@ packages:
readable-stream: 3.6.2
dev: false
+ /tar-stream/3.1.6:
+ resolution: {integrity: sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==}
+ dependencies:
+ b4a: 1.6.4
+ fast-fifo: 1.3.0
+ streamx: 2.15.0
+ dev: false
+
/text-table/0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
dev: true
@@ -4365,6 +4397,15 @@ packages:
resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
dev: false
+ /ts-api-utils/1.0.1_typescript@5.1.6:
+ resolution: {integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==}
+ engines: {node: '>=16.13.0'}
+ peerDependencies:
+ typescript: '>=4.2.0'
+ dependencies:
+ typescript: 5.1.6
+ dev: true
+
/ts-interface-checker/0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
@@ -4381,17 +4422,17 @@ packages:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
dev: true
- /tslib/2.5.2:
- resolution: {integrity: sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==}
+ /tslib/2.6.0:
+ resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==}
- /tsutils/3.21.0_typescript@4.9.5:
+ /tsutils/3.21.0_typescript@5.1.6:
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'}
peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies:
tslib: 1.14.1
- typescript: 4.9.5
+ typescript: 5.1.6
dev: true
/tunnel-agent/0.6.0:
@@ -4412,18 +4453,49 @@ packages:
engines: {node: '>=10'}
dev: true
+ /typed-array-buffer/1.0.0:
+ resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ get-intrinsic: 1.2.1
+ is-typed-array: 1.1.12
+ dev: true
+
+ /typed-array-byte-length/1.0.0:
+ resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ has-proto: 1.0.1
+ is-typed-array: 1.1.12
+ dev: true
+
+ /typed-array-byte-offset/1.0.0:
+ resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==}
+ engines: {node: '>= 0.4'}
+ dependencies:
+ available-typed-arrays: 1.0.5
+ call-bind: 1.0.2
+ for-each: 0.3.3
+ has-proto: 1.0.1
+ is-typed-array: 1.1.12
+ dev: true
+
/typed-array-length/1.0.4:
resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
dependencies:
call-bind: 1.0.2
for-each: 0.3.3
- is-typed-array: 1.1.10
+ is-typed-array: 1.1.12
dev: true
- /typescript/4.9.5:
- resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
- engines: {node: '>=4.2.0'}
+ /typescript/5.1.6:
+ resolution: {integrity: sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==}
+ engines: {node: '>=14.17'}
hasBin: true
+ dev: true
/unbox-primitive/1.0.2:
resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
@@ -4437,7 +4509,7 @@ packages:
/unified/10.1.2:
resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.7
bail: 2.0.2
extend: 3.0.2
is-buffer: 2.0.5
@@ -4453,32 +4525,32 @@ packages:
/unist-util-is/5.2.1:
resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.7
dev: false
/unist-util-position/4.0.4:
resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.7
dev: false
/unist-util-stringify-position/3.0.3:
resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.7
dev: false
/unist-util-visit-parents/5.1.3:
resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.7
unist-util-is: 5.2.1
dev: false
/unist-util-visit/4.1.2:
resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.7
unist-util-is: 5.2.1
unist-util-visit-parents: 5.1.3
dev: false
@@ -4488,13 +4560,13 @@ packages:
engines: {node: '>=8'}
dev: true
- /update-browserslist-db/1.0.11_browserslist@4.21.7:
+ /update-browserslist-db/1.0.11_browserslist@4.21.9:
resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
dependencies:
- browserslist: 4.21.7
+ browserslist: 4.21.9
escalade: 3.1.1
picocolors: 1.0.0
dev: true
@@ -4505,7 +4577,7 @@ packages:
punycode: 2.3.0
dev: true
- /use-callback-ref/1.3.0_3stiutgnnbnfnf3uowm5cip22i:
+ /use-callback-ref/1.3.0_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==}
engines: {node: '>=10'}
peerDependencies:
@@ -4515,12 +4587,12 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.0.27
+ '@types/react': 18.2.15
react: 18.2.0
- tslib: 2.5.2
+ tslib: 2.6.0
dev: false
- /use-sidecar/1.1.2_3stiutgnnbnfnf3uowm5cip22i:
+ /use-sidecar/1.1.2_tznpbkknyqq5lcv5sgrl332jvu:
resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==}
engines: {node: '>=10'}
peerDependencies:
@@ -4530,10 +4602,10 @@ packages:
'@types/react':
optional: true
dependencies:
- '@types/react': 18.0.27
+ '@types/react': 18.2.15
detect-node-es: 1.1.0
react: 18.2.0
- tslib: 2.5.2
+ tslib: 2.6.0
dev: false
/use-sync-external-store/1.2.0_react@18.2.0:
@@ -4561,14 +4633,14 @@ packages:
/vfile-message/3.1.4:
resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.7
unist-util-stringify-position: 3.0.3
dev: false
/vfile/5.3.7:
resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
dependencies:
- '@types/unist': 2.0.6
+ '@types/unist': 2.0.7
is-buffer: 2.0.5
unist-util-stringify-position: 3.0.3
vfile-message: 3.1.4
@@ -4592,17 +4664,8 @@ packages:
is-symbol: 1.0.4
dev: true
- /which-collection/1.0.1:
- resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==}
- dependencies:
- is-map: 2.0.2
- is-set: 2.0.2
- is-weakmap: 2.0.1
- is-weakset: 2.0.2
- dev: true
-
- /which-typed-array/1.1.9:
- resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==}
+ /which-typed-array/1.1.11:
+ resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==}
engines: {node: '>= 0.4'}
dependencies:
available-typed-arrays: 1.0.5
@@ -4610,7 +4673,6 @@ packages:
for-each: 0.3.3
gopd: 1.0.1
has-tostringtag: 1.0.0
- is-typed-array: 1.1.10
dev: true
/which/2.0.2:
@@ -4621,11 +4683,6 @@ packages:
isexe: 2.0.0
dev: true
- /word-wrap/1.2.3:
- resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
- engines: {node: '>=0.10.0'}
- dev: true
-
/wrappy/1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}