diff --git a/.github/actions/cache-rust-deps/action.yaml b/.github/actions/cache-rust-deps/action.yaml index 36ab07b8a..af740ea8a 100644 --- a/.github/actions/cache-rust-deps/action.yaml +++ b/.github/actions/cache-rust-deps/action.yaml @@ -1,4 +1,3 @@ - name: Cache Rust Dependencies description: Caches Rust dependencies runs: diff --git a/.lintstagedrc.json b/.lintstagedrc.json new file mode 100644 index 000000000..59c8ccb43 --- /dev/null +++ b/.lintstagedrc.json @@ -0,0 +1,3 @@ +{ + "*.{js,jsx,ts,tsx,html,json,yml,yaml,css,scss,md}": ["prettier --write"] +} diff --git a/.npmrc b/.npmrc index 728956208..89f147e1d 100644 --- a/.npmrc +++ b/.npmrc @@ -1,5 +1,7 @@ ; make all engine requirements (e.g. node version) strictly kept engine-strict=true +; tempfix for pnpm#5909: https://github.com/pnpm/pnpm/issues/5909#issuecomment-1397758156 +prefer-symlinked-executables=false ; necessary for metro + mobile strict-peer-dependencies=false node-linker=hoisted diff --git a/.prettierignore b/.prettierignore index 69a352b81..c578c60eb 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,2 +1,13 @@ -/target -.build \ No newline at end of file +# built product/cache +target/ +dist/ +# macOS/iOS product/cache +.build/ +Pods/ +# just in case it tries to parse for some reason +*.rs +# prettier sometimes can't parse these +*.d.ts +packages/interface/scripts/generateSvgImports.mjs +# we plainly don't need a lockfile to look nice +pnpm-lock.yaml diff --git a/.prettierrc.js b/.prettierrc.js index a522c7ba5..d441b6004 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -7,8 +7,16 @@ module.exports = { bracketSameLine: false, semi: true, quoteProps: 'consistent', - importOrder: ['^[./]', '^@sd/interface/(.*)$', '^@sd/client/(.*)$', '^@sd/ui/(.*)$'], - importOrderSeparation: true, + importOrder: [ + // external packages + '^([A-Za-z]|@[^s/])', + // spacedrive packages + '^@sd/(interface|client|ui)(/.*)?$', + // this package + '^~/', + // relative + '^\\.' + ], importOrderSortSpecifiers: true, plugins: ['@trivago/prettier-plugin-sort-imports'] }; diff --git a/apps/desktop/src/App.tsx b/apps/desktop/src/App.tsx index 89a516fa0..879c976ec 100644 --- a/apps/desktop/src/App.tsx +++ b/apps/desktop/src/App.tsx @@ -1,12 +1,11 @@ import { loggerLink } from '@rspc/client'; import { tauriLink } from '@rspc/tauri'; -import { getDebugState, hooks, queryClient } from '@sd/client'; -import SpacedriveInterface, { OperatingSystem, Platform, PlatformProvider } from '@sd/interface'; -import { KeybindEvent } from '@sd/interface'; import { dialog, invoke, os, shell } from '@tauri-apps/api'; import { listen } from '@tauri-apps/api/event'; import { useEffect } from 'react'; - +import { getDebugState, hooks, queryClient } from '@sd/client'; +import SpacedriveInterface, { OperatingSystem, Platform, PlatformProvider } from '@sd/interface'; +import { KeybindEvent } from '@sd/interface'; import '@sd/ui/style'; const client = hooks.createClient({ diff --git a/apps/desktop/src/index.tsx b/apps/desktop/src/index.tsx index 77649c6f0..d965b4ff7 100644 --- a/apps/desktop/src/index.tsx +++ b/apps/desktop/src/index.tsx @@ -1,13 +1,11 @@ // WARNING: BE CAREFUL SAVING THIS FILE WITH A FORMATTER ENABLED. The import order is important and goes against prettier's recommendations. import React, { Suspense } from 'react'; import ReactDOM from 'react-dom/client'; +import '@sd/ui/style'; // THIS MUST GO BEFORE importing the App import '~/patches'; - import App from './App'; -import '@sd/ui/style'; - const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement); root.render( diff --git a/apps/desktop/tsconfig.json b/apps/desktop/tsconfig.json index c5d171eb4..fb1b3f986 100644 --- a/apps/desktop/tsconfig.json +++ b/apps/desktop/tsconfig.json @@ -4,14 +4,10 @@ "rootDir": "src", "declarationDir": "dist", "paths": { - "~/*": [ - "./src/*" - ] + "~/*": ["./src/*"] } }, - "include": [ - "src" - ], + "include": ["src"], "references": [ { "path": "../../packages/interface" diff --git a/apps/desktop/vite.config.ts b/apps/desktop/vite.config.ts index 73956d8da..14438007d 100644 --- a/apps/desktop/vite.config.ts +++ b/apps/desktop/vite.config.ts @@ -3,7 +3,6 @@ import react from '@vitejs/plugin-react'; import { defineConfig } from 'vite'; import svgr from 'vite-plugin-svgr'; import tsconfigPaths from 'vite-tsconfig-paths'; - import { name, version } from './package.json'; // https://vitejs.dev/config/ diff --git a/apps/landing/public/site.webmanifest b/apps/landing/public/site.webmanifest index 4536bfc15..a1a17d753 100644 --- a/apps/landing/public/site.webmanifest +++ b/apps/landing/public/site.webmanifest @@ -1,11 +1,11 @@ { - "name": "Spacedrive", - "short_name": "", - "icons": [ - { "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, - { "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } - ], - "theme_color": "#ffffff", - "background_color": "#ffffff", - "display": "standalone" + "name": "Spacedrive", + "short_name": "", + "icons": [ + { "src": "/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, + { "src": "/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" } diff --git a/apps/landing/src/App.tsx b/apps/landing/src/App.tsx index dcfe8d8db..d8209d17b 100644 --- a/apps/landing/src/App.tsx +++ b/apps/landing/src/App.tsx @@ -1,13 +1,11 @@ import React, { PropsWithChildren } from 'react'; import { PageContextBuiltIn } from 'vite-plugin-ssr'; - +import '@sd/ui/style'; import { Footer } from './components/Footer'; import NavBar from './components/NavBar'; import { PageContextProvider } from './renderer/usePageContext'; import './style.scss'; -import '@sd/ui/style'; - export default function App({ children, pageContext diff --git a/apps/landing/src/components/AppEmbed.tsx b/apps/landing/src/components/AppEmbed.tsx index 359474db2..0ec9f674e 100644 --- a/apps/landing/src/components/AppEmbed.tsx +++ b/apps/landing/src/components/AppEmbed.tsx @@ -1,7 +1,6 @@ /* eslint-disable react-hooks/exhaustive-deps */ import clsx from 'clsx'; import { useEffect, useRef, useState } from 'react'; - import { getWindow } from '../utils'; const AppEmbed = () => { diff --git a/apps/landing/src/components/DocsLayout.tsx b/apps/landing/src/components/DocsLayout.tsx index e285e10b6..6f5758a6d 100644 --- a/apps/landing/src/components/DocsLayout.tsx +++ b/apps/landing/src/components/DocsLayout.tsx @@ -1,8 +1,7 @@ -import { Button } from '@sd/ui'; import { CaretRight, List, X } from 'phosphor-react'; import { PropsWithChildren, useState } from 'react'; import pkg from 'react-burger-menu'; - +import { Button } from '@sd/ui'; import { Doc, DocsNavigation, toTitleCase } from '../pages/docs/api'; import DocsSidebar from './DocsSidebar'; diff --git a/apps/landing/src/components/DocsSidebar.tsx b/apps/landing/src/components/DocsSidebar.tsx index 1c76d8bbd..33ea5676b 100644 --- a/apps/landing/src/components/DocsSidebar.tsx +++ b/apps/landing/src/components/DocsSidebar.tsx @@ -1,7 +1,6 @@ -import { Input } from '@sd/ui'; import clsx from 'clsx'; import { MagnifyingGlass } from 'phosphor-react'; - +import { Input } from '@sd/ui'; import { DocsNavigation } from '../pages/docs/api'; import config from '../pages/docs/docs'; diff --git a/apps/landing/src/components/Footer.tsx b/apps/landing/src/components/Footer.tsx index 74f3ac2f7..8c01ee31a 100644 --- a/apps/landing/src/components/Footer.tsx +++ b/apps/landing/src/components/Footer.tsx @@ -1,3 +1,4 @@ +import AppLogo from '@sd/assets/images/logo.png'; import { Discord, Github, @@ -6,7 +7,6 @@ import { Twitch, Twitter } from '@icons-pack/react-simple-icons'; -import AppLogo from '@sd/assets/images/logo.png'; import { PropsWithChildren } from 'react'; function FooterLink(props: PropsWithChildren<{ link: string; blank?: boolean }>) { diff --git a/apps/landing/src/components/HomeCTA.tsx b/apps/landing/src/components/HomeCTA.tsx index 701b3b6df..0f63d7f94 100644 --- a/apps/landing/src/components/HomeCTA.tsx +++ b/apps/landing/src/components/HomeCTA.tsx @@ -1,11 +1,11 @@ -import { Github } from '@icons-pack/react-simple-icons'; import { ReactComponent as Alert } from '@sd/assets/svgs/alert.svg'; import { ReactComponent as Info } from '@sd/assets/svgs/info.svg'; import { ReactComponent as Spinner } from '@sd/assets/svgs/spinner.svg'; -import { Button, Input } from '@sd/ui'; +import { Github } from '@icons-pack/react-simple-icons'; import clsx from 'clsx'; import { useState } from 'react'; import { useForm } from 'react-hook-form'; +import { Button, Input } from '@sd/ui'; interface WaitlistInputs { email: string; diff --git a/apps/landing/src/components/Markdown.tsx b/apps/landing/src/components/Markdown.tsx index cc130e616..7641cc971 100644 --- a/apps/landing/src/components/Markdown.tsx +++ b/apps/landing/src/components/Markdown.tsx @@ -3,7 +3,6 @@ import Prism from 'prismjs'; import 'prismjs/components/prism-rust'; import 'prismjs/components/prism-typescript'; import { PropsWithChildren, useEffect } from 'react'; - import '../atom-one.css'; interface MarkdownPageProps { diff --git a/apps/landing/src/components/NavBar.tsx b/apps/landing/src/components/NavBar.tsx index 3efb58821..2cdae2412 100644 --- a/apps/landing/src/components/NavBar.tsx +++ b/apps/landing/src/components/NavBar.tsx @@ -1,11 +1,10 @@ -import { Academia, Discord, Github } from '@icons-pack/react-simple-icons'; import AppLogo from '@sd/assets/images/logo.png'; -import { Button, Dropdown } from '@sd/ui'; +import { Academia, Discord, Github } from '@icons-pack/react-simple-icons'; import clsx from 'clsx'; import { Book, Chat, DotsThreeVertical, MapPin, User } from 'phosphor-react'; import { PropsWithChildren, useEffect, useState } from 'react'; import * as router from 'vite-plugin-ssr/client/router'; - +import { Button, Dropdown } from '@sd/ui'; import { positions } from '../pages/careers.page'; import { getWindow } from '../utils'; diff --git a/apps/landing/src/pages/blog/index.page.tsx b/apps/landing/src/pages/blog/index.page.tsx index 7a5c699da..316f71208 100644 --- a/apps/landing/src/pages/blog/index.page.tsx +++ b/apps/landing/src/pages/blog/index.page.tsx @@ -1,6 +1,5 @@ import { PostOrPage, Tag } from '@tryghost/content-api'; import { Helmet } from 'react-helmet'; - import { BlogTag } from '../../components/BlogTag'; import { getWindow } from '../../utils'; import { blogEnabled } from './blog'; diff --git a/apps/landing/src/pages/blog/post.page.server.ts b/apps/landing/src/pages/blog/post.page.server.ts index 39f4f9e34..bcb4aff8a 100644 --- a/apps/landing/src/pages/blog/post.page.server.ts +++ b/apps/landing/src/pages/blog/post.page.server.ts @@ -1,5 +1,4 @@ import { PageContextBuiltIn } from 'vite-plugin-ssr'; - import { getPost } from './blog'; export async function onBeforeRender(pageContext: PageContextBuiltIn) { diff --git a/apps/landing/src/pages/blog/post.page.tsx b/apps/landing/src/pages/blog/post.page.tsx index 1253eb72c..4eb4be801 100644 --- a/apps/landing/src/pages/blog/post.page.tsx +++ b/apps/landing/src/pages/blog/post.page.tsx @@ -3,7 +3,6 @@ import Prism from 'prismjs'; import 'prismjs/components/prism-rust'; import { useEffect } from 'react'; import { Helmet } from 'react-helmet'; - import '../../atom-one.css'; import { BlogTag } from '../../components/BlogTag'; diff --git a/apps/landing/src/pages/careers.page.tsx b/apps/landing/src/pages/careers.page.tsx index 3613a5f19..8e5210d5e 100644 --- a/apps/landing/src/pages/careers.page.tsx +++ b/apps/landing/src/pages/careers.page.tsx @@ -1,4 +1,3 @@ -import { Button } from '@sd/ui'; import { Clock, CurrencyDollar, @@ -12,6 +11,7 @@ import { } from 'phosphor-react'; import { useRef } from 'react'; import { Helmet } from 'react-helmet'; +import { Button } from '@sd/ui'; interface PositionPosting { name: string; diff --git a/apps/landing/src/pages/docs/api.ts b/apps/landing/src/pages/docs/api.ts index ceebb3844..cec5c52cd 100644 --- a/apps/landing/src/pages/docs/api.ts +++ b/apps/landing/src/pages/docs/api.ts @@ -1,5 +1,4 @@ import { Component } from 'react'; - import { parseMarkdown } from '../../utils/markdownParse'; export interface Doc { diff --git a/apps/landing/src/pages/docs/doc.page.server.ts b/apps/landing/src/pages/docs/doc.page.server.ts index a3bc6d9a2..5a1b245a4 100644 --- a/apps/landing/src/pages/docs/doc.page.server.ts +++ b/apps/landing/src/pages/docs/doc.page.server.ts @@ -1,5 +1,4 @@ import { PageContextBuiltIn } from 'vite-plugin-ssr'; - import { getDoc } from './api'; import config from './docs'; diff --git a/apps/landing/src/pages/docs/doc.page.tsx b/apps/landing/src/pages/docs/doc.page.tsx index 876be0fb7..ee6ed4b0b 100644 --- a/apps/landing/src/pages/docs/doc.page.tsx +++ b/apps/landing/src/pages/docs/doc.page.tsx @@ -2,7 +2,6 @@ import { Github } from '@icons-pack/react-simple-icons'; import { CaretRight } from 'phosphor-react'; import { PropsWithChildren } from 'react'; import { Helmet } from 'react-helmet'; - import '../../atom-one.css'; import DocsLayout from '../../components/DocsLayout'; import Markdown from '../../components/Markdown'; diff --git a/apps/landing/src/pages/docs/docs.ts b/apps/landing/src/pages/docs/docs.ts index 57135be5c..f4a864739 100644 --- a/apps/landing/src/pages/docs/docs.ts +++ b/apps/landing/src/pages/docs/docs.ts @@ -1,5 +1,4 @@ import { Circle, Cube, Sparkle, Star } from 'phosphor-react'; - import { DocsConfig } from './api'; export function loadDocs() { diff --git a/apps/landing/src/pages/docs/index.page.tsx b/apps/landing/src/pages/docs/index.page.tsx index 789abaf70..80ac2fb16 100644 --- a/apps/landing/src/pages/docs/index.page.tsx +++ b/apps/landing/src/pages/docs/index.page.tsx @@ -1,5 +1,4 @@ import { Helmet } from 'react-helmet'; - import DocsLayout from '../../components/DocsLayout'; import Markdown from '../../components/Markdown'; import { DocsNavigation } from './api'; diff --git a/apps/landing/src/pages/index.page.tsx b/apps/landing/src/pages/index.page.tsx index 20c3b606d..cc52d3299 100644 --- a/apps/landing/src/pages/index.page.tsx +++ b/apps/landing/src/pages/index.page.tsx @@ -2,7 +2,6 @@ import { ReactComponent as Info } from '@sd/assets/svgs/info.svg'; import clsx from 'clsx'; import { useEffect, useState } from 'react'; import { Helmet } from 'react-helmet'; - import AppEmbed, { AppEmbedPlaceholder } from '../components/AppEmbed'; import { Bubbles } from '../components/Bubbles'; // import { Bubbles } from '../components/Bubbles'; diff --git a/apps/landing/src/pages/team.page.tsx b/apps/landing/src/pages/team.page.tsx index ecdd97cc8..28a7296e1 100644 --- a/apps/landing/src/pages/team.page.tsx +++ b/apps/landing/src/pages/team.page.tsx @@ -1,6 +1,5 @@ import { ReactComponent as ArrowRight } from '@sd/assets/svgs/arrow-right.svg'; import { Helmet } from 'react-helmet'; - import Markdown from '../components/Markdown'; import { TeamMember, TeamMemberProps } from '../components/TeamMember'; import { resolveFilesGlob } from '../utils'; diff --git a/apps/landing/src/renderer/_default.page.client.tsx b/apps/landing/src/renderer/_default.page.client.tsx index 7a1b736b5..f430feb4b 100644 --- a/apps/landing/src/renderer/_default.page.client.tsx +++ b/apps/landing/src/renderer/_default.page.client.tsx @@ -1,6 +1,5 @@ import { hydrateRoot } from 'react-dom/client'; import type { PageContextBuiltInClient } from 'vite-plugin-ssr/client'; - import App from '../App'; import type { PageContext } from './types'; diff --git a/apps/landing/src/renderer/_default.page.server.tsx b/apps/landing/src/renderer/_default.page.server.tsx index 5517578f8..9cb529cd5 100644 --- a/apps/landing/src/renderer/_default.page.server.tsx +++ b/apps/landing/src/renderer/_default.page.server.tsx @@ -2,7 +2,6 @@ import ReactDOMServer from 'react-dom/server'; import { Helmet } from 'react-helmet'; import { dangerouslySkipEscape, escapeInject } from 'vite-plugin-ssr'; import type { PageContextBuiltIn } from 'vite-plugin-ssr'; - import App from '../App'; import type { PageContext } from './types'; diff --git a/apps/landing/src/renderer/_error.page.tsx b/apps/landing/src/renderer/_error.page.tsx index cc1ba5e93..96d375d55 100644 --- a/apps/landing/src/renderer/_error.page.tsx +++ b/apps/landing/src/renderer/_error.page.tsx @@ -1,7 +1,6 @@ -import { Button } from '@sd/ui'; import { SmileyXEyes } from 'phosphor-react'; import { Helmet } from 'react-helmet'; - +import { Button } from '@sd/ui'; import Markdown from '../components/Markdown'; import { getWindow } from '../utils'; diff --git a/apps/landing/src/renderer/usePageContext.tsx b/apps/landing/src/renderer/usePageContext.tsx index 92558a969..1ef048c01 100644 --- a/apps/landing/src/renderer/usePageContext.tsx +++ b/apps/landing/src/renderer/usePageContext.tsx @@ -2,7 +2,6 @@ // More infos: https://vite-plugin-ssr.com/pageContext-anywhere import { PropsWithChildren, ReactNode, createContext, useContext } from 'react'; import { PageContextBuiltIn } from 'vite-plugin-ssr'; - import type { PageContext } from './types'; export { PageContextProvider }; diff --git a/apps/landing/src/style.scss b/apps/landing/src/style.scss index 63a5656f5..429889cab 100644 --- a/apps/landing/src/style.scss +++ b/apps/landing/src/style.scss @@ -237,6 +237,6 @@ html { @apply bg-[#00000006] dark:bg-[#00000030] my-[10px] rounded-[6px]; } &::-webkit-scrollbar-thumb { - @apply rounded-[6px] bg-app-selected + @apply rounded-[6px] bg-app-selected; } } diff --git a/apps/landing/tsconfig.json b/apps/landing/tsconfig.json index 81aff2726..59b27623a 100644 --- a/apps/landing/tsconfig.json +++ b/apps/landing/tsconfig.json @@ -1,8 +1,6 @@ { "extends": "../../packages/config/app.tsconfig.json", - "include": [ - "src" - ], + "include": ["src"], "ts-node": { "transpileOnly": true, "compilerOptions": {} diff --git a/apps/landing/vite.config.ts b/apps/landing/vite.config.ts index c6db53bed..c833a4f9d 100644 --- a/apps/landing/vite.config.ts +++ b/apps/landing/vite.config.ts @@ -8,6 +8,8 @@ import ssr from 'vite-plugin-ssr/plugin'; import svg from 'vite-plugin-svgr'; export default defineConfig({ + // prettier-ignore + // Prettier reeeally wants to one-line this -- I AM PUTTING MY FOOT DOWN AND SAYING NO! plugins: [ react(), ssr({ prerender: true }), diff --git a/apps/mobile/eas.json b/apps/mobile/eas.json index 05122d5ba..db9ce9aca 100644 --- a/apps/mobile/eas.json +++ b/apps/mobile/eas.json @@ -1,23 +1,23 @@ { - "cli": { - "version": ">= 0.56.0" - }, - "build": { - "development": { - "distribution": "internal", - "android": { - "gradleCommand": ":app:assembleDebug" - }, - "ios": { - "buildConfiguration": "Debug" - } - }, - "preview": { - "distribution": "internal" - }, - "production": {} - }, - "submit": { - "production": {} - } + "cli": { + "version": ">= 0.56.0" + }, + "build": { + "development": { + "distribution": "internal", + "android": { + "gradleCommand": ":app:assembleDebug" + }, + "ios": { + "buildConfiguration": "Debug" + } + }, + "preview": { + "distribution": "internal" + }, + "production": {} + }, + "submit": { + "production": {} + } } diff --git a/apps/mobile/index.js b/apps/mobile/index.js index 24dcab9df..fc44ce41d 100644 --- a/apps/mobile/index.js +++ b/apps/mobile/index.js @@ -1,5 +1,4 @@ import { registerRootComponent } from 'expo'; - import { AppWrapper } from './src/main'; // registerRootComponent calls AppRegistry.registerComponent('main', () => App); diff --git a/apps/mobile/src/App.tsx b/apps/mobile/src/App.tsx index f08972ab4..0f464cbd2 100644 --- a/apps/mobile/src/App.tsx +++ b/apps/mobile/src/App.tsx @@ -1,6 +1,13 @@ import { BottomSheetModalProvider } from '@gorhom/bottom-sheet'; import { DefaultTheme, NavigationContainer, Theme } from '@react-navigation/native'; import { loggerLink } from '@rspc/client'; +import * as SplashScreen from 'expo-splash-screen'; +import { StatusBar } from 'expo-status-bar'; +import { useEffect } from 'react'; +import { GestureHandlerRootView } from 'react-native-gesture-handler'; +import { MenuProvider } from 'react-native-popup-menu'; +import { SafeAreaProvider } from 'react-native-safe-area-context'; +import { useDeviceContext } from 'twrnc'; import { LibraryContextProvider, getDebugState, @@ -9,14 +16,6 @@ import { useCurrentLibrary, useInvalidateQuery } from '@sd/client'; -import * as SplashScreen from 'expo-splash-screen'; -import { StatusBar } from 'expo-status-bar'; -import { useEffect } from 'react'; -import { GestureHandlerRootView } from 'react-native-gesture-handler'; -import { MenuProvider } from 'react-native-popup-menu'; -import { SafeAreaProvider } from 'react-native-safe-area-context'; -import { useDeviceContext } from 'twrnc'; - import { GlobalModals } from './containers/modal/GlobalModals'; import { reactNativeLink } from './lib/rspcReactNativeTransport'; import tw from './lib/tailwind'; diff --git a/apps/mobile/src/components/device/Device.tsx b/apps/mobile/src/components/device/Device.tsx index bc6fae92c..afd59e784 100644 --- a/apps/mobile/src/components/device/Device.tsx +++ b/apps/mobile/src/components/device/Device.tsx @@ -1,8 +1,7 @@ -import { ExplorerItem } from '@sd/client'; import { Cloud, Desktop, DeviceMobileCamera, Laptop, Lock } from 'phosphor-react-native'; import { FlatList, Text, View } from 'react-native'; +import { ExplorerItem } from '@sd/client'; import tw from '~/lib/tailwind'; - import FileItem from '../explorer/FileItem'; const placeholderFileItems: ExplorerItem[] = [ diff --git a/apps/mobile/src/components/explorer/Explorer.tsx b/apps/mobile/src/components/explorer/Explorer.tsx index 0d581bf27..115f488f8 100644 --- a/apps/mobile/src/components/explorer/Explorer.tsx +++ b/apps/mobile/src/components/explorer/Explorer.tsx @@ -1,9 +1,9 @@ -import { useNavigation } from '@react-navigation/native'; -import { ExplorerData, ExplorerItem } from '@sd/client'; import { FlashList } from '@shopify/flash-list'; +import { useNavigation } from '@react-navigation/native'; import { Rows, SquaresFour } from 'phosphor-react-native'; import { useEffect, useState } from 'react'; import { Pressable, View } from 'react-native'; +import { ExplorerData, ExplorerItem } from '@sd/client'; import Layout from '~/constants/Layout'; import SortByMenu from '~/containers/menu/SortByMenu'; import tw from '~/lib/tailwind'; @@ -11,7 +11,6 @@ import { SharedScreenProps } from '~/navigation/SharedScreens'; import { getExplorerStore } from '~/stores/explorerStore'; import { useFileModalStore } from '~/stores/modalStore'; import { isPath } from '~/types/helper'; - import FileItem from './FileItem'; import FileRow from './FileRow'; diff --git a/apps/mobile/src/components/explorer/FileItem.tsx b/apps/mobile/src/components/explorer/FileItem.tsx index 389e5d597..c8a281025 100644 --- a/apps/mobile/src/components/explorer/FileItem.tsx +++ b/apps/mobile/src/components/explorer/FileItem.tsx @@ -1,8 +1,7 @@ -import { ExplorerItem, isVideoExt } from '@sd/client'; import { Text, View } from 'react-native'; +import { ExplorerItem, isVideoExt } from '@sd/client'; import Layout from '~/constants/Layout'; import { getExplorerStore } from '~/stores/explorerStore'; - import tw from '../../lib/tailwind'; import FileThumb from './FileThumb'; diff --git a/apps/mobile/src/components/explorer/FileRow.tsx b/apps/mobile/src/components/explorer/FileRow.tsx index 6ac068c45..f77c05527 100644 --- a/apps/mobile/src/components/explorer/FileRow.tsx +++ b/apps/mobile/src/components/explorer/FileRow.tsx @@ -1,9 +1,8 @@ -import { ExplorerItem, isVideoExt } from '@sd/client'; import React from 'react'; import { Text, View } from 'react-native'; +import { ExplorerItem, isVideoExt } from '@sd/client'; import tw from '~/lib/tailwind'; import { getExplorerStore } from '~/stores/explorerStore'; - import FileThumb from './FileThumb'; type FileRowProps = { diff --git a/apps/mobile/src/components/explorer/FileThumb.tsx b/apps/mobile/src/components/explorer/FileThumb.tsx index 5f2bab84d..e6e8d694b 100644 --- a/apps/mobile/src/components/explorer/FileThumb.tsx +++ b/apps/mobile/src/components/explorer/FileThumb.tsx @@ -1,9 +1,8 @@ -import { ExplorerItem } from '@sd/client'; import { Image, View } from 'react-native'; import { DocumentDirectoryPath } from 'react-native-fs'; +import { ExplorerItem } from '@sd/client'; import { useExplorerStore } from '~/stores/explorerStore'; import { isObject, isPath } from '~/types/helper'; - // import icons from '../../assets/icons/file'; import tw from '../../lib/tailwind'; import FolderIcon from '../icons/FolderIcon'; diff --git a/apps/mobile/src/components/layout/CollapsibleView.tsx b/apps/mobile/src/components/layout/CollapsibleView.tsx index 43814f6e4..0356b3997 100644 --- a/apps/mobile/src/components/layout/CollapsibleView.tsx +++ b/apps/mobile/src/components/layout/CollapsibleView.tsx @@ -3,7 +3,6 @@ import { CaretRight } from 'phosphor-react-native'; import { PropsWithChildren, useReducer } from 'react'; import { Pressable, StyleProp, Text, TextStyle, View, ViewStyle } from 'react-native'; import tw from '~/lib/tailwind'; - import { AnimatedHeight } from '../animation/layout'; type CollapsibleViewProps = PropsWithChildren<{ diff --git a/apps/mobile/src/components/layout/Dialog.tsx b/apps/mobile/src/components/layout/Dialog.tsx index de7a8c9e5..04f437df3 100644 --- a/apps/mobile/src/components/layout/Dialog.tsx +++ b/apps/mobile/src/components/layout/Dialog.tsx @@ -2,7 +2,6 @@ import { MotiView } from 'moti'; import { ReactNode, useState } from 'react'; import { KeyboardAvoidingView, Modal, Platform, Pressable, Text, View } from 'react-native'; import tw from '~/lib/tailwind'; - import { PulseAnimation } from '../animation/lottie'; import { Button } from '../primitive/Button'; diff --git a/apps/mobile/src/containers/OverviewStats.tsx b/apps/mobile/src/containers/OverviewStats.tsx index 49d880d0a..0362837af 100644 --- a/apps/mobile/src/containers/OverviewStats.tsx +++ b/apps/mobile/src/containers/OverviewStats.tsx @@ -1,9 +1,8 @@ -import { Statistics, useLibraryQuery } from '@sd/client'; import byteSize from 'byte-size'; import { FC, useEffect, useState } from 'react'; import { ScrollView, Text, View } from 'react-native'; import RNFS from 'react-native-fs'; - +import { Statistics, useLibraryQuery } from '@sd/client'; import useCounter from '../hooks/useCounter'; import tw from '../lib/tailwind'; diff --git a/apps/mobile/src/containers/dialog/CreateLibraryDialog.tsx b/apps/mobile/src/containers/dialog/CreateLibraryDialog.tsx index 4350d51f3..cc3a08098 100644 --- a/apps/mobile/src/containers/dialog/CreateLibraryDialog.tsx +++ b/apps/mobile/src/containers/dialog/CreateLibraryDialog.tsx @@ -1,5 +1,5 @@ -import { queryClient, useBridgeMutation, useCurrentLibrary } from '@sd/client'; import { useState } from 'react'; +import { queryClient, useBridgeMutation, useCurrentLibrary } from '@sd/client'; import Dialog from '~/components/layout/Dialog'; import { Input } from '~/components/primitive/Input'; diff --git a/apps/mobile/src/containers/dialog/DeleteLibraryDialog.tsx b/apps/mobile/src/containers/dialog/DeleteLibraryDialog.tsx index 48992e6c8..bdcb2c2b0 100644 --- a/apps/mobile/src/containers/dialog/DeleteLibraryDialog.tsx +++ b/apps/mobile/src/containers/dialog/DeleteLibraryDialog.tsx @@ -1,5 +1,5 @@ -import { queryClient, useBridgeMutation } from '@sd/client'; import { useState } from 'react'; +import { queryClient, useBridgeMutation } from '@sd/client'; import Dialog from '~/components/layout/Dialog'; type Props = { diff --git a/apps/mobile/src/containers/dialog/DeleteLocationDialog.tsx b/apps/mobile/src/containers/dialog/DeleteLocationDialog.tsx index e4b4d1155..c2363b182 100644 --- a/apps/mobile/src/containers/dialog/DeleteLocationDialog.tsx +++ b/apps/mobile/src/containers/dialog/DeleteLocationDialog.tsx @@ -1,5 +1,5 @@ -import { useLibraryMutation } from '@sd/client'; import { useState } from 'react'; +import { useLibraryMutation } from '@sd/client'; import Dialog from '~/components/layout/Dialog'; type Props = { diff --git a/apps/mobile/src/containers/dialog/tag/CreateTagDialog.tsx b/apps/mobile/src/containers/dialog/tag/CreateTagDialog.tsx index 9194fb194..d3301a807 100644 --- a/apps/mobile/src/containers/dialog/tag/CreateTagDialog.tsx +++ b/apps/mobile/src/containers/dialog/tag/CreateTagDialog.tsx @@ -1,7 +1,7 @@ -import { queryClient, useLibraryMutation } from '@sd/client'; import React, { useState } from 'react'; import { Pressable, View } from 'react-native'; import ColorPicker from 'react-native-wheel-color-picker'; +import { queryClient, useLibraryMutation } from '@sd/client'; import Dialog from '~/components/layout/Dialog'; import { Input } from '~/components/primitive/Input'; import tw from '~/lib/tailwind'; diff --git a/apps/mobile/src/containers/dialog/tag/DeleteTagDialog.tsx b/apps/mobile/src/containers/dialog/tag/DeleteTagDialog.tsx index 71a30c04c..72f3e863e 100644 --- a/apps/mobile/src/containers/dialog/tag/DeleteTagDialog.tsx +++ b/apps/mobile/src/containers/dialog/tag/DeleteTagDialog.tsx @@ -1,5 +1,5 @@ -import { useLibraryMutation } from '@sd/client'; import { useState } from 'react'; +import { useLibraryMutation } from '@sd/client'; import Dialog from '~/components/layout/Dialog'; type Props = { diff --git a/apps/mobile/src/containers/dialog/tag/UpdateTagDialog.tsx b/apps/mobile/src/containers/dialog/tag/UpdateTagDialog.tsx index 1228d0a91..25ec22531 100644 --- a/apps/mobile/src/containers/dialog/tag/UpdateTagDialog.tsx +++ b/apps/mobile/src/containers/dialog/tag/UpdateTagDialog.tsx @@ -1,7 +1,7 @@ -import { Tag, queryClient, useLibraryMutation } from '@sd/client'; import React, { useState } from 'react'; import { Pressable, Text, View } from 'react-native'; import ColorPicker from 'react-native-wheel-color-picker'; +import { Tag, queryClient, useLibraryMutation } from '@sd/client'; import Dialog from '~/components/layout/Dialog'; import { Input } from '~/components/primitive/Input'; import tw from '~/lib/tailwind'; diff --git a/apps/mobile/src/containers/drawer/DrawerContent.tsx b/apps/mobile/src/containers/drawer/DrawerContent.tsx index 0b88252a9..46c61ce06 100644 --- a/apps/mobile/src/containers/drawer/DrawerContent.tsx +++ b/apps/mobile/src/containers/drawer/DrawerContent.tsx @@ -5,7 +5,6 @@ import { Image, Platform, Pressable, Text, View } from 'react-native'; import Layout from '~/constants/Layout'; import tw from '~/lib/tailwind'; import { getStackNameFromState } from '~/utils/nav'; - import Divider from '../../components/primitive/Divider'; import DrawerLibraryManager from './DrawerLibraryManager'; import DrawerLocations from './DrawerLocations'; diff --git a/apps/mobile/src/containers/drawer/DrawerLibraryManager.tsx b/apps/mobile/src/containers/drawer/DrawerLibraryManager.tsx index 21eaa4533..539074e7f 100644 --- a/apps/mobile/src/containers/drawer/DrawerLibraryManager.tsx +++ b/apps/mobile/src/containers/drawer/DrawerLibraryManager.tsx @@ -6,7 +6,6 @@ import { useEffect, useState } from 'react'; import { Pressable, Text, View } from 'react-native'; import { useCurrentLibrary } from '~/../../../packages/client/src'; import tw from '~/lib/tailwind'; - import { AnimatedHeight } from '../../components/animation/layout'; import Divider from '../../components/primitive/Divider'; import CreateLibraryDialog from '../dialog/CreateLibraryDialog'; diff --git a/apps/mobile/src/containers/drawer/DrawerLocations.tsx b/apps/mobile/src/containers/drawer/DrawerLocations.tsx index 5db6a1c40..e5239073d 100644 --- a/apps/mobile/src/containers/drawer/DrawerLocations.tsx +++ b/apps/mobile/src/containers/drawer/DrawerLocations.tsx @@ -1,11 +1,10 @@ import { BottomSheetModal } from '@gorhom/bottom-sheet'; import { DrawerNavigationHelpers } from '@react-navigation/drawer/lib/typescript/src/types'; import { useNavigation } from '@react-navigation/native'; -import { useLibraryQuery } from '@sd/client'; import { useRef } from 'react'; import { Pressable, Text, View } from 'react-native'; +import { useLibraryQuery } from '@sd/client'; import tw from '~/lib/tailwind'; - import FolderIcon from '../../components/icons/FolderIcon'; import CollapsibleView from '../../components/layout/CollapsibleView'; import ImportModal from '../modal/ImportModal'; diff --git a/apps/mobile/src/containers/drawer/DrawerTags.tsx b/apps/mobile/src/containers/drawer/DrawerTags.tsx index 1ee8e803f..f4817b53f 100644 --- a/apps/mobile/src/containers/drawer/DrawerTags.tsx +++ b/apps/mobile/src/containers/drawer/DrawerTags.tsx @@ -1,9 +1,8 @@ import { DrawerNavigationHelpers } from '@react-navigation/drawer/lib/typescript/src/types'; import { useNavigation } from '@react-navigation/native'; -import { useLibraryQuery } from '@sd/client'; import { ColorValue, Pressable, Text, View } from 'react-native'; +import { useLibraryQuery } from '@sd/client'; import tw from '~/lib/tailwind'; - import CollapsibleView from '../../components/layout/CollapsibleView'; import CreateTagDialog from '../dialog/tag/CreateTagDialog'; diff --git a/apps/mobile/src/containers/modal/FileModal.tsx b/apps/mobile/src/containers/modal/FileModal.tsx index e7384b589..936513de4 100644 --- a/apps/mobile/src/containers/modal/FileModal.tsx +++ b/apps/mobile/src/containers/modal/FileModal.tsx @@ -3,7 +3,6 @@ import dayjs from 'dayjs'; import { CaretLeft } from 'phosphor-react-native'; import { useRef } from 'react'; import { Button, Pressable, Text, View } from 'react-native'; - import { default as FileIcon, default as FileThumb } from '../../components/explorer/FileThumb'; import { Modal } from '../../components/layout/Modal'; import Divider from '../../components/primitive/Divider'; diff --git a/apps/mobile/src/containers/modal/ImportModal.tsx b/apps/mobile/src/containers/modal/ImportModal.tsx index 5e5d7e725..5a8ca9590 100644 --- a/apps/mobile/src/containers/modal/ImportModal.tsx +++ b/apps/mobile/src/containers/modal/ImportModal.tsx @@ -1,9 +1,9 @@ import { BottomSheetModal } from '@gorhom/bottom-sheet'; -import { useLibraryMutation } from '@sd/client'; import * as ML from 'expo-media-library'; import { forwardRef, useCallback } from 'react'; import { Alert, Platform, Text, View } from 'react-native'; import DocumentPicker from 'react-native-document-picker'; +import { useLibraryMutation } from '@sd/client'; // import RFS from 'react-native-fs'; import { Modal } from '~/components/layout/Modal'; import { Button } from '~/components/primitive/Button'; diff --git a/apps/mobile/src/navigation/DrawerNavigator.tsx b/apps/mobile/src/navigation/DrawerNavigator.tsx index 5ef3792f0..2525532ae 100644 --- a/apps/mobile/src/navigation/DrawerNavigator.tsx +++ b/apps/mobile/src/navigation/DrawerNavigator.tsx @@ -3,7 +3,6 @@ import { CompositeScreenProps, NavigatorScreenParams } from '@react-navigation/n import { StackScreenProps } from '@react-navigation/stack'; import DrawerContent from '~/containers/drawer/DrawerContent'; import tw from '~/lib/tailwind'; - import type { RootStackParamList } from '.'; import type { TabParamList } from './TabNavigator'; import TabNavigator from './TabNavigator'; diff --git a/apps/mobile/src/navigation/LinkingConfiguration.ts b/apps/mobile/src/navigation/LinkingConfiguration.ts index 215e73003..68fd12cd1 100644 --- a/apps/mobile/src/navigation/LinkingConfiguration.ts +++ b/apps/mobile/src/navigation/LinkingConfiguration.ts @@ -1,6 +1,5 @@ import { LinkingOptions } from '@react-navigation/native'; import * as Linking from 'expo-linking'; - import { RootStackParamList } from '.'; /** diff --git a/apps/mobile/src/navigation/TabNavigator.tsx b/apps/mobile/src/navigation/TabNavigator.tsx index b978c97d9..076f33f6c 100644 --- a/apps/mobile/src/navigation/TabNavigator.tsx +++ b/apps/mobile/src/navigation/TabNavigator.tsx @@ -3,7 +3,6 @@ import { CompositeScreenProps, NavigatorScreenParams } from '@react-navigation/n import { CirclesFour, Planet, ShareNetwork } from 'phosphor-react-native'; import React from 'react'; import tw from '~/lib/tailwind'; - import type { HomeDrawerScreenProps } from './DrawerNavigator'; import NodesStack, { NodesStackParamList } from './tabs/NodesStack'; import OverviewStack, { OverviewStackParamList } from './tabs/OverviewStack'; diff --git a/apps/mobile/src/navigation/index.tsx b/apps/mobile/src/navigation/index.tsx index 9e323a754..5df36ac98 100644 --- a/apps/mobile/src/navigation/index.tsx +++ b/apps/mobile/src/navigation/index.tsx @@ -3,7 +3,6 @@ import { StackScreenProps, createStackNavigator } from '@react-navigation/stack' import tw from '~/lib/tailwind'; import NotFoundScreen from '~/screens/NotFound'; import SearchScreen from '~/screens/Search'; - import type { DrawerNavParamList } from './DrawerNavigator'; import DrawerNavigator from './DrawerNavigator'; import SettingsNavigator, { SettingsStackParamList } from './SettingsNavigator'; diff --git a/apps/mobile/src/navigation/tabs/NodesStack.tsx b/apps/mobile/src/navigation/tabs/NodesStack.tsx index 46c21f109..c1ee75d13 100644 --- a/apps/mobile/src/navigation/tabs/NodesStack.tsx +++ b/apps/mobile/src/navigation/tabs/NodesStack.tsx @@ -3,7 +3,6 @@ import { StackScreenProps, createStackNavigator } from '@react-navigation/stack' import Header from '~/components/header/Header'; import tw from '~/lib/tailwind'; import NodesScreen from '~/screens/Nodes'; - import { SharedScreens, SharedScreensParamList } from '../SharedScreens'; import { TabScreenProps } from '../TabNavigator'; diff --git a/apps/mobile/src/navigation/tabs/OverviewStack.tsx b/apps/mobile/src/navigation/tabs/OverviewStack.tsx index a52fa4ea0..1614ec7aa 100644 --- a/apps/mobile/src/navigation/tabs/OverviewStack.tsx +++ b/apps/mobile/src/navigation/tabs/OverviewStack.tsx @@ -1,7 +1,6 @@ import { CompositeScreenProps } from '@react-navigation/native'; import { StackScreenProps, TransitionPresets, createStackNavigator } from '@react-navigation/stack'; import tw from '~/lib/tailwind'; - import Header from '../../components/header/Header'; import OverviewScreen from '../../screens/Overview'; import { SharedScreens, SharedScreensParamList } from '../SharedScreens'; diff --git a/apps/mobile/src/navigation/tabs/SpacesStack.tsx b/apps/mobile/src/navigation/tabs/SpacesStack.tsx index 9b056f952..7f3a9f724 100644 --- a/apps/mobile/src/navigation/tabs/SpacesStack.tsx +++ b/apps/mobile/src/navigation/tabs/SpacesStack.tsx @@ -1,7 +1,6 @@ import { CompositeScreenProps } from '@react-navigation/native'; import { StackScreenProps, TransitionPresets, createStackNavigator } from '@react-navigation/stack'; import tw from '~/lib/tailwind'; - import Header from '../../components/header/Header'; import SpacesScreen from '../../screens/Spaces'; import { SharedScreens, SharedScreensParamList } from '../SharedScreens'; diff --git a/apps/mobile/src/screens/Location.tsx b/apps/mobile/src/screens/Location.tsx index d55160610..6c82b04c2 100644 --- a/apps/mobile/src/screens/Location.tsx +++ b/apps/mobile/src/screens/Location.tsx @@ -1,5 +1,5 @@ -import { useLibraryQuery } from '@sd/client'; import { useEffect } from 'react'; +import { useLibraryQuery } from '@sd/client'; import Explorer from '~/components/explorer/Explorer'; import { SharedScreenProps } from '~/navigation/SharedScreens'; import { getExplorerStore } from '~/stores/explorerStore'; diff --git a/apps/mobile/src/screens/Tag.tsx b/apps/mobile/src/screens/Tag.tsx index 1a5cf56c7..f2004ed3b 100644 --- a/apps/mobile/src/screens/Tag.tsx +++ b/apps/mobile/src/screens/Tag.tsx @@ -1,5 +1,5 @@ -import { useLibraryQuery } from '@sd/client'; import { Text, View } from 'react-native'; +import { useLibraryQuery } from '@sd/client'; import Explorer from '~/components/explorer/Explorer'; import tw from '~/lib/tailwind'; import { SharedScreenProps } from '~/navigation/SharedScreens'; diff --git a/apps/mobile/src/screens/settings/client/GeneralSettings.tsx b/apps/mobile/src/screens/settings/client/GeneralSettings.tsx index 52da53636..56b1f711f 100644 --- a/apps/mobile/src/screens/settings/client/GeneralSettings.tsx +++ b/apps/mobile/src/screens/settings/client/GeneralSettings.tsx @@ -1,6 +1,6 @@ -import { useBridgeQuery } from '@sd/client'; import React from 'react'; import { Text, View } from 'react-native'; +import { useBridgeQuery } from '@sd/client'; import Card from '~/components/layout/Card'; import Divider from '~/components/primitive/Divider'; import { Input } from '~/components/primitive/Input'; diff --git a/apps/mobile/src/screens/settings/client/LibrarySettings.tsx b/apps/mobile/src/screens/settings/client/LibrarySettings.tsx index e2819fab9..96af43d0e 100644 --- a/apps/mobile/src/screens/settings/client/LibrarySettings.tsx +++ b/apps/mobile/src/screens/settings/client/LibrarySettings.tsx @@ -1,8 +1,8 @@ -import { LibraryConfigWrapped, useBridgeQuery } from '@sd/client'; import { CaretRight, Pen, Trash } from 'phosphor-react-native'; import React from 'react'; import { Animated, FlatList, Text, View } from 'react-native'; import { Swipeable } from 'react-native-gesture-handler'; +import { LibraryConfigWrapped, useBridgeQuery } from '@sd/client'; import { AnimatedButton } from '~/components/primitive/Button'; import DeleteLibraryDialog from '~/containers/dialog/DeleteLibraryDialog'; import tw from '~/lib/tailwind'; diff --git a/apps/mobile/src/screens/settings/library/LibraryGeneralSettings.tsx b/apps/mobile/src/screens/settings/library/LibraryGeneralSettings.tsx index c3d095d2a..6360d6f7e 100644 --- a/apps/mobile/src/screens/settings/library/LibraryGeneralSettings.tsx +++ b/apps/mobile/src/screens/settings/library/LibraryGeneralSettings.tsx @@ -1,8 +1,8 @@ -import { useBridgeMutation, useCurrentLibrary } from '@sd/client'; import { Trash } from 'phosphor-react-native'; import React from 'react'; import { Controller, useForm } from 'react-hook-form'; import { Alert, Text, View } from 'react-native'; +import { useBridgeMutation, useCurrentLibrary } from '@sd/client'; import { Button } from '~/components/primitive/Button'; import { Input } from '~/components/primitive/Input'; import { Switch } from '~/components/primitive/Switch'; diff --git a/apps/mobile/src/screens/settings/library/LocationSettings.tsx b/apps/mobile/src/screens/settings/library/LocationSettings.tsx index 6013cff96..b6440b1e3 100644 --- a/apps/mobile/src/screens/settings/library/LocationSettings.tsx +++ b/apps/mobile/src/screens/settings/library/LocationSettings.tsx @@ -1,7 +1,7 @@ -import { Location, Node, useLibraryMutation, useLibraryQuery } from '@sd/client'; import { CaretRight, Repeat, Trash } from 'phosphor-react-native'; import { Animated, FlatList, Pressable, Text, View } from 'react-native'; import { Swipeable } from 'react-native-gesture-handler'; +import { Location, Node, useLibraryMutation, useLibraryQuery } from '@sd/client'; import FolderIcon from '~/components/icons/FolderIcon'; import DeleteLocationDialog from '~/containers/dialog/DeleteLocationDialog'; import tw from '~/lib/tailwind'; diff --git a/apps/mobile/src/screens/settings/library/TagsSettings.tsx b/apps/mobile/src/screens/settings/library/TagsSettings.tsx index a50272002..49db704ce 100644 --- a/apps/mobile/src/screens/settings/library/TagsSettings.tsx +++ b/apps/mobile/src/screens/settings/library/TagsSettings.tsx @@ -1,7 +1,7 @@ -import { Tag, useLibraryQuery } from '@sd/client'; import { CaretRight, Pen, Trash } from 'phosphor-react-native'; import { Animated, FlatList, Text, View } from 'react-native'; import { Swipeable } from 'react-native-gesture-handler'; +import { Tag, useLibraryQuery } from '@sd/client'; import { AnimatedButton } from '~/components/primitive/Button'; import DeleteTagDialog from '~/containers/dialog/tag/DeleteTagDialog'; import UpdateTagDialog from '~/containers/dialog/tag/UpdateTagDialog'; diff --git a/apps/mobile/src/stores/explorerStore.ts b/apps/mobile/src/stores/explorerStore.ts index e71743f44..d2edb639c 100644 --- a/apps/mobile/src/stores/explorerStore.ts +++ b/apps/mobile/src/stores/explorerStore.ts @@ -1,5 +1,5 @@ -import { resetStore } from '@sd/client'; import { proxy, useSnapshot } from 'valtio'; +import { resetStore } from '@sd/client'; // TODO: Add "media" export type ExplorerLayoutMode = 'list' | 'grid'; diff --git a/apps/mobile/src/stores/modalStore.ts b/apps/mobile/src/stores/modalStore.ts index 113a91aef..501759804 100644 --- a/apps/mobile/src/stores/modalStore.ts +++ b/apps/mobile/src/stores/modalStore.ts @@ -1,7 +1,7 @@ import { BottomSheetModal } from '@gorhom/bottom-sheet'; -import { ExplorerItem } from '@sd/client'; import { createRef } from 'react'; import { proxy, ref, useSnapshot } from 'valtio'; +import { ExplorerItem } from '@sd/client'; export const fileModalStore = proxy({ fileRef: ref(createRef()), diff --git a/apps/mobile/tsconfig.json b/apps/mobile/tsconfig.json index 56e6f7f3c..7d8e6d327 100644 --- a/apps/mobile/tsconfig.json +++ b/apps/mobile/tsconfig.json @@ -5,9 +5,7 @@ "module": "ESNext", "noEmit": true, "paths": { - "~/*": [ - "./src/*" - ] + "~/*": ["./src/*"] }, "jsx": "react-native" }, diff --git a/apps/web/src/App.tsx b/apps/web/src/App.tsx index a4a534684..ca30c9482 100644 --- a/apps/web/src/App.tsx +++ b/apps/web/src/App.tsx @@ -1,7 +1,7 @@ import { createWSClient, loggerLink, wsLink } from '@rspc/client'; +import { useEffect } from 'react'; import { getDebugState, hooks, queryClient } from '@sd/client'; import SpacedriveInterface, { Platform, PlatformProvider } from '@sd/interface'; -import { useEffect } from 'react'; globalThis.isDev = import.meta.env.DEV; diff --git a/apps/web/src/index.html b/apps/web/src/index.html index ce6f82f41..21964564d 100644 --- a/apps/web/src/index.html +++ b/apps/web/src/index.html @@ -3,7 +3,7 @@ Spacedrive - + diff --git a/apps/web/src/index.tsx b/apps/web/src/index.tsx index 78f120dd6..907828be7 100644 --- a/apps/web/src/index.tsx +++ b/apps/web/src/index.tsx @@ -1,12 +1,10 @@ // WARNING: BE CAREFUL SAVING THIS FILE WITH A FORMATTER ENABLED. The import order is important and goes against prettier's recommendations. - import React, { Suspense } from 'react'; import ReactDOM from 'react-dom/client'; - -import './patches'; // THIS MUST GO BEFORE importing the App -import App from './App'; - import '@sd/ui/style'; +// THIS MUST GO BEFORE importing the App +import App from './App'; +import './patches'; const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement); root.render( diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 38bb99819..3f7f1295b 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -4,9 +4,7 @@ "rootDir": "src", "declarationDir": "dist" }, - "include": [ - "src" - ], + "include": ["src"], "references": [ { "path": "../../packages/interface" diff --git a/apps/web/vite.config.ts b/apps/web/vite.config.ts index 92fd8f948..1e046b1f3 100644 --- a/apps/web/vite.config.ts +++ b/apps/web/vite.config.ts @@ -1,11 +1,10 @@ +import { relativeAliasResolver } from '@sd/config/vite'; import react from '@vitejs/plugin-react'; // import { visualizer } from 'rollup-plugin-visualizer'; import { defineConfig } from 'vite'; import { createHtmlPlugin } from 'vite-plugin-html'; import svg from 'vite-plugin-svgr'; import tsconfigPaths from 'vite-tsconfig-paths'; -import { relativeAliasResolver } from "@sd/config/vite" - import { name, version } from './package.json'; // https://vitejs.dev/config/ @@ -19,7 +18,7 @@ export default defineConfig({ svg({ svgrOptions: { icon: true } }), createHtmlPlugin({ minify: true - }), + }) // visualizer({ // gzipSize: true, // brotliSize: true diff --git a/crates/sync/example/README.md b/crates/sync/example/README.md index 59296dd69..c3adc9cab 100644 --- a/crates/sync/example/README.md +++ b/crates/sync/example/README.md @@ -15,4 +15,4 @@ cd api/ cargo prisma generate cargo prisma db push cargo run -``` \ No newline at end of file +``` diff --git a/crates/sync/example/web/index.html b/crates/sync/example/web/index.html index 1905a0429..0afc97f47 100644 --- a/crates/sync/example/web/index.html +++ b/crates/sync/example/web/index.html @@ -1,15 +1,15 @@ - - - - - Solid App - - - -
+ + + + + Solid App + + + +
- - + + diff --git a/crates/sync/example/web/package.json b/crates/sync/example/web/package.json index 15cece3d6..32617cec0 100644 --- a/crates/sync/example/web/package.json +++ b/crates/sync/example/web/package.json @@ -1,27 +1,27 @@ { - "name": "example-2", - "version": "0.0.0", - "description": "", - "scripts": { - "dev": "vite", - "build": "vite build", - "serve": "vite preview", - "typecheck": "tsc --noEmit" - }, - "license": "MIT", - "devDependencies": { - "@rspc/client": "^0.0.0-main-7c0a67c1", - "@rspc/react": "^0.0.0-main-7c0a67c1", - "@tanstack/react-query": "^4.10.1", - "@vitejs/plugin-react": "^2.1.0", - "typescript": "^4.8.2", - "vite": "^3.0.9" - }, - "dependencies": { - "clsx": "^1.2.1", - "react": "^18.2.0", - "react-dom": "^18.2.0", - "solid-js": "^1.5.1", - "tailwindcss": "^3.1.8" - } + "name": "example-2", + "version": "0.0.0", + "description": "", + "scripts": { + "dev": "vite", + "build": "vite build", + "serve": "vite preview", + "typecheck": "tsc --noEmit" + }, + "license": "MIT", + "devDependencies": { + "@rspc/client": "^0.0.0-main-7c0a67c1", + "@rspc/react": "^0.0.0-main-7c0a67c1", + "@tanstack/react-query": "^4.10.1", + "@vitejs/plugin-react": "^2.1.0", + "typescript": "^4.8.2", + "vite": "^3.0.9" + }, + "dependencies": { + "clsx": "^1.2.1", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "solid-js": "^1.5.1", + "tailwindcss": "^3.1.8" + } } diff --git a/crates/sync/example/web/postcss.config.js b/crates/sync/example/web/postcss.config.js index 33ad091d2..054c147cb 100644 --- a/crates/sync/example/web/postcss.config.js +++ b/crates/sync/example/web/postcss.config.js @@ -1,6 +1,6 @@ module.exports = { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, -} + plugins: { + tailwindcss: {}, + autoprefixer: {} + } +}; diff --git a/crates/sync/example/web/src/App.tsx b/crates/sync/example/web/src/App.tsx index 2ea420bc2..13c4e5d1c 100644 --- a/crates/sync/example/web/src/App.tsx +++ b/crates/sync/example/web/src/App.tsx @@ -1,6 +1,5 @@ import clsx from 'clsx'; import { Suspense, useState } from 'react'; - import { tests } from './test'; import { CRDTOperationType, rspc } from './utils/rspc'; diff --git a/crates/sync/example/web/src/index.tsx b/crates/sync/example/web/src/index.tsx index a44849e5a..e5c505c26 100644 --- a/crates/sync/example/web/src/index.tsx +++ b/crates/sync/example/web/src/index.tsx @@ -1,15 +1,14 @@ /* @refresh reload */ import { Suspense } from 'react'; import { createRoot } from 'react-dom/client'; - import { App } from './App'; import './index.css'; import { queryClient, rspc, rspcClient } from './utils/rspc'; createRoot(document.getElementById('root') as HTMLElement).render( - - - - - + + + + + ); diff --git a/crates/sync/example/web/src/test.ts b/crates/sync/example/web/src/test.ts index b042a5d37..49c369eba 100644 --- a/crates/sync/example/web/src/test.ts +++ b/crates/sync/example/web/src/test.ts @@ -1,45 +1,45 @@ import { queryClient, rspcClient } from './utils/rspc'; function test(fn: () => Promise) { - return async () => { - await fn(); - queryClient.invalidateQueries(); - }; + return async () => { + await fn(); + queryClient.invalidateQueries(); + }; } const wait = (ms: number) => new Promise((res) => setTimeout(res, ms)); export const tests = { - three: { - name: 'Three', - run: test(async () => { - const [db1, db2, db3] = await Promise.all([ - rspcClient.mutation(['createDatabase', ' ']), - rspcClient.mutation(['createDatabase', ' ']), - rspcClient.mutation(['createDatabase', ' ']) - ]); + three: { + name: 'Three', + run: test(async () => { + const [db1, db2, db3] = await Promise.all([ + rspcClient.mutation(['createDatabase', ' ']), + rspcClient.mutation(['createDatabase', ' ']), + rspcClient.mutation(['createDatabase', ' ']) + ]); - const dbs = await rspcClient.query(['dbs', 'cringe']); + const dbs = await rspcClient.query(['dbs', 'cringe']); - for (const db of dbs) { - await rspcClient.mutation(['file_path.create', db]); - } + for (const db of dbs) { + await rspcClient.mutation(['file_path.create', db]); + } - for (const db of dbs) { - await rspcClient.mutation(['pullOperations', db]); - } + for (const db of dbs) { + await rspcClient.mutation(['pullOperations', db]); + } - await rspcClient.mutation(['file_path.create', dbs[0]]); - await rspcClient.mutation(['file_path.create', dbs[0]]); + await rspcClient.mutation(['file_path.create', dbs[0]]); + await rspcClient.mutation(['file_path.create', dbs[0]]); - for (const db of dbs) { - await rspcClient.mutation(['pullOperations', db]); - } + for (const db of dbs) { + await rspcClient.mutation(['pullOperations', db]); + } - await rspcClient.mutation(['pullOperations', dbs[1]]); - await rspcClient.mutation(['pullOperations', dbs[1]]); - await rspcClient.mutation(['pullOperations', dbs[1]]); - await rspcClient.mutation(['pullOperations', dbs[1]]); - }) - } + await rspcClient.mutation(['pullOperations', dbs[1]]); + await rspcClient.mutation(['pullOperations', dbs[1]]); + await rspcClient.mutation(['pullOperations', dbs[1]]); + await rspcClient.mutation(['pullOperations', dbs[1]]); + }) + } }; diff --git a/crates/sync/example/web/src/utils/bindings.ts b/crates/sync/example/web/src/utils/bindings.ts index 6e5d28620..3d31e95bb 100644 --- a/crates/sync/example/web/src/utils/bindings.ts +++ b/crates/sync/example/web/src/utils/bindings.ts @@ -1,43 +1,80 @@ // This file was generated by [rspc](https://github.com/oscartbeaumont/rspc). Do not edit this file manually. export type Procedures = { - queries: - { key: "db.tags", input: string, result: Record } | - { key: "dbs", input: string, result: Array } | - { key: "file_path.list", input: string, result: Array } | - { key: "message.list", input: string, result: Array } | - { key: "operations", input: string, result: Array }, - mutations: - { key: "createDatabase", input: string, result: string } | - { key: "file_path.create", input: string, result: FilePath } | - { key: "pullOperations", input: string, result: null } | - { key: "removeDatabases", input: string, result: null } | - { key: "testCreate", input: string, result: null }, - subscriptions: never + queries: + | { key: 'db.tags'; input: string; result: Record } + | { key: 'dbs'; input: string; result: Array } + | { key: 'file_path.list'; input: string; result: Array } + | { key: 'message.list'; input: string; result: Array } + | { key: 'operations'; input: string; result: Array }; + mutations: + | { key: 'createDatabase'; input: string; result: string } + | { key: 'file_path.create'; input: string; result: FilePath } + | { key: 'pullOperations'; input: string; result: null } + | { key: 'removeDatabases'; input: string; result: null } + | { key: 'testCreate'; input: string; result: null }; + subscriptions: never; }; -export interface CRDTOperation { node: string, timestamp: bigint, id: string, typ: CRDTOperationType } +export interface CRDTOperation { + node: string; + timestamp: bigint; + id: string; + typ: CRDTOperationType; +} -export type CRDTOperationType = SharedOperation | RelationOperation | OwnedOperation +export type CRDTOperationType = SharedOperation | RelationOperation | OwnedOperation; -export interface Color { red: number, green: number, blue: number } +export interface Color { + red: number; + green: number; + blue: number; +} -export interface FilePath { id: string, path: string, file: string | null } +export interface FilePath { + id: string; + path: string; + file: string | null; +} -export interface OwnedOperation { model: string, items: Array } +export interface OwnedOperation { + model: string; + items: Array; +} -export type OwnedOperationData = { Create: Record } | { Update: Record } | "Delete" +export type OwnedOperationData = + | { Create: Record } + | { Update: Record } + | 'Delete'; -export interface OwnedOperationItem { id: any, data: OwnedOperationData } +export interface OwnedOperationItem { + id: any; + data: OwnedOperationData; +} -export interface RelationOperation { relation_item: string, relation_group: string, relation: string, data: RelationOperationData } +export interface RelationOperation { + relation_item: string; + relation_group: string; + relation: string; + data: RelationOperationData; +} -export type RelationOperationData = "Create" | { Update: { field: string, value: any } } | "Delete" +export type RelationOperationData = 'Create' | { Update: { field: string; value: any } } | 'Delete'; -export interface SharedOperation { record_id: string, model: string, data: SharedOperationData } +export interface SharedOperation { + record_id: string; + model: string; + data: SharedOperationData; +} -export type SharedOperationCreateData = { Unique: Record } | "Atomic" +export type SharedOperationCreateData = { Unique: Record } | 'Atomic'; -export type SharedOperationData = { Create: SharedOperationCreateData } | { Update: { field: string, value: any } } | "Delete" +export type SharedOperationData = + | { Create: SharedOperationCreateData } + | { Update: { field: string; value: any } } + | 'Delete'; -export interface Tag { color: Color, name: string } +export interface Tag { + color: Color; + name: string; +} diff --git a/crates/sync/example/web/src/utils/rspc.ts b/crates/sync/example/web/src/utils/rspc.ts index 1e1ae004a..519ea9f52 100644 --- a/crates/sync/example/web/src/utils/rspc.ts +++ b/crates/sync/example/web/src/utils/rspc.ts @@ -1,7 +1,6 @@ import { createClient, httpLink } from '@rspc/client'; import { createReactHooks } from '@rspc/react'; import { QueryClient } from '@tanstack/react-query'; - import type { Procedures } from './bindings'; export * from './bindings'; @@ -11,18 +10,18 @@ export * from './bindings'; const rspc = createReactHooks(); const rspcClient = rspc.createClient({ - links: [httpLink({ url: 'http://localhost:9000/rspc' })] + links: [httpLink({ url: 'http://localhost:9000/rspc' })] }); const queryClient = new QueryClient({ - defaultOptions: { - queries: { - suspense: true - }, - mutations: { - onSuccess: () => queryClient.invalidateQueries() - } - } + defaultOptions: { + queries: { + suspense: true + }, + mutations: { + onSuccess: () => queryClient.invalidateQueries() + } + } }); export { rspc, rspcClient, queryClient }; diff --git a/crates/sync/example/web/tailwind.config.js b/crates/sync/example/web/tailwind.config.js index 1c3b7e1b3..7cf6cc57b 100644 --- a/crates/sync/example/web/tailwind.config.js +++ b/crates/sync/example/web/tailwind.config.js @@ -1,11 +1,8 @@ /** @type {import('tailwindcss').Config} */ module.exports = { - content: [ - "./index.html", - "./src/**/*.{js,ts,jsx,tsx}", - ], - theme: { - extend: {}, - }, - plugins: [], -} + content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], + theme: { + extend: {} + }, + plugins: [] +}; diff --git a/crates/sync/example/web/tsconfig.json b/crates/sync/example/web/tsconfig.json index 2c19fda6d..1d5d18140 100644 --- a/crates/sync/example/web/tsconfig.json +++ b/crates/sync/example/web/tsconfig.json @@ -1,15 +1,13 @@ { - "compilerOptions": { - "target": "ESNext", - "module": "ESNext", - "moduleResolution": "node", - "allowSyntheticDefaultImports": true, - "esModuleInterop": true, - "jsx": "react-jsx", - "types": [ - "vite/client" - ], - "noEmit": true, - "isolatedModules": true - } + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "moduleResolution": "node", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "jsx": "react-jsx", + "types": ["vite/client"], + "noEmit": true, + "isolatedModules": true + } } diff --git a/crates/sync/example/web/vite.config.ts b/crates/sync/example/web/vite.config.ts index aa9c9e3ca..29f022f92 100644 --- a/crates/sync/example/web/vite.config.ts +++ b/crates/sync/example/web/vite.config.ts @@ -1,5 +1,5 @@ -import { defineConfig } from 'vite'; import react from '@vitejs/plugin-react'; +import { defineConfig } from 'vite'; export default defineConfig({ plugins: [react()], diff --git a/cspell.config.yaml b/cspell.config.yaml index ae63422ac..a70b5f525 100644 --- a/cspell.config.yaml +++ b/cspell.config.yaml @@ -17,4 +17,4 @@ dictionaries: ignorePaths: - 'node_modules' - '.cspell' - - 'target' \ No newline at end of file + - 'target' diff --git a/docs/company/legal/privacy.md b/docs/company/legal/privacy.md index 7c150af3f..da833ae4c 100644 --- a/docs/company/legal/privacy.md +++ b/docs/company/legal/privacy.md @@ -1,3 +1,3 @@ -# Privacy Policy - -*This page has yet to be written out in full. Please check back later!* +# Privacy Policy + +_This page has yet to be written out in full. Please check back later!_ diff --git a/docs/developers/architecture/sync.md b/docs/developers/architecture/sync.md index edac531e3..587f6db7d 100644 --- a/docs/developers/architecture/sync.md +++ b/docs/developers/architecture/sync.md @@ -41,6 +41,7 @@ and that node can inform all other nodes about the correct state of the paths. Used for Locations, Paths, and Volumes. `@owned(owner: String, id?: String)` + - `owner` - Field that identifies the owner of this model. If a scalar, will directly use that value in sync operations. If a relation, the Sync ID of the related model will be resolved for sync operations. @@ -54,15 +55,16 @@ Updates are applied per-field using a last-write-wins strategy. Used for Objects, Tags, Spaces, and Jobs. `@shared(create: SharedCreateType, id?: String)` + - `id` - Scalar field to override the default Sync ID. - `create` - How the model should be created. - `Unique` (default): Model can be created with many required arguemnts, - but ID provided _must_ be unique across all nodes. - Useful for Tags since their IDs are non-deterministic. + but ID provided _must_ be unique across all nodes. + Useful for Tags since their IDs are non-deterministic. - `Atomic`: Require the model to have no required arguments apart from ID and apply all create arguments as atomic updates. - Necessary for models with the same ID that can be created on multiple nodes. - Useful for Objects since their ID is dependent on their content, - and could be the same across nodes. + Necessary for models with the same ID that can be created on multiple nodes. + Useful for Objects since their ID is dependent on their content, + and could be the same across nodes. ### Relation Records @@ -72,12 +74,12 @@ Sync ID is the combination of `item` and `group` Sync IDs. Used for TagOnFile and FileInSpace. `@relation(item: String, group: String)` + - `item` - Field that identifies the item that the relation is connecting. Similar to the `owner` argument of `@owned`. - `group` - Field that identifies the group that the item should be connected to. Similar to the `owner` argument of `@owned`. - ## Other Prisma Attributes `@node` @@ -85,4 +87,4 @@ Used for TagOnFile and FileInSpace. Indicates that a relation field should be set to the current node. This could be done manually, but `@node` allows `node_id` fields to be resolved from the `node_id` field of a `CRDTOperation`, -saving on bandwidth \ No newline at end of file +saving on bandwidth diff --git a/lefthook.yml b/lefthook.yml index fd196e7db..1769cc630 100644 --- a/lefthook.yml +++ b/lefthook.yml @@ -3,12 +3,8 @@ # https://github.com/evilmartians/lefthook/blob/master/docs/full_guide.md # ######################################################################################################################## -pre-push: - parallel: true +pre-commit: commands: - lint: - glob: '*.{ts,tsx}' - run: pnpm eslint {staged_files} - markdown-link-check: - glob: '*.md' - run: pnpm markdown-link-check {staged_files} + # automatically format files, ✨magically✨ + lint-staged: + run: pnpm lint-staged diff --git a/package.json b/package.json index c6ab4f0c4..591e220b6 100644 --- a/package.json +++ b/package.json @@ -3,12 +3,13 @@ "version": "0.0.0", "private": true, "scripts": { + "postinstall": "lefthook install", "prep": "pnpm gen:prisma && cargo test -p sd-core api::tests::test_and_export_rspc_bindings -- --exact", "build": "turbo run build", "landing-web": "turbo run dev --parallel --filter=@sd/landing --filter=@sd/web", "gen:migrations": "cd core && cargo prisma migrate dev", "gen:prisma": "cd core && cargo prisma generate", - "format": "prettier --config .prettierrc.js --write \"**/*.{ts,tsx,html,scss,json,yml,md}\"", + "format": "prettier --write .", "desktop": "pnpm --filter @sd/desktop --", "web": "pnpm --filter @sd/web -- ", "mobile": "pnpm --filter @sd/mobile --", @@ -33,6 +34,7 @@ "@evilmartians/lefthook": "^1.1.1", "@trivago/prettier-plugin-sort-imports": "^3.3.0", "cspell": "^6.12.0", + "lint-staged": "^13.1.0", "markdown-link-check": "^3.10.3", "prettier": "^2.7.1", "turbo": "^1.5.5", diff --git a/packages/assets/lottie/loading-pulse.json b/packages/assets/lottie/loading-pulse.json index 4ce72c311..6220538fd 100644 --- a/packages/assets/lottie/loading-pulse.json +++ b/packages/assets/lottie/loading-pulse.json @@ -1 +1,738 @@ -{"v":"5.6.10","fr":30,"ip":0,"op":137,"w":1000,"h":1000,"nm":"Composizione 11","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":120,"s":[100]},{"t":209,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500,500,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0]},"t":120,"s":[1,1,100]},{"t":210,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[1000,1000],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.1450980392156863,0.6,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Trasformazione"}],"nm":"Ellipse 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":120,"op":120.302734375,"st":120,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 7","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[100]},{"t":179,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500,500,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0]},"t":90,"s":[1,1,100]},{"t":180,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[1000,1000],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.1450980392156863,0.6,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Trasformazione"}],"nm":"Ellipse 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":90,"op":120,"st":90,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 6","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[100]},{"t":149,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500,500,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0]},"t":60,"s":[1,1,100]},{"t":150,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[1000,1000],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.1450980392156863,0.6,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Trasformazione"}],"nm":"Ellipse 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":60,"op":120,"st":60,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 5","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[100]},{"t":119,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500,500,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0]},"t":30,"s":[1,1,100]},{"t":120,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[1000,1000],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.1450980392156863,0.6,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Trasformazione"}],"nm":"Ellipse 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":30,"op":120,"st":30,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Shape Layer 4","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[100]},{"t":89,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500,500,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0]},"t":0,"s":[1,1,100]},{"t":90,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[1000,1000],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.1450980392156863,0.6,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Trasformazione"}],"nm":"Ellipse 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":-30,"s":[100]},{"t":59,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500,500,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0]},"t":-30,"s":[1,1,100]},{"t":60,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[1000,1000],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.1450980392156863,0.6,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Trasformazione"}],"nm":"Ellipse 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120,"st":-30,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":-60,"s":[100]},{"t":29,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500,500,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0]},"t":-60,"s":[1,1,100]},{"t":30,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[1000,1000],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.1450980392156863,0.6,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Trasformazione"}],"nm":"Ellipse 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120,"st":-60,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":-90,"s":[100]},{"t":-1,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[500,500,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0]},"t":-90,"s":[1,1,100]},{"t":0,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[1000,1000],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.1450980392156863,0.6,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Trasformazione"}],"nm":"Ellipse 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":120,"st":-90,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"pulse","refId":"comp_0","sr":1.15,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[502,496,0],"ix":2},"a":{"a":0,"k":[500,500,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":1000,"h":1000,"ip":0,"op":138,"st":0,"bm":0}],"markers":[]} \ No newline at end of file +{ + "v": "5.6.10", + "fr": 30, + "ip": 0, + "op": 137, + "w": 1000, + "h": 1000, + "nm": "Composizione 11", + "ddd": 0, + "assets": [ + { + "id": "comp_0", + "layers": [ + { + "ddd": 0, + "ind": 2, + "ty": 4, + "nm": "Shape Layer 8", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 120, + "s": [100] + }, + { "t": 209, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [500, 500, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0] }, + "t": 120, + "s": [1, 1, 100] + }, + { "t": 210, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [1000, 1000], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.1450980392156863, 0.6, 1, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Trasformazione" + } + ], + "nm": "Ellipse 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 120, + "op": 120.302734375, + "st": 120, + "bm": 0 + }, + { + "ddd": 0, + "ind": 3, + "ty": 4, + "nm": "Shape Layer 7", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 90, + "s": [100] + }, + { "t": 179, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [500, 500, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0] }, + "t": 90, + "s": [1, 1, 100] + }, + { "t": 180, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [1000, 1000], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.1450980392156863, 0.6, 1, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Trasformazione" + } + ], + "nm": "Ellipse 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 90, + "op": 120, + "st": 90, + "bm": 0 + }, + { + "ddd": 0, + "ind": 4, + "ty": 4, + "nm": "Shape Layer 6", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 60, + "s": [100] + }, + { "t": 149, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [500, 500, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0] }, + "t": 60, + "s": [1, 1, 100] + }, + { "t": 150, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [1000, 1000], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.1450980392156863, 0.6, 1, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Trasformazione" + } + ], + "nm": "Ellipse 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 60, + "op": 120, + "st": 60, + "bm": 0 + }, + { + "ddd": 0, + "ind": 5, + "ty": 4, + "nm": "Shape Layer 5", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 30, + "s": [100] + }, + { "t": 119, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [500, 500, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0] }, + "t": 30, + "s": [1, 1, 100] + }, + { "t": 120, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [1000, 1000], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.1450980392156863, 0.6, 1, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Trasformazione" + } + ], + "nm": "Ellipse 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 30, + "op": 120, + "st": 30, + "bm": 0 + }, + { + "ddd": 0, + "ind": 6, + "ty": 4, + "nm": "Shape Layer 4", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": 0, + "s": [100] + }, + { "t": 89, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [500, 500, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0] }, + "t": 0, + "s": [1, 1, 100] + }, + { "t": 90, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [1000, 1000], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.1450980392156863, 0.6, 1, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Trasformazione" + } + ], + "nm": "Ellipse 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": 0, + "bm": 0 + }, + { + "ddd": 0, + "ind": 7, + "ty": 4, + "nm": "Shape Layer 3", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": -30, + "s": [100] + }, + { "t": 59, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [500, 500, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0] }, + "t": -30, + "s": [1, 1, 100] + }, + { "t": 60, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [1000, 1000], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.1450980392156863, 0.6, 1, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Trasformazione" + } + ], + "nm": "Ellipse 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": -30, + "bm": 0 + }, + { + "ddd": 0, + "ind": 8, + "ty": 4, + "nm": "Shape Layer 2", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": -60, + "s": [100] + }, + { "t": 29, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [500, 500, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0] }, + "t": -60, + "s": [1, 1, 100] + }, + { "t": 30, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [1000, 1000], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.1450980392156863, 0.6, 1, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Trasformazione" + } + ], + "nm": "Ellipse 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": -60, + "bm": 0 + }, + { + "ddd": 0, + "ind": 9, + "ty": 4, + "nm": "Shape Layer 1", + "sr": 1, + "ks": { + "o": { + "a": 1, + "k": [ + { + "i": { "x": [0.833], "y": [0.833] }, + "o": { "x": [0.167], "y": [0.167] }, + "t": -90, + "s": [100] + }, + { "t": -1, "s": [0] } + ], + "ix": 11 + }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [500, 500, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0, 0], "ix": 1 }, + "s": { + "a": 1, + "k": [ + { + "i": { "x": [0.833, 0.833, 0.833], "y": [0.833, 0.833, 1] }, + "o": { "x": [0.167, 0.167, 0.167], "y": [0.167, 0.167, 0] }, + "t": -90, + "s": [1, 1, 100] + }, + { "t": 0, "s": [100, 100, 100] } + ], + "ix": 6 + } + }, + "ao": 0, + "shapes": [ + { + "ty": "gr", + "it": [ + { + "d": 1, + "ty": "el", + "s": { "a": 0, "k": [1000, 1000], "ix": 2 }, + "p": { "a": 0, "k": [0, 0], "ix": 3 }, + "nm": "Ellipse Path 1", + "mn": "ADBE Vector Shape - Ellipse", + "hd": false + }, + { + "ty": "fl", + "c": { "a": 0, "k": [0.1450980392156863, 0.6, 1, 1], "ix": 4 }, + "o": { "a": 0, "k": 100, "ix": 5 }, + "r": 1, + "bm": 0, + "nm": "Fill 1", + "mn": "ADBE Vector Graphic - Fill", + "hd": false + }, + { + "ty": "tr", + "p": { "a": 0, "k": [0, 0], "ix": 2 }, + "a": { "a": 0, "k": [0, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100], "ix": 3 }, + "r": { "a": 0, "k": 0, "ix": 6 }, + "o": { "a": 0, "k": 100, "ix": 7 }, + "sk": { "a": 0, "k": 0, "ix": 4 }, + "sa": { "a": 0, "k": 0, "ix": 5 }, + "nm": "Trasformazione" + } + ], + "nm": "Ellipse 1", + "np": 2, + "cix": 2, + "bm": 0, + "ix": 1, + "mn": "ADBE Vector Group", + "hd": false + } + ], + "ip": 0, + "op": 120, + "st": -90, + "bm": 0 + } + ] + } + ], + "layers": [ + { + "ddd": 0, + "ind": 1, + "ty": 0, + "nm": "pulse", + "refId": "comp_0", + "sr": 1.15, + "ks": { + "o": { "a": 0, "k": 100, "ix": 11 }, + "r": { "a": 0, "k": 0, "ix": 10 }, + "p": { "a": 0, "k": [502, 496, 0], "ix": 2 }, + "a": { "a": 0, "k": [500, 500, 0], "ix": 1 }, + "s": { "a": 0, "k": [100, 100, 100], "ix": 6 } + }, + "ao": 0, + "w": 1000, + "h": 1000, + "ip": 0, + "op": 138, + "st": 0, + "bm": 0 + } + ], + "markers": [] +} diff --git a/packages/client/src/core.ts b/packages/client/src/core.ts index ad754226f..cdb2b6b0c 100644 --- a/packages/client/src/core.ts +++ b/packages/client/src/core.ts @@ -2,194 +2,576 @@ // This file was generated by [rspc](https://github.com/oscartbeaumont/rspc). Do not edit this file manually. export type Procedures = { - queries: - { key: "buildInfo", input: never, result: BuildInfo } | - { key: "files.get", input: LibraryArgs, result: { id: number, cas_id: string, integrity_checksum: string | null, name: string | null, extension: string | null, kind: number, size_in_bytes: string, key_id: number | null, hidden: boolean, favorite: boolean, important: boolean, has_thumbnail: boolean, has_thumbstrip: boolean, has_video_preview: boolean, ipfs_id: string | null, note: string | null, date_created: string, date_modified: string, date_indexed: string, file_paths: Array, media_data: MediaData | null } | null } | - { key: "jobs.getHistory", input: LibraryArgs, result: Array } | - { key: "jobs.getRunning", input: LibraryArgs, result: Array } | - { key: "jobs.isRunning", input: LibraryArgs, result: boolean } | - { key: "keys.getDefault", input: LibraryArgs, result: string | null } | - { key: "keys.getKey", input: LibraryArgs, result: string } | - { key: "keys.hasMasterPassword", input: LibraryArgs, result: boolean } | - { key: "keys.isKeyManagerUnlocking", input: LibraryArgs, result: boolean } | - { key: "keys.list", input: LibraryArgs, result: Array } | - { key: "keys.listMounted", input: LibraryArgs, result: Array } | - { key: "library.getStatistics", input: LibraryArgs, result: Statistics } | - { key: "library.list", input: never, result: Array } | - { key: "locations.getById", input: LibraryArgs, result: Location | null } | - { key: "locations.getExplorerData", input: LibraryArgs, result: ExplorerData } | - { key: "locations.indexer_rules.get", input: LibraryArgs, result: IndexerRule } | - { key: "locations.indexer_rules.list", input: LibraryArgs, result: Array } | - { key: "locations.list", input: LibraryArgs, result: Array<{ id: number, pub_id: Array, node_id: number, name: string | null, local_path: string | null, total_capacity: number | null, available_capacity: number | null, filesystem: string | null, disk_type: number | null, is_removable: boolean | null, is_online: boolean, is_archived: boolean, date_created: string, node: Node }> } | - { key: "nodeState", input: never, result: NodeState } | - { key: "normi.composite", input: never, result: NormalisedCompositeId } | - { key: "normi.org", input: never, result: NormalisedOrganisation } | - { key: "normi.user", input: never, result: NormalisedUser } | - { key: "normi.userSync", input: never, result: NormalisedUser } | - { key: "normi.version", input: never, result: string } | - { key: "tags.get", input: LibraryArgs, result: Tag | null } | - { key: "tags.getExplorerData", input: LibraryArgs, result: ExplorerData } | - { key: "tags.getForObject", input: LibraryArgs, result: Array } | - { key: "tags.list", input: LibraryArgs, result: Array } | - { key: "volumes.list", input: never, result: Array }, - mutations: - { key: "files.decryptFiles", input: LibraryArgs, result: null } | - { key: "files.delete", input: LibraryArgs, result: null } | - { key: "files.deleteFiles", input: LibraryArgs, result: null } | - { key: "files.encryptFiles", input: LibraryArgs, result: null } | - { key: "files.eraseFiles", input: LibraryArgs, result: null } | - { key: "files.setFavorite", input: LibraryArgs, result: null } | - { key: "files.setNote", input: LibraryArgs, result: null } | - { key: "jobs.clearAll", input: LibraryArgs, result: null } | - { key: "jobs.generateThumbsForLocation", input: LibraryArgs, result: null } | - { key: "jobs.identifyUniqueFiles", input: LibraryArgs, result: null } | - { key: "jobs.objectValidator", input: LibraryArgs, result: null } | - { key: "keys.add", input: LibraryArgs, result: null } | - { key: "keys.backupKeystore", input: LibraryArgs, result: null } | - { key: "keys.changeMasterPassword", input: LibraryArgs, result: null } | - { key: "keys.clearMasterPassword", input: LibraryArgs, result: null } | - { key: "keys.deleteFromLibrary", input: LibraryArgs, result: null } | - { key: "keys.mount", input: LibraryArgs, result: null } | - { key: "keys.restoreKeystore", input: LibraryArgs, result: number } | - { key: "keys.setDefault", input: LibraryArgs, result: null } | - { key: "keys.setMasterPassword", input: LibraryArgs, result: null } | - { key: "keys.syncKeyToLibrary", input: LibraryArgs, result: null } | - { key: "keys.unmount", input: LibraryArgs, result: null } | - { key: "keys.unmountAll", input: LibraryArgs, result: null } | - { key: "keys.updateAutomountStatus", input: LibraryArgs, result: null } | - { key: "library.create", input: CreateLibraryArgs, result: LibraryConfigWrapped } | - { key: "library.delete", input: string, result: null } | - { key: "library.edit", input: EditLibraryArgs, result: null } | - { key: "locations.addLibrary", input: LibraryArgs, result: null } | - { key: "locations.create", input: LibraryArgs, result: null } | - { key: "locations.delete", input: LibraryArgs, result: null } | - { key: "locations.fullRescan", input: LibraryArgs, result: null } | - { key: "locations.indexer_rules.create", input: LibraryArgs, result: IndexerRule } | - { key: "locations.indexer_rules.delete", input: LibraryArgs, result: null } | - { key: "locations.quickRescan", input: LibraryArgs, result: null } | - { key: "locations.relink", input: LibraryArgs, result: null } | - { key: "locations.update", input: LibraryArgs, result: null } | - { key: "tags.assign", input: LibraryArgs, result: null } | - { key: "tags.create", input: LibraryArgs, result: Tag } | - { key: "tags.delete", input: LibraryArgs, result: null } | - { key: "tags.update", input: LibraryArgs, result: null }, - subscriptions: - { key: "invalidateQuery", input: never, result: InvalidateOperationEvent } | - { key: "jobs.newThumbnail", input: LibraryArgs, result: string } + queries: + | { key: 'buildInfo'; input: never; result: BuildInfo } + | { + key: 'files.get'; + input: LibraryArgs; + result: { + id: number; + cas_id: string; + integrity_checksum: string | null; + name: string | null; + extension: string | null; + kind: number; + size_in_bytes: string; + key_id: number | null; + hidden: boolean; + favorite: boolean; + important: boolean; + has_thumbnail: boolean; + has_thumbstrip: boolean; + has_video_preview: boolean; + ipfs_id: string | null; + note: string | null; + date_created: string; + date_modified: string; + date_indexed: string; + file_paths: Array; + media_data: MediaData | null; + } | null; + } + | { key: 'jobs.getHistory'; input: LibraryArgs; result: Array } + | { key: 'jobs.getRunning'; input: LibraryArgs; result: Array } + | { key: 'jobs.isRunning'; input: LibraryArgs; result: boolean } + | { key: 'keys.getDefault'; input: LibraryArgs; result: string | null } + | { key: 'keys.getKey'; input: LibraryArgs; result: string } + | { key: 'keys.hasMasterPassword'; input: LibraryArgs; result: boolean } + | { key: 'keys.isKeyManagerUnlocking'; input: LibraryArgs; result: boolean } + | { key: 'keys.list'; input: LibraryArgs; result: Array } + | { key: 'keys.listMounted'; input: LibraryArgs; result: Array } + | { key: 'library.getStatistics'; input: LibraryArgs; result: Statistics } + | { key: 'library.list'; input: never; result: Array } + | { key: 'locations.getById'; input: LibraryArgs; result: Location | null } + | { + key: 'locations.getExplorerData'; + input: LibraryArgs; + result: ExplorerData; + } + | { key: 'locations.indexer_rules.get'; input: LibraryArgs; result: IndexerRule } + | { key: 'locations.indexer_rules.list'; input: LibraryArgs; result: Array } + | { + key: 'locations.list'; + input: LibraryArgs; + result: Array<{ + id: number; + pub_id: Array; + node_id: number; + name: string | null; + local_path: string | null; + total_capacity: number | null; + available_capacity: number | null; + filesystem: string | null; + disk_type: number | null; + is_removable: boolean | null; + is_online: boolean; + is_archived: boolean; + date_created: string; + node: Node; + }>; + } + | { key: 'nodeState'; input: never; result: NodeState } + | { key: 'normi.composite'; input: never; result: NormalisedCompositeId } + | { key: 'normi.org'; input: never; result: NormalisedOrganisation } + | { key: 'normi.user'; input: never; result: NormalisedUser } + | { key: 'normi.userSync'; input: never; result: NormalisedUser } + | { key: 'normi.version'; input: never; result: string } + | { key: 'tags.get'; input: LibraryArgs; result: Tag | null } + | { key: 'tags.getExplorerData'; input: LibraryArgs; result: ExplorerData } + | { key: 'tags.getForObject'; input: LibraryArgs; result: Array } + | { key: 'tags.list'; input: LibraryArgs; result: Array } + | { key: 'volumes.list'; input: never; result: Array }; + mutations: + | { key: 'files.decryptFiles'; input: LibraryArgs; result: null } + | { key: 'files.delete'; input: LibraryArgs; result: null } + | { key: 'files.deleteFiles'; input: LibraryArgs; result: null } + | { key: 'files.encryptFiles'; input: LibraryArgs; result: null } + | { key: 'files.eraseFiles'; input: LibraryArgs; result: null } + | { key: 'files.setFavorite'; input: LibraryArgs; result: null } + | { key: 'files.setNote'; input: LibraryArgs; result: null } + | { key: 'jobs.clearAll'; input: LibraryArgs; result: null } + | { + key: 'jobs.generateThumbsForLocation'; + input: LibraryArgs; + result: null; + } + | { key: 'jobs.identifyUniqueFiles'; input: LibraryArgs; result: null } + | { key: 'jobs.objectValidator'; input: LibraryArgs; result: null } + | { key: 'keys.add'; input: LibraryArgs; result: null } + | { key: 'keys.backupKeystore'; input: LibraryArgs; result: null } + | { + key: 'keys.changeMasterPassword'; + input: LibraryArgs; + result: null; + } + | { key: 'keys.clearMasterPassword'; input: LibraryArgs; result: null } + | { key: 'keys.deleteFromLibrary'; input: LibraryArgs; result: null } + | { key: 'keys.mount'; input: LibraryArgs; result: null } + | { key: 'keys.restoreKeystore'; input: LibraryArgs; result: number } + | { key: 'keys.setDefault'; input: LibraryArgs; result: null } + | { key: 'keys.setMasterPassword'; input: LibraryArgs; result: null } + | { key: 'keys.syncKeyToLibrary'; input: LibraryArgs; result: null } + | { key: 'keys.unmount'; input: LibraryArgs; result: null } + | { key: 'keys.unmountAll'; input: LibraryArgs; result: null } + | { key: 'keys.updateAutomountStatus'; input: LibraryArgs; result: null } + | { key: 'library.create'; input: CreateLibraryArgs; result: LibraryConfigWrapped } + | { key: 'library.delete'; input: string; result: null } + | { key: 'library.edit'; input: EditLibraryArgs; result: null } + | { key: 'locations.addLibrary'; input: LibraryArgs; result: null } + | { key: 'locations.create'; input: LibraryArgs; result: null } + | { key: 'locations.delete'; input: LibraryArgs; result: null } + | { key: 'locations.fullRescan'; input: LibraryArgs; result: null } + | { + key: 'locations.indexer_rules.create'; + input: LibraryArgs; + result: IndexerRule; + } + | { key: 'locations.indexer_rules.delete'; input: LibraryArgs; result: null } + | { key: 'locations.quickRescan'; input: LibraryArgs; result: null } + | { key: 'locations.relink'; input: LibraryArgs; result: null } + | { key: 'locations.update'; input: LibraryArgs; result: null } + | { key: 'tags.assign'; input: LibraryArgs; result: null } + | { key: 'tags.create'; input: LibraryArgs; result: Tag } + | { key: 'tags.delete'; input: LibraryArgs; result: null } + | { key: 'tags.update'; input: LibraryArgs; result: null }; + subscriptions: + | { key: 'invalidateQuery'; input: never; result: InvalidateOperationEvent } + | { key: 'jobs.newThumbnail'; input: LibraryArgs; result: string }; }; -export type Algorithm = "XChaCha20Poly1305" | "Aes256Gcm" +export type Algorithm = 'XChaCha20Poly1305' | 'Aes256Gcm'; -export interface AutomountUpdateArgs { uuid: string, status: boolean } +export interface AutomountUpdateArgs { + uuid: string; + status: boolean; +} -export interface BuildInfo { version: string, commit: string } +export interface BuildInfo { + version: string; + commit: string; +} -export interface ConfigMetadata { version: string | null } +export interface ConfigMetadata { + version: string | null; +} -export interface CreateLibraryArgs { name: string, password: string, secret_key: string | null, algorithm: Algorithm, hashing_algorithm: HashingAlgorithm } +export interface CreateLibraryArgs { + name: string; + password: string; + secret_key: string | null; + algorithm: Algorithm; + hashing_algorithm: HashingAlgorithm; +} -export interface EditLibraryArgs { id: string, name: string | null, description: string | null } +export interface EditLibraryArgs { + id: string; + name: string | null; + description: string | null; +} -export type ExplorerContext = { type: "Location" } & Location | { type: "Tag" } & Tag +export type ExplorerContext = ({ type: 'Location' } & Location) | ({ type: 'Tag' } & Tag); -export interface ExplorerData { context: ExplorerContext, items: Array } +export interface ExplorerData { + context: ExplorerContext; + items: Array; +} -export type ExplorerItem = { type: "Path" } & FilePathWithObject | { type: "Object" } & ObjectWithFilePaths +export type ExplorerItem = + | ({ type: 'Path' } & FilePathWithObject) + | ({ type: 'Object' } & ObjectWithFilePaths); -export interface FileDecryptorJobInit { location_id: number, path_id: number, output_path: string | null, password: string | null, save_to_library: boolean | null } +export interface FileDecryptorJobInit { + location_id: number; + path_id: number; + output_path: string | null; + password: string | null; + save_to_library: boolean | null; +} -export interface FileDeleterJobInit { location_id: number, path_id: number } +export interface FileDeleterJobInit { + location_id: number; + path_id: number; +} -export interface FileEncryptorJobInit { location_id: number, path_id: number, key_uuid: string, algorithm: Algorithm, metadata: boolean, preview_media: boolean, output_path: string | null } +export interface FileEncryptorJobInit { + location_id: number; + path_id: number; + key_uuid: string; + algorithm: Algorithm; + metadata: boolean; + preview_media: boolean; + output_path: string | null; +} -export interface FileEraserJobInit { location_id: number, path_id: number, passes: number } +export interface FileEraserJobInit { + location_id: number; + path_id: number; + passes: number; +} -export interface FilePath { id: number, is_dir: boolean, location_id: number, materialized_path: string, name: string, extension: string | null, object_id: number | null, parent_id: number | null, key_id: number | null, date_created: string, date_modified: string, date_indexed: string } +export interface FilePath { + id: number; + is_dir: boolean; + location_id: number; + materialized_path: string; + name: string; + extension: string | null; + object_id: number | null; + parent_id: number | null; + key_id: number | null; + date_created: string; + date_modified: string; + date_indexed: string; +} -export interface GenerateThumbsForLocationArgs { id: number, path: string } +export interface GenerateThumbsForLocationArgs { + id: number; + path: string; +} -export interface GetArgs { id: number } +export interface GetArgs { + id: number; +} -export type HashingAlgorithm = { name: "Argon2id", params: Params } | { name: "BalloonBlake3", params: Params } +export type HashingAlgorithm = + | { name: 'Argon2id'; params: Params } + | { name: 'BalloonBlake3'; params: Params }; -export interface IdentifyUniqueFilesArgs { id: number, path: string } +export interface IdentifyUniqueFilesArgs { + id: number; + path: string; +} -export interface IndexerRule { id: number, kind: number, name: string, parameters: Array, date_created: string, date_modified: string } +export interface IndexerRule { + id: number; + kind: number; + name: string; + parameters: Array; + date_created: string; + date_modified: string; +} -export interface IndexerRuleCreateArgs { kind: RuleKind, name: string, parameters: Array } +export interface IndexerRuleCreateArgs { + kind: RuleKind; + name: string; + parameters: Array; +} -export interface InvalidateOperationEvent { key: string, arg: any } +export interface InvalidateOperationEvent { + key: string; + arg: any; +} -export interface JobReport { id: string, name: string, data: Array | null, metadata: any | null, date_created: string, date_modified: string, status: JobStatus, task_count: number, completed_task_count: number, message: string, seconds_elapsed: number } +export interface JobReport { + id: string; + name: string; + data: Array | null; + metadata: any | null; + date_created: string; + date_modified: string; + status: JobStatus; + task_count: number; + completed_task_count: number; + message: string; + seconds_elapsed: number; +} -export type JobStatus = "Queued" | "Running" | "Completed" | "Canceled" | "Failed" | "Paused" +export type JobStatus = 'Queued' | 'Running' | 'Completed' | 'Canceled' | 'Failed' | 'Paused'; -export interface KeyAddArgs { algorithm: Algorithm, hashing_algorithm: HashingAlgorithm, key: string, library_sync: boolean, automount: boolean } +export interface KeyAddArgs { + algorithm: Algorithm; + hashing_algorithm: HashingAlgorithm; + key: string; + library_sync: boolean; + automount: boolean; +} -export interface LibraryArgs { library_id: string, arg: T } +export interface LibraryArgs { + library_id: string; + arg: T; +} -export interface LibraryConfig { version: string | null, name: string, description: string } +export interface LibraryConfig { + version: string | null; + name: string; + description: string; +} -export interface LibraryConfigWrapped { uuid: string, config: LibraryConfig } +export interface LibraryConfigWrapped { + uuid: string; + config: LibraryConfig; +} -export interface Location { id: number, pub_id: Array, node_id: number, name: string | null, local_path: string | null, total_capacity: number | null, available_capacity: number | null, filesystem: string | null, disk_type: number | null, is_removable: boolean | null, is_online: boolean, is_archived: boolean, date_created: string } +export interface Location { + id: number; + pub_id: Array; + node_id: number; + name: string | null; + local_path: string | null; + total_capacity: number | null; + available_capacity: number | null; + filesystem: string | null; + disk_type: number | null; + is_removable: boolean | null; + is_online: boolean; + is_archived: boolean; + date_created: string; +} -export interface LocationCreateArgs { path: string, indexer_rules_ids: Array } +export interface LocationCreateArgs { + path: string; + indexer_rules_ids: Array; +} -export interface LocationExplorerArgs { location_id: number, path: string, limit: number, cursor: string | null } +export interface LocationExplorerArgs { + location_id: number; + path: string; + limit: number; + cursor: string | null; +} -export interface LocationUpdateArgs { id: number, name: string | null, indexer_rules_ids: Array } +export interface LocationUpdateArgs { + id: number; + name: string | null; + indexer_rules_ids: Array; +} -export interface MasterPasswordChangeArgs { password: string, secret_key: string | null, algorithm: Algorithm, hashing_algorithm: HashingAlgorithm } +export interface MasterPasswordChangeArgs { + password: string; + secret_key: string | null; + algorithm: Algorithm; + hashing_algorithm: HashingAlgorithm; +} -export interface MediaData { id: number, pixel_width: number | null, pixel_height: number | null, longitude: number | null, latitude: number | null, fps: number | null, capture_device_make: string | null, capture_device_model: string | null, capture_device_software: string | null, duration_seconds: number | null, codecs: string | null, streams: number | null } +export interface MediaData { + id: number; + pixel_width: number | null; + pixel_height: number | null; + longitude: number | null; + latitude: number | null; + fps: number | null; + capture_device_make: string | null; + capture_device_model: string | null; + capture_device_software: string | null; + duration_seconds: number | null; + codecs: string | null; + streams: number | null; +} -export interface Node { id: number, pub_id: Array, name: string, platform: number, version: string | null, last_seen: string, timezone: string | null, date_created: string } +export interface Node { + id: number; + pub_id: Array; + name: string; + platform: number; + version: string | null; + last_seen: string; + timezone: string | null; + date_created: string; +} -export interface NodeConfig { version: string | null, id: string, name: string, p2p_port: number | null } +export interface NodeConfig { + version: string | null; + id: string; + name: string; + p2p_port: number | null; +} -export interface NodeState { version: string | null, id: string, name: string, p2p_port: number | null, data_path: string } +export interface NodeState { + version: string | null; + id: string; + name: string; + p2p_port: number | null; + data_path: string; +} -export interface NormalisedCompositeId { $type: string, $id: any, org_id: string, user_id: string } +export interface NormalisedCompositeId { + $type: string; + $id: any; + org_id: string; + user_id: string; +} -export interface NormalisedOrganisation { $type: string, $id: any, id: string, name: string, users: NormalizedVec, owner: NormalisedUser, non_normalised_data: Array } +export interface NormalisedOrganisation { + $type: string; + $id: any; + id: string; + name: string; + users: NormalizedVec; + owner: NormalisedUser; + non_normalised_data: Array; +} -export interface NormalisedUser { $type: string, $id: any, id: string, name: string } +export interface NormalisedUser { + $type: string; + $id: any; + id: string; + name: string; +} -export interface NormalizedVec { $type: string, edges: Array } +export interface NormalizedVec { + $type: string; + edges: Array; +} -export interface Object { id: number, cas_id: string, integrity_checksum: string | null, name: string | null, extension: string | null, kind: number, size_in_bytes: string, key_id: number | null, hidden: boolean, favorite: boolean, important: boolean, has_thumbnail: boolean, has_thumbstrip: boolean, has_video_preview: boolean, ipfs_id: string | null, note: string | null, date_created: string, date_modified: string, date_indexed: string } +export interface Object { + id: number; + cas_id: string; + integrity_checksum: string | null; + name: string | null; + extension: string | null; + kind: number; + size_in_bytes: string; + key_id: number | null; + hidden: boolean; + favorite: boolean; + important: boolean; + has_thumbnail: boolean; + has_thumbstrip: boolean; + has_video_preview: boolean; + ipfs_id: string | null; + note: string | null; + date_created: string; + date_modified: string; + date_indexed: string; +} -export interface ObjectValidatorArgs { id: number, path: string } +export interface ObjectValidatorArgs { + id: number; + path: string; +} -export type Params = "Standard" | "Hardened" | "Paranoid" +export type Params = 'Standard' | 'Hardened' | 'Paranoid'; -export interface RestoreBackupArgs { password: string, secret_key: string | null, path: string } +export interface RestoreBackupArgs { + password: string; + secret_key: string | null; + path: string; +} -export type RuleKind = "AcceptFilesByGlob" | "RejectFilesByGlob" | "AcceptIfChildrenDirectoriesArePresent" | "RejectIfChildrenDirectoriesArePresent" +export type RuleKind = + | 'AcceptFilesByGlob' + | 'RejectFilesByGlob' + | 'AcceptIfChildrenDirectoriesArePresent' + | 'RejectIfChildrenDirectoriesArePresent'; -export interface SetFavoriteArgs { id: number, favorite: boolean } +export interface SetFavoriteArgs { + id: number; + favorite: boolean; +} -export interface SetMasterPasswordArgs { password: string, secret_key: string | null } +export interface SetMasterPasswordArgs { + password: string; + secret_key: string | null; +} -export interface SetNoteArgs { id: number, note: string | null } +export interface SetNoteArgs { + id: number; + note: string | null; +} -export interface Statistics { id: number, date_captured: string, total_object_count: number, library_db_size: string, total_bytes_used: string, total_bytes_capacity: string, total_unique_bytes: string, total_bytes_free: string, preview_media_bytes: string } +export interface Statistics { + id: number; + date_captured: string; + total_object_count: number; + library_db_size: string; + total_bytes_used: string; + total_bytes_capacity: string; + total_unique_bytes: string; + total_bytes_free: string; + preview_media_bytes: string; +} -export interface StoredKey { uuid: string, version: StoredKeyVersion, algorithm: Algorithm, hashing_algorithm: HashingAlgorithm, content_salt: Array, master_key: Array, master_key_nonce: Array, key_nonce: Array, key: Array, salt: Array, memory_only: boolean, automount: boolean } +export interface StoredKey { + uuid: string; + version: StoredKeyVersion; + algorithm: Algorithm; + hashing_algorithm: HashingAlgorithm; + content_salt: Array; + master_key: Array; + master_key_nonce: Array; + key_nonce: Array; + key: Array; + salt: Array; + memory_only: boolean; + automount: boolean; +} -export type StoredKeyVersion = "V1" +export type StoredKeyVersion = 'V1'; -export interface Tag { id: number, pub_id: Array, name: string | null, color: string | null, total_objects: number | null, redundancy_goal: number | null, date_created: string, date_modified: string } +export interface Tag { + id: number; + pub_id: Array; + name: string | null; + color: string | null; + total_objects: number | null; + redundancy_goal: number | null; + date_created: string; + date_modified: string; +} -export interface TagAssignArgs { object_id: number, tag_id: number, unassign: boolean } +export interface TagAssignArgs { + object_id: number; + tag_id: number; + unassign: boolean; +} -export interface TagCreateArgs { name: string, color: string } +export interface TagCreateArgs { + name: string; + color: string; +} -export interface TagUpdateArgs { id: number, name: string | null, color: string | null } +export interface TagUpdateArgs { + id: number; + name: string | null; + color: string | null; +} -export interface Volume { name: string, mount_point: string, total_capacity: bigint, available_capacity: bigint, is_removable: boolean, disk_type: string | null, file_system: string | null, is_root_filesystem: boolean } +export interface Volume { + name: string; + mount_point: string; + total_capacity: bigint; + available_capacity: bigint; + is_removable: boolean; + disk_type: string | null; + file_system: string | null; + is_root_filesystem: boolean; +} -export interface FilePathWithObject { id: number, is_dir: boolean, location_id: number, materialized_path: string, name: string, extension: string | null, object_id: number | null, parent_id: number | null, key_id: number | null, date_created: string, date_modified: string, date_indexed: string, object: Object | null } +export interface FilePathWithObject { + id: number; + is_dir: boolean; + location_id: number; + materialized_path: string; + name: string; + extension: string | null; + object_id: number | null; + parent_id: number | null; + key_id: number | null; + date_created: string; + date_modified: string; + date_indexed: string; + object: Object | null; +} -export interface ObjectWithFilePaths { id: number, cas_id: string, integrity_checksum: string | null, name: string | null, extension: string | null, kind: number, size_in_bytes: string, key_id: number | null, hidden: boolean, favorite: boolean, important: boolean, has_thumbnail: boolean, has_thumbstrip: boolean, has_video_preview: boolean, ipfs_id: string | null, note: string | null, date_created: string, date_modified: string, date_indexed: string, file_paths: Array } +export interface ObjectWithFilePaths { + id: number; + cas_id: string; + integrity_checksum: string | null; + name: string | null; + extension: string | null; + kind: number; + size_in_bytes: string; + key_id: number | null; + hidden: boolean; + favorite: boolean; + important: boolean; + has_thumbnail: boolean; + has_thumbstrip: boolean; + has_video_preview: boolean; + ipfs_id: string | null; + note: string | null; + date_created: string; + date_modified: string; + date_indexed: string; + file_paths: Array; +} diff --git a/packages/client/src/hooks/useCurrentLibrary.tsx b/packages/client/src/hooks/useCurrentLibrary.tsx index be13e387a..d20a6679e 100644 --- a/packages/client/src/hooks/useCurrentLibrary.tsx +++ b/packages/client/src/hooks/useCurrentLibrary.tsx @@ -1,6 +1,5 @@ import { PropsWithChildren, createContext, useCallback, useContext, useMemo } from 'react'; import { subscribe, useSnapshot } from 'valtio'; - import { useBridgeQuery } from '../rspc'; import { valtioPersist } from '../stores'; diff --git a/packages/client/src/normi/index.ts b/packages/client/src/normi/index.ts index 515af3039..0ec6324ee 100644 --- a/packages/client/src/normi/index.ts +++ b/packages/client/src/normi/index.ts @@ -3,7 +3,6 @@ import { CustomHooks } from '@rspc/client'; // @ts-expect-error: // TODO(@Oscar): Fix types import { __useMutation, __useQuery } from '@rspc/react/internal'; import { useMemo } from 'react'; - import { NormiOptions, getNormiCache, loadDataFromCache } from './utils'; export function normiCustomHooks( diff --git a/packages/client/src/rspc.ts b/packages/client/src/rspc.ts index 9211518f2..38948c622 100644 --- a/packages/client/src/rspc.ts +++ b/packages/client/src/rspc.ts @@ -1,7 +1,6 @@ import { ProcedureDef } from '@rspc/client'; import { internal_createReactHooksFactory } from '@rspc/react'; import { QueryClient } from '@tanstack/react-query'; - import { LibraryArgs, Procedures } from './core'; import { getLibraryIdRaw } from './index'; import { normiCustomHooks } from './normi'; diff --git a/packages/client/src/stores/debugState.ts b/packages/client/src/stores/debugState.ts index 7778e553f..4bffee19a 100644 --- a/packages/client/src/stores/debugState.ts +++ b/packages/client/src/stores/debugState.ts @@ -1,5 +1,4 @@ import { useSnapshot } from 'valtio'; - import { valtioPersist } from './util'; export const debugState = valtioPersist('sd-debugState', { diff --git a/packages/client/src/stores/themeStore.ts b/packages/client/src/stores/themeStore.ts index 37dfb42a4..fdeb349f0 100644 --- a/packages/client/src/stores/themeStore.ts +++ b/packages/client/src/stores/themeStore.ts @@ -1,5 +1,4 @@ import { useSnapshot } from 'valtio'; - import { valtioPersist } from './util'; const appThemeStore = valtioPersist('appTheme', { diff --git a/packages/client/tsconfig.json b/packages/client/tsconfig.json index 4677b60a1..8e080d56b 100644 --- a/packages/client/tsconfig.json +++ b/packages/client/tsconfig.json @@ -4,7 +4,5 @@ "rootDir": "src", "declarationDir": "dist" }, - "include": [ - "src" - ] + "include": ["src"] } diff --git a/packages/config/app.tsconfig.json b/packages/config/app.tsconfig.json index e89847c31..e17622d5a 100644 --- a/packages/config/app.tsconfig.json +++ b/packages/config/app.tsconfig.json @@ -2,6 +2,6 @@ "extends": "./base.tsconfig.json", "compilerOptions": { "noEmit": true, - "emitDeclarationOnly": false, + "emitDeclarationOnly": false } } diff --git a/packages/config/base.tsconfig.json b/packages/config/base.tsconfig.json index 565c83610..cd0eefbe6 100644 --- a/packages/config/base.tsconfig.json +++ b/packages/config/base.tsconfig.json @@ -21,9 +21,6 @@ "module": "ESNext", "target": "ESNext", // Extra types - "types": [ - "vite-plugin-svgr/client", - "vite/client" - ] - }, + "types": ["vite-plugin-svgr/client", "vite/client"] + } } diff --git a/packages/interface/src/App.tsx b/packages/interface/src/App.tsx index 4fbb5cf31..776ba8c16 100644 --- a/packages/interface/src/App.tsx +++ b/packages/interface/src/App.tsx @@ -1,11 +1,9 @@ -import '@fontsource/inter/variable.css'; -import { LibraryContextProvider, queryClient, useDebugState } from '@sd/client'; -import { Dialogs } from '@sd/ui'; import { Dedupe as DedupeIntegration, HttpContext as HttpContextIntegration, init } from '@sentry/browser'; +import '@fontsource/inter/variable.css'; import { QueryClientProvider, defaultContext } from '@tanstack/react-query'; import { ReactQueryDevtools } from '@tanstack/react-query-devtools'; import dayjs from 'dayjs'; @@ -14,7 +12,8 @@ import duration from 'dayjs/plugin/duration'; import relativeTime from 'dayjs/plugin/relativeTime'; import { ErrorBoundary } from 'react-error-boundary'; import { MemoryRouter, useNavigate } from 'react-router-dom'; - +import { LibraryContextProvider, queryClient, useDebugState } from '@sd/client'; +import { Dialogs } from '@sd/ui'; import { AppRouter } from './AppRouter'; import { ErrorFallback } from './ErrorFallback'; import './style.scss'; diff --git a/packages/interface/src/AppLayout.tsx b/packages/interface/src/AppLayout.tsx index 881d9c1c9..f9de5823c 100644 --- a/packages/interface/src/AppLayout.tsx +++ b/packages/interface/src/AppLayout.tsx @@ -1,8 +1,8 @@ -import { useCurrentLibrary } from '@sd/client'; -import { Dialogs } from '@sd/ui'; import clsx from 'clsx'; import { Suspense } from 'react'; import { Outlet } from 'react-router-dom'; +import { useCurrentLibrary } from '@sd/client'; +import { Dialogs } from '@sd/ui'; import { Sidebar } from '~/components/layout/Sidebar'; import { Toasts } from '~/components/primitive/Toasts'; import { useOperatingSystem } from '~/hooks/useOperatingSystem'; diff --git a/packages/interface/src/AppRouter.tsx b/packages/interface/src/AppRouter.tsx index f31e8dbf0..777478bce 100644 --- a/packages/interface/src/AppRouter.tsx +++ b/packages/interface/src/AppRouter.tsx @@ -1,9 +1,8 @@ import { lazy } from '@loadable/component'; -import { useCurrentLibrary, useInvalidateQuery } from '@sd/client'; import { Navigate, Route, Routes } from 'react-router-dom'; - -import { AppLayout } from './AppLayout'; +import { useCurrentLibrary, useInvalidateQuery } from '@sd/client'; import { useKeybindHandler } from '~/hooks/useKeyboardHandler'; +import { AppLayout } from './AppLayout'; // Using React.lazy breaks hot reload so we don't use it. const DebugScreen = lazy(() => import('./screens/Debug')); diff --git a/packages/interface/src/ErrorFallback.tsx b/packages/interface/src/ErrorFallback.tsx index 2cb9bf350..bbeb8ff2f 100644 --- a/packages/interface/src/ErrorFallback.tsx +++ b/packages/interface/src/ErrorFallback.tsx @@ -1,6 +1,6 @@ -import { Button } from '@sd/ui'; import { captureException } from '@sentry/browser'; import { FallbackProps } from 'react-error-boundary'; +import { Button } from '@sd/ui'; export function ErrorFallback({ error, resetErrorBoundary }: FallbackProps) { const onClick = () => { diff --git a/packages/interface/src/NotFound.tsx b/packages/interface/src/NotFound.tsx index 662d48361..fae7a7b93 100644 --- a/packages/interface/src/NotFound.tsx +++ b/packages/interface/src/NotFound.tsx @@ -1,5 +1,5 @@ -import { Button } from '@sd/ui'; import { useNavigate } from 'react-router'; +import { Button } from '@sd/ui'; export default function NotFound() { const navigate = useNavigate(); diff --git a/packages/interface/src/components/device/Device.tsx b/packages/interface/src/components/device/Device.tsx index 408f81195..350cfab40 100644 --- a/packages/interface/src/components/device/Device.tsx +++ b/packages/interface/src/components/device/Device.tsx @@ -1,5 +1,3 @@ -import { Button } from '@sd/ui'; -import { Loader } from '@sd/ui'; import { Cloud, Desktop, @@ -11,7 +9,8 @@ import { Lock } from 'phosphor-react'; import { useState } from 'react'; - +import { Button } from '@sd/ui'; +import { Loader } from '@sd/ui'; import FileItem from '../explorer/FileItem'; import ProgressBar from '../primitive/ProgressBar'; import { Tooltip } from '../tooltip/Tooltip'; diff --git a/packages/interface/src/components/dialog/AddLocationDialog.tsx b/packages/interface/src/components/dialog/AddLocationDialog.tsx index c10802aea..ad02c59a5 100644 --- a/packages/interface/src/components/dialog/AddLocationDialog.tsx +++ b/packages/interface/src/components/dialog/AddLocationDialog.tsx @@ -1,6 +1,5 @@ import { useLibraryMutation } from '@sd/client'; import { Dialog, UseDialogProps, useDialog } from '@sd/ui'; - import { Input, useZodForm, z } from '@sd/ui/src/forms'; const schema = z.object({ path: z.string() }); diff --git a/packages/interface/src/components/dialog/AlertDialog.tsx b/packages/interface/src/components/dialog/AlertDialog.tsx index 0781a6544..7706e868e 100644 --- a/packages/interface/src/components/dialog/AlertDialog.tsx +++ b/packages/interface/src/components/dialog/AlertDialog.tsx @@ -1,6 +1,5 @@ -import { Button, Dialog, Input, UseDialogProps, useDialog } from '@sd/ui'; import { Clipboard } from 'phosphor-react'; - +import { Button, Dialog, Input, UseDialogProps, useDialog } from '@sd/ui'; import { useZodForm, z } from '@sd/ui/src/forms'; export interface AlertDialogProps extends UseDialogProps { diff --git a/packages/interface/src/components/dialog/BackupRestoreDialog.tsx b/packages/interface/src/components/dialog/BackupRestoreDialog.tsx index 4bc5fd42b..a39defc3e 100644 --- a/packages/interface/src/components/dialog/BackupRestoreDialog.tsx +++ b/packages/interface/src/components/dialog/BackupRestoreDialog.tsx @@ -1,8 +1,8 @@ +import { Eye, EyeSlash } from 'phosphor-react'; +import { useState } from 'react'; import { useLibraryMutation } from '@sd/client'; import { Button, Dialog, UseDialogProps, useDialog } from '@sd/ui'; import { forms } from '@sd/ui'; -import { Eye, EyeSlash } from 'phosphor-react'; -import { useState } from 'react'; import { usePlatform } from '~/util/Platform'; import { showAlertDialog } from '~/util/dialog'; diff --git a/packages/interface/src/components/dialog/CreateLibraryDialog.tsx b/packages/interface/src/components/dialog/CreateLibraryDialog.tsx index b2356203b..e07eecb50 100644 --- a/packages/interface/src/components/dialog/CreateLibraryDialog.tsx +++ b/packages/interface/src/components/dialog/CreateLibraryDialog.tsx @@ -1,12 +1,11 @@ -import { Algorithm, useBridgeMutation } from '@sd/client'; -import { Button, Dialog, Select, SelectOption, UseDialogProps, useDialog } from '@sd/ui'; -import { forms } from '@sd/ui'; import { useQueryClient } from '@tanstack/react-query'; import cryptoRandomString from 'crypto-random-string'; import { ArrowsClockwise, Clipboard, Eye, EyeSlash } from 'phosphor-react'; import { useState } from 'react'; +import { Algorithm, useBridgeMutation } from '@sd/client'; +import { Button, Dialog, Select, SelectOption, UseDialogProps, useDialog } from '@sd/ui'; +import { forms } from '@sd/ui'; import { getHashingAlgorithmSettings } from '~/screens/settings/library/KeysSetting'; - import { generatePassword } from '../key/KeyMounter'; import { PasswordMeter } from '../key/PasswordMeter'; diff --git a/packages/interface/src/components/dialog/DecryptFileDialog.tsx b/packages/interface/src/components/dialog/DecryptFileDialog.tsx index 90162cea1..040dea257 100644 --- a/packages/interface/src/components/dialog/DecryptFileDialog.tsx +++ b/packages/interface/src/components/dialog/DecryptFileDialog.tsx @@ -1,15 +1,13 @@ import { RadioGroup } from '@headlessui/react'; -import { useLibraryMutation, useLibraryQuery } from '@sd/client'; -import { Button, Dialog, UseDialogProps, useDialog } from '@sd/ui'; import { Eye, EyeSlash, Info } from 'phosphor-react'; import { useState } from 'react'; +import { useLibraryMutation, useLibraryQuery } from '@sd/client'; +import { Button, Dialog, UseDialogProps, useDialog } from '@sd/ui'; +import { Input, Switch, useZodForm, z } from '@sd/ui/src/forms'; import { showAlertDialog } from '~/util/dialog'; - import { usePlatform } from '../../util/Platform'; import { Tooltip } from '../tooltip/Tooltip'; -import { Input, Switch, useZodForm, z } from '@sd/ui/src/forms'; - interface DecryptDialogProps extends UseDialogProps { location_id: number; path_id: number; diff --git a/packages/interface/src/components/dialog/DeleteFileDialog.tsx b/packages/interface/src/components/dialog/DeleteFileDialog.tsx index ab46cd058..0599c0b8d 100644 --- a/packages/interface/src/components/dialog/DeleteFileDialog.tsx +++ b/packages/interface/src/components/dialog/DeleteFileDialog.tsx @@ -1,6 +1,5 @@ import { useLibraryMutation } from '@sd/client'; import { Dialog, UseDialogProps, useDialog } from '@sd/ui'; - import { useZodForm, z } from '@sd/ui/src/forms'; interface DeleteDialogProps extends UseDialogProps { diff --git a/packages/interface/src/components/dialog/DeleteLibraryDialog.tsx b/packages/interface/src/components/dialog/DeleteLibraryDialog.tsx index a417f83fa..ae5454f1a 100644 --- a/packages/interface/src/components/dialog/DeleteLibraryDialog.tsx +++ b/packages/interface/src/components/dialog/DeleteLibraryDialog.tsx @@ -1,7 +1,7 @@ +import { useQueryClient } from '@tanstack/react-query'; import { useBridgeMutation } from '@sd/client'; import { Dialog, UseDialogProps, useDialog } from '@sd/ui'; import { forms } from '@sd/ui'; -import { useQueryClient } from '@tanstack/react-query'; const { useZodForm, z } = forms; diff --git a/packages/interface/src/components/dialog/EncryptFileDialog.tsx b/packages/interface/src/components/dialog/EncryptFileDialog.tsx index 1ebe20728..b92558540 100644 --- a/packages/interface/src/components/dialog/EncryptFileDialog.tsx +++ b/packages/interface/src/components/dialog/EncryptFileDialog.tsx @@ -1,13 +1,11 @@ import { Algorithm, useLibraryMutation, useLibraryQuery } from '@sd/client'; import { Button, Dialog, Select, SelectOption, UseDialogProps, useDialog } from '@sd/ui'; +import { CheckBox, useZodForm, z } from '@sd/ui/src/forms'; import { getHashingAlgorithmString } from '~/screens/settings/library/KeysSetting'; import { usePlatform } from '~/util/Platform'; import { showAlertDialog } from '~/util/dialog'; - import { SelectOptionKeyList } from '../key/KeyList'; -import { CheckBox, useZodForm, z } from '@sd/ui/src/forms'; - interface EncryptDialogProps extends UseDialogProps { location_id: number; path_id: number; diff --git a/packages/interface/src/components/dialog/EraseFileDialog.tsx b/packages/interface/src/components/dialog/EraseFileDialog.tsx index d10f161e5..da377fa6b 100644 --- a/packages/interface/src/components/dialog/EraseFileDialog.tsx +++ b/packages/interface/src/components/dialog/EraseFileDialog.tsx @@ -1,10 +1,8 @@ +import { useState } from 'react'; import { useLibraryMutation } from '@sd/client'; import { Dialog, UseDialogProps, useDialog } from '@sd/ui'; -import { useState } from 'react'; - -import Slider from '../primitive/Slider'; - import { useZodForm, z } from '@sd/ui/src/forms'; +import Slider from '../primitive/Slider'; interface EraseDialogProps extends UseDialogProps { location_id: number; diff --git a/packages/interface/src/components/dialog/KeyViewerDialog.tsx b/packages/interface/src/components/dialog/KeyViewerDialog.tsx index 1e7d4f452..e5b8615bd 100644 --- a/packages/interface/src/components/dialog/KeyViewerDialog.tsx +++ b/packages/interface/src/components/dialog/KeyViewerDialog.tsx @@ -1,13 +1,11 @@ -import { useLibraryQuery } from '@sd/client'; -import { Button, Dialog, Input, Select, SelectOption, UseDialogProps, useDialog } from '@sd/ui'; import { Buffer } from 'buffer'; import { Clipboard } from 'phosphor-react'; import { useState } from 'react'; -import { getHashingAlgorithmString } from '~/screens/settings/library/KeysSetting'; - -import { SelectOptionKeyList } from '../key/KeyList'; - +import { useLibraryQuery } from '@sd/client'; +import { Button, Dialog, Input, Select, SelectOption, UseDialogProps, useDialog } from '@sd/ui'; import { useZodForm, z } from '@sd/ui/src/forms'; +import { getHashingAlgorithmString } from '~/screens/settings/library/KeysSetting'; +import { SelectOptionKeyList } from '../key/KeyList'; interface KeyViewerDialogProps extends UseDialogProps {} diff --git a/packages/interface/src/components/dialog/MasterPasswordChangeDialog.tsx b/packages/interface/src/components/dialog/MasterPasswordChangeDialog.tsx index ced27ec72..17c1b102f 100644 --- a/packages/interface/src/components/dialog/MasterPasswordChangeDialog.tsx +++ b/packages/interface/src/components/dialog/MasterPasswordChangeDialog.tsx @@ -1,16 +1,14 @@ -import { Algorithm, useLibraryMutation } from '@sd/client'; -import { Button, Dialog, Input, Select, SelectOption, UseDialogProps, useDialog } from '@sd/ui'; import cryptoRandomString from 'crypto-random-string'; import { ArrowsClockwise, Clipboard, Eye, EyeSlash } from 'phosphor-react'; import { useState } from 'react'; +import { Algorithm, useLibraryMutation } from '@sd/client'; +import { Button, Dialog, Input, Select, SelectOption, UseDialogProps, useDialog } from '@sd/ui'; +import { useZodForm, z } from '@sd/ui/src/forms'; import { getHashingAlgorithmSettings } from '~/screens/settings/library/KeysSetting'; import { showAlertDialog } from '~/util/dialog'; - import { generatePassword } from '../key/KeyMounter'; import { PasswordMeter } from '../key/PasswordMeter'; -import { useZodForm, z } from '@sd/ui/src/forms'; - export interface MasterPasswordChangeDialogProps extends UseDialogProps {} const schema = z.object({ diff --git a/packages/interface/src/components/explorer/Explorer.tsx b/packages/interface/src/components/explorer/Explorer.tsx index a18308da0..2b476e791 100644 --- a/packages/interface/src/components/explorer/Explorer.tsx +++ b/packages/interface/src/components/explorer/Explorer.tsx @@ -1,7 +1,6 @@ -import { ExplorerData, rspc, useCurrentLibrary } from '@sd/client'; import { useEffect, useState } from 'react'; +import { ExplorerData, rspc, useCurrentLibrary } from '@sd/client'; import { useExplorerStore } from '~/hooks/useExplorerStore'; - import { Inspector } from '../explorer/Inspector'; import { ExplorerContextMenu } from './ExplorerContextMenu'; import { TopBar } from './ExplorerTopBar'; diff --git a/packages/interface/src/components/explorer/ExplorerContextMenu.tsx b/packages/interface/src/components/explorer/ExplorerContextMenu.tsx index 0937a27d6..5fa4272b0 100644 --- a/packages/interface/src/components/explorer/ExplorerContextMenu.tsx +++ b/packages/interface/src/components/explorer/ExplorerContextMenu.tsx @@ -1,6 +1,3 @@ -import { ExplorerItem, useLibraryMutation, useLibraryQuery } from '@sd/client'; -import { ContextMenu as CM } from '@sd/ui'; -import { dialogManager } from '@sd/ui'; import { ArrowBendUpRight, Image, @@ -16,11 +13,13 @@ import { TrashSimple } from 'phosphor-react'; import { PropsWithChildren, useMemo } from 'react'; +import { ExplorerItem, useLibraryMutation, useLibraryQuery } from '@sd/client'; +import { ContextMenu as CM } from '@sd/ui'; +import { dialogManager } from '@sd/ui'; import { getExplorerStore, useExplorerStore } from '~/hooks/useExplorerStore'; import { useOperatingSystem } from '~/hooks/useOperatingSystem'; import { usePlatform } from '~/util/Platform'; import { showAlertDialog } from '~/util/dialog'; - import { DecryptFileDialog } from '../dialog/DecryptFileDialog'; import { DeleteFileDialog } from '../dialog/DeleteFileDialog'; import { EncryptFileDialog } from '../dialog/EncryptFileDialog'; diff --git a/packages/interface/src/components/explorer/ExplorerOptionsPanel.tsx b/packages/interface/src/components/explorer/ExplorerOptionsPanel.tsx index 63e965703..e334e4fda 100644 --- a/packages/interface/src/components/explorer/ExplorerOptionsPanel.tsx +++ b/packages/interface/src/components/explorer/ExplorerOptionsPanel.tsx @@ -1,6 +1,5 @@ -import { Select, SelectOption } from '@sd/ui'; import { PropsWithChildren, useState } from 'react'; - +import { Select, SelectOption } from '@sd/ui'; import Slider from '../primitive/Slider'; function Heading({ children }: PropsWithChildren) { diff --git a/packages/interface/src/components/explorer/ExplorerTopBar.tsx b/packages/interface/src/components/explorer/ExplorerTopBar.tsx index acc12291a..52b55c630 100644 --- a/packages/interface/src/components/explorer/ExplorerTopBar.tsx +++ b/packages/interface/src/components/explorer/ExplorerTopBar.tsx @@ -1,4 +1,3 @@ -import { Button, Input, OverlayPanel, cva } from '@sd/ui'; import clsx from 'clsx'; import { ArrowsClockwise, @@ -16,7 +15,7 @@ import { import { forwardRef, useEffect, useRef } from 'react'; import { useForm } from 'react-hook-form'; import { useNavigate } from 'react-router-dom'; - +import { Button, Input, OverlayPanel, cva } from '@sd/ui'; import { getExplorerStore, useExplorerStore } from '../../hooks/useExplorerStore'; import { useOperatingSystem } from '../../hooks/useOperatingSystem'; import { KeybindEvent } from '../../util/keybind'; diff --git a/packages/interface/src/components/explorer/FileItem.tsx b/packages/interface/src/components/explorer/FileItem.tsx index 1becf3dda..fdd6478ea 100644 --- a/packages/interface/src/components/explorer/FileItem.tsx +++ b/packages/interface/src/components/explorer/FileItem.tsx @@ -1,9 +1,8 @@ -import { ExplorerItem, isVideoExt } from '@sd/client'; -import { cva, tw } from '@sd/ui'; import clsx from 'clsx'; import { HTMLAttributes } from 'react'; +import { ExplorerItem, isVideoExt } from '@sd/client'; +import { cva, tw } from '@sd/ui'; import { getExplorerStore } from '~/hooks/useExplorerStore'; - import { FileItemContextMenu } from './ExplorerContextMenu'; import FileThumb from './FileThumb'; import { isObject } from './utils'; diff --git a/packages/interface/src/components/explorer/FileRow.tsx b/packages/interface/src/components/explorer/FileRow.tsx index 5f1832559..d4f15750e 100644 --- a/packages/interface/src/components/explorer/FileRow.tsx +++ b/packages/interface/src/components/explorer/FileRow.tsx @@ -1,7 +1,6 @@ -import { ExplorerItem } from '@sd/client'; import clsx from 'clsx'; import { HTMLAttributes } from 'react'; - +import { ExplorerItem } from '@sd/client'; import FileThumb from './FileThumb'; interface Props extends HTMLAttributes { diff --git a/packages/interface/src/components/explorer/FileThumb.tsx b/packages/interface/src/components/explorer/FileThumb.tsx index 653133261..60fff105b 100644 --- a/packages/interface/src/components/explorer/FileThumb.tsx +++ b/packages/interface/src/components/explorer/FileThumb.tsx @@ -3,12 +3,11 @@ import documentPdf from '@sd/assets/images/Document_pdf.png'; import executable from '@sd/assets/images/Executable.png'; import file from '@sd/assets/images/File.png'; import video from '@sd/assets/images/Video.png'; -import { ExplorerItem } from '@sd/client'; import clsx from 'clsx'; import { Suspense, lazy, useMemo } from 'react'; +import { ExplorerItem } from '@sd/client'; import { useExplorerStore } from '~/hooks/useExplorerStore'; import { usePlatform } from '~/util/Platform'; - import { Folder } from '../icons/Folder'; import { isObject, isPath } from './utils'; diff --git a/packages/interface/src/components/explorer/Inspector.tsx b/packages/interface/src/components/explorer/Inspector.tsx index 18a4e6bd4..393947b8a 100644 --- a/packages/interface/src/components/explorer/Inspector.tsx +++ b/packages/interface/src/components/explorer/Inspector.tsx @@ -1,11 +1,10 @@ // import types from '../../constants/file-types.json'; -import { ExplorerContext, ExplorerItem, useLibraryQuery } from '@sd/client'; -import { Button, tw } from '@sd/ui'; import clsx from 'clsx'; import dayjs from 'dayjs'; import { Barcode, CircleWavyCheck, Clock, Cube, Link, Lock, Snowflake } from 'phosphor-react'; import { useEffect, useState } from 'react'; - +import { ExplorerContext, ExplorerItem, useLibraryQuery } from '@sd/client'; +import { Button, tw } from '@sd/ui'; import { ObjectKind } from '../../util/kind'; import { DefaultProps } from '../primitive/types'; import { Tooltip } from '../tooltip/Tooltip'; diff --git a/packages/interface/src/components/explorer/VirtualizedList.tsx b/packages/interface/src/components/explorer/VirtualizedList.tsx index 96baf328e..4bab217d9 100644 --- a/packages/interface/src/components/explorer/VirtualizedList.tsx +++ b/packages/interface/src/components/explorer/VirtualizedList.tsx @@ -1,10 +1,9 @@ -import { ExplorerContext, ExplorerItem } from '@sd/client'; import { useVirtualizer } from '@tanstack/react-virtual'; import { useCallback, useEffect, useLayoutEffect, useRef, useState } from 'react'; import { useSearchParams } from 'react-router-dom'; import { useKey, useOnWindowResize } from 'rooks'; +import { ExplorerContext, ExplorerItem } from '@sd/client'; import { ExplorerLayoutMode, getExplorerStore, useExplorerStore } from '~/hooks/useExplorerStore'; - import FileItem from './FileItem'; import FileRow from './FileRow'; import { isPath } from './utils'; diff --git a/packages/interface/src/components/explorer/inspector/FavoriteButton.tsx b/packages/interface/src/components/explorer/inspector/FavoriteButton.tsx index a0227545c..a420fdaa6 100644 --- a/packages/interface/src/components/explorer/inspector/FavoriteButton.tsx +++ b/packages/interface/src/components/explorer/inspector/FavoriteButton.tsx @@ -1,8 +1,8 @@ +import { Heart } from 'phosphor-react'; +import { useEffect, useState } from 'react'; import { useLibraryMutation } from '@sd/client'; import { Object as SDObject } from '@sd/client'; import { Button } from '@sd/ui'; -import { Heart } from 'phosphor-react'; -import { useEffect, useState } from 'react'; interface Props { data: SDObject; diff --git a/packages/interface/src/components/explorer/inspector/Note.tsx b/packages/interface/src/components/explorer/inspector/Note.tsx index 339d36e45..514a7ded7 100644 --- a/packages/interface/src/components/explorer/inspector/Note.tsx +++ b/packages/interface/src/components/explorer/inspector/Note.tsx @@ -1,9 +1,8 @@ +import { useCallback, useState } from 'react'; +import { useDebouncedCallback } from 'use-debounce'; import { useLibraryMutation } from '@sd/client'; import { Object as SDObject } from '@sd/client'; import { TextArea } from '@sd/ui'; -import { useCallback, useState } from 'react'; -import { useDebouncedCallback } from 'use-debounce'; - import { MetaContainer, MetaTitle } from '../Inspector'; import { Divider } from './Divider'; diff --git a/packages/interface/src/components/items/DriveListItem.tsx b/packages/interface/src/components/items/DriveListItem.tsx index 3f7036ae9..26463757a 100644 --- a/packages/interface/src/components/items/DriveListItem.tsx +++ b/packages/interface/src/components/items/DriveListItem.tsx @@ -1,5 +1,4 @@ import clsx from 'clsx'; - import { DefaultProps } from '../primitive/types'; export interface DriveListItemProps extends DefaultProps { diff --git a/packages/interface/src/components/jobs/JobManager.tsx b/packages/interface/src/components/jobs/JobManager.tsx index 2b7b01639..e84105f69 100644 --- a/packages/interface/src/components/jobs/JobManager.tsx +++ b/packages/interface/src/components/jobs/JobManager.tsx @@ -1,6 +1,3 @@ -import { useLibraryMutation, useLibraryQuery } from '@sd/client'; -import { JobReport } from '@sd/client'; -import { Button, CategoryHeading, tw } from '@sd/ui'; import clsx from 'clsx'; import dayjs from 'dayjs'; import { @@ -19,7 +16,9 @@ import { TrashSimple, X } from 'phosphor-react'; - +import { useLibraryMutation, useLibraryQuery } from '@sd/client'; +import { JobReport } from '@sd/client'; +import { Button, CategoryHeading, tw } from '@sd/ui'; import ProgressBar from '../primitive/ProgressBar'; import { Tooltip } from '../tooltip/Tooltip'; diff --git a/packages/interface/src/components/key/Key.tsx b/packages/interface/src/components/key/Key.tsx index 58cb522d6..1d189d365 100644 --- a/packages/interface/src/components/key/Key.tsx +++ b/packages/interface/src/components/key/Key.tsx @@ -1,11 +1,10 @@ import * as DropdownMenu from '@radix-ui/react-dropdown-menu'; -import { useLibraryMutation } from '@sd/client'; -import { Button } from '@sd/ui'; import clsx from 'clsx'; import { DotsThree, Eye, Key as KeyIcon } from 'phosphor-react'; import { MutableRefObject, PropsWithChildren, useState } from 'react'; import { animated, useTransition } from 'react-spring'; - +import { useLibraryMutation } from '@sd/client'; +import { Button } from '@sd/ui'; import { DefaultProps } from '../primitive/types'; import { Tooltip } from '../tooltip/Tooltip'; diff --git a/packages/interface/src/components/key/KeyList.tsx b/packages/interface/src/components/key/KeyList.tsx index e58564598..e78de4e85 100644 --- a/packages/interface/src/components/key/KeyList.tsx +++ b/packages/interface/src/components/key/KeyList.tsx @@ -1,7 +1,6 @@ +import { useMemo, useRef } from 'react'; import { useLibraryMutation, useLibraryQuery } from '@sd/client'; import { Button, SelectOption } from '@sd/ui'; -import { useMemo, useRef } from 'react'; - import { DefaultProps } from '../primitive/types'; import { DummyKey, Key } from './Key'; diff --git a/packages/interface/src/components/key/KeyManager.tsx b/packages/interface/src/components/key/KeyManager.tsx index 682e30362..e9d594b8b 100644 --- a/packages/interface/src/components/key/KeyManager.tsx +++ b/packages/interface/src/components/key/KeyManager.tsx @@ -1,8 +1,7 @@ -import { useLibraryMutation, useLibraryQuery } from '@sd/client'; -import { Button, ButtonLink, Input, Tabs } from '@sd/ui'; import { Eye, EyeSlash, Gear, Lock } from 'phosphor-react'; import { useState } from 'react'; - +import { useLibraryMutation, useLibraryQuery } from '@sd/client'; +import { Button, ButtonLink, Input, Tabs } from '@sd/ui'; import { DefaultProps } from '../primitive/types'; import { KeyList } from './KeyList'; import { KeyMounter } from './KeyMounter'; diff --git a/packages/interface/src/components/key/KeyMounter.tsx b/packages/interface/src/components/key/KeyMounter.tsx index 95b397f6d..c3c82d445 100644 --- a/packages/interface/src/components/key/KeyMounter.tsx +++ b/packages/interface/src/components/key/KeyMounter.tsx @@ -1,9 +1,8 @@ -import { Algorithm, useLibraryMutation, useLibraryQuery } from '@sd/client'; -import { Button, CategoryHeading, Input, Select, SelectOption, Switch, cva, tw } from '@sd/ui'; import cryptoRandomString from 'crypto-random-string'; import { Eye, EyeSlash, Info } from 'phosphor-react'; import { useEffect, useRef, useState } from 'react'; - +import { Algorithm, useLibraryMutation, useLibraryQuery } from '@sd/client'; +import { Button, CategoryHeading, Input, Select, SelectOption, Switch, cva, tw } from '@sd/ui'; import { getHashingAlgorithmSettings } from '../../screens/settings/library/KeysSetting'; import Slider from '../primitive/Slider'; import { Tooltip } from '../tooltip/Tooltip'; diff --git a/packages/interface/src/components/layout/Modal.tsx b/packages/interface/src/components/layout/Modal.tsx index 42c39efc9..95f7c50f6 100644 --- a/packages/interface/src/components/layout/Modal.tsx +++ b/packages/interface/src/components/layout/Modal.tsx @@ -1,8 +1,8 @@ import { Transition } from '@headlessui/react'; -import { ButtonLink } from '@sd/ui'; import clsx from 'clsx'; import { X } from 'phosphor-react'; import { PropsWithChildren } from 'react'; +import { ButtonLink } from '@sd/ui'; export function Model( props: PropsWithChildren<{ diff --git a/packages/interface/src/components/layout/Sidebar.tsx b/packages/interface/src/components/layout/Sidebar.tsx index aca50d83d..611294dbc 100644 --- a/packages/interface/src/components/layout/Sidebar.tsx +++ b/packages/interface/src/components/layout/Sidebar.tsx @@ -1,4 +1,8 @@ import { ReactComponent as Ellipsis } from '@sd/assets/svgs/ellipsis.svg'; +import clsx from 'clsx'; +import { CheckCircle, CirclesFour, Gear, Lock, Planet, Plus } from 'phosphor-react'; +import React, { PropsWithChildren } from 'react'; +import { NavLink, NavLinkProps } from 'react-router-dom'; import { LocationCreateArgs, getDebugState, @@ -22,13 +26,8 @@ import { dialogManager, tw } from '@sd/ui'; -import clsx from 'clsx'; -import { CheckCircle, CirclesFour, Gear, Lock, Planet, Plus } from 'phosphor-react'; -import React, { PropsWithChildren } from 'react'; -import { NavLink, NavLinkProps } from 'react-router-dom'; import { useOperatingSystem } from '~/hooks/useOperatingSystem'; import { usePlatform } from '~/util/Platform'; - import AddLocationDialog from '../dialog/AddLocationDialog'; import CreateLibraryDialog from '../dialog/CreateLibraryDialog'; import { Folder } from '../icons/Folder'; diff --git a/packages/interface/src/components/location/LocationListItem.tsx b/packages/interface/src/components/location/LocationListItem.tsx index 8afb50f94..8c62a56ad 100644 --- a/packages/interface/src/components/location/LocationListItem.tsx +++ b/packages/interface/src/components/location/LocationListItem.tsx @@ -1,15 +1,13 @@ -import { useLibraryMutation } from '@sd/client'; -import { Location, Node } from '@sd/client'; -import { Button, Card, Dialog, UseDialogProps, dialogManager, useDialog } from '@sd/ui'; import clsx from 'clsx'; import { Repeat, Trash } from 'phosphor-react'; import { useState } from 'react'; - +import { useLibraryMutation } from '@sd/client'; +import { Location, Node } from '@sd/client'; +import { Button, Card, Dialog, UseDialogProps, dialogManager, useDialog } from '@sd/ui'; +import { useZodForm, z } from '@sd/ui/src/forms'; import { Folder } from '../icons/Folder'; import { Tooltip } from '../tooltip/Tooltip'; -import { useZodForm, z } from '@sd/ui/src/forms'; - interface LocationListItemProps { location: Location & { node: Node }; } diff --git a/packages/interface/src/components/onboarding/Onboarding.tsx b/packages/interface/src/components/onboarding/Onboarding.tsx index 993e1738d..724d07db6 100644 --- a/packages/interface/src/components/onboarding/Onboarding.tsx +++ b/packages/interface/src/components/onboarding/Onboarding.tsx @@ -1,6 +1,5 @@ -import { Button, dialogManager } from '@sd/ui'; import { useNavigate } from 'react-router'; - +import { Button, dialogManager } from '@sd/ui'; import CreateLibraryDialog from '../dialog/CreateLibraryDialog'; // TODO: This page requires styling for now it is just a placeholder. diff --git a/packages/interface/src/components/os/TrafficLights.tsx b/packages/interface/src/components/os/TrafficLights.tsx index 6a9265424..60981bdb1 100644 --- a/packages/interface/src/components/os/TrafficLights.tsx +++ b/packages/interface/src/components/os/TrafficLights.tsx @@ -3,7 +3,6 @@ import fullscreenIconPath from '@sd/assets/svgs/macos_fullscreen.svg'; import minimizeIconPath from '@sd/assets/svgs/macos_minimize.svg'; import clsx from 'clsx'; import { HTMLAttributes, useEffect, useRef } from 'react'; - import { useFocusState } from '~/hooks/useFocusState'; import { DefaultProps } from '../primitive/types'; @@ -18,10 +17,7 @@ export function MacTrafficLights(props: TrafficLightsProps) { const [focused] = useFocusState(); return ( -
+
diff --git a/packages/interface/src/components/primitive/InputContainer.tsx b/packages/interface/src/components/primitive/InputContainer.tsx index 0876ff562..82b1c63d5 100644 --- a/packages/interface/src/components/primitive/InputContainer.tsx +++ b/packages/interface/src/components/primitive/InputContainer.tsx @@ -1,6 +1,5 @@ import clsx from 'clsx'; import { PropsWithChildren } from 'react'; - import { DefaultProps } from './types'; interface InputContainerProps extends DefaultProps { diff --git a/packages/interface/src/components/primitive/PopoverPicker.tsx b/packages/interface/src/components/primitive/PopoverPicker.tsx index a6e6719fd..dfa8bfcd9 100644 --- a/packages/interface/src/components/primitive/PopoverPicker.tsx +++ b/packages/interface/src/components/primitive/PopoverPicker.tsx @@ -2,7 +2,6 @@ import clsx from 'clsx'; import { useCallback, useRef, useState } from 'react'; import { HexColorPicker } from 'react-colorful'; import { UseControllerProps, useController } from 'react-hook-form'; - import useClickOutside from '../../hooks/useClickOutside'; interface PopoverPickerProps extends UseControllerProps { diff --git a/packages/interface/src/components/primitive/Shortcut.tsx b/packages/interface/src/components/primitive/Shortcut.tsx index c0edfd6ec..7bc0cbe16 100644 --- a/packages/interface/src/components/primitive/Shortcut.tsx +++ b/packages/interface/src/components/primitive/Shortcut.tsx @@ -1,5 +1,4 @@ import clsx from 'clsx'; - import { DefaultProps } from './types'; export interface ShortcutProps extends DefaultProps { diff --git a/packages/interface/src/components/primitive/Tag.tsx b/packages/interface/src/components/primitive/Tag.tsx index 6e5c1d674..d1972b7fd 100644 --- a/packages/interface/src/components/primitive/Tag.tsx +++ b/packages/interface/src/components/primitive/Tag.tsx @@ -1,6 +1,5 @@ import clsx from 'clsx'; import { PropsWithChildren, ReactNode } from 'react'; - import { DefaultProps } from './types'; export interface TagProps extends DefaultProps { diff --git a/packages/interface/src/components/primitive/Toasts.tsx b/packages/interface/src/components/primitive/Toasts.tsx index 9f81018a4..d7cbcbf1f 100644 --- a/packages/interface/src/components/primitive/Toasts.tsx +++ b/packages/interface/src/components/primitive/Toasts.tsx @@ -1,6 +1,5 @@ import * as ToastPrimitive from '@radix-ui/react-toast'; import clsx from 'clsx'; - import { useToasts } from '../../hooks/useToasts'; export function Toasts() { diff --git a/packages/interface/src/components/settings/SettingsContainer.tsx b/packages/interface/src/components/settings/SettingsContainer.tsx index 302881c39..03ea8433c 100644 --- a/packages/interface/src/components/settings/SettingsContainer.tsx +++ b/packages/interface/src/components/settings/SettingsContainer.tsx @@ -1,6 +1,5 @@ import clsx from 'clsx'; import { PropsWithChildren } from 'react'; - import { useOperatingSystem } from '../../hooks/useOperatingSystem'; export const SettingsContainer = ({ children }: PropsWithChildren) => { diff --git a/packages/interface/src/components/settings/SettingsSidebar.tsx b/packages/interface/src/components/settings/SettingsSidebar.tsx index 8cb1d81dd..90f060d30 100644 --- a/packages/interface/src/components/settings/SettingsSidebar.tsx +++ b/packages/interface/src/components/settings/SettingsSidebar.tsx @@ -13,7 +13,6 @@ import { ShieldCheck, TagSimple } from 'phosphor-react'; - import { useOperatingSystem } from '../../hooks/useOperatingSystem'; import { SidebarLink } from '../layout/Sidebar'; import { SettingsHeading, SettingsIcon } from './SettingsHeader'; diff --git a/packages/interface/src/hooks/useDebouncedForm.ts b/packages/interface/src/hooks/useDebouncedForm.ts index 39cbf9549..5189e8ebe 100644 --- a/packages/interface/src/hooks/useDebouncedForm.ts +++ b/packages/interface/src/hooks/useDebouncedForm.ts @@ -1,7 +1,7 @@ -import { useCurrentLibrary } from '@sd/client'; import { useEffect } from 'react'; import { FieldValues, UseFormReturn } from 'react-hook-form'; import { useDebouncedCallback } from 'use-debounce'; +import { useCurrentLibrary } from '@sd/client'; export function useDebouncedForm( form: UseFormReturn<{ id: string } & object, TContext>, diff --git a/packages/interface/src/hooks/useExplorerStore.tsx b/packages/interface/src/hooks/useExplorerStore.tsx index 77019de9c..15e957cf3 100644 --- a/packages/interface/src/hooks/useExplorerStore.tsx +++ b/packages/interface/src/hooks/useExplorerStore.tsx @@ -1,6 +1,5 @@ -import { onLibraryChange } from '@sd/client'; import { proxy, useSnapshot } from 'valtio'; - +import { onLibraryChange } from '@sd/client'; import { resetStore } from '@sd/client/src/stores/util'; export type ExplorerLayoutMode = 'list' | 'grid' | 'columns' | 'media'; diff --git a/packages/interface/src/hooks/useKeyboardHandler.ts b/packages/interface/src/hooks/useKeyboardHandler.ts index 82e848636..852bb2773 100644 --- a/packages/interface/src/hooks/useKeyboardHandler.ts +++ b/packages/interface/src/hooks/useKeyboardHandler.ts @@ -1,6 +1,5 @@ import { useEffect } from 'react'; import { useNavigate } from 'react-router'; - import { KeybindEvent } from '../util/keybind'; export function useKeybindHandler() { diff --git a/packages/interface/src/hooks/useOperatingSystem.ts b/packages/interface/src/hooks/useOperatingSystem.ts index b09da3921..907954800 100644 --- a/packages/interface/src/hooks/useOperatingSystem.ts +++ b/packages/interface/src/hooks/useOperatingSystem.ts @@ -1,5 +1,4 @@ import { useQuery } from '@tanstack/react-query'; - import { OperatingSystem, usePlatform } from '../util/Platform'; export function guessOperatingSystem(): OperatingSystem { diff --git a/packages/interface/src/screens/Debug.tsx b/packages/interface/src/screens/Debug.tsx index 88014d464..befab2ed7 100644 --- a/packages/interface/src/screens/Debug.tsx +++ b/packages/interface/src/screens/Debug.tsx @@ -1,5 +1,4 @@ import { useBridgeQuery, useLibraryMutation, useLibraryQuery } from '@sd/client'; - import CodeBlock from '~/components/primitive/Codeblock'; import { usePlatform } from '~/util/Platform'; diff --git a/packages/interface/src/screens/LocationExplorer.tsx b/packages/interface/src/screens/LocationExplorer.tsx index 951887c0b..941d8f6a4 100644 --- a/packages/interface/src/screens/LocationExplorer.tsx +++ b/packages/interface/src/screens/LocationExplorer.tsx @@ -1,7 +1,6 @@ -import { useCurrentLibrary, useLibraryQuery } from '@sd/client'; import { useEffect } from 'react'; import { useParams, useSearchParams } from 'react-router-dom'; - +import { useCurrentLibrary, useLibraryQuery } from '@sd/client'; import Explorer from '~/components/explorer/Explorer'; import { getExplorerStore } from '~/hooks/useExplorerStore'; diff --git a/packages/interface/src/screens/Overview.tsx b/packages/interface/src/screens/Overview.tsx index 27a68c149..a597babc0 100644 --- a/packages/interface/src/screens/Overview.tsx +++ b/packages/interface/src/screens/Overview.tsx @@ -1,12 +1,11 @@ -import { onLibraryChange, queryClient, useCurrentLibrary, useLibraryQuery } from '@sd/client'; -import { Statistics } from '@sd/client'; import byteSize from 'byte-size'; import clsx from 'clsx'; import { useEffect } from 'react'; import Skeleton from 'react-loading-skeleton'; import 'react-loading-skeleton/dist/skeleton.css'; import { proxy } from 'valtio'; - +import { onLibraryChange, queryClient, useCurrentLibrary, useLibraryQuery } from '@sd/client'; +import { Statistics } from '@sd/client'; import useCounter from '~/hooks/useCounter'; import { usePlatform } from '~/util/Platform'; diff --git a/packages/interface/src/screens/TagExplorer.tsx b/packages/interface/src/screens/TagExplorer.tsx index 674bcfb0b..ed88e8bed 100644 --- a/packages/interface/src/screens/TagExplorer.tsx +++ b/packages/interface/src/screens/TagExplorer.tsx @@ -1,6 +1,5 @@ -import { useCurrentLibrary, useLibraryQuery } from '@sd/client'; import { useParams } from 'react-router-dom'; - +import { useCurrentLibrary, useLibraryQuery } from '@sd/client'; import Explorer from '~/components/explorer/Explorer'; export default function TagExplorer() { diff --git a/packages/interface/src/screens/settings/Settings.tsx b/packages/interface/src/screens/settings/Settings.tsx index 223b89e70..eef0cb955 100644 --- a/packages/interface/src/screens/settings/Settings.tsx +++ b/packages/interface/src/screens/settings/Settings.tsx @@ -1,6 +1,5 @@ import { Suspense } from 'react'; import { Outlet } from 'react-router'; - import { SettingsSidebar } from '~/components/settings/SettingsSidebar'; export default function SettingsScreen() { diff --git a/packages/interface/src/screens/settings/client/AppearanceSettings.tsx b/packages/interface/src/screens/settings/client/AppearanceSettings.tsx index a13853e7f..1b80d3c76 100644 --- a/packages/interface/src/screens/settings/client/AppearanceSettings.tsx +++ b/packages/interface/src/screens/settings/client/AppearanceSettings.tsx @@ -1,6 +1,5 @@ -import { Switch } from '@sd/ui'; import { useState } from 'react'; - +import { Switch } from '@sd/ui'; import { InputContainer } from '~/components/primitive/InputContainer'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; import { SettingsHeader } from '~/components/settings/SettingsHeader'; diff --git a/packages/interface/src/screens/settings/client/ExtensionsSettings.tsx b/packages/interface/src/screens/settings/client/ExtensionsSettings.tsx index 83e13010e..637d2f43f 100644 --- a/packages/interface/src/screens/settings/client/ExtensionsSettings.tsx +++ b/packages/interface/src/screens/settings/client/ExtensionsSettings.tsx @@ -1,6 +1,5 @@ -import { Button, Card, GridLayout, Input } from '@sd/ui'; import { MagnifyingGlass } from 'phosphor-react'; - +import { Button, Card, GridLayout, Input } from '@sd/ui'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; import { SettingsHeader } from '~/components/settings/SettingsHeader'; diff --git a/packages/interface/src/screens/settings/client/GeneralSettings.tsx b/packages/interface/src/screens/settings/client/GeneralSettings.tsx index 55641550c..adad66ca8 100644 --- a/packages/interface/src/screens/settings/client/GeneralSettings.tsx +++ b/packages/interface/src/screens/settings/client/GeneralSettings.tsx @@ -1,7 +1,6 @@ +import { Database } from 'phosphor-react'; import { getDebugState, useBridgeQuery, useDebugState } from '@sd/client'; import { Card, Input, Switch, tw } from '@sd/ui'; -import { Database } from 'phosphor-react'; - import { InputContainer } from '~/components/primitive/InputContainer'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; import { SettingsHeader } from '~/components/settings/SettingsHeader'; diff --git a/packages/interface/src/screens/settings/client/KeybindingSettings.tsx b/packages/interface/src/screens/settings/client/KeybindingSettings.tsx index 7394c1874..cbf33b32c 100644 --- a/packages/interface/src/screens/settings/client/KeybindingSettings.tsx +++ b/packages/interface/src/screens/settings/client/KeybindingSettings.tsx @@ -1,6 +1,5 @@ -import { Switch } from '@sd/ui'; import { useState } from 'react'; - +import { Switch } from '@sd/ui'; import { InputContainer } from '~/components/primitive/InputContainer'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; import { SettingsHeader } from '~/components/settings/SettingsHeader'; diff --git a/packages/interface/src/screens/settings/client/PrivacySettings.tsx b/packages/interface/src/screens/settings/client/PrivacySettings.tsx index b31f82cc6..33714ac36 100644 --- a/packages/interface/src/screens/settings/client/PrivacySettings.tsx +++ b/packages/interface/src/screens/settings/client/PrivacySettings.tsx @@ -1,6 +1,5 @@ -import { Switch } from '@sd/ui'; import { useState } from 'react'; - +import { Switch } from '@sd/ui'; import { InputContainer } from '~/components/primitive/InputContainer'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; import { SettingsHeader } from '~/components/settings/SettingsHeader'; diff --git a/packages/interface/src/screens/settings/info/AboutSpacedrive.tsx b/packages/interface/src/screens/settings/info/AboutSpacedrive.tsx index 446432f07..f11f77056 100644 --- a/packages/interface/src/screens/settings/info/AboutSpacedrive.tsx +++ b/packages/interface/src/screens/settings/info/AboutSpacedrive.tsx @@ -1,6 +1,5 @@ import Logo from '@sd/assets/images/logo.png'; import { useBridgeQuery } from '@sd/client'; - import { SettingsContainer } from '../../../components/settings/SettingsContainer'; import { SettingsHeader } from '../../../components/settings/SettingsHeader'; diff --git a/packages/interface/src/screens/settings/library/KeysSetting.tsx b/packages/interface/src/screens/settings/library/KeysSetting.tsx index d5e91679f..c4c828c49 100644 --- a/packages/interface/src/screens/settings/library/KeysSetting.tsx +++ b/packages/interface/src/screens/settings/library/KeysSetting.tsx @@ -1,10 +1,10 @@ import * as DropdownMenu from '@radix-ui/react-dropdown-menu'; -import { HashingAlgorithm, useLibraryMutation, useLibraryQuery } from '@sd/client'; -import { Button, Input, dialogManager } from '@sd/ui'; import clsx from 'clsx'; import { Eye, EyeSlash, Lock, Plus } from 'phosphor-react'; import { PropsWithChildren, useState } from 'react'; import { animated, useTransition } from 'react-spring'; +import { HashingAlgorithm, useLibraryMutation, useLibraryQuery } from '@sd/client'; +import { Button, Input, dialogManager } from '@sd/ui'; import { BackupRestoreDialog } from '~/components/dialog/BackupRestoreDialog'; import { KeyViewerDialog } from '~/components/dialog/KeyViewerDialog'; import { MasterPasswordChangeDialog } from '~/components/dialog/MasterPasswordChangeDialog'; diff --git a/packages/interface/src/screens/settings/library/LibraryGeneralSettings.tsx b/packages/interface/src/screens/settings/library/LibraryGeneralSettings.tsx index 00d4e6b99..e8e12facc 100644 --- a/packages/interface/src/screens/settings/library/LibraryGeneralSettings.tsx +++ b/packages/interface/src/screens/settings/library/LibraryGeneralSettings.tsx @@ -1,8 +1,7 @@ +import { useForm } from 'react-hook-form'; import { useBridgeMutation } from '@sd/client'; import { useCurrentLibrary } from '@sd/client'; import { Button, Input, Switch } from '@sd/ui'; -import { useForm } from 'react-hook-form'; - import { InputContainer } from '~/components/primitive/InputContainer'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; import { SettingsHeader } from '~/components/settings/SettingsHeader'; diff --git a/packages/interface/src/screens/settings/library/LocationSettings.tsx b/packages/interface/src/screens/settings/library/LocationSettings.tsx index 3d4e2cd56..263502c4e 100644 --- a/packages/interface/src/screens/settings/library/LocationSettings.tsx +++ b/packages/interface/src/screens/settings/library/LocationSettings.tsx @@ -1,7 +1,7 @@ +import { MagnifyingGlass } from 'phosphor-react'; import { useLibraryMutation, useLibraryQuery } from '@sd/client'; import { LocationCreateArgs } from '@sd/client'; import { Button, Input, dialogManager } from '@sd/ui'; -import { MagnifyingGlass } from 'phosphor-react'; import AddLocationDialog from '~/components/dialog/AddLocationDialog'; import LocationListItem from '~/components/location/LocationListItem'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; diff --git a/packages/interface/src/screens/settings/library/TagsSettings.tsx b/packages/interface/src/screens/settings/library/TagsSettings.tsx index 4b627a439..deeb7c9f0 100644 --- a/packages/interface/src/screens/settings/library/TagsSettings.tsx +++ b/packages/interface/src/screens/settings/library/TagsSettings.tsx @@ -1,17 +1,16 @@ -import { Tag, useLibraryMutation, useLibraryQuery } from '@sd/client'; -import { Button, Card, Dialog, Switch, UseDialogProps, dialogManager, useDialog } from '@sd/ui'; import clsx from 'clsx'; import { Trash } from 'phosphor-react'; import { useCallback, useEffect, useState } from 'react'; import { useDebounce } from 'rooks'; +import { Tag, useLibraryMutation, useLibraryQuery } from '@sd/client'; +import { Button, Card, Dialog, Switch, UseDialogProps, dialogManager, useDialog } from '@sd/ui'; +import { Form, Input, useZodForm, z } from '@sd/ui/src/forms'; import { InputContainer } from '~/components/primitive/InputContainer'; import { PopoverPicker } from '~/components/primitive/PopoverPicker'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; import { SettingsHeader } from '~/components/settings/SettingsHeader'; import { Tooltip } from '~/components/tooltip/Tooltip'; -import { Form, Input, useZodForm, z } from '@sd/ui/src/forms'; - export default function TagsSettings() { const tags = useLibraryQuery(['tags.list']); diff --git a/packages/interface/src/screens/settings/node/ExperimentalSettings.tsx b/packages/interface/src/screens/settings/node/ExperimentalSettings.tsx index a1b718fa0..76405906f 100644 --- a/packages/interface/src/screens/settings/node/ExperimentalSettings.tsx +++ b/packages/interface/src/screens/settings/node/ExperimentalSettings.tsx @@ -1,5 +1,4 @@ import { Switch } from '@sd/ui'; - import { useNodeStore } from '~/components/device/Stores'; import { InputContainer } from '~/components/primitive/InputContainer'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; diff --git a/packages/interface/src/screens/settings/node/LibrariesSettings.tsx b/packages/interface/src/screens/settings/node/LibrariesSettings.tsx index 2e433573c..3378b3340 100644 --- a/packages/interface/src/screens/settings/node/LibrariesSettings.tsx +++ b/packages/interface/src/screens/settings/node/LibrariesSettings.tsx @@ -1,7 +1,7 @@ +import { Database, DotsSixVertical, Pencil, Trash } from 'phosphor-react'; import { useBridgeQuery, useCurrentLibrary } from '@sd/client'; import { LibraryConfigWrapped } from '@sd/client'; import { Button, ButtonLink, Card, dialogManager, tw } from '@sd/ui'; -import { Database, DotsSixVertical, Pencil, Trash } from 'phosphor-react'; import CreateLibraryDialog from '~/components/dialog/CreateLibraryDialog'; import DeleteLibraryDialog from '~/components/dialog/DeleteLibraryDialog'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; diff --git a/packages/interface/src/screens/settings/node/P2PSettings.tsx b/packages/interface/src/screens/settings/node/P2PSettings.tsx index b90308693..d4ba32f03 100644 --- a/packages/interface/src/screens/settings/node/P2PSettings.tsx +++ b/packages/interface/src/screens/settings/node/P2PSettings.tsx @@ -1,5 +1,4 @@ import { Input, Switch } from '@sd/ui'; - import { InputContainer } from '~/components/primitive/InputContainer'; import { SettingsContainer } from '~/components/settings/SettingsContainer'; import { SettingsHeader } from '~/components/settings/SettingsHeader'; diff --git a/packages/interface/src/style.scss b/packages/interface/src/style.scss index 1d042278d..f5d78a984 100644 --- a/packages/interface/src/style.scss +++ b/packages/interface/src/style.scss @@ -45,7 +45,6 @@ body { } &::-webkit-scrollbar-thumb { @apply rounded-[6px] bg-transparent; - } &:hover { &::-webkit-scrollbar-thumb { diff --git a/packages/interface/tsconfig.json b/packages/interface/tsconfig.json index e5764d9f4..924e7526d 100644 --- a/packages/interface/tsconfig.json +++ b/packages/interface/tsconfig.json @@ -4,18 +4,11 @@ "rootDir": "src", "declarationDir": "dist", "paths": { - "~/*": [ - "./src/*" - ] + "~/*": ["./src/*"] }, - "types": [ - "vite-plugin-svgr/client", - "vite/client" - ] + "types": ["vite-plugin-svgr/client", "vite/client"] }, - "include": [ - "src" - ], + "include": ["src"], "references": [ { "path": "../ui" diff --git a/packages/ui/src/Button.stories.tsx b/packages/ui/src/Button.stories.tsx index d5518c370..077f11080 100644 --- a/packages/ui/src/Button.stories.tsx +++ b/packages/ui/src/Button.stories.tsx @@ -1,5 +1,4 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'; - import { Button } from './Button'; export default { diff --git a/packages/ui/src/Dialog.tsx b/packages/ui/src/Dialog.tsx index 58dc9dc69..c4f2505f1 100644 --- a/packages/ui/src/Dialog.tsx +++ b/packages/ui/src/Dialog.tsx @@ -4,7 +4,6 @@ import { ReactElement, ReactNode, useEffect } from 'react'; import { FieldValues } from 'react-hook-form'; import { animated, useTransition } from 'react-spring'; import { proxy, ref, subscribe, useSnapshot } from 'valtio'; - import { Button, Loader } from '../'; import { Form, FormProps } from './forms/Form'; diff --git a/packages/ui/src/Dropdown.stories.tsx b/packages/ui/src/Dropdown.stories.tsx index 94f4a6915..c262d6a77 100644 --- a/packages/ui/src/Dropdown.stories.tsx +++ b/packages/ui/src/Dropdown.stories.tsx @@ -1,5 +1,4 @@ import { ComponentMeta, ComponentStory } from '@storybook/react'; - import { Root } from './Dropdown'; export default { diff --git a/packages/ui/src/Dropdown.tsx b/packages/ui/src/Dropdown.tsx index 16fc5ee9b..285ede473 100644 --- a/packages/ui/src/Dropdown.tsx +++ b/packages/ui/src/Dropdown.tsx @@ -1,10 +1,9 @@ -import { Menu, Transition } from '@headlessui/react'; import { ReactComponent as CaretDown } from '@sd/assets/svgs/caret.svg'; +import { Menu, Transition } from '@headlessui/react'; import { VariantProps, cva } from 'class-variance-authority'; import clsx from 'clsx'; import { Fragment, PropsWithChildren } from 'react'; import { Link } from 'react-router-dom'; - import * as UI from '.'; import { tw } from './utils'; diff --git a/packages/ui/src/Select.tsx b/packages/ui/src/Select.tsx index 3469db813..3a4c1806e 100644 --- a/packages/ui/src/Select.tsx +++ b/packages/ui/src/Select.tsx @@ -1,5 +1,5 @@ -import * as SelectPrimitive from '@radix-ui/react-select'; import { ReactComponent as ChevronDouble } from '@sd/assets/svgs/chevron-double.svg'; +import * as SelectPrimitive from '@radix-ui/react-select'; import clsx from 'clsx'; import { CaretDown, Check } from 'phosphor-react'; import { PropsWithChildren } from 'react'; diff --git a/packages/ui/src/Tabs.tsx b/packages/ui/src/Tabs.tsx index 4b5503c55..cf56f7cf3 100644 --- a/packages/ui/src/Tabs.tsx +++ b/packages/ui/src/Tabs.tsx @@ -1,5 +1,4 @@ import * as TabsPrimitive from '@radix-ui/react-tabs'; - import { tw } from './utils'; export const Root = tw(TabsPrimitive.Root)` diff --git a/packages/ui/src/forms/CheckBox.tsx b/packages/ui/src/forms/CheckBox.tsx index c2274a2c3..af5fb0ed4 100644 --- a/packages/ui/src/forms/CheckBox.tsx +++ b/packages/ui/src/forms/CheckBox.tsx @@ -1,5 +1,4 @@ import { forwardRef } from 'react'; - import { CheckBox as Root } from '../CheckBox'; import { FormField, UseFormFieldProps, useFormField } from './FormField'; diff --git a/packages/ui/src/forms/Input.tsx b/packages/ui/src/forms/Input.tsx index bb8638d9f..adb3485e0 100644 --- a/packages/ui/src/forms/Input.tsx +++ b/packages/ui/src/forms/Input.tsx @@ -1,5 +1,4 @@ import { forwardRef } from 'react'; - import * as Root from '../Input'; import { FormField, UseFormFieldProps, useFormField } from './FormField'; diff --git a/packages/ui/src/forms/Switch.tsx b/packages/ui/src/forms/Switch.tsx index 67d6e7eaa..0c9b3bd6f 100644 --- a/packages/ui/src/forms/Switch.tsx +++ b/packages/ui/src/forms/Switch.tsx @@ -1,6 +1,5 @@ import { forwardRef } from 'react'; import { useController } from 'react-hook-form'; - import * as Root from '../Switch'; import { FormField, UseFormFieldProps, useFormField } from './FormField'; diff --git a/packages/ui/style/colors.scss b/packages/ui/style/colors.scss index a77397e5e..5c83a35de 100644 --- a/packages/ui/style/colors.scss +++ b/packages/ui/style/colors.scss @@ -1,100 +1,100 @@ :root { - --dark-hue: 235; //300, 295 - --light-hue: 235; + --dark-hue: 235; //300, 295 + --light-hue: 235; - // global - --color-black: 0, 0%, 0%; - --color-white: 0, 0%, 100%; - // accent theme colors - --color-accent: 208, 100%, 57%; - --color-accent-faint: 208, 100%, 64%; - --color-accent-deep: 208, 100%, 47%; - // text - --color-ink: var(--dark-hue), 0%, 100%; - --color-ink-dull: var(--dark-hue), 10%, 70%; - --color-ink-faint: var(--dark-hue), 10%, 55%; - // sidebar - --color-sidebar: var(--dark-hue), 15%, 7%; - --color-sidebar-box: var(--dark-hue), 15%, 16%; - --color-sidebar-line: var(--dark-hue), 15%, 23%; - --color-sidebar-divider: var(--dark-hue), 15%, 17%; - --color-sidebar-button: var(--dark-hue), 15%, 18%; - --color-sidebar-selected: var(--dark-hue), 15%, 24%; - --color-sidebar-shade: var(--dark-hue), 15%, 23%; - // main - --color-app: var(--dark-hue), 15%, 13%; - --color-app-box: var(--dark-hue), 15%, 18%; - --color-app-overlay: var(--dark-hue), 15%, 17%; - --color-app-input: var(--dark-hue), 15%, 20%; - --color-app-focus: var(--dark-hue), 15%, 10%; - --color-app-line: var(--dark-hue), 15%, 23%; - --color-app-divider: var(--dark-hue), 15%, 5%; - --color-app-button: var(--dark-hue), 15%, 23%; - --color-app-hover: var(--dark-hue), 15%, 25%; - --color-app-selected: var(--dark-hue), 15%, 26%; - --color-app-active: var(--dark-hue), 15%, 30%; - --color-app-shade: var(--dark-hue), 15%, 0%; - --color-app-frame: var(--dark-hue), 15%, 25%; - // menu - --color-menu: var(--dark-hue), 25%, 5%; - --color-menu-line: var(--dark-hue), 15%, 7%; - --color-menu-ink: var(--dark-hue), 5%, 100%; - --color-menu-faint: var(--dark-hue), 5%, 80%; - --color-menu-hover: var(--dark-hue), 15%, 30%; - --color-menu-selected: var(--dark-hue), 5%, 30%; - --color-menu-shade: var(--dark-hue), 5%, 0%; + // global + --color-black: 0, 0%, 0%; + --color-white: 0, 0%, 100%; + // accent theme colors + --color-accent: 208, 100%, 57%; + --color-accent-faint: 208, 100%, 64%; + --color-accent-deep: 208, 100%, 47%; + // text + --color-ink: var(--dark-hue), 0%, 100%; + --color-ink-dull: var(--dark-hue), 10%, 70%; + --color-ink-faint: var(--dark-hue), 10%, 55%; + // sidebar + --color-sidebar: var(--dark-hue), 15%, 7%; + --color-sidebar-box: var(--dark-hue), 15%, 16%; + --color-sidebar-line: var(--dark-hue), 15%, 23%; + --color-sidebar-divider: var(--dark-hue), 15%, 17%; + --color-sidebar-button: var(--dark-hue), 15%, 18%; + --color-sidebar-selected: var(--dark-hue), 15%, 24%; + --color-sidebar-shade: var(--dark-hue), 15%, 23%; + // main + --color-app: var(--dark-hue), 15%, 13%; + --color-app-box: var(--dark-hue), 15%, 18%; + --color-app-overlay: var(--dark-hue), 15%, 17%; + --color-app-input: var(--dark-hue), 15%, 20%; + --color-app-focus: var(--dark-hue), 15%, 10%; + --color-app-line: var(--dark-hue), 15%, 23%; + --color-app-divider: var(--dark-hue), 15%, 5%; + --color-app-button: var(--dark-hue), 15%, 23%; + --color-app-hover: var(--dark-hue), 15%, 25%; + --color-app-selected: var(--dark-hue), 15%, 26%; + --color-app-active: var(--dark-hue), 15%, 30%; + --color-app-shade: var(--dark-hue), 15%, 0%; + --color-app-frame: var(--dark-hue), 15%, 25%; + // menu + --color-menu: var(--dark-hue), 25%, 5%; + --color-menu-line: var(--dark-hue), 15%, 7%; + --color-menu-ink: var(--dark-hue), 5%, 100%; + --color-menu-faint: var(--dark-hue), 5%, 80%; + --color-menu-hover: var(--dark-hue), 15%, 30%; + --color-menu-selected: var(--dark-hue), 5%, 30%; + --color-menu-shade: var(--dark-hue), 5%, 0%; } @media (prefers-color-scheme: light) { -.vanilla-theme { - // global - --color-black: 0, 0%, 0%; - --color-white: 0, 0%, 100%; - // accent theme colors - --color-accent: 208, 100%, 57%; - --color-accent-faint: 208, 100%, 67%; - --color-accent-deep: 208, 100%, 47%; - // text - --color-ink: var(--light-hue), 5%, 20%; - --color-ink-dull: var(--light-hue), 5%, 30%; - --color-ink-faint: var(--light-hue), 5%, 40%; - // sidebar - --color-sidebar: var(--light-hue), 5%, 96%; - --color-sidebar-box: var(--light-hue), 5%, 100%; - --color-sidebar-line: var(--light-hue), 10%, 85%; - --color-sidebar-divider: var(--light-hue), 15%, 93%; - --color-sidebar-button: var(--light-hue), 15%, 100%; - --color-sidebar-selected: var(--light-hue), 10%, 80%; - --color-sidebar-shade: var(--light-hue), 15%, 100%; - // main - --color-app: var(--light-hue), 5%, 100%; - --color-app-box: var(--light-hue), 5%, 98%; - --color-app-overlay: var(--light-hue), 5%, 100%; - --color-app-input: var(--light-hue), 5%, 100%; - --color-app-focus: var(--light-hue), 5%, 98%; - --color-app-line: var(--light-hue), 5%, 90%; - --color-app-button: var(--light-hue), 5%, 100%; - --color-app-divider: var(--light-hue), 5%, 80%; - --color-app-selected: var(--light-hue), 5%, 93%; - --color-app-hover: var(--light-hue), 5%, 97%; - --color-app-active: var(--light-hue), 5%, 87%; - --color-app-shade: var(--light-hue), 15%, 50%; - --color-app-frame: 0, 0%, 100%; - // menu - --color-menu: var(--light-hue), 16%, 0%; - --color-menu-line: var(--light-hue), 5%, 18%; - --color-menu-ink: var(--light-hue), 5%, 100%; - --color-menu-faint: var(--light-hue), 5%, 80%; - --color-menu-hover: var(--light-hue), 15%, 20%; - --color-menu-selected: var(--light-hue), 5%, 30%; - --color-menu-shade: var(--light-hue), 5%, 0%; + .vanilla-theme { + // global + --color-black: 0, 0%, 0%; + --color-white: 0, 0%, 100%; + // accent theme colors + --color-accent: 208, 100%, 57%; + --color-accent-faint: 208, 100%, 67%; + --color-accent-deep: 208, 100%, 47%; + // text + --color-ink: var(--light-hue), 5%, 20%; + --color-ink-dull: var(--light-hue), 5%, 30%; + --color-ink-faint: var(--light-hue), 5%, 40%; + // sidebar + --color-sidebar: var(--light-hue), 5%, 96%; + --color-sidebar-box: var(--light-hue), 5%, 100%; + --color-sidebar-line: var(--light-hue), 10%, 85%; + --color-sidebar-divider: var(--light-hue), 15%, 93%; + --color-sidebar-button: var(--light-hue), 15%, 100%; + --color-sidebar-selected: var(--light-hue), 10%, 80%; + --color-sidebar-shade: var(--light-hue), 15%, 100%; + // main + --color-app: var(--light-hue), 5%, 100%; + --color-app-box: var(--light-hue), 5%, 98%; + --color-app-overlay: var(--light-hue), 5%, 100%; + --color-app-input: var(--light-hue), 5%, 100%; + --color-app-focus: var(--light-hue), 5%, 98%; + --color-app-line: var(--light-hue), 5%, 90%; + --color-app-button: var(--light-hue), 5%, 100%; + --color-app-divider: var(--light-hue), 5%, 80%; + --color-app-selected: var(--light-hue), 5%, 93%; + --color-app-hover: var(--light-hue), 5%, 97%; + --color-app-active: var(--light-hue), 5%, 87%; + --color-app-shade: var(--light-hue), 15%, 50%; + --color-app-frame: 0, 0%, 100%; + // menu + --color-menu: var(--light-hue), 16%, 0%; + --color-menu-line: var(--light-hue), 5%, 18%; + --color-menu-ink: var(--light-hue), 5%, 100%; + --color-menu-faint: var(--light-hue), 5%, 80%; + --color-menu-hover: var(--light-hue), 15%, 20%; + --color-menu-selected: var(--light-hue), 5%, 30%; + --color-menu-shade: var(--light-hue), 5%, 0%; - // --color-menu: var(--light-hue), 16%, 99%; - // --color-menu-line: var(--light-hue), 5%, 90%; - // --color-menu-ink: var(--light-hue), 5%, 30%; - // --color-menu-faint: var(--light-hue), 5%, 80%; - // --color-menu-hover: var(--light-hue), 15%, 20%; - // --color-menu-selected: var(--light-hue), 5%, 30%; - // --color-menu-shade: var(--light-hue), 5%, 0%; -} + // --color-menu: var(--light-hue), 16%, 99%; + // --color-menu-line: var(--light-hue), 5%, 90%; + // --color-menu-ink: var(--light-hue), 5%, 30%; + // --color-menu-faint: var(--light-hue), 5%, 80%; + // --color-menu-hover: var(--light-hue), 15%, 20%; + // --color-menu-selected: var(--light-hue), 5%, 30%; + // --color-menu-shade: var(--light-hue), 5%, 0%; + } } diff --git a/packages/ui/style/style.scss b/packages/ui/style/style.scss index 37371d807..f0ccf48d0 100644 --- a/packages/ui/style/style.scss +++ b/packages/ui/style/style.scss @@ -1,4 +1,4 @@ -@import "./colors.scss"; +@import './colors.scss'; @tailwind base; @tailwind components; @@ -27,16 +27,15 @@ } .mask-fade-out { - // -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); - mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100px); + // -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)); + mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100px); } - .cool-shadow { box-shadow: rgb(0 0 0 / 9%) 0px 3px 12px; } // Without this Tauri displays button differently to web -[type="button"] { +[type='button'] { -webkit-appearance: none; -} \ No newline at end of file +} diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json index 4677b60a1..8e080d56b 100644 --- a/packages/ui/tsconfig.json +++ b/packages/ui/tsconfig.json @@ -4,7 +4,5 @@ "rootDir": "src", "declarationDir": "dist" }, - "include": [ - "src" - ] + "include": ["src"] } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 81f100297..4296912a8 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,6 +12,7 @@ importers: '@evilmartians/lefthook': ^1.1.1 '@trivago/prettier-plugin-sort-imports': ^3.3.0 cspell: ^6.12.0 + lint-staged: ^13.1.0 markdown-link-check: ^3.10.3 prettier: ^2.7.1 turbo: ^1.5.5 @@ -20,12 +21,13 @@ importers: devDependencies: '@cspell/dict-rust': 2.0.1 '@cspell/dict-typescript': 2.0.2 - '@evilmartians/lefthook': 1.2.4 - '@trivago/prettier-plugin-sort-imports': 3.4.0_prettier@2.8.1 - cspell: 6.17.0 + '@evilmartians/lefthook': 1.2.7 + '@trivago/prettier-plugin-sort-imports': 3.4.0_prettier@2.8.3 + cspell: 6.19.2 + lint-staged: 13.1.0 markdown-link-check: 3.10.3 - prettier: 2.8.1 - turbo: 1.6.3 + prettier: 2.8.3 + turbo: 1.7.0 turbo-ignore: 0.3.0 typescript: 4.9.4 @@ -64,15 +66,15 @@ importers: '@sd/config': link:../../packages/config '@tauri-apps/cli': 1.1.1 '@types/babel-core': 6.25.7 - '@types/react': 18.0.26 - '@types/react-dom': 18.0.9 + '@types/react': 18.0.27 + '@types/react-dom': 18.0.10 '@vitejs/plugin-react': 2.2.0_vite@4.0.4 - prettier: 2.8.1 - sass: 1.56.2 + prettier: 2.8.3 + sass: 1.57.1 typescript: 4.9.4 - vite: 4.0.4_sass@1.56.2 + vite: 4.0.4_sass@1.57.1 vite-plugin-svgr: 2.4.0_vite@4.0.4 - vite-tsconfig-paths: 4.0.3_gl4qsmwzp7wy5uclz4tx77gbli + vite-tsconfig-paths: 4.0.5_typescript@4.9.4 apps/landing: specifiers: @@ -124,7 +126,7 @@ importers: vite-plugin-svgr: ^2.2.1 vite-tsconfig-paths: ^3.5.2 dependencies: - '@headlessui/react': 1.7.5_biqbaboplfbrettd7655fr4n2y + '@headlessui/react': 1.7.7_biqbaboplfbrettd7655fr4n2y '@icons-pack/react-simple-icons': 5.11.0_react@18.2.0 '@sd/assets': link:../../packages/assets '@sd/docs': link:../../docs @@ -135,39 +137,39 @@ importers: cross-env: 7.0.3 express: 4.18.2 markdown-yaml-metadata-parser: 3.0.0 - marked: 4.2.4 + marked: 4.2.12 phosphor-react: 1.4.1_react@18.2.0 prismjs: 1.29.0 react: 18.2.0 - react-burger-menu: 3.0.8_biqbaboplfbrettd7655fr4n2y + react-burger-menu: 3.0.9_biqbaboplfbrettd7655fr4n2y react-dom: 18.2.0_react@18.2.0 react-helmet: 6.1.0_react@18.2.0 - react-hook-form: 7.40.0_react@18.2.0 - react-tsparticles: 2.6.0_react@18.2.0 + react-hook-form: 7.42.1_react@18.2.0 + react-tsparticles: 2.8.0_react@18.2.0 sirv: 2.0.2 - ts-node: 10.9.1_ewfw2lwfc3dwdvz7r6yz2ssqyi - tsparticles: 2.6.0 + ts-node: 10.9.1_awa2wsr5thmg3i7jqycphctjfq + tsparticles: 2.8.0 typescript: 4.9.4 - vite: 3.2.5_o2iixvyklpce477lkpnahelma4 - vite-plugin-ssr: 0.4.57_vite@3.2.5 + vite: 3.2.5_ovmyjmuuyckt3r3gpaexj2onji + vite-plugin-ssr: 0.4.70_vite@3.2.5 devDependencies: '@sd/config': link:../../packages/config '@sd/ui': link:../../packages/ui '@tailwindcss/line-clamp': 0.4.2 - '@tailwindcss/typography': 0.5.8 + '@tailwindcss/typography': 0.5.9 '@types/compression': 1.7.2 - '@types/express': 4.17.14 + '@types/express': 4.17.15 '@types/marked': 4.0.8 - '@types/node': 18.11.15 + '@types/node': 18.11.18 '@types/prismjs': 1.26.0 - '@types/react': 18.0.26 + '@types/react': 18.0.27 '@types/react-burger-menu': 2.8.3 - '@types/react-dom': 18.0.9 + '@types/react-dom': 18.0.10 '@types/react-helmet': 6.1.6 '@types/tryghost__content-api': 1.3.11 - postcss: 8.4.20 - rollup-plugin-visualizer: 5.8.3 - sass: 1.56.2 + postcss: 8.4.21 + rollup-plugin-visualizer: 5.9.0 + sass: 1.57.1 vite-plugin-esmodule: 1.4.4 vite-plugin-markdown: 2.1.0_vite@3.2.5 vite-plugin-svgr: 2.4.0_vite@3.2.5 @@ -229,30 +231,30 @@ importers: '@gorhom/bottom-sheet': 4.4.5_cuwuttpow3vlkihawr5ojezmtm '@react-native-async-storage/async-storage': 1.17.11_react-native@0.70.5 '@react-native-masked-view/masked-view': 0.2.8_tj3nonr5gneraukzjkxpsiy7yu - '@react-navigation/bottom-tabs': 6.5.2_snzv4adhpz5nxsvfocyhhxk7km - '@react-navigation/drawer': 6.5.6_vgcaym4m7x2m7algtelluuejuq - '@react-navigation/native': 6.1.1_tj3nonr5gneraukzjkxpsiy7yu - '@react-navigation/stack': 6.3.10_tyjudtnlcig67xhyismbj37vsy + '@react-navigation/bottom-tabs': 6.5.3_4yxn5o6hbqm4eqjpnbll7jojyu + '@react-navigation/drawer': 6.5.7_yrgdxcwem6xwiw4ihiusk6rm7m + '@react-navigation/native': 6.1.2_tj3nonr5gneraukzjkxpsiy7yu + '@react-navigation/stack': 6.3.11_omkqc3xm6hu7gsihfbjfmuohle '@rspc/client': 0.0.0-main-7c0a67c1 - '@rspc/react': 0.0.0-main-7c0a67c1_kw6vkyhizcdptco2nddor2skfy + '@rspc/react': 0.0.0-main-7c0a67c1_7aie4jek34mpa466duyggl5x24 '@sd/assets': link:../../packages/assets '@sd/client': link:../../packages/client '@shopify/flash-list': 1.4.0_tj3nonr5gneraukzjkxpsiy7yu - '@tanstack/react-query': 4.20.9_tj3nonr5gneraukzjkxpsiy7yu + '@tanstack/react-query': 4.22.0_tj3nonr5gneraukzjkxpsiy7yu byte-size: 8.1.0 class-variance-authority: 0.4.0_typescript@4.9.4 dayjs: 1.11.7 - expo: 47.0.10 - expo-linking: 3.3.0_expo@47.0.10 - expo-media-library: 15.0.0_expo@47.0.10 - expo-splash-screen: 0.17.5_expo@47.0.10 + expo: 47.0.13 + expo-linking: 3.3.0_expo@47.0.13 + expo-media-library: 15.0.0_expo@47.0.13 + expo-splash-screen: 0.17.5_expo@47.0.13 expo-status-bar: 1.4.2 intl: 1.2.5 lottie-react-native: 5.1.4_tj3nonr5gneraukzjkxpsiy7yu moti: 0.21.0_xxoigs3lrtexqhfttsykzq4gba phosphor-react-native: 1.1.2_6rmyt7g6mjmjm44v4kwwqzmzjy react: 18.1.0 - react-hook-form: 7.41.5_react@18.1.0 + react-hook-form: 7.42.1_react@18.1.0 react-native: 0.70.5_react@18.1.0 react-native-document-picker: 8.1.3_tj3nonr5gneraukzjkxpsiy7yu react-native-fs: 2.20.0_react-native@0.70.5 @@ -263,18 +265,18 @@ importers: react-native-screens: 3.18.2_tj3nonr5gneraukzjkxpsiy7yu react-native-svg: 13.6.0_tj3nonr5gneraukzjkxpsiy7yu react-native-wheel-color-picker: 1.2.0 - twrnc: 3.5.0_react-native@0.70.5 + twrnc: 3.6.0_react-native@0.70.5 use-count-up: 3.0.1_react@18.1.0 - use-debounce: 9.0.2_react@18.1.0 - valtio: 1.8.0_react@18.1.0 + use-debounce: 9.0.3_react@18.1.0 + valtio: 1.9.0_react@18.1.0 devDependencies: '@rnx-kit/metro-config': 1.3.3_tj3nonr5gneraukzjkxpsiy7yu '@sd/config': link:../../packages/config - '@types/react': 18.0.26 - '@types/react-native': 0.70.8 + '@types/react': 18.0.27 + '@types/react-native': 0.70.9 babel-plugin-module-resolver: 4.1.0 eslint-plugin-react-native: 4.0.0 - metro-minify-terser: 0.73.6 + metro-minify-terser: 0.73.7 react-native-svg-transformer: 1.0.0_t622mrclk7o6j6mwz34ema6fve typescript: 4.9.4 @@ -304,21 +306,21 @@ importers: vite-plugin-svgr: ^2.2.1 vite-tsconfig-paths: ^3.5.2 dependencies: - '@fontsource/inter': 4.5.14 + '@fontsource/inter': 4.5.15 '@rspc/client': 0.0.0-main-7c0a67c1 '@sd/client': link:../../packages/client '@sd/interface': link:../../packages/interface - '@tanstack/react-query': 4.19.1_biqbaboplfbrettd7655fr4n2y + '@tanstack/react-query': 4.22.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 devDependencies: '@sd/config': link:../../packages/config '@sd/ui': link:../../packages/ui - '@types/react': 18.0.26 - '@types/react-dom': 18.0.9 + '@types/react': 18.0.27 + '@types/react-dom': 18.0.10 '@vitejs/plugin-react': 2.2.0_vite@4.0.4 - autoprefixer: 10.4.13_postcss@8.4.20 - postcss: 8.4.20 + autoprefixer: 10.4.13_postcss@8.4.21 + postcss: 8.4.21 rollup-plugin-visualizer: 5.9.0 typescript: 4.9.4 vite: 4.0.4 @@ -343,12 +345,12 @@ importers: clsx: 1.2.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - solid-js: 1.6.4 + solid-js: 1.6.9 tailwindcss: 3.2.4 devDependencies: '@rspc/client': 0.0.0-main-7c0a67c1 - '@rspc/react': 0.0.0-main-7c0a67c1_45mkgylr6uf2hod2xfbcqw3nyi - '@tanstack/react-query': 4.19.1_biqbaboplfbrettd7655fr4n2y + '@rspc/react': 0.0.0-main-7c0a67c1_ews3p2w6ewwkufep3giz5zum7m + '@tanstack/react-query': 4.22.0_biqbaboplfbrettd7655fr4n2y '@vitejs/plugin-react': 2.2.0_vite@3.2.5 typescript: 4.9.4 vite: 3.2.5 @@ -372,12 +374,12 @@ importers: valtio: ^1.7.4 dependencies: '@rspc/client': 0.0.0-main-7c0a67c1 - '@rspc/react': 0.0.0-main-7c0a67c1_tbzjkhe5jt5eajidrzbcozbyna + '@rspc/react': 0.0.0-main-7c0a67c1_tqsbl3x6ixew47ctvte2nz2yki '@sd/config': link:../config - '@tanstack/react-query': 4.19.1 - valtio: 1.7.6 + '@tanstack/react-query': 4.22.0 + valtio: 1.9.0 devDependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 scripts: 0.1.0 tsconfig: 7.0.0 typescript: 4.9.4 @@ -391,12 +393,12 @@ importers: eslint-plugin-react: ^7.31.8 eslint-plugin-react-hooks: ^4.6.0 devDependencies: - '@typescript-eslint/eslint-plugin': 5.46.0_jx43xxcguvnqqmtmaaygwl7cmu - '@typescript-eslint/parser': 5.46.0_eslint@8.29.0 - eslint: 8.29.0 - eslint-config-prettier: 8.5.0_eslint@8.29.0 - eslint-plugin-react: 7.31.11_eslint@8.29.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.29.0 + '@typescript-eslint/eslint-plugin': 5.48.2_2l6piu6guil2f63lj3qmhzbnn4 + '@typescript-eslint/parser': 5.48.2_eslint@8.32.0 + eslint: 8.32.0 + eslint-config-prettier: 8.6.0_eslint@8.32.0 + eslint-plugin-react: 7.32.1_eslint@8.32.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.32.0 packages/interface: specifiers: @@ -457,23 +459,23 @@ importers: vite-plugin-svgr: ^2.2.1 zod: ^3.20.2 dependencies: - '@fontsource/inter': 4.5.14 - '@headlessui/react': 1.7.5_biqbaboplfbrettd7655fr4n2y - '@hookform/resolvers': 2.9.10_react-hook-form@7.40.0 + '@fontsource/inter': 4.5.15 + '@headlessui/react': 1.7.7_biqbaboplfbrettd7655fr4n2y + '@hookform/resolvers': 2.9.10_react-hook-form@7.42.1 '@loadable/component': 5.15.2_react@18.2.0 '@radix-ui/react-progress': 1.0.1_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-slider': 1.1.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-toast': 1.1.2_biqbaboplfbrettd7655fr4n2y - '@radix-ui/react-tooltip': 1.0.2_ib3m5ricvtkl2cll7qpr2f6lvq + '@radix-ui/react-tooltip': 1.0.3_5ndqzdd6t4rivxsukjv3i3ak2q '@sd/assets': link:../assets '@sd/client': link:../client '@sd/ui': link:../ui - '@sentry/browser': 7.24.2 - '@splinetool/react-spline': 2.2.5_wwkrfsiouqp7jcbn6zadxsxdoe - '@splinetool/runtime': 0.9.154 + '@sentry/browser': 7.31.1 + '@splinetool/react-spline': 2.2.5_3ok4u2chf7465ntwlp4i32bwcu + '@splinetool/runtime': 0.9.191 '@tailwindcss/forms': 0.5.3_tailwindcss@3.2.4 - '@tanstack/react-query': 4.19.1_biqbaboplfbrettd7655fr4n2y - '@tanstack/react-query-devtools': 4.19.1_xnkyuugmv5unvdsxvtkktqsuae + '@tanstack/react-query': 4.22.0_biqbaboplfbrettd7655fr4n2y + '@tanstack/react-query-devtools': 4.22.0_gp275tdwez2a4eujt75dnnp754 '@tanstack/react-virtual': 3.0.0-beta.18_react@18.2.0 '@vitejs/plugin-react': 2.2.0_vite@3.2.5 '@zxcvbn-ts/core': 2.1.0 @@ -490,8 +492,8 @@ importers: react-colorful: 5.6.1_biqbaboplfbrettd7655fr4n2y react-dom: 18.2.0_react@18.2.0 react-error-boundary: 3.1.4_react@18.2.0 - react-hook-form: 7.40.0_react@18.2.0 - react-json-view: 1.21.3_ib3m5ricvtkl2cll7qpr2f6lvq + react-hook-form: 7.42.1_react@18.2.0 + react-json-view: 1.21.3_5ndqzdd6t4rivxsukjv3i3ak2q react-loading-skeleton: 3.1.0_react@18.2.0 react-router: 6.4.2_react@18.2.0 react-router-dom: 6.4.2_biqbaboplfbrettd7655fr4n2y @@ -499,20 +501,20 @@ importers: tailwindcss: 3.2.4 use-count-up: 3.0.1_react@18.2.0 use-debounce: 8.0.4_react@18.2.0 - valtio: 1.7.6_react@18.2.0+vite@3.2.5 + valtio: 1.9.0_react@18.2.0 zod: 3.20.2 devDependencies: '@sd/config': link:../config '@types/babel-core': 6.25.7 '@types/byte-size': 8.1.0 '@types/loadable__component': 5.13.4 - '@types/node': 18.11.15 - '@types/react': 18.0.26 - '@types/react-dom': 18.0.9 + '@types/node': 18.11.18 + '@types/react': 18.0.27 + '@types/react-dom': 18.0.10 '@types/react-router-dom': 5.3.3 - prettier: 2.8.1 + prettier: 2.8.3 typescript: 4.9.4 - vite: 3.2.5_@types+node@18.11.15 + vite: 3.2.5_@types+node@18.11.18 vite-plugin-svgr: 2.4.0_vite@3.2.5 packages/ui: @@ -565,50 +567,50 @@ importers: tailwindcss-radix: ^2.6.0 typescript: ^4.8.4 dependencies: - '@headlessui/react': 1.7.5_biqbaboplfbrettd7655fr4n2y + '@headlessui/react': 1.7.7_biqbaboplfbrettd7655fr4n2y '@headlessui/tailwindcss': 0.1.2_tailwindcss@3.2.4 - '@radix-ui/react-context-menu': 1.0.0_ib3m5ricvtkl2cll7qpr2f6lvq - '@radix-ui/react-dialog': 1.0.2_ib3m5ricvtkl2cll7qpr2f6lvq - '@radix-ui/react-dropdown-menu': 1.0.0_ib3m5ricvtkl2cll7qpr2f6lvq - '@radix-ui/react-select': 1.1.2_ib3m5ricvtkl2cll7qpr2f6lvq + '@radix-ui/react-context-menu': 1.0.0_5ndqzdd6t4rivxsukjv3i3ak2q + '@radix-ui/react-dialog': 1.0.2_5ndqzdd6t4rivxsukjv3i3ak2q + '@radix-ui/react-dropdown-menu': 1.0.0_5ndqzdd6t4rivxsukjv3i3ak2q + '@radix-ui/react-select': 1.2.0_5ndqzdd6t4rivxsukjv3i3ak2q '@radix-ui/react-switch': 1.0.1_biqbaboplfbrettd7655fr4n2y - '@radix-ui/react-tabs': 1.0.1_biqbaboplfbrettd7655fr4n2y + '@radix-ui/react-tabs': 1.0.2_biqbaboplfbrettd7655fr4n2y '@sd/assets': link:../assets '@tailwindcss/forms': 0.5.3_tailwindcss@3.2.4 class-variance-authority: 0.4.0_typescript@4.9.4 clsx: 1.2.1 phosphor-react: 1.4.1_react@18.2.0 - postcss: 8.4.20 + postcss: 8.4.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-loading-icons: 1.1.0 react-router-dom: 6.4.2_biqbaboplfbrettd7655fr4n2y - react-spring: 9.6.0_biqbaboplfbrettd7655fr4n2y - tailwindcss-radix: 2.6.1 + react-spring: 9.6.1_biqbaboplfbrettd7655fr4n2y + tailwindcss-radix: 2.7.0 devDependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@sd/config': link:../config - '@storybook/addon-actions': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-essentials': 6.5.14_uggn74keyxluoyf7tufo2lv3aq - '@storybook/addon-interactions': 6.5.14_ezwba6lrfsfjf3koi7rmjevpvq - '@storybook/addon-links': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-actions': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-essentials': 6.5.15_rj36isidkgsxpclpasfz6qwkx4 + '@storybook/addon-interactions': 6.5.15_g2qxizan4oahmorsw3xako4dfm + '@storybook/addon-links': 6.5.15_biqbaboplfbrettd7655fr4n2y '@storybook/addon-postcss': 2.0.0 - '@storybook/builder-webpack5': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/manager-webpack5': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/preset-scss': 1.0.3_53luwpld5o3bh7m7s676ypfgji - '@storybook/react': 6.5.14_75idfm5lwtnm555ruqeudth5qa + '@storybook/builder-webpack5': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/manager-webpack5': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/preset-scss': 1.0.3_ce4egdtryg4fsgh2l4kxzdsxk4 + '@storybook/react': 6.5.15_7uh2vooadeub4it26j3d2ybtcq '@storybook/testing-library': 0.0.13_biqbaboplfbrettd7655fr4n2y '@tailwindcss/line-clamp': 0.4.2_tailwindcss@3.2.4 - '@tailwindcss/typography': 0.5.8_tailwindcss@3.2.4 - '@types/react': 18.0.26 - '@types/react-dom': 18.0.9 - autoprefixer: 10.4.13_postcss@8.4.20 - babel-loader: 8.3.0_@babel+core@7.20.5 - css-loader: 6.7.2 - postcss-loader: 7.0.2_postcss@8.4.20 - sass: 1.56.2 - sass-loader: 13.2.0_sass@1.56.2 - storybook: 6.5.14_o4scbtliisanygemawej7x2d6i + '@tailwindcss/typography': 0.5.9_tailwindcss@3.2.4 + '@types/react': 18.0.27 + '@types/react-dom': 18.0.10 + autoprefixer: 10.4.13_postcss@8.4.21 + babel-loader: 8.3.0_@babel+core@7.20.12 + css-loader: 6.7.3 + postcss-loader: 7.0.2_postcss@8.4.21 + sass: 1.57.1 + sass-loader: 13.2.0_sass@1.57.1 + storybook: 6.5.15_o4scbtliisanygemawej7x2d6i storybook-tailwind-dark-mode: 1.0.15_biqbaboplfbrettd7655fr4n2y style-loader: 3.3.1 tailwindcss: 3.2.4 @@ -638,28 +640,23 @@ packages: /@babel/compat-data/7.20.10: resolution: {integrity: sha512-sEnuDPpOJR/fcafHMjpcpGN5M2jbUGUHwmuWKM/YdPzeEDJg8bgmbcWQFUfE32MQjti1koACvoPVsDe8Uq+idg==} engines: {node: '>=6.9.0'} - dev: false - - /@babel/compat-data/7.20.5: - resolution: {integrity: sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==} - engines: {node: '>=6.9.0'} /@babel/core/7.12.9: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.5 - '@babel/helper-module-transforms': 7.20.2 - '@babel/helpers': 7.20.6 - '@babel/parser': 7.20.5 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/generator': 7.20.7 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.7 + '@babel/parser': 7.20.7 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.12 + '@babel/types': 7.20.7 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 - json5: 2.2.1 + json5: 2.2.3 lodash: 4.17.21 resolve: 1.22.1 semver: 5.7.1 @@ -675,40 +672,40 @@ packages: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 '@babel/generator': 7.17.7 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.17.8 - '@babel/helper-module-transforms': 7.20.2 - '@babel/helpers': 7.20.6 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.17.8 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.7 '@babel/parser': 7.18.9 - '@babel/template': 7.18.10 + '@babel/template': 7.20.7 '@babel/traverse': 7.17.3 '@babel/types': 7.17.0 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 - json5: 2.2.1 + json5: 2.2.3 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/core/7.20.5: - resolution: {integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==} + /@babel/core/7.20.12: + resolution: {integrity: sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 - '@babel/helper-module-transforms': 7.20.2 - '@babel/helpers': 7.20.6 - '@babel/parser': 7.20.5 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/generator': 7.20.7 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helpers': 7.20.7 + '@babel/parser': 7.20.7 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.12 + '@babel/types': 7.20.7 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 - json5: 2.2.1 + json5: 2.2.3 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -722,14 +719,6 @@ packages: source-map: 0.5.7 dev: true - /@babel/generator/7.20.5: - resolution: {integrity: sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.20.5 - '@jridgewell/gen-mapping': 0.3.2 - jsesc: 2.5.2 - /@babel/generator/7.20.7: resolution: {integrity: sha512-7wqMOJq8doJMZmP4ApXTzLxSr7+oO2jroJURrVEp6XShrQUObV8Tq/D0NCcoYg2uHqUrjzO0zwBjoYzelxK+sw==} engines: {node: '>=6.9.0'} @@ -742,51 +731,14 @@ packages: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.20.5 - - /@babel/helper-compilation-targets/7.20.0: - resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.20.5 - '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.4 - semver: 6.3.0 - dev: false - - /@babel/helper-compilation-targets/7.20.0_@babel+core@7.17.8: - resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.20.5 - '@babel/core': 7.17.8 - '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.4 - semver: 6.3.0 - dev: true - - /@babel/helper-compilation-targets/7.20.0_@babel+core@7.20.5: - resolution: {integrity: sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.20.5 - '@babel/core': 7.20.5 - '@babel/helper-validator-option': 7.18.6 - browserslist: 4.21.4 - semver: 6.3.0 + '@babel/types': 7.20.7 /@babel/helper-compilation-targets/7.20.7: resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} @@ -801,42 +753,35 @@ packages: semver: 6.3.0 dev: false - /@babel/helper-create-class-features-plugin/7.20.5: - resolution: {integrity: sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==} + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.17.8: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-member-expression-to-functions': 7.18.9 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.19.1 - '@babel/helper-split-export-declaration': 7.18.6 - transitivePeerDependencies: - - supports-color - dev: false + '@babel/compat-data': 7.20.10 + '@babel/core': 7.17.8 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + lru-cache: 5.1.1 + semver: 6.3.0 + dev: true - /@babel/helper-create-class-features-plugin/7.20.5_@babel+core@7.20.5: - resolution: {integrity: sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww==} + /@babel/helper-compilation-targets/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-member-expression-to-functions': 7.18.9 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-replace-supers': 7.19.1 - '@babel/helper-split-export-declaration': 7.18.6 - transitivePeerDependencies: - - supports-color + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.12 + '@babel/helper-validator-option': 7.18.6 + browserslist: 4.21.4 + lru-cache: 5.1.1 + semver: 6.3.0 - /@babel/helper-create-class-features-plugin/7.20.7: - resolution: {integrity: sha512-LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w==} + /@babel/helper-create-class-features-plugin/7.20.12: + resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -847,24 +792,26 @@ packages: '@babel/helper-member-expression-to-functions': 7.20.7 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color dev: false - /@babel/helper-create-class-features-plugin/7.20.7_@babel+core@7.20.5: - resolution: {integrity: sha512-LtoWbDXOaidEf50hmdDqn9g8VEzsorMexoWMQdQODbvmqYmaF23pBP5VNPAGIFHsFQCIeKokDiz3CH5Y2jlY6w==} + /@babel/helper-create-class-features-plugin/7.20.12_@babel+core@7.20.12: + resolution: {integrity: sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-member-expression-to-functions': 7.20.7 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 '@babel/helper-split-export-declaration': 7.18.6 transitivePeerDependencies: - supports-color @@ -879,26 +826,26 @@ packages: regexpu-core: 5.2.2 dev: false - /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.5: + /@babel/helper-create-regexp-features-plugin/7.20.5_@babel+core@7.20.12: resolution: {integrity: sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.18.6 regexpu-core: 5.2.2 - /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.20.5: + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.20.12: resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - '@babel/traverse': 7.20.5 + '@babel/traverse': 7.20.12 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -912,7 +859,7 @@ packages: peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/helper-compilation-targets': 7.20.0 + '@babel/helper-compilation-targets': 7.20.7 '@babel/helper-plugin-utils': 7.20.2 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -922,13 +869,13 @@ packages: - supports-color dev: false - /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.5: + /@babel/helper-define-polyfill-provider/0.3.3_@babel+core@7.20.12: resolution: {integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 debug: 4.3.4 lodash.debounce: 4.0.8 @@ -945,26 +892,20 @@ packages: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 /@babel/helper-function-name/7.19.0: resolution: {integrity: sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 - '@babel/types': 7.20.5 + '@babel/template': 7.20.7 + '@babel/types': 7.20.7 /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.5 - - /@babel/helper-member-expression-to-functions/7.18.9: - resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 /@babel/helper-member-expression-to-functions/7.20.7: resolution: {integrity: sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==} @@ -976,7 +917,7 @@ packages: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 /@babel/helper-module-transforms/7.20.11: resolution: {integrity: sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==} @@ -988,32 +929,16 @@ packages: '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.10 + '@babel/traverse': 7.20.12 '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color - dev: false - - /@babel/helper-module-transforms/7.20.2: - resolution: {integrity: sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.20.2 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/helper-validator-identifier': 7.19.1 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 - transitivePeerDependencies: - - supports-color /@babel/helper-optimise-call-expression/7.18.6: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 /@babel/helper-plugin-utils/7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} @@ -1032,34 +957,22 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color dev: false - /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.5: + /@babel/helper-remap-async-to-generator/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.20.5 - '@babel/types': 7.20.5 - transitivePeerDependencies: - - supports-color - - /@babel/helper-replace-supers/7.19.1: - resolution: {integrity: sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-member-expression-to-functions': 7.18.9 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -1071,7 +984,7 @@ packages: '@babel/helper-member-expression-to-functions': 7.20.7 '@babel/helper-optimise-call-expression': 7.18.6 '@babel/template': 7.20.7 - '@babel/traverse': 7.20.10 + '@babel/traverse': 7.20.12 '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -1080,19 +993,19 @@ packages: resolution: {integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 /@babel/helper-skip-transparent-expression-wrappers/7.20.0: resolution: {integrity: sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 /@babel/helper-string-parser/7.19.4: resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} @@ -1111,19 +1024,19 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/helper-function-name': 7.19.0 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.12 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color - /@babel/helpers/7.20.6: - resolution: {integrity: sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==} + /@babel/helpers/7.20.7: + resolution: {integrity: sha512-PBPjs5BppzsGaxHQCDKnZ6Gd9s6xl8bBCluz3vEInLGRJmnZan4F6BYCeqtyXqkk4W5IlPmjK4JlOuZkpJ3xZA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.12 + '@babel/types': 7.20.7 transitivePeerDependencies: - supports-color @@ -1143,13 +1056,6 @@ packages: '@babel/types': 7.17.0 dev: true - /@babel/parser/7.20.5: - resolution: {integrity: sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==} - engines: {node: '>=6.0.0'} - hasBin: true - dependencies: - '@babel/types': 7.20.5 - /@babel/parser/7.20.7: resolution: {integrity: sha512-T3Z9oHybU+0vZlY9CiDSJQTD5ZapcW18ZctFMi0MOAl/4BjFF4ul7NVSARLdbGO5vDqy9eQiGTV0LtKfvCYvcg==} engines: {node: '>=6.0.0'} @@ -1166,28 +1072,16 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.5: + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-AHrP9jadvH7qlOj6PINbgSuphjQUAK7AOT7DPjBo9EHoLhQTnnK5u45e1Hd4DbSQEO9nqPWtQ89r+XEOWFScKg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 - dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7: resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} @@ -1199,19 +1093,17 @@ packages: '@babel/plugin-proposal-optional-chaining': 7.20.7 dev: false - /@babel/plugin-proposal-async-generator-functions/7.20.1_@babel+core@7.20.5: - resolution: {integrity: sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-environment-visitor': 7.18.9 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 - transitivePeerDependencies: - - supports-color + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 + dev: true /@babel/plugin-proposal-async-generator-functions/7.20.7: resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} @@ -1227,69 +1119,67 @@ packages: - supports-color dev: false + /@babel/plugin-proposal-async-generator-functions/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + /@babel/plugin-proposal-class-properties/7.18.6: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-create-class-features-plugin': 7.20.5 + '@babel/helper-create-class-features-plugin': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.5: + /@babel/plugin-proposal-class-properties/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color - /@babel/plugin-proposal-class-static-block/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-+I3oIiNxrCpup3Gi8n5IGMwj0gOCAjcJUSQEcotNnCCPMEnixawOQ+KeJPlgfjzx+FKQ1QSyZOWe7wmoJp7vhw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-proposal-class-static-block/7.20.7: resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/helper-create-class-features-plugin': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-class-static-block': 7.14.5 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-proposal-decorators/7.20.5_@babel+core@7.20.5: - resolution: {integrity: sha512-Lac7PpRJXcC3s9cKsBfl+uc+DYXU5FD06BrTFunQO6QIQT+DwyzDPURAowI3bcvD1dZF/ank1Z5rstUJn3Hn4Q==} + /@babel/plugin-proposal-class-static-block/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==} engines: {node: '>=6.9.0'} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.19.1 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.20.5 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 transitivePeerDependencies: - supports-color dev: true @@ -1300,7 +1190,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-create-class-features-plugin': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-replace-supers': 7.20.7 '@babel/helper-split-export-declaration': 7.18.6 @@ -1309,6 +1199,22 @@ packages: - supports-color dev: false + /@babel/plugin-proposal-decorators/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-JB45hbUweYpwAGjkiM7uCyXMENH2lG+9r3G2E+ttc2PRXAoEkpfd/KW5jDg4j8RS6tLtTG1jZi9LbHZVSfs1/A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/plugin-syntax-decorators': 7.19.0_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-proposal-dynamic-import/7.18.6: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} @@ -1319,26 +1225,26 @@ packages: '@babel/plugin-syntax-dynamic-import': 7.8.3 dev: false - /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.5: + /@babel/plugin-proposal-dynamic-import/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 dev: true - /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.20.5: + /@babel/plugin-proposal-export-default-from/7.18.10_@babel+core@7.20.12: resolution: {integrity: sha512-5H2N3R2aQFxkV4PIBUR/i7PUSwgTZjouJKzI8eKswfIjT0PhvzkPn0t0wIS5zn6maQuvtT0t1oHtMUz61LOuow==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.20.12 /@babel/plugin-proposal-export-namespace-from/7.18.9: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} @@ -1350,15 +1256,15 @@ packages: '@babel/plugin-syntax-export-namespace-from': 7.8.3 dev: false - /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.5: + /@babel/plugin-proposal-export-namespace-from/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 dev: true /@babel/plugin-proposal-json-strings/7.18.6: @@ -1371,26 +1277,15 @@ packages: '@babel/plugin-syntax-json-strings': 7.8.3 dev: false - /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.5: + /@babel/plugin-proposal-json-strings/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 - dev: true - - /@babel/plugin-proposal-logical-assignment-operators/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-128YbMpjCrP35IOExw2Fq+x55LMP42DzhOhX2aNNIdI9avSWl2PI0yuBWarr3RYpZBSPtabfadkH2yeRiMD61Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 dev: true /@babel/plugin-proposal-logical-assignment-operators/7.20.7: @@ -1403,6 +1298,17 @@ packages: '@babel/plugin-syntax-logical-assignment-operators': 7.10.4 dev: false + /@babel/plugin-proposal-logical-assignment-operators/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + dev: true + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} @@ -1413,15 +1319,15 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 dev: false - /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.5: + /@babel/plugin-proposal-nullish-coalescing-operator/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 /@babel/plugin-proposal-numeric-separator/7.18.6: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} @@ -1433,15 +1339,15 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4 dev: false - /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.5: + /@babel/plugin-proposal-numeric-separator/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 dev: true /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: @@ -1452,22 +1358,9 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.12.9 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.20.2_@babel+core@7.20.5: - resolution: {integrity: sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.20.5 - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5 - /@babel/plugin-proposal-object-rest-spread/7.20.7: resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} @@ -1481,6 +1374,19 @@ packages: '@babel/plugin-transform-parameters': 7.20.7 dev: false + /@babel/plugin-proposal-object-rest-spread/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 + /@babel/plugin-proposal-optional-catch-binding/7.18.6: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} @@ -1491,26 +1397,15 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3 dev: false - /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.5: + /@babel/plugin-proposal-optional-catch-binding/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5 - - /@babel/plugin-proposal-optional-chaining/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-v5nwt4IqBXihxGsW2QmCWMDS3B3bzGIk/EQVZz2ei7f3NJl8NzAJVvUmpDW5q1CRNY+Beb/k58UAH1Km1N411w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 /@babel/plugin-proposal-optional-chaining/7.20.7: resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} @@ -1523,26 +1418,37 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3 dev: false + /@babel/plugin-proposal-optional-chaining/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + /@babel/plugin-proposal-private-methods/7.18.6: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-create-class-features-plugin': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.5: + /@babel/plugin-proposal-private-methods/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -1555,24 +1461,24 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-private-property-in-object': 7.14.5 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.5: + /@babel/plugin-proposal-private-property-in-object/7.20.5_@babel+core@7.20.12: resolution: {integrity: sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 transitivePeerDependencies: - supports-color dev: true @@ -1587,14 +1493,14 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.5: + /@babel/plugin-proposal-unicode-property-regex/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -1606,12 +1512,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.5: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.20.12: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-class-properties/7.12.13: @@ -1622,12 +1528,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.5: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.20.12: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-class-static-block/7.14.5: @@ -1639,13 +1545,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.5: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.20.12: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -1658,13 +1564,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.20.5: + /@babel/plugin-syntax-decorators/7.19.0_@babel+core@7.20.12: resolution: {integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -1676,21 +1582,21 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.5: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.20.5: + /@babel/plugin-syntax-export-default-from/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-Kr//z3ujSVNx6E9z9ih5xXXMqK07VVTuqPmqGe6Mss/zW5XPeLZeSDZoP9ab/hT4wPKqAgjl2PnhPrcpk8Seew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-export-namespace-from/7.8.3: @@ -1701,22 +1607,22 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.5: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.5: + /@babel/plugin-syntax-flow/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-import-assertions/7.20.0: @@ -1728,13 +1634,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.5: + /@babel/plugin-syntax-import-assertions/7.20.0_@babel+core@7.20.12: resolution: {integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -1746,12 +1652,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.5: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -1773,13 +1679,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.5: + /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-logical-assignment-operators/7.10.4: @@ -1790,12 +1696,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.5: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.20.12: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -1807,12 +1713,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.5: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-numeric-separator/7.10.4: @@ -1823,12 +1729,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.5: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.20.12: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -1849,12 +1755,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.5: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-catch-binding/7.8.3: @@ -1865,12 +1771,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.5: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-optional-chaining/7.8.3: @@ -1881,12 +1787,12 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.5: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.20.12: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-syntax-private-property-in-object/7.14.5: @@ -1898,13 +1804,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.5: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.20.12: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -1917,13 +1823,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.5: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.20.12: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -1935,22 +1841,13 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.5: + /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.20.12: resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - - /@babel/plugin-transform-arrow-functions/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-9S9X9RUefzrsHZmKMbDXxweEH+YlE8JJEuat9FdvW9Qh1cw7W64jELCtWNkPBPX5En45uy28KGvA/AySqUh8CQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-arrow-functions/7.20.7: @@ -1962,18 +1859,14 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-async-to-generator/7.18.6_@babel+core@7.20.5: - resolution: {integrity: sha512-ARE5wZLKnTgPW7/1ftQmSi1CmkqqHo2DNmtztFhvgtOWSDfq0Cq9/9L+KnZNYSNrydBekhW3rwShduf59RoXag==} + /@babel/plugin-transform-arrow-functions/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-module-imports': 7.18.6 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.5 - transitivePeerDependencies: - - supports-color /@babel/plugin-transform-async-to-generator/7.20.7: resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} @@ -1988,6 +1881,19 @@ packages: - supports-color dev: false + /@babel/plugin-transform-async-to-generator/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-remap-async-to-generator': 7.18.9_@babel+core@7.20.12 + transitivePeerDependencies: + - supports-color + /@babel/plugin-transform-block-scoped-functions/7.18.6: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} @@ -1997,13 +1903,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-block-scoped-functions/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-block-scoping/7.20.11: @@ -2015,34 +1921,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-block-scoping/7.20.5_@babel+core@7.20.5: - resolution: {integrity: sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA==} + /@babel/plugin-transform-block-scoping/7.20.11_@babel+core@7.20.12: + resolution: {integrity: sha512-tA4N427a7fjf1P0/2I4ScsHGc5jcHPbb30xMbaTke2gxDuWpUfXDuX1FEymJwKk4tuGUvGcejAR6HdZVqmmPyw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-classes/7.20.2_@babel+core@7.20.5: - resolution: {integrity: sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.19.1 - '@babel/helper-split-export-declaration': 7.18.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-classes/7.20.7: resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} engines: {node: '>=6.9.0'} @@ -2062,14 +1949,24 @@ packages: - supports-color dev: false - /@babel/plugin-transform-computed-properties/7.18.9_@babel+core@7.20.5: - resolution: {integrity: sha512-+i0ZU1bCDymKakLxn5srGHrsAPRELC2WIbzwjLhHW9SIE1cPYkLCL0NlnXMZaM1vhfgA2+M7hySk42VBvrkBRw==} + /@babel/plugin-transform-classes/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.19.0 + '@babel/helper-optimise-call-expression': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-replace-supers': 7.20.7 + '@babel/helper-split-export-declaration': 7.18.6 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color /@babel/plugin-transform-computed-properties/7.20.7: resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} @@ -2081,14 +1978,15 @@ packages: '@babel/template': 7.20.7 dev: false - /@babel/plugin-transform-destructuring/7.20.2_@babel+core@7.20.5: - resolution: {integrity: sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw==} + /@babel/plugin-transform-computed-properties/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 + '@babel/template': 7.20.7 /@babel/plugin-transform-destructuring/7.20.7: resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} @@ -2099,6 +1997,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-destructuring/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-dotall-regex/7.18.6: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} @@ -2109,14 +2016,14 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-dotall-regex/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2129,13 +2036,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.5: + /@babel/plugin-transform-duplicate-keys/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2149,25 +2056,25 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-exponentiation-operator/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-builder-binary-assignment-operator-visitor': 7.18.9 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.20.5: + /@babel/plugin-transform-flow-strip-types/7.19.0_@babel+core@7.20.12: resolution: {integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.12 /@babel/plugin-transform-for-of/7.18.8: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} @@ -2178,13 +2085,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.5: + /@babel/plugin-transform-for-of/7.18.8_@babel+core@7.20.12: resolution: {integrity: sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-function-name/7.18.9: @@ -2193,19 +2100,19 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-compilation-targets': 7.20.0 + '@babel/helper-compilation-targets': 7.20.7 '@babel/helper-function-name': 7.19.0 '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.5: + /@babel/plugin-transform-function-name/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 '@babel/helper-function-name': 7.19.0 '@babel/helper-plugin-utils': 7.20.2 @@ -2218,13 +2125,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.5: + /@babel/plugin-transform-literals/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-member-expression-literals/7.18.6: @@ -2236,28 +2143,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-member-expression-literals/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-modules-amd/7.19.6_@babel+core@7.20.5: - resolution: {integrity: sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-module-transforms': 7.20.2 - '@babel/helper-plugin-utils': 7.20.2 - transitivePeerDependencies: - - supports-color - dev: true - /@babel/plugin-transform-modules-amd/7.20.11: resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} @@ -2270,18 +2164,18 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-commonjs/7.19.6_@babel+core@7.20.5: - resolution: {integrity: sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ==} + /@babel/plugin-transform-modules-amd/7.20.11_@babel+core@7.20.12: + resolution: {integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-module-transforms': 7.20.2 + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.20.11 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-simple-access': 7.20.2 transitivePeerDependencies: - supports-color + dev: true /@babel/plugin-transform-modules-commonjs/7.20.11: resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} @@ -2296,20 +2190,18 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-systemjs/7.19.6_@babel+core@7.20.5: - resolution: {integrity: sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ==} + /@babel/plugin-transform-modules-commonjs/7.20.11_@babel+core@7.20.12: + resolution: {integrity: sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-module-transforms': 7.20.2 + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.20.11 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-validator-identifier': 7.19.1 + '@babel/helper-simple-access': 7.20.2 transitivePeerDependencies: - supports-color - dev: true /@babel/plugin-transform-modules-systemjs/7.20.11: resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} @@ -2325,6 +2217,21 @@ packages: - supports-color dev: false + /@babel/plugin-transform-modules-systemjs/7.20.11_@babel+core@7.20.12: + resolution: {integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-module-transforms': 7.20.11 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-validator-identifier': 7.19.1 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/plugin-transform-modules-umd/7.18.6: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} @@ -2337,14 +2244,14 @@ packages: - supports-color dev: false - /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-modules-umd/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-module-transforms': 7.20.2 + '@babel/core': 7.20.12 + '@babel/helper-module-transforms': 7.20.11 '@babel/helper-plugin-utils': 7.20.2 transitivePeerDependencies: - supports-color @@ -2360,14 +2267,14 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.5: + /@babel/plugin-transform-named-capturing-groups-regex/7.20.5_@babel+core@7.20.12: resolution: {integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-new-target/7.18.6: @@ -2379,13 +2286,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-new-target/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2405,42 +2312,23 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-replace-supers': 7.20.7 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-object-super/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-replace-supers': 7.19.1 + '@babel/helper-replace-supers': 7.20.7 transitivePeerDependencies: - supports-color - /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.12.9: - resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.20.2 - dev: true - - /@babel/plugin-transform-parameters/7.20.5_@babel+core@7.20.5: - resolution: {integrity: sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-parameters/7.20.7: resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} engines: {node: '>=6.9.0'} @@ -2450,6 +2338,25 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false + /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.12.9: + resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.12.9 + '@babel/helper-plugin-utils': 7.20.2 + dev: true + + /@babel/plugin-transform-parameters/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + /@babel/plugin-transform-property-literals/7.18.6: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} @@ -2459,64 +2366,51 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-property-literals/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-react-display-name/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-react-jsx-development/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12 - /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-react-jsx-self/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.5: + /@babel/plugin-transform-react-jsx-source/7.19.6_@babel+core@7.20.12: resolution: {integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-react-jsx/7.19.0_@babel+core@7.20.5: - resolution: {integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-annotate-as-pure': 7.18.6 - '@babel/helper-module-imports': 7.18.6 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5 - '@babel/types': 7.20.5 - /@babel/plugin-transform-react-jsx/7.20.7: resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==} engines: {node: '>=6.9.0'} @@ -2530,13 +2424,26 @@ packages: '@babel/types': 7.20.7 dev: false - /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-react-jsx/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-Tfq7qqD+tRj3EoDhY00nn2uP2hsRxgYGi5mLQ5TimKav0a9Lrpd4deE+fcLXU8zFYRjlKPHZhpCvfEA6qnBxqQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-annotate-as-pure': 7.18.6 + '@babel/helper-module-imports': 7.18.6 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 + '@babel/types': 7.20.7 + + /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2551,13 +2458,13 @@ packages: regenerator-transform: 0.15.1 dev: false - /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.5: + /@babel/plugin-transform-regenerator/7.20.5_@babel+core@7.20.12: resolution: {integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 regenerator-transform: 0.15.1 dev: true @@ -2571,28 +2478,28 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-reserved-words/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.5: + /@babel/plugin-transform-runtime/7.19.6_@babel+core@7.20.12: resolution: {integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.20.2 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.5 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.5 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.5 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12 semver: 6.3.0 transitivePeerDependencies: - supports-color @@ -2606,25 +2513,15 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-shorthand-properties/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - /@babel/plugin-transform-spread/7.19.0_@babel+core@7.20.5: - resolution: {integrity: sha512-RsuMk7j6n+r752EtzyScnWkQyuJdli6LdO5Klv8Yx0OfPVTcQkIUfS8clx5e9yHXzlnhOZF3CbQ8C2uP5j074w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 - /@babel/plugin-transform-spread/7.20.7: resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} engines: {node: '>=6.9.0'} @@ -2635,6 +2532,16 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 dev: false + /@babel/plugin-transform-spread/7.20.7_@babel+core@7.20.12: + resolution: {integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.20.12 + '@babel/helper-plugin-utils': 7.20.2 + '@babel/helper-skip-transparent-expression-wrappers': 7.20.0 + /@babel/plugin-transform-sticky-regex/7.18.6: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} @@ -2644,13 +2551,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-sticky-regex/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-template-literals/7.18.9: @@ -2662,13 +2569,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.5: + /@babel/plugin-transform-template-literals/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/plugin-transform-typeof-symbol/7.18.9: @@ -2680,52 +2587,39 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.5: + /@babel/plugin-transform-typeof-symbol/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true - /@babel/plugin-transform-typescript/7.20.2_@babel+core@7.20.5: - resolution: {integrity: sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.20.5_@babel+core@7.20.5 - '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.5 - transitivePeerDependencies: - - supports-color - /@babel/plugin-transform-typescript/7.20.7: resolution: {integrity: sha512-m3wVKEvf6SoszD8pu4NZz3PvfKRCMgk6D6d0Qi9hNnlM5M6CFS92EgF4EiHVLKbU0r/r7ty1hg7NPZwE7WRbYw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/helper-create-class-features-plugin': 7.20.7 + '@babel/helper-create-class-features-plugin': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-typescript': 7.20.0 transitivePeerDependencies: - supports-color dev: false - /@babel/plugin-transform-typescript/7.20.7_@babel+core@7.20.5: + /@babel/plugin-transform-typescript/7.20.7_@babel+core@7.20.12: resolution: {integrity: sha512-m3wVKEvf6SoszD8pu4NZz3PvfKRCMgk6D6d0Qi9hNnlM5M6CFS92EgF4EiHVLKbU0r/r7ty1hg7NPZwE7WRbYw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-class-features-plugin': 7.20.7_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-class-features-plugin': 7.20.12_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.5 + '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.20.12 transitivePeerDependencies: - supports-color @@ -2738,13 +2632,13 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.5: + /@babel/plugin-transform-unicode-escapes/7.18.10_@babel+core@7.20.12: resolution: {integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 dev: true @@ -2758,14 +2652,14 @@ packages: '@babel/helper-plugin-utils': 7.20.2 dev: false - /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.5: + /@babel/plugin-transform-unicode-regex/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-create-regexp-features-plugin': 7.20.5_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 /@babel/preset-env/7.20.2: @@ -2847,108 +2741,108 @@ packages: babel-plugin-polyfill-corejs2: 0.3.3 babel-plugin-polyfill-corejs3: 0.6.0 babel-plugin-polyfill-regenerator: 0.4.1 - core-js-compat: 3.27.1 + core-js-compat: 3.27.2 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: false - /@babel/preset-env/7.20.2_@babel+core@7.20.5: + /@babel/preset-env/7.20.2_@babel+core@7.20.12: resolution: {integrity: sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.5 - '@babel/core': 7.20.5 - '@babel/helper-compilation-targets': 7.20.0_@babel+core@7.20.5 + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.12 + '@babel/helper-compilation-targets': 7.20.7_@babel+core@7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.5 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-class-static-block': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.5 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.5 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.5 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-modules-amd': 7.19.6_@babel+core@7.20.5 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.5 - '@babel/plugin-transform-modules-systemjs': 7.19.6_@babel+core@7.20.5 - '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.5 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.5 - '@babel/preset-modules': 0.1.5_@babel+core@7.20.5 - '@babel/types': 7.20.5 - babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.5 - babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.5 - babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.5 - core-js-compat: 3.26.1 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-class-static-block': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-dynamic-import': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-export-namespace-from': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-proposal-json-strings': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.20.12 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-import-assertions': 7.20.0_@babel+core@7.20.12 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.20.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-modules-amd': 7.20.11_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12 + '@babel/plugin-transform-modules-systemjs': 7.20.11_@babel+core@7.20.12 + '@babel/plugin-transform-modules-umd': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.12 + '@babel/plugin-transform-new-target': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-regenerator': 7.20.5_@babel+core@7.20.12 + '@babel/plugin-transform-reserved-words': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-typeof-symbol': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12 + '@babel/preset-modules': 0.1.5_@babel+core@7.20.12 + '@babel/types': 7.20.7 + babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.20.12 + babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.20.12 + babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.20.12 + core-js-compat: 3.27.2 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-flow/7.18.6_@babel+core@7.20.5: + /@babel/preset-flow/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.5 + '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.12 /@babel/preset-modules/0.1.5: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} @@ -2962,32 +2856,32 @@ packages: esutils: 2.0.3 dev: false - /@babel/preset-modules/0.1.5_@babel+core@7.20.5: + /@babel/preset-modules/0.1.5_@babel+core@7.20.12: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.5 - '@babel/types': 7.20.5 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.20.12 + '@babel/types': 7.20.7 esutils: 2.0.3 dev: true - /@babel/preset-react/7.18.6_@babel+core@7.20.5: + /@babel/preset-react/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.5 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-pure-annotations': 7.18.6_@babel+core@7.20.12 dev: true /@babel/preset-typescript/7.18.6: @@ -3003,38 +2897,32 @@ packages: - supports-color dev: false - /@babel/preset-typescript/7.18.6_@babel+core@7.20.5: + /@babel/preset-typescript/7.18.6_@babel+core@7.20.12: resolution: {integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@babel/helper-plugin-utils': 7.20.2 '@babel/helper-validator-option': 7.18.6 - '@babel/plugin-transform-typescript': 7.20.7_@babel+core@7.20.5 + '@babel/plugin-transform-typescript': 7.20.7_@babel+core@7.20.12 transitivePeerDependencies: - supports-color - /@babel/register/7.18.9_@babel+core@7.20.5: + /@babel/register/7.18.9_@babel+core@7.20.12: resolution: {integrity: sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 pirates: 4.0.5 source-map-support: 0.5.21 - /@babel/runtime/7.20.6: - resolution: {integrity: sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.13.11 - /@babel/runtime/7.20.7: resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==} engines: {node: '>=6.9.0'} @@ -3053,14 +2941,6 @@ packages: regenerator-runtime: 0.13.11 dev: true - /@babel/template/7.18.10: - resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/parser': 7.20.5 - '@babel/types': 7.20.5 - /@babel/template/7.20.7: resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==} engines: {node: '>=6.9.0'} @@ -3087,8 +2967,8 @@ packages: - supports-color dev: true - /@babel/traverse/7.20.10: - resolution: {integrity: sha512-oSf1juCgymrSez8NI4A2sr4+uB/mFd9MXplYGPEBnfAuWmmyeVcHa6xLPiaRBcXkcb/28bgxmQLTVwFKE1yfsg==} + /@babel/traverse/7.20.12: + resolution: {integrity: sha512-MsIbFN0u+raeja38qboyF8TIT7K0BFzz/Yd/77ta4MsUsmP2RAnidIlwq7d5HFQrH/OZJecGV6B71C4zAgpoSQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 @@ -3104,23 +2984,6 @@ packages: transitivePeerDependencies: - supports-color - /@babel/traverse/7.20.5: - resolution: {integrity: sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/code-frame': 7.18.6 - '@babel/generator': 7.20.5 - '@babel/helper-environment-visitor': 7.18.9 - '@babel/helper-function-name': 7.19.0 - '@babel/helper-hoist-variables': 7.18.6 - '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.20.5 - '@babel/types': 7.20.5 - debug: 4.3.4 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color - /@babel/types/7.17.0: resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==} engines: {node: '>=6.9.0'} @@ -3129,14 +2992,6 @@ packages: to-fast-properties: 2.0.0 dev: true - /@babel/types/7.20.5: - resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/helper-string-parser': 7.19.4 - '@babel/helper-validator-identifier': 7.19.1 - to-fast-properties: 2.0.0 - /@babel/types/7.20.7: resolution: {integrity: sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==} engines: {node: '>=6.9.0'} @@ -3161,8 +3016,8 @@ packages: resolution: {integrity: sha512-IxlOMD5gOM0WfFGdeR98jHKiC82Ad1tUnSjvLS5jnRkfMEKBI+YzHA32Umw8W3Ccp5N4fNEX229BW6RaRpxRWQ==} dev: false - /@brillout/vite-plugin-import-build/0.1.0: - resolution: {integrity: sha512-zn90Jwy9TKrBSB45ikPMmxvnGRRfrreeGKtb0DWbKrxlFf+0dOPSmPxxgO7EKBahQJAC8XxeUSMKcPwPmR1b4Q==} + /@brillout/vite-plugin-import-build/0.1.2: + resolution: {integrity: sha512-TwlF2H6sp9ZEm13ysth+tz61pLkgj9foZQ0Xv+hlIBT0ht5PR1DxKHAz6N6wFqJBIzQHRsMfQWEkvwr97QT28g==} dev: false /@cnakazawa/watch/1.0.4: @@ -3181,88 +3036,90 @@ packages: dev: true optional: true - /@cspell/cspell-bundled-dicts/6.17.0: - resolution: {integrity: sha512-BA5cg2mfESbF3Fm/fIGXgbm0LhD8HKxCCiQDRN9FLaj4c69QUgFpQ9LpzGPZEtNn2Pjl2Jn/BEXX27hgaURG9g==} + /@cspell/cspell-bundled-dicts/6.19.2: + resolution: {integrity: sha512-dbzMGK1JHRTUJ8Pkw/EYbj02RMYhM1/vfrAzgRpqogj83m0cfBC/0IHELkVIl3taC1KdFZ1XHXPp7310LZ6+ww==} engines: {node: '>=14'} dependencies: - '@cspell/dict-ada': 4.0.0 + '@cspell/dict-ada': 4.0.1 '@cspell/dict-aws': 3.0.0 - '@cspell/dict-bash': 4.1.0 - '@cspell/dict-companies': 3.0.3 - '@cspell/dict-cpp': 4.0.0 + '@cspell/dict-bash': 4.1.1 + '@cspell/dict-companies': 3.0.6 + '@cspell/dict-cpp': 4.0.1 '@cspell/dict-cryptocurrencies': 3.0.1 '@cspell/dict-csharp': 4.0.2 - '@cspell/dict-css': 4.0.0 - '@cspell/dict-dart': 2.0.0 - '@cspell/dict-django': 4.0.0 - '@cspell/dict-docker': 1.1.3 - '@cspell/dict-dotnet': 4.0.0 - '@cspell/dict-elixir': 4.0.0 + '@cspell/dict-css': 4.0.2 + '@cspell/dict-dart': 2.0.1 + '@cspell/dict-django': 4.0.1 + '@cspell/dict-docker': 1.1.5 + '@cspell/dict-dotnet': 4.0.1 + '@cspell/dict-elixir': 4.0.1 '@cspell/dict-en-gb': 1.1.33 - '@cspell/dict-en_us': 4.1.0 + '@cspell/dict-en_us': 4.2.0 '@cspell/dict-filetypes': 3.0.0 '@cspell/dict-fonts': 3.0.0 - '@cspell/dict-fullstack': 3.0.0 + '@cspell/dict-fullstack': 3.1.1 + '@cspell/dict-gaming-terms': 1.0.4 '@cspell/dict-git': 2.0.0 - '@cspell/dict-golang': 5.0.0 - '@cspell/dict-haskell': 4.0.0 - '@cspell/dict-html': 4.0.1 + '@cspell/dict-golang': 5.0.1 + '@cspell/dict-haskell': 4.0.1 + '@cspell/dict-html': 4.0.2 '@cspell/dict-html-symbol-entities': 4.0.0 - '@cspell/dict-java': 5.0.2 - '@cspell/dict-latex': 3.0.0 + '@cspell/dict-java': 5.0.4 + '@cspell/dict-k8s': 1.0.0 + '@cspell/dict-latex': 3.1.0 '@cspell/dict-lorem-ipsum': 3.0.0 - '@cspell/dict-lua': 3.0.0 - '@cspell/dict-node': 4.0.1 - '@cspell/dict-npm': 5.0.0 - '@cspell/dict-php': 3.0.3 - '@cspell/dict-powershell': 3.0.0 - '@cspell/dict-public-licenses': 2.0.0 - '@cspell/dict-python': 4.0.0 - '@cspell/dict-r': 2.0.0 - '@cspell/dict-ruby': 3.0.0 - '@cspell/dict-rust': 3.0.0 - '@cspell/dict-scala': 3.0.0 - '@cspell/dict-software-terms': 3.0.5 - '@cspell/dict-sql': 2.0.0 - '@cspell/dict-svelte': 1.0.0 - '@cspell/dict-swift': 2.0.0 - '@cspell/dict-typescript': 3.0.1 + '@cspell/dict-lua': 4.0.0 + '@cspell/dict-node': 4.0.2 + '@cspell/dict-npm': 5.0.3 + '@cspell/dict-php': 3.0.4 + '@cspell/dict-powershell': 4.0.0 + '@cspell/dict-public-licenses': 2.0.1 + '@cspell/dict-python': 4.0.1 + '@cspell/dict-r': 2.0.1 + '@cspell/dict-ruby': 4.0.1 + '@cspell/dict-rust': 4.0.0 + '@cspell/dict-scala': 4.0.0 + '@cspell/dict-software-terms': 3.1.1 + '@cspell/dict-sql': 2.0.1 + '@cspell/dict-svelte': 1.0.2 + '@cspell/dict-swift': 2.0.1 + '@cspell/dict-typescript': 3.1.0 '@cspell/dict-vue': 3.0.0 dev: true - /@cspell/cspell-pipe/6.17.0: - resolution: {integrity: sha512-/VlX1cQtVBK9PFvSsaYVzV59i/2de9wrMSYDk+oGLXQzGBf5+5rPDZMJJ+QQkaexMdxoOXjCYTEXnNkPoVFyFA==} + /@cspell/cspell-pipe/6.19.2: + resolution: {integrity: sha512-OS+hUdSXU8408OjzBl1EgQ0R4OCXSFAthkN2nqByuQvIa2Ho0yRtXB9BgGCwfcAaffNzdLyTzzQsHhLjjRO0gg==} engines: {node: '>=14'} dev: true - /@cspell/cspell-service-bus/6.17.0: - resolution: {integrity: sha512-HrzR23aeC/ykSOJvUr+uX6Dv7JLc5meNABLxauiC9jexOXFB3DKmo+DvJFerRDOGz6eYSwM0VXAR62OCHrWK/Q==} + /@cspell/cspell-service-bus/6.19.2: + resolution: {integrity: sha512-PVv8q1y2KtuYIXd7tbWujJHNrIgd93k5aOEB9ffIMrrw1MhDFnuuB1l4rDN83zykLlab2dWPU29zhaGnH/EtMw==} engines: {node: '>=14'} dev: true - /@cspell/cspell-types/6.17.0: - resolution: {integrity: sha512-4FStDRqZVEP6oYtXqj1wUlF02EC5PN7giJ5f4YPeChwXyQBdZWUPQgEIKn0K9GIgKDMlKRo9tloAHVgtaZ+zOA==} + /@cspell/cspell-types/6.19.2: + resolution: {integrity: sha512-Eyivx0MAuYdOAOXrNC/oksMx5QL9NBi9Vvb+7CWPJSFk7p66B5sjcxAz6ujZcQ1WVBLoAqL75BoIqF+lgma9aA==} engines: {node: '>=14'} dev: true - /@cspell/dict-ada/4.0.0: - resolution: {integrity: sha512-M0n4ZYmpLOXbDD07Qb/Ekk0K5pX2C+mCuJ2ZxPgbTq9HGlrN43PmqrGJHWcgtVHE3fd1D4VxS85QcQP6r1Y+KQ==} + /@cspell/dict-ada/4.0.1: + resolution: {integrity: sha512-/E9o3nHrXOhYmQE43deKbxZcR3MIJAsa+66IzP9TXGHheKEx8b9dVMVVqydDDH8oom1H0U20NRPtu6KRVbT9xw==} dev: true /@cspell/dict-aws/3.0.0: resolution: {integrity: sha512-O1W6nd5y3Z00AMXQMzfiYrIJ1sTd9fB1oLr+xf/UD7b3xeHeMeYE2OtcWbt9uyeHim4tk+vkSTcmYEBKJgS5bQ==} dev: true - /@cspell/dict-bash/4.1.0: - resolution: {integrity: sha512-8pFL03ZKejynfbsa2UZ3iZ7BrT1TAGTD8ZlK822ioAb7aoDvQhYao2Bjz5cXU0uk7CyrlgsSnYX94sLfqDfTxQ==} + /@cspell/dict-bash/4.1.1: + resolution: {integrity: sha512-8czAa/Mh96wu2xr0RXQEGMTBUGkTvYn/Pb0o+gqOO1YW+poXGQc3gx0YPqILDryP/KCERrNvkWUJz3iGbvwC2A==} dev: true - /@cspell/dict-companies/3.0.3: - resolution: {integrity: sha512-qBWdwA97HdnLbxPLOUTZ+/mg9eYhi14hM7PEUM1PZ004MEIxQHum0IQpypKAwP3teR1KEsyxEPHp8v24Dw45Zg==} + /@cspell/dict-companies/3.0.6: + resolution: {integrity: sha512-6rWuwZxPisn/MP41DzBtChVgbz9b6HSjBH3X0s3k7zlBaxrw6xFAZGKH9KGFSPTiV+WD9j+IIn2/ITXERGjNLA==} dev: true - /@cspell/dict-cpp/4.0.0: - resolution: {integrity: sha512-NrCmer14tTSbPs1TwqyCjFEmWCBw0UFvAn4O3pdWuxktArHxRJ5vUQOoL2Gus2H9s3ihhOJZkcuJ47Kd21E7BQ==} + /@cspell/dict-cpp/4.0.1: + resolution: {integrity: sha512-mD6mn0XFCqHCz2j6p/7OQm3yNFn1dlQq6vip1pLynvNWDRz5yKYDVRUQCTEORT7ThS0dLpI4BjCX84YUKNhibA==} dev: true /@cspell/dict-cryptocurrencies/3.0.1: @@ -3273,36 +3130,36 @@ packages: resolution: {integrity: sha512-1JMofhLK+4p4KairF75D3A924m5ERMgd1GvzhwK2geuYgd2ZKuGW72gvXpIV7aGf52E3Uu1kDXxxGAiZ5uVG7g==} dev: true - /@cspell/dict-css/4.0.0: - resolution: {integrity: sha512-ieSeG9KAJGIr5eK0JRWqD5KXstPPUw6JUTmGWc7P/qiqj/sjmhWqWKEt7HhoSNcb8uQxAkAoxhrNpfbKzqnKAw==} + /@cspell/dict-css/4.0.2: + resolution: {integrity: sha512-0NxBcB36b1Jy23Tf5YLrD8+PvBhE3FgBci3rwtw2DEqVigEX6uodecfoh9I4kcU8PZlVsDujrUfwgzYCWh/feQ==} dev: true - /@cspell/dict-dart/2.0.0: - resolution: {integrity: sha512-p7vHszsu2uJt+F04gvNy1e5okypFfVEYHBWgpOV/Jrvs0F5A+gUzFTG2Ix9b1jkCigAULYKQkIGue+qlhSoK5Q==} + /@cspell/dict-dart/2.0.1: + resolution: {integrity: sha512-YRuDX9k2qPSWDEsM26j8o7KMvaZ0DXc74ijK/VRwaksm1CBRPBW289pe2TE2K7y4SJjTKXgQ9urOVlozeQDpuA==} dev: true - /@cspell/dict-django/4.0.0: - resolution: {integrity: sha512-k0npSzQrPQSqjR2XtumV14sv9waTRMUzPx0UfOuJZcnCCZY8ofPeqFYoku+O+9Kc9etFOziOxnScshKVDzYWOQ==} + /@cspell/dict-django/4.0.1: + resolution: {integrity: sha512-q3l7OH39qzeN2Y64jpY39SEAqki5BUzPTypnhzM40yT+LOGSWqSh9Ix5UecejtXPDVrD8vML+m7Bp5070h52HQ==} dev: true - /@cspell/dict-docker/1.1.3: - resolution: {integrity: sha512-Iz7EQGnLBgnnmzCC8iLQ7JssCCQlCjZLiCs0qhooETWLifob3nzsI9AVBh3gkYLhISLIIjBpfa4LTknskT7LzA==} + /@cspell/dict-docker/1.1.5: + resolution: {integrity: sha512-SNEohOScQ+0+y9dp/jKTx60OOJQrf5es5BJ32gh5Ck3jKXNo4wd9KLgPOmQMUpencb5SGjrBsC4rr1fyfCwytg==} dev: true - /@cspell/dict-dotnet/4.0.0: - resolution: {integrity: sha512-biZiTWyDqwVV2m+c17lLIliPDXPjOR1VwwmyMxvb3nFS84aP9x52SAVCf0w7Io1CIpUiY7XnG6/xeI7esYU78w==} + /@cspell/dict-dotnet/4.0.1: + resolution: {integrity: sha512-l11TqlUX8cDgsE/1Zrea1PqLn63s20MY3jKWMbQVB5DMDPDO2f8Pukckkwxq5p/cxDABEjuGzfF1kTX3pAakBw==} dev: true - /@cspell/dict-elixir/4.0.0: - resolution: {integrity: sha512-0TqqdQjg/zu3wAjk2FQkZ87pPIS9tA9kl6he5NJB729ysrWhND/7aSPC48QrP46VZ+oFrvFZK8DC8ZlYs16cjQ==} + /@cspell/dict-elixir/4.0.1: + resolution: {integrity: sha512-IejBqiTTWSXpvBm6yg4qUfnJR0LwbUUCJcK5wXOMKEJitu3yDfrT9GPc6NQJXgokbg9nBjEyxVIzNcLgx2x3/Q==} dev: true /@cspell/dict-en-gb/1.1.33: resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==} dev: true - /@cspell/dict-en_us/4.1.0: - resolution: {integrity: sha512-EnfxP/5U3kDhmTWcHV7Xs2Fxa9KAE5fbHm+4u8LGBOUZvSkZC5+ayjQ50CfEyTGuaI/946ITQYPRNxUZ7oqOiQ==} + /@cspell/dict-en_us/4.2.0: + resolution: {integrity: sha512-n5hz8vQ6FAp4f+ZW/raN/f4G69V1LrhNZ7kgXM+Nirmkrz16oXmd1defTulbd7yf2T2XU8DmsrTnkuRG9mSQKw==} dev: true /@cspell/dict-filetypes/3.0.0: @@ -3313,120 +3170,128 @@ packages: resolution: {integrity: sha512-zTZni0AbwBVG1MKA0WpwPyIJPVF+gp6neXDQzHcu4RUnuQ4uDu0PVEuZjGHCJWwwFoR5JmkqZxVSg1y3ufJODA==} dev: true - /@cspell/dict-fullstack/3.0.0: - resolution: {integrity: sha512-BMQRTaeReLufjMwgWqqwPdrXQ7jkVGTv7/YvOLsHFZvcAP3eM7WqX+rvdXckLhJmuuzbceFRDKs5F/9Ig2x/tQ==} + /@cspell/dict-fullstack/3.1.1: + resolution: {integrity: sha512-w2n3QvqEiufmvlBuNduury/pySrhfOcWFfCvvpUXTJvWbfRVGkt6ANZuTuy3/7Z2q4GYUqsd139te4Q8m0jRHQ==} + dev: true + + /@cspell/dict-gaming-terms/1.0.4: + resolution: {integrity: sha512-hbDduNXlk4AOY0wFxcDMWBPpm34rpqJBeqaySeoUH70eKxpxm+dvjpoRLJgyu0TmymEICCQSl6lAHTHSDiWKZg==} dev: true /@cspell/dict-git/2.0.0: resolution: {integrity: sha512-n1AxyX5Kgxij/sZFkxFJlzn3K9y/sCcgVPg/vz4WNJ4K9YeTsUmyGLA2OQI7d10GJeiuAo2AP1iZf2A8j9aj2w==} dev: true - /@cspell/dict-golang/5.0.0: - resolution: {integrity: sha512-Cbx4mVHsGbr5D+wlT0yU3n/0c5iLvciU48rSOQR7SCAzu5mTXyM1mqRu6nqnRiMv6G6mO50EL2LCTq6RZrlIOg==} + /@cspell/dict-golang/5.0.1: + resolution: {integrity: sha512-djsJC7OVKUpFdRm/aqBJEUSGP3kw/MDhAt7udYegnyQt2WjL3ZnVoG7r5eOEhPEEKzWVBYoi6UKSNpdQEodlbg==} dev: true - /@cspell/dict-haskell/4.0.0: - resolution: {integrity: sha512-U/DPpDoitGeUvduM9teDkDc1zs4Plgh0pNONDP3YbsEICErSlp1NfatD0i35Z6cR0C7I8uEe4gG2phG00zrSqw==} + /@cspell/dict-haskell/4.0.1: + resolution: {integrity: sha512-uRrl65mGrOmwT7NxspB4xKXFUenNC7IikmpRZW8Uzqbqcu7ZRCUfstuVH7T1rmjRgRkjcIjE4PC11luDou4wEQ==} dev: true /@cspell/dict-html-symbol-entities/4.0.0: resolution: {integrity: sha512-HGRu+48ErJjoweR5IbcixxETRewrBb0uxQBd6xFGcxbEYCX8CnQFTAmKI5xNaIt2PKaZiJH3ijodGSqbKdsxhw==} dev: true - /@cspell/dict-html/4.0.1: - resolution: {integrity: sha512-q5fCzkoOz+8BW79qLrnANEDnG+Jb2WS2fXERxg9xwgKBXwXUxH8ttGVNhfkLpNWe/UMm00U1IZMnVGyYLNTO5w==} + /@cspell/dict-html/4.0.2: + resolution: {integrity: sha512-BskOE2K3AtGLkcjdJmo+H6/fjdfDP4XYAsEGXpB26rvdnXAnGEstE/Q8Do6UfJCvgOVYCpdUZLcMIEpoTy7QhQ==} dev: true - /@cspell/dict-java/5.0.2: - resolution: {integrity: sha512-HWgdp8plZOdYjOkndwmgHGVxoewylZcl886PqSL6TMcDshyI0+2nePft31nIuALRvt7HL8IX++DM1uk4UfY4kg==} + /@cspell/dict-java/5.0.4: + resolution: {integrity: sha512-43VrLOLcBxavv6eyL4BpsnHrhVOgyYYeJqQRJG5XKObcpWy3+Lpadj58CfTVOr7M/Je3pUpd4tvsUhf/lWXMVA==} dev: true - /@cspell/dict-latex/3.0.0: - resolution: {integrity: sha512-QsRWj+Jll4ueVbce8ofKa743oQ2exmbVNZN70MaMbmu8PSbjW2+Rj3OdExVStesANMj7qc20inS/TgPr8DrInQ==} + /@cspell/dict-k8s/1.0.0: + resolution: {integrity: sha512-XqIql+nd2DiuPuL+qPc24bN/L1mZY75kAYcuMBMW5iYgBoivkiVOg7br/aofX3ApajvHDln6tNkPZhmhsOg6Ww==} + dev: true + + /@cspell/dict-latex/3.1.0: + resolution: {integrity: sha512-XD5S3FY0DrYiun2vm/KKOkeaD30LXp9v5EzVTVQvmxqQrQh0HvOT3TFD7lgKbyzZaG7E+l3wS94uwwm80cOmuw==} dev: true /@cspell/dict-lorem-ipsum/3.0.0: resolution: {integrity: sha512-msEV24qEpzWZs2kcEicqYlhyBpR0amfDkJOs+iffC07si9ftqtQ+yP3lf1VFLpgqw3SQh1M1vtU7RD4sPrNlcQ==} dev: true - /@cspell/dict-lua/3.0.0: - resolution: {integrity: sha512-WOhSCgS5wMxkGQJ8siB90iTB9ElquJB7FeqYSbJqqs6cUwH8G7MM/CEDPL6h7vCo0+v3GuxQ8yKWDSUcUhz9Lg==} + /@cspell/dict-lua/4.0.0: + resolution: {integrity: sha512-aQPyc/nP67tOlW6ACpio9Q5mZ/Z1hqwXC5rt5tkoQ2GsnCqeyIXDrX0CN+RGK53Lj4P02Jz/dPxs/nX8eDUFsw==} dev: true - /@cspell/dict-node/4.0.1: - resolution: {integrity: sha512-4EmT5yZFitdwnG0hYEd+Ek19zzD81Bp+n7w0kglZKldS5AvapwW6GM/SAps5YMQQc5zZMi+bMgV7NIzapREqUg==} + /@cspell/dict-node/4.0.2: + resolution: {integrity: sha512-FEQJ4TnMcXEFslqBQkXa5HposMoCGsiBv2ux4IZuIXgadXeHKHUHk60iarWpjhzNzQLyN2GD7NoRMd12bK3Llw==} dev: true - /@cspell/dict-npm/5.0.0: - resolution: {integrity: sha512-eegoQrzfAl6yht+BgQu7YkqeKbVb3FsFIobW3pBE/c8TqEnfnxRHnS4/e80PA16rO9uJgSF5iKBxTbtEIGYvsg==} + /@cspell/dict-npm/5.0.3: + resolution: {integrity: sha512-fEX67zIJISbS3gXVk/y/ZUvDIVtjc/CYJK7Mz0iTVrmlCKnLiD41lApe8v4g/12eE7hLfx/sfCXDrUWyzXVq1A==} dev: true - /@cspell/dict-php/3.0.3: - resolution: {integrity: sha512-7dvXdPTfbIF2xEob9w94/eV5SU8BkYoN0R7EQghXi0fcF7T1unK+JwDgfoEs6wqApB5aCVYwguiaj8HGX2IRIQ==} + /@cspell/dict-php/3.0.4: + resolution: {integrity: sha512-QX6zE/ZfnT3O5lSwV8EPVh8Va39ds34gSNNR8I4GWiuDpKcTkZPFi4OLoP3Tlhbl/3G0Ha35OkSDLvZfu8mnkA==} dev: true - /@cspell/dict-powershell/3.0.0: - resolution: {integrity: sha512-pkztY9Ak4oc33q+Qxcn9/CTOKo4N8YIRRE6v67WwQOncA5QIJfcOPUrjfR3Z8SpzElXhu3s9qtWWSqbCy6qmcA==} + /@cspell/dict-powershell/4.0.0: + resolution: {integrity: sha512-1Lbm+3+Sx63atl4MM3lPeCUc90JjRyKP9+exmy2cQimXNju9ngtuDWwapHUnhQ47qnzrsBY4ydm36KCfJarXJA==} dev: true - /@cspell/dict-public-licenses/2.0.0: - resolution: {integrity: sha512-NdMHnS6xiYJKlzVoTV5CBhMiDpXMZ/PDcvXiOpxeR50xkjR18O/XFP4f4eDZpxGiBSUCMFRWf4JjILJ04Rpcfg==} + /@cspell/dict-public-licenses/2.0.1: + resolution: {integrity: sha512-NZNwzkL5BqKddepDxvX/Qbji378Mso1TdnV4RFAN8hJoo6dSR0fv2TTI/Y0i/YWBmfmQGyTpEztBXtAw4qgjiA==} dev: true - /@cspell/dict-python/4.0.0: - resolution: {integrity: sha512-MC6CKbYOly3Ig25ZnhlCzPbE/QozqfQv4VYW6HcoMQ5IbHu33ddf2lzkZ89qTXlxsF5NT5qfZEkQYHYuhuL6AQ==} + /@cspell/dict-python/4.0.1: + resolution: {integrity: sha512-1wtUgyaTqRiQY0/fryk0oW22lcxNUnZ5DwteTzfatMdbgR0OHXTlHbI8vYxpHLWalSoch7EpLsnaymG+fOrt8g==} dev: true - /@cspell/dict-r/2.0.0: - resolution: {integrity: sha512-rdt1cKc3VL2uXJ2X088gRhTFreN/MkJWK1jccW1EWdFHLzDwhKfrlAkoLCp0paD6HvmloLQ+eSR09D58DdsYfA==} + /@cspell/dict-r/2.0.1: + resolution: {integrity: sha512-KCmKaeYMLm2Ip79mlYPc8p+B2uzwBp4KMkzeLd5E6jUlCL93Y5Nvq68wV5fRLDRTf7N1LvofkVFWfDcednFOgA==} dev: true - /@cspell/dict-ruby/3.0.0: - resolution: {integrity: sha512-sA98T8Y1Pmq3RStVkO14E8vTWkq6JUn8c8PldiMyYgV0yfQgwhQfFAzlSfF3Gg2B0VkIdqt2et2SPN7f9wp7fQ==} + /@cspell/dict-ruby/4.0.1: + resolution: {integrity: sha512-p9nLDsffPadPLLwdLQj4Gk0IsZ64iCSxnSCaeFXslFiD17FtJVh1YMHP7KE9M73u22Hprq+a1Yw25/xp6Tkt3g==} dev: true /@cspell/dict-rust/2.0.1: resolution: {integrity: sha512-ATDpIh0VWpQdUIZa8zqqJY4wQz3q00BTXlQCodeOmObYSb23+L6KWWzJ8mKLgpbc1lqTkogWrqxiCxlrCmqNmg==} dev: true - /@cspell/dict-rust/3.0.0: - resolution: {integrity: sha512-L1T1IBsYJZVDmfOGAbVLcpc6arWxRRCSJYvHSwEDBGrNuMyJ4jx/NvBEz5crcKf4vVKgwVlXgzQlJJZ8AVxU9w==} + /@cspell/dict-rust/4.0.0: + resolution: {integrity: sha512-nzJsgLR6/JXtM41Cr5FG89r8sBKW6aFjvCqPxeaBJYLAL0JuvsVUcd16rW2lTsdbx5J8yUQDD7mgCZFk6merJQ==} dev: true - /@cspell/dict-scala/3.0.0: - resolution: {integrity: sha512-sIiCQDIMMnNns/fzD61z5npbh5pypaKq07Orqe0+eRfdQpika8iRSGUGFHVbtdd1JzB1DyTCV2e8OwdaQiXqJQ==} + /@cspell/dict-scala/4.0.0: + resolution: {integrity: sha512-ugdjt66/Ah34yF3u3DUNjCHXnBqIuxUUfdeBobbGxfm29CNgidrISV1NUh+xi8tPynMzSTpGbBiArFBH6on5XQ==} dev: true - /@cspell/dict-software-terms/3.0.5: - resolution: {integrity: sha512-xZVcX1zsIUbLvUc/RX+YgJRvbHaGMcdkRR+Vw8UoLjmhnT0yXWLds5uwRwAVjlQIrIcHylfDWuG70Cq5nmJHfA==} + /@cspell/dict-software-terms/3.1.1: + resolution: {integrity: sha512-11vzKnocWDEUnwh03ea5Pr0vfMkGgUvDsAAjNQmnXVzDMYIjPVbttrRy54pEfBv0/RxtDFR0lDKFUAcdyjPX2w==} dev: true - /@cspell/dict-sql/2.0.0: - resolution: {integrity: sha512-J3X8VSgWpc/4McQEs138abtBw/SO3Z+vGaYi5X7XV1pKPBxjupHTTNQHSS/HWUDmVWj6fR3OV+ZGptcmvv3Clg==} + /@cspell/dict-sql/2.0.1: + resolution: {integrity: sha512-7fvVcvy751cl31KMD5j04yMGq2UKj018/1hx3FNtdUI9UuUTMvhBrTAqHEEemR3ZeIC9i/5p5SQjwQ13bn04qw==} dev: true - /@cspell/dict-svelte/1.0.0: - resolution: {integrity: sha512-5mE1bPMv+0Zdv6fiaHw86kZ47FhqNy9waUyGOT/wSWf6M5lxCZ3ze15rDruit6/62DaYo7A4/1dgKxpRo6/ZBQ==} + /@cspell/dict-svelte/1.0.2: + resolution: {integrity: sha512-rPJmnn/GsDs0btNvrRBciOhngKV98yZ9SHmg8qI6HLS8hZKvcXc0LMsf9LLuMK1TmS2+WQFAan6qeqg6bBxL2Q==} dev: true - /@cspell/dict-swift/2.0.0: - resolution: {integrity: sha512-VStJ0fKPPNIXKmxJrbGH6vKNtJCwAnQatfSH0fVj+Unf3QHHlmuLKRG0cN0aVgEIolpRkxNXJcSB3CPbYr0Xhw==} + /@cspell/dict-swift/2.0.1: + resolution: {integrity: sha512-gxrCMUOndOk7xZFmXNtkCEeroZRnS2VbeaIPiymGRHj5H+qfTAzAKxtv7jJbVA3YYvEzWcVE2oKDP4wcbhIERw==} dev: true /@cspell/dict-typescript/2.0.2: resolution: {integrity: sha512-OIoSJsCw9WHX4eDikoF5/0QbptMPZjElOcMYdYCyV03nqV5n4ot72ysTexW95yW4+fQU6uDPNQvnrUnhXXEkTA==} dev: true - /@cspell/dict-typescript/3.0.1: - resolution: {integrity: sha512-nKEtOpj+rJNIUK268/mCFDCIv1MWFdK1efm9YL4q1q3NHT+qCKhkXoA0eG8k4AaDIpsvebB8CgNIYFPxY92r4A==} + /@cspell/dict-typescript/3.1.0: + resolution: {integrity: sha512-4hdLlQMOYrUbGfJg2cWnbsBUevObwgL76TLVC0rwnrkSwzOxAxiGaG39VtRMvgAAe2lX6L+jka3fy0MmxzFOHw==} dev: true /@cspell/dict-vue/3.0.0: resolution: {integrity: sha512-niiEMPWPV9IeRBRzZ0TBZmNnkK3olkOPYxC1Ny2AX4TGlYRajcW0WUtoSHmvvjZNfWLSg2L6ruiBeuPSbjnG6A==} dev: true - /@cspell/strong-weak-map/6.17.0: - resolution: {integrity: sha512-fRghm6eoUEH7Uz57t0SEKJNm4lqODF2/DRiLd2ek7QkzUHKrCetre/5UrvdE78GIUyl0+8GLx9iFwo/XFa6dDA==} + /@cspell/strong-weak-map/6.19.2: + resolution: {integrity: sha512-0P2f1JNGw+lEyqz0jxj1ob+772HgbQEIrXXuWF9vQXKdYx0kVzkSNVAUGZjqWiO+ieGFJVr0pqHA+wGcIx1VAQ==} engines: {node: '>=14.6'} dev: true @@ -3441,15 +3306,15 @@ packages: resolution: {integrity: sha512-RpfLEtTlyIxeNPGKcokS+p3BZII/Q3bYxryFRglh5H3A3T8q9fsLYm72VYAMEOOIBLEa8o93kFLiBDUWKrwXZA==} dev: true - /@design-systems/utils/2.12.0_ib3m5ricvtkl2cll7qpr2f6lvq: + /@design-systems/utils/2.12.0_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-Y/d2Zzr+JJfN6u1gbuBUb1ufBuLMJJRZQk+dRmw8GaTpqKx5uf7cGUYGTwN02dIb3I+Tf+cW8jcGBTRiFxdYFg==} peerDependencies: '@types/react': '*' react: '>= 16.8.6' react-dom: '>= 16.8.6' dependencies: - '@babel/runtime': 7.20.6 - '@types/react': 18.0.26 + '@babel/runtime': 7.20.7 + '@types/react': 18.0.27 clsx: 1.2.1 focus-lock: 0.8.1 react: 18.2.0 @@ -3457,15 +3322,15 @@ packages: react-merge-refs: 1.1.0 dev: true - /@devtools-ds/object-inspector/1.2.0_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-VztcwqVwScSvYdvJVZBJYsVO/2Pew3JPpFV3T9fuCHQLlHcLYOV3aU/kBS2ScuE2O1JN0ZbobLqFLa3vQF54Fw==} + /@devtools-ds/object-inspector/1.2.1_5ndqzdd6t4rivxsukjv3i3ak2q: + resolution: {integrity: sha512-nrAVVj4c4Iv9958oE4HA7Mk6T+4Mn/4xBRlFDeX4Ps6SMzsqO8bKhw/y6+bOfNyb/TYHmC0/pnPS68GDVZcg5Q==} peerDependencies: react: '>= 16.8.6' dependencies: '@babel/runtime': 7.7.2 - '@devtools-ds/object-parser': 1.2.0 - '@devtools-ds/themes': 1.2.0_ib3m5ricvtkl2cll7qpr2f6lvq - '@devtools-ds/tree': 1.2.0_ib3m5ricvtkl2cll7qpr2f6lvq + '@devtools-ds/object-parser': 1.2.1 + '@devtools-ds/themes': 1.2.1_5ndqzdd6t4rivxsukjv3i3ak2q + '@devtools-ds/tree': 1.2.1_5ndqzdd6t4rivxsukjv3i3ak2q clsx: 1.1.0 react: 18.2.0 transitivePeerDependencies: @@ -3473,19 +3338,19 @@ packages: - react-dom dev: true - /@devtools-ds/object-parser/1.2.0: - resolution: {integrity: sha512-SjGGyiFFY8dtUpiWXAvRSzRT+hE11EAAysrq2PsC/GVLf2ZLyT2nHlQO5kDStywyTz+fjw7S7pyDRj1HG9YTTA==} + /@devtools-ds/object-parser/1.2.1: + resolution: {integrity: sha512-6qB+THhQfJqXyHn8wpJ1KFxXcbpLTlRyCVmkelhr0c1+MPLZcC+0XJxpVZ1AOEXPa6CWVZThBYSCvnYQEvfCqw==} dependencies: '@babel/runtime': 7.5.5 dev: true - /@devtools-ds/themes/1.2.0_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-LimEITorE6yWZWWuMc6OiBfLQgPrQqWbyMEmfRUDPa3PHXoAY4SpDxczfg31fgyRDUNWnZhjaJH5bBbu8VEbIw==} + /@devtools-ds/themes/1.2.1_5ndqzdd6t4rivxsukjv3i3ak2q: + resolution: {integrity: sha512-4/KFsHnokGxUq8CSCchINcVBb6fQ74HtEfNtMuitGtGg3VCRV0kaVSOsz6wzShzhLEaVLd5coSRQKaZj7yx72w==} peerDependencies: react: '>= 16.8.6' dependencies: '@babel/runtime': 7.5.5 - '@design-systems/utils': 2.12.0_ib3m5ricvtkl2cll7qpr2f6lvq + '@design-systems/utils': 2.12.0_5ndqzdd6t4rivxsukjv3i3ak2q clsx: 1.1.0 react: 18.2.0 transitivePeerDependencies: @@ -3493,13 +3358,13 @@ packages: - react-dom dev: true - /@devtools-ds/tree/1.2.0_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-hC4g4ocuo2eg7jsnzKdauxH0sDQiPW3KSM2+uK3kRgcmr9PzpBD5Kob+Y/WFSVKswFleftOGKL4BQLuRv0sPxA==} + /@devtools-ds/tree/1.2.1_5ndqzdd6t4rivxsukjv3i3ak2q: + resolution: {integrity: sha512-2ZHG28oWJno0gD+20EoSJO0yffm6JS5r7YzYhGMkrnLGvcCRZuwXSxMmIshSPLIR0cjidiAfGCqsrigHIR4ZQA==} peerDependencies: react: '>= 16.8.6' dependencies: '@babel/runtime': 7.7.2 - '@devtools-ds/themes': 1.2.0_ib3m5ricvtkl2cll7qpr2f6lvq + '@devtools-ds/themes': 1.2.1_5ndqzdd6t4rivxsukjv3i3ak2q clsx: 1.1.0 react: 18.2.0 transitivePeerDependencies: @@ -3540,8 +3405,8 @@ packages: requiresBuild: true optional: true - /@esbuild/android-arm/0.16.14: - resolution: {integrity: sha512-u0rITLxFIeYAvtJXBQNhNuV4YZe+MD1YvIWT7Nicj8hZAtRVZk2PgNH6KclcKDVHz1ChLKXRfX7d7tkbQBUfrg==} + /@esbuild/android-arm/0.16.17: + resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==} engines: {node: '>=12'} cpu: [arm] os: [android] @@ -3549,8 +3414,8 @@ packages: dev: true optional: true - /@esbuild/android-arm64/0.16.14: - resolution: {integrity: sha512-hTqB6Iq13pW4xaydeqQrs8vPntUnMjbkq+PgGiBMi69eYk74naG2ftHWqKnxn874kNrt5Or3rQ0PJutx2doJuQ==} + /@esbuild/android-arm64/0.16.17: + resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==} engines: {node: '>=12'} cpu: [arm64] os: [android] @@ -3558,8 +3423,8 @@ packages: dev: true optional: true - /@esbuild/android-x64/0.16.14: - resolution: {integrity: sha512-jir51K4J0K5Rt0KOcippjSNdOl7akKDVz5I6yrqdk4/m9y+rldGptQUF7qU4YpX8U61LtR+w2Tu2Ph+K/UaJOw==} + /@esbuild/android-x64/0.16.17: + resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==} engines: {node: '>=12'} cpu: [x64] os: [android] @@ -3567,8 +3432,8 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64/0.16.14: - resolution: {integrity: sha512-vrlaP81IuwPaw1fyX8fHCmivP3Gr73ojVEZy+oWJLAiZVcG8o8Phwun/XDnYIFUHxIoUnMFEpg9o38MIvlw8zw==} + /@esbuild/darwin-arm64/0.16.17: + resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==} engines: {node: '>=12'} cpu: [arm64] os: [darwin] @@ -3576,8 +3441,8 @@ packages: dev: true optional: true - /@esbuild/darwin-x64/0.16.14: - resolution: {integrity: sha512-KV1E01eC2hGYA2qzFDRCK4wdZCRUvMwCNcobgpiiOzp5QXpJBqFPdxI69j8vvzuU7oxFXDgANwEkXvpeQqyOyg==} + /@esbuild/darwin-x64/0.16.17: + resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==} engines: {node: '>=12'} cpu: [x64] os: [darwin] @@ -3585,8 +3450,8 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64/0.16.14: - resolution: {integrity: sha512-xRM1RQsazSvL42BNa5XC7ytD4ZDp0ZyJcH7aB0SlYUcHexJUKiDNKR7dlRVlpt6W0DvoRPU2nWK/9/QWS4u2fw==} + /@esbuild/freebsd-arm64/0.16.17: + resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==} engines: {node: '>=12'} cpu: [arm64] os: [freebsd] @@ -3594,8 +3459,8 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64/0.16.14: - resolution: {integrity: sha512-7ALTAn6YRRf1O6fw9jmn0rWmOx3XfwDo7njGtjy1LXhDGUjTY/vohEPM3ii5MQ411vJv1r498EEx2aBQTJcrEw==} + /@esbuild/freebsd-x64/0.16.17: + resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==} engines: {node: '>=12'} cpu: [x64] os: [freebsd] @@ -3603,8 +3468,8 @@ packages: dev: true optional: true - /@esbuild/linux-arm/0.16.14: - resolution: {integrity: sha512-X6xULug66ulrr4IzrW7qq+eq9n4MtEyagdWvj4o4cmWr+JXOT47atjpDF9j5M2zHY0UQBmqnHhwl+tXpkpIb2w==} + /@esbuild/linux-arm/0.16.17: + resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==} engines: {node: '>=12'} cpu: [arm] os: [linux] @@ -3612,8 +3477,8 @@ packages: dev: true optional: true - /@esbuild/linux-arm64/0.16.14: - resolution: {integrity: sha512-TLh2OcbBUQcMYRH4GbiDkDZfZ4t1A3GgmeXY27dHSI6xrU7IkO00MGBiJySmEV6sH3Wa6pAN6UtaVL0DwkGW4Q==} + /@esbuild/linux-arm64/0.16.17: + resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==} engines: {node: '>=12'} cpu: [arm64] os: [linux] @@ -3621,8 +3486,8 @@ packages: dev: true optional: true - /@esbuild/linux-ia32/0.16.14: - resolution: {integrity: sha512-oBZkcZ56UZDFCAfE3Fd/Jgy10EoS7Td77NzNGenM+HSY8BkdQAcI9VF9qgwdOLZ+tuftWD7UqZ26SAhtvA3XhA==} + /@esbuild/linux-ia32/0.16.17: + resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==} engines: {node: '>=12'} cpu: [ia32] os: [linux] @@ -3638,8 +3503,8 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64/0.16.14: - resolution: {integrity: sha512-udz/aEHTcuHP+xdWOJmZ5C9RQXHfZd/EhCnTi1Hfay37zH3lBxn/fNs85LA9HlsniFw2zccgcbrrTMKk7Cn1Qg==} + /@esbuild/linux-loong64/0.16.17: + resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==} engines: {node: '>=12'} cpu: [loong64] os: [linux] @@ -3647,8 +3512,8 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el/0.16.14: - resolution: {integrity: sha512-kJ2iEnikUOdC1SiTGbH0fJUgpZwa0ITDTvj9EHf9lm3I0hZ4Yugsb3M6XSl696jVxrEocLe519/8CbSpQWFSrg==} + /@esbuild/linux-mips64el/0.16.17: + resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==} engines: {node: '>=12'} cpu: [mips64el] os: [linux] @@ -3656,8 +3521,8 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64/0.16.14: - resolution: {integrity: sha512-kclKxvZvX5YhykwlJ/K9ljiY4THe5vXubXpWmr7q3Zu3WxKnUe1VOZmhkEZlqtnJx31GHPEV4SIG95IqTdfgfg==} + /@esbuild/linux-ppc64/0.16.17: + resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==} engines: {node: '>=12'} cpu: [ppc64] os: [linux] @@ -3665,8 +3530,8 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64/0.16.14: - resolution: {integrity: sha512-fdwP9Dc+Kx/cZwp9T9kNqjAE/PQjfrxbio4rZ3XnC3cVvZBjuxpkiyu/tuCwt6SbAK5th6AYNjFdEV9kGC020A==} + /@esbuild/linux-riscv64/0.16.17: + resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==} engines: {node: '>=12'} cpu: [riscv64] os: [linux] @@ -3674,8 +3539,8 @@ packages: dev: true optional: true - /@esbuild/linux-s390x/0.16.14: - resolution: {integrity: sha512-++fw3P4fQk9nqvdzbANRqimKspL8pDCnSpXomyhV7V/ISha/BZIYvZwLBWVKp9CVWKwWPJ4ktsezuLIvlJRHqA==} + /@esbuild/linux-s390x/0.16.17: + resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==} engines: {node: '>=12'} cpu: [s390x] os: [linux] @@ -3683,8 +3548,8 @@ packages: dev: true optional: true - /@esbuild/linux-x64/0.16.14: - resolution: {integrity: sha512-TomtswAuzBf2NnddlrS4W01Tv85RM9YtATB3OugY6On0PLM4Ksz5qvQKVAjtzPKoLgL1FiZtfc8mkZc4IgoMEA==} + /@esbuild/linux-x64/0.16.17: + resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==} engines: {node: '>=12'} cpu: [x64] os: [linux] @@ -3692,8 +3557,8 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64/0.16.14: - resolution: {integrity: sha512-U06pfx8P5CqyoPNfqIJmnf+5/r4mJ1S62G4zE6eOjS59naQcxi6GnscUCPH3b+hRG0qdKoGX49RAyiqW+M9aSw==} + /@esbuild/netbsd-x64/0.16.17: + resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==} engines: {node: '>=12'} cpu: [x64] os: [netbsd] @@ -3701,8 +3566,8 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64/0.16.14: - resolution: {integrity: sha512-/Jl8XVaWEZNu9rZw+n792GIBupQwHo6GDoapHSb/2xp/Ku28eK6QpR2O9cPBkzHH4OOoMH0LB6zg/qczJ5TTGg==} + /@esbuild/openbsd-x64/0.16.17: + resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==} engines: {node: '>=12'} cpu: [x64] os: [openbsd] @@ -3710,8 +3575,8 @@ packages: dev: true optional: true - /@esbuild/sunos-x64/0.16.14: - resolution: {integrity: sha512-2iI7D34uTbDn/TaSiUbEHz+fUa8KbN90vX5yYqo12QGpu6T8Jl+kxODsWuMCwoTVlqUpwfPV22nBbFPME9OPtw==} + /@esbuild/sunos-x64/0.16.17: + resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==} engines: {node: '>=12'} cpu: [x64] os: [sunos] @@ -3719,8 +3584,8 @@ packages: dev: true optional: true - /@esbuild/win32-arm64/0.16.14: - resolution: {integrity: sha512-SjlM7AHmQVTiGBJE/nqauY1aDh80UBsXZ94g4g60CDkrDMseatiqALVcIuElg4ZSYzJs8hsg5W6zS2zLpZTVgg==} + /@esbuild/win32-arm64/0.16.17: + resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==} engines: {node: '>=12'} cpu: [arm64] os: [win32] @@ -3728,8 +3593,8 @@ packages: dev: true optional: true - /@esbuild/win32-ia32/0.16.14: - resolution: {integrity: sha512-z06t5zqk8ak0Xom5HG81z2iOQ1hNWYsFQp3sczVLVx+dctWdgl80tNRyTbwjaFfui2vFO12dfE3trCTvA+HO4g==} + /@esbuild/win32-ia32/0.16.17: + resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==} engines: {node: '>=12'} cpu: [ia32] os: [win32] @@ -3737,8 +3602,8 @@ packages: dev: true optional: true - /@esbuild/win32-x64/0.16.14: - resolution: {integrity: sha512-ED1UpWcM6lAbalbbQ9TrGqJh4Y9TaASUvu8bI/0mgJcxhSByJ6rbpgqRhxYMaQ682WfA71nxUreaTO7L275zrw==} + /@esbuild/win32-x64/0.16.17: + resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==} engines: {node: '>=12'} cpu: [x64] os: [win32] @@ -3746,15 +3611,15 @@ packages: dev: true optional: true - /@eslint/eslintrc/1.3.3: - resolution: {integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==} + /@eslint/eslintrc/1.4.1: + resolution: {integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 espree: 9.4.1 globals: 13.19.0 - ignore: 5.2.1 + ignore: 5.2.4 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -3763,8 +3628,8 @@ packages: - supports-color dev: true - /@evilmartians/lefthook/1.2.4: - resolution: {integrity: sha512-dZb/eleGFas3vs2qXtpcs85LzVUHt9f43D9MY6/DB1IFNIkFDhnTYzrZ25jTabqH1laiJ5hVHtpeH/xXOhMcnA==} + /@evilmartians/lefthook/1.2.7: + resolution: {integrity: sha512-Y1zaYUUtScNIQnGm2it+mylIHS8AtMJkzmLb6QWpGpo8pmFE157yi0oZi4+7Iwy/GkT0FiPZsai/+NfU1FFxeA==} cpu: [x64, arm64, ia32] os: [darwin, linux, win32] hasBin: true @@ -3781,22 +3646,22 @@ packages: safe-json-stringify: 1.2.0 dev: false - /@expo/cli/0.4.10_6kzijzryk2izs5tfcpver6rkxq: - resolution: {integrity: sha512-c8NJOVa5b8g9CYj8ahdaN21cVE2wPwUaFrtTE0kLeRR5ASy8reWLFEOcstEtt6eufdcN/uGgBWQ0FLovgLZuzw==} + /@expo/cli/0.4.11_icwh4t4f22ilvzajfiepq6z62e: + resolution: {integrity: sha512-L9Ci9RBh0aPFEDF1AjDYPk54OgeUJIKzxF3lRgITm+lQpI3IEKjAc9LaYeQeO1mlZMUQmPkHArF8iyz1eOeVoQ==} hasBin: true dependencies: '@babel/runtime': 7.20.7 '@expo/code-signing-certificates': 0.0.5 '@expo/config': 7.0.3 '@expo/config-plugins': 5.0.4 - '@expo/dev-server': 0.1.123 + '@expo/dev-server': 0.1.124 '@expo/devcert': 1.1.0 - '@expo/json-file': 8.2.36 + '@expo/json-file': 8.2.37 '@expo/metro-config': 0.5.2 '@expo/osascript': 2.0.33 '@expo/package-manager': 0.0.57 '@expo/plist': 0.0.18 - '@expo/prebuild-config': 5.0.7_6kzijzryk2izs5tfcpver6rkxq + '@expo/prebuild-config': 5.0.7_icwh4t4f22ilvzajfiepq6z62e '@expo/rudder-sdk-node': 1.1.1 '@expo/spawn-async': 1.5.0 '@expo/xcpretty': 4.2.2 @@ -3825,7 +3690,7 @@ packages: md5-file: 3.2.3 md5hex: 1.0.0 minipass: 3.1.6 - node-fetch: 2.6.7 + node-fetch: 2.6.8 node-forge: 1.3.1 npm-package-arg: 7.0.0 ora: 3.4.0 @@ -3919,20 +3784,20 @@ packages: xml-js: 1.6.11 dev: false - /@expo/dev-server/0.1.123: - resolution: {integrity: sha512-N6UVzzeemfX0AONUSWInvkAAbqon8hRXpyYE/nMPaC6TvAmgGY5ILZAGoXwlpxwY2VKNT0Lx4s/UJ53ytIaHbA==} + /@expo/dev-server/0.1.124: + resolution: {integrity: sha512-iHczVcf+rgWupCY/3b3ePIizNtzsy1O/w8jdKv3bKvoOfXiVIVOo4KGiVDpAJOahKiMOsRlbKeemB8OLNKzdSA==} dependencies: '@expo/bunyan': 4.0.0 '@expo/metro-config': 0.5.2 '@expo/osascript': 2.0.33 '@expo/spawn-async': 1.5.0 - body-parser: 1.19.0 + body-parser: 1.20.1 chalk: 4.1.2 connect: 3.7.0 fs-extra: 9.0.0 is-docker: 2.2.1 is-wsl: 2.2.0 - node-fetch: 2.6.7 + node-fetch: 2.6.8 open: 8.4.0 resolve-from: 5.0.0 semver: 7.3.2 @@ -3972,7 +3837,7 @@ packages: getenv: 1.0.0 jimp-compact: 0.16.1 mime: 2.6.0 - node-fetch: 2.6.7 + node-fetch: 2.6.8 parse-png: 2.1.0 resolve-from: 5.0.0 semver: 7.3.2 @@ -3985,7 +3850,15 @@ packages: resolution: {integrity: sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ==} dependencies: '@babel/code-frame': 7.10.4 - json5: 1.0.1 + json5: 1.0.2 + write-file-atomic: 2.4.3 + dev: false + + /@expo/json-file/8.2.37: + resolution: {integrity: sha512-YaH6rVg11JoTS2P6LsW7ybS2CULjf40AbnAHw2F1eDPuheprNjARZMnyHFPkKv7GuxCy+B9GPcbOKgc4cgA80Q==} + dependencies: + '@babel/code-frame': 7.10.4 + json5: 2.2.3 write-file-atomic: 2.4.3 dev: false @@ -4055,7 +3928,7 @@ packages: - supports-color dev: false - /@expo/prebuild-config/5.0.7_6kzijzryk2izs5tfcpver6rkxq: + /@expo/prebuild-config/5.0.7_icwh4t4f22ilvzajfiepq6z62e: resolution: {integrity: sha512-D+TBpJUHe4+oTGFPb4o0rrw/h1xxc6wF+abJnbDHUkhnaeiHkE2O3ByS7FdiZ2FT36t0OKqeSKG/xFwWT3m1Ew==} peerDependencies: expo-modules-autolinking: '>=0.8.1' @@ -4066,7 +3939,7 @@ packages: '@expo/image-utils': 0.3.22 '@expo/json-file': 8.2.36 debug: 4.3.4 - expo-modules-autolinking: 1.0.1 + expo-modules-autolinking: 1.0.2 fs-extra: 9.1.0 resolve-from: 5.0.0 semver: 7.3.2 @@ -4084,7 +3957,7 @@ packages: '@segment/loosely-validate-event': 2.0.0 fetch-retry: 4.1.1 md5: 2.3.0 - node-fetch: 2.6.7 + node-fetch: 2.6.8 remove-trailing-slash: 0.1.1 uuid: 8.3.2 transitivePeerDependencies: @@ -4126,7 +3999,7 @@ packages: '@floating-ui/core': 0.7.3 dev: false - /@floating-ui/react-dom/0.7.2_ib3m5ricvtkl2cll7qpr2f6lvq: + /@floating-ui/react-dom/0.7.2_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-1T0sJcpHgX/u4I1OzIEhlcrvkUN8ln39nz7fMoE/2HDHrPiMFoOGR7++GYyfUmIQHkkrTinaeQsO3XWubjSvGg==} peerDependencies: react: '>=16.8.0' @@ -4135,13 +4008,13 @@ packages: '@floating-ui/dom': 0.5.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - use-isomorphic-layout-effect: 1.1.2_kzbn2opkn2327fwg5yzwzya5o4 + use-isomorphic-layout-effect: 1.1.2_3stiutgnnbnfnf3uowm5cip22i transitivePeerDependencies: - '@types/react' dev: false - /@fontsource/inter/4.5.14: - resolution: {integrity: sha512-JDC9AocdPLuGsASkvWw9hS5gtHE7K9dOwL98XLrk5yjYqxy4uVnScG58NUvFMJDVJRl/7c8Wnap6PEs+7Zvj1Q==} + /@fontsource/inter/4.5.15: + resolution: {integrity: sha512-FzleM9AxZQK2nqsTDtBiY0PMEVWvnKnuu2i09+p6DHvrHsuucoV2j0tmw+kAT3L4hvsLdAIDv6MdGehsPIdT+Q==} dev: false /@gar/promisify/1.1.3: @@ -4190,8 +4063,8 @@ packages: dependencies: '@hapi/hoek': 9.3.0 - /@headlessui/react/1.7.5_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-UZSxOfA0CYKO7QDT5OGlFvesvlR1SKkawwSjwQJwt7XQItpzRKdE3ZUQxHcg4LEz3C0Wler2s9psdb872ynwrQ==} + /@headlessui/react/1.7.7_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-BqDOd/tB9u2tA0T3Z0fn18ktw+KbVwMnkxxsGPIH2hzssrQhKB5n/6StZOyvLYP/FsYtvuXfi9I0YowKPv2c1w==} engines: {node: '>=10'} peerDependencies: react: ^16 || ^17 || ^18 @@ -4211,16 +4084,16 @@ packages: tailwindcss: 3.2.4 dev: false - /@hookform/resolvers/2.9.10_react-hook-form@7.40.0: + /@hookform/resolvers/2.9.10_react-hook-form@7.42.1: resolution: {integrity: sha512-JIL1DgJIlH9yuxcNGtyhsWX/PgNltz+5Gr6+8SX9fhXc/hPbEIk6wPI82nhgvp3uUb6ZfAM5mqg/x7KR7NAb+A==} peerDependencies: react-hook-form: ^7.0.0 dependencies: - react-hook-form: 7.40.0_react@18.2.0 + react-hook-form: 7.42.1_react@18.2.0 dev: false - /@humanwhocodes/config-array/0.11.7: - resolution: {integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==} + /@humanwhocodes/config-array/0.11.8: + resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} engines: {node: '>=10.10.0'} dependencies: '@humanwhocodes/object-schema': 1.2.1 @@ -4279,7 +4152,7 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -4304,8 +4177,8 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.15 - '@types/yargs': 15.0.14 + '@types/node': 18.11.18 + '@types/yargs': 15.0.15 chalk: 4.1.2 /@jest/types/27.5.1: @@ -4314,8 +4187,8 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.15 - '@types/yargs': 16.0.4 + '@types/node': 18.11.18 + '@types/yargs': 16.0.5 chalk: 4.1.2 /@jest/types/29.3.1: @@ -4325,8 +4198,8 @@ packages: '@jest/schemas': 29.0.0 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.11.15 - '@types/yargs': 17.0.17 + '@types/node': 18.11.18 + '@types/yargs': 17.0.20 chalk: 4.1.2 /@jridgewell/gen-mapping/0.1.1: @@ -4381,7 +4254,7 @@ packages: peerDependencies: react: '>=16.3.0' dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 hoist-non-react-statics: 3.3.2 react: 18.2.0 react-is: 16.13.1 @@ -4501,7 +4374,7 @@ packages: engines: {node: '>= 8'} dependencies: '@nodelib/fs.scandir': 2.1.5 - fastq: 1.14.0 + fastq: 1.15.0 /@npmcli/fs/1.1.1: resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} @@ -4545,7 +4418,7 @@ packages: dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 - core-js-pure: 3.26.1 + core-js-pure: 3.27.2 error-stack-parser: 2.1.4 find-up: 5.0.0 html-entities: 2.3.3 @@ -4563,13 +4436,13 @@ packages: /@radix-ui/number/1.0.0: resolution: {integrity: sha512-Ofwh/1HX69ZfJRiRBMTy7rgjAzHmwe4kW9C9Y99HTRUcYLUuVT0KESFj15rPjRgKJs20GPq8Bm5aEDJ8DuA3vA==} dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 dev: false /@radix-ui/primitive/1.0.0: resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 dev: false /@radix-ui/react-arrow/1.0.0_biqbaboplfbrettd7655fr4n2y: @@ -4578,7 +4451,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4590,7 +4463,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4602,7 +4475,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y @@ -4617,7 +4490,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y @@ -4631,20 +4504,20 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 react: 18.2.0 dev: false - /@radix-ui/react-context-menu/1.0.0_ib3m5ricvtkl2cll7qpr2f6lvq: + /@radix-ui/react-context-menu/1.0.0_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-JkwOgdXwErwEEpsmgu0Ob8zD3gzWS1brPXnNGPyZEtR6/EYyDgruQYKiihXVsCrPCdrNUHawop9I1+6JTdXPTA==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 - '@radix-ui/react-menu': 1.0.0_ib3m5ricvtkl2cll7qpr2f6lvq + '@radix-ui/react-menu': 1.0.0_5ndqzdd6t4rivxsukjv3i3ak2q '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0 '@radix-ui/react-use-controllable-state': 1.0.0_react@18.2.0 @@ -4659,17 +4532,17 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 react: 18.2.0 dev: false - /@radix-ui/react-dialog/1.0.2_ib3m5ricvtkl2cll7qpr2f6lvq: + /@radix-ui/react-dialog/1.0.2_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-EKxxp2WNSmUPkx4trtWNmZ4/vAYEg7JkAfa1HKBUnaubw9eHzf1Orr9B472lJYaYz327RHDrd4R95fsw7VR8DA==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 @@ -4682,10 +4555,10 @@ packages: '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-slot': 1.0.1_react@18.2.0 '@radix-ui/react-use-controllable-state': 1.0.0_react@18.2.0 - aria-hidden: 1.2.2_kzbn2opkn2327fwg5yzwzya5o4 + aria-hidden: 1.2.2_3stiutgnnbnfnf3uowm5cip22i react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-remove-scroll: 2.5.5_kzbn2opkn2327fwg5yzwzya5o4 + react-remove-scroll: 2.5.5_3stiutgnnbnfnf3uowm5cip22i transitivePeerDependencies: - '@types/react' dev: false @@ -4695,7 +4568,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 react: 18.2.0 dev: false @@ -4705,7 +4578,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y @@ -4715,18 +4588,18 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /@radix-ui/react-dropdown-menu/1.0.0_ib3m5ricvtkl2cll7qpr2f6lvq: + /@radix-ui/react-dropdown-menu/1.0.0_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-Ptben3TxPWrZLbInO7zjAK73kmjYuStsxfg6ujgt+EywJyREoibhZYnsSNqC+UiOtl4PdW/MOHhxVDtew5fouQ==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 '@radix-ui/react-id': 1.0.0_react@18.2.0 - '@radix-ui/react-menu': 1.0.0_ib3m5ricvtkl2cll7qpr2f6lvq + '@radix-ui/react-menu': 1.0.0_5ndqzdd6t4rivxsukjv3i3ak2q '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-use-controllable-state': 1.0.0_react@18.2.0 react: 18.2.0 @@ -4740,7 +4613,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 react: 18.2.0 dev: false @@ -4750,7 +4623,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0 @@ -4764,7 +4637,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0 @@ -4777,18 +4650,18 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-use-layout-effect': 1.0.0_react@18.2.0 react: 18.2.0 dev: false - /@radix-ui/react-menu/1.0.0_ib3m5ricvtkl2cll7qpr2f6lvq: + /@radix-ui/react-menu/1.0.0_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-icW4C64T6nHh3Z4Q1fxO1RlSShouFF4UpUmPV8FLaJZfphDljannKErDuALDx4ClRLihAPZ9i+PrLNPoWS2DMA==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-collection': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 @@ -4798,29 +4671,29 @@ packages: '@radix-ui/react-focus-guards': 1.0.0_react@18.2.0 '@radix-ui/react-focus-scope': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-id': 1.0.0_react@18.2.0 - '@radix-ui/react-popper': 1.0.0_ib3m5ricvtkl2cll7qpr2f6lvq + '@radix-ui/react-popper': 1.0.0_5ndqzdd6t4rivxsukjv3i3ak2q '@radix-ui/react-portal': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-presence': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-roving-focus': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-slot': 1.0.0_react@18.2.0 '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0 - aria-hidden: 1.2.2_kzbn2opkn2327fwg5yzwzya5o4 + aria-hidden: 1.2.2_3stiutgnnbnfnf3uowm5cip22i react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-remove-scroll: 2.5.4_kzbn2opkn2327fwg5yzwzya5o4 + react-remove-scroll: 2.5.4_3stiutgnnbnfnf3uowm5cip22i transitivePeerDependencies: - '@types/react' dev: false - /@radix-ui/react-popper/1.0.0_ib3m5ricvtkl2cll7qpr2f6lvq: + /@radix-ui/react-popper/1.0.0_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-k2dDd+1Wl0XWAMs9ZvAxxYsB9sOsEhrFQV4CINd7IUZf0wfdye4OHen9siwxvZImbzhgVeKTJi68OQmPRvVdMg==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 - '@floating-ui/react-dom': 0.7.2_ib3m5ricvtkl2cll7qpr2f6lvq + '@babel/runtime': 7.20.7 + '@floating-ui/react-dom': 0.7.2_5ndqzdd6t4rivxsukjv3i3ak2q '@radix-ui/react-arrow': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 @@ -4835,18 +4708,19 @@ packages: - '@types/react' dev: false - /@radix-ui/react-popper/1.0.1_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-J4Vj7k3k+EHNWgcKrE+BLlQfpewxA7Zd76h5I0bIa+/EqaIZ3DuwrbPj49O3wqN+STnXsBuxiHLiF0iU3yfovw==} + /@radix-ui/react-popper/1.1.0_5ndqzdd6t4rivxsukjv3i3ak2q: + resolution: {integrity: sha512-07U7jpI0dZcLRAxT7L9qs6HecSoPhDSJybF7mEGHJDBDv+ZoGCvIlva0s+WxMXwJEav+ckX3hAlXBtnHmuvlCQ==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 - '@floating-ui/react-dom': 0.7.2_ib3m5ricvtkl2cll7qpr2f6lvq + '@babel/runtime': 7.20.7 + '@floating-ui/react-dom': 0.7.2_5ndqzdd6t4rivxsukjv3i3ak2q '@radix-ui/react-arrow': 1.0.1_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y + '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0 '@radix-ui/react-use-layout-effect': 1.0.0_react@18.2.0 '@radix-ui/react-use-rect': 1.0.0_react@18.2.0 '@radix-ui/react-use-size': 1.0.0_react@18.2.0 @@ -4863,7 +4737,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-primitive': 1.0.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4875,7 +4749,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4887,7 +4761,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-use-layout-effect': 1.0.0_react@18.2.0 react: 18.2.0 @@ -4900,7 +4774,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-slot': 1.0.0_react@18.2.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4912,7 +4786,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-slot': 1.0.1_react@18.2.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -4924,7 +4798,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-context': 1.0.0_react@18.2.0 '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 @@ -4937,7 +4811,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-collection': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 @@ -4951,13 +4825,13 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /@radix-ui/react-roving-focus/1.0.1_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-TB76u5TIxKpqMpUAuYH2VqMhHYKa+4Vs1NHygo/llLvlffN6mLVsFhz0AnSFlSBAvTBYVHYAkHAyEt7x1gPJOA==} + /@radix-ui/react-roving-focus/1.0.2_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-HLK+CqD/8pN6GfJm3U+cqpqhSKYAWiOJDe+A+8MfxBnOue39QEeMa43csUn2CXCHQT0/mewh1LrrG4tfkM9DMA==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-collection': 1.0.1_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 @@ -4971,13 +4845,13 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /@radix-ui/react-select/1.1.2_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-pQmfz7T6oR5m27E3NgKOo6DLs5U1qMZaUcfTENXZnNPeyyRN8pEb6Z+xXE6zomP5sg9pgLOtir4R2Q3f2kkF9w==} + /@radix-ui/react-select/1.2.0_5ndqzdd6t4rivxsukjv3i3ak2q: + resolution: {integrity: sha512-MmXKsIBrG9GKxt8JKIn75LEPiX/zejBmj/Z36Hxtm9cdmCFzTo78QJ0Q3buLGzr0c3lzXdfgeKntmgCzaGxgkw==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/number': 1.0.0 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-collection': 1.0.1_biqbaboplfbrettd7655fr4n2y @@ -4988,6 +4862,7 @@ packages: '@radix-ui/react-focus-guards': 1.0.0_react@18.2.0 '@radix-ui/react-focus-scope': 1.0.1_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-id': 1.0.0_react@18.2.0 + '@radix-ui/react-popper': 1.1.0_5ndqzdd6t4rivxsukjv3i3ak2q '@radix-ui/react-portal': 1.0.1_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-slot': 1.0.1_react@18.2.0 @@ -4996,10 +4871,10 @@ packages: '@radix-ui/react-use-layout-effect': 1.0.0_react@18.2.0 '@radix-ui/react-use-previous': 1.0.0_react@18.2.0 '@radix-ui/react-visually-hidden': 1.0.1_biqbaboplfbrettd7655fr4n2y - aria-hidden: 1.2.2_kzbn2opkn2327fwg5yzwzya5o4 + aria-hidden: 1.2.2_3stiutgnnbnfnf3uowm5cip22i react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-remove-scroll: 2.5.5_kzbn2opkn2327fwg5yzwzya5o4 + react-remove-scroll: 2.5.5_3stiutgnnbnfnf3uowm5cip22i transitivePeerDependencies: - '@types/react' dev: false @@ -5010,7 +4885,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/number': 1.0.0 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-collection': 1.0.1_biqbaboplfbrettd7655fr4n2y @@ -5031,7 +4906,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 react: 18.2.0 dev: false @@ -5041,7 +4916,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 react: 18.2.0 dev: false @@ -5052,7 +4927,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 @@ -5064,20 +4939,20 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /@radix-ui/react-tabs/1.0.1_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-mVNEwHwgjy2G9F7b39f9VY+jF0QUZykTm0Sdv+Uz6KC4KOEIa4HLDiHU8MeEZluRtZE3aqGYDhl93O7QbJDwhg==} + /@radix-ui/react-tabs/1.0.2_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-gOUwh+HbjCuL0UCo8kZ+kdUEG8QtpdO4sMQduJ34ZEz0r4922g9REOBM+vIsfwtGxSug4Yb1msJMJYN2Bk8TpQ==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 '@radix-ui/react-direction': 1.0.0_react@18.2.0 '@radix-ui/react-id': 1.0.0_react@18.2.0 '@radix-ui/react-presence': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y - '@radix-ui/react-roving-focus': 1.0.1_biqbaboplfbrettd7655fr4n2y + '@radix-ui/react-roving-focus': 1.0.2_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-use-controllable-state': 1.0.0_react@18.2.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -5089,7 +4964,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-collection': 1.0.1_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 @@ -5106,19 +4981,19 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /@radix-ui/react-tooltip/1.0.2_ib3m5ricvtkl2cll7qpr2f6lvq: - resolution: {integrity: sha512-11gUlok2rv5mu+KBtxniOKKNKjqC/uTbgFHWoQdbF46vMV+zjDaBvCtVDK9+MTddlpmlisGPGvvojX7Qm0yr+g==} + /@radix-ui/react-tooltip/1.0.3_5ndqzdd6t4rivxsukjv3i3ak2q: + resolution: {integrity: sha512-cmc9qV4KpgqdXVTn1K8KN8MnuSXvw+E719pKwyvpCGrQ+0AA2qTjcIL3uxCj4jc4k3sDR36RF7R3H7N5hPybBQ==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0_react@18.2.0 '@radix-ui/react-context': 1.0.0_react@18.2.0 '@radix-ui/react-dismissable-layer': 1.0.2_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-id': 1.0.0_react@18.2.0 - '@radix-ui/react-popper': 1.0.1_ib3m5ricvtkl2cll7qpr2f6lvq + '@radix-ui/react-popper': 1.1.0_5ndqzdd6t4rivxsukjv3i3ak2q '@radix-ui/react-portal': 1.0.1_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-presence': 1.0.0_biqbaboplfbrettd7655fr4n2y '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y @@ -5136,7 +5011,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 react: 18.2.0 dev: false @@ -5145,7 +5020,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0 react: 18.2.0 dev: false @@ -5155,7 +5030,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-use-callback-ref': 1.0.0_react@18.2.0 react: 18.2.0 dev: false @@ -5165,7 +5040,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 react: 18.2.0 dev: false @@ -5174,7 +5049,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 react: 18.2.0 dev: false @@ -5183,7 +5058,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/rect': 1.0.0 react: 18.2.0 dev: false @@ -5193,7 +5068,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-use-layout-effect': 1.0.0_react@18.2.0 react: 18.2.0 dev: false @@ -5204,7 +5079,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 '@radix-ui/react-primitive': 1.0.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -5213,7 +5088,7 @@ packages: /@radix-ui/rect/1.0.0: resolution: {integrity: sha512-d0O68AYy/9oeEy1DdC07bz1/ZXX+DqCskRd3i4JzLSTXwefzaepQrKjXC7aNM8lTHjFLDO0pDgaEiQ7jEk+HVg==} dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 dev: false /@react-native-async-storage/async-storage/1.17.11_react-native@0.70.5: @@ -5378,7 +5253,7 @@ packages: chalk: 4.1.2 find-up: 5.0.0 mime: 2.6.0 - node-fetch: 2.6.7 + node-fetch: 2.6.8 open: 6.4.0 ora: 5.4.1 semver: 6.3.0 @@ -5406,7 +5281,7 @@ packages: '@react-native-community/cli-tools': 9.2.1 '@react-native-community/cli-types': 9.1.0 chalk: 4.1.2 - commander: 9.4.1 + commander: 9.5.0 execa: 1.0.0 find-up: 4.1.0 fs-extra: 8.1.0 @@ -5442,8 +5317,8 @@ packages: /@react-native/polyfills/2.0.0: resolution: {integrity: sha512-K0aGNn1TjalKj+65D7ycc1//H9roAQ51GJVk5ZJQFb2teECGmzd86bYDC0aYdbRf7gtovescq4Zt6FR0tgXiHQ==} - /@react-navigation/bottom-tabs/6.5.2_snzv4adhpz5nxsvfocyhhxk7km: - resolution: {integrity: sha512-iN3B1cgXdo64lqXdsTsCjN7n+5ILYKRexAu0VtW6EO8E6Z/0obK5JcCEropSiimRqVRs0kyuYj3F94Oth+hMrw==} + /@react-navigation/bottom-tabs/6.5.3_4yxn5o6hbqm4eqjpnbll7jojyu: + resolution: {integrity: sha512-ZA2Ko9fNwNaaSNn7738KpEk8Doi+yjRfTg8Wb/WvduIaK/28qNLAYWBCUEVjBC55y/9zJOzwc4R8Av2J2MG/4g==} peerDependencies: '@react-navigation/native': ^6.0.0 react: '*' @@ -5451,8 +5326,8 @@ packages: react-native-safe-area-context: '>= 3.0.0' react-native-screens: '>= 3.0.0' dependencies: - '@react-navigation/elements': 1.3.12_7smlkjcu7d3f2pvvxzzgt5tale - '@react-navigation/native': 6.1.1_tj3nonr5gneraukzjkxpsiy7yu + '@react-navigation/elements': 1.3.13_7faqyzkwzhg3btbxjjkwqxstpy + '@react-navigation/native': 6.1.2_tj3nonr5gneraukzjkxpsiy7yu color: 4.2.3 react: 18.1.0 react-native: 0.70.5_react@18.1.0 @@ -5461,8 +5336,8 @@ packages: warn-once: 0.1.1 dev: false - /@react-navigation/core/6.4.5_react@18.1.0: - resolution: {integrity: sha512-wcde35HeOM5r2P25EwLQZyJ1yhXDGKuWpnKfsSI1xrgYIvWdYi3j/yGnwgNGDelCmtUt1Fyk2pmOv8sEku9KkA==} + /@react-navigation/core/6.4.6_react@18.1.0: + resolution: {integrity: sha512-6zaAgUT5k4vhJlddUk2l52RZyMkMelHdrRv1cL57ALi2RZzERdgmbiMKhJerxFLn9S8E3PUe8vwxHzjHOZKG4w==} peerDependencies: react: '*' dependencies: @@ -5475,8 +5350,8 @@ packages: use-latest-callback: 0.1.5 dev: false - /@react-navigation/drawer/6.5.6_vgcaym4m7x2m7algtelluuejuq: - resolution: {integrity: sha512-VihTs6mNzYVs2bforp1nNKOYz4trLlJpitW+4zk2esjhTqzt22Gk716HOlhYHY9jTwkuomXqq2D+7Ze+2l8SMA==} + /@react-navigation/drawer/6.5.7_yrgdxcwem6xwiw4ihiusk6rm7m: + resolution: {integrity: sha512-k8l+G05WrP+Il8USxEcaBtZ2Jv/JFn9dS8O1IlqIoddZITrFjsyDhk3zxeE3RWDcc9u0o7HgHfgKHPXxcT8QRQ==} peerDependencies: '@react-navigation/native': ^6.0.0 react: '*' @@ -5486,8 +5361,8 @@ packages: react-native-safe-area-context: '>= 3.0.0' react-native-screens: '>= 3.0.0' dependencies: - '@react-navigation/elements': 1.3.12_7smlkjcu7d3f2pvvxzzgt5tale - '@react-navigation/native': 6.1.1_tj3nonr5gneraukzjkxpsiy7yu + '@react-navigation/elements': 1.3.13_7faqyzkwzhg3btbxjjkwqxstpy + '@react-navigation/native': 6.1.2_tj3nonr5gneraukzjkxpsiy7yu color: 4.2.3 react: 18.1.0 react-native: 0.70.5_react@18.1.0 @@ -5498,27 +5373,27 @@ packages: warn-once: 0.1.1 dev: false - /@react-navigation/elements/1.3.12_7smlkjcu7d3f2pvvxzzgt5tale: - resolution: {integrity: sha512-iVcLIYg/XJk1p6X1rSFhNhCjAJ3ORqNT2/bJqw7I/liujeJAoz1oZ5JDoEcZaA0wMDts1txxLuqAYJmhCgU2aA==} + /@react-navigation/elements/1.3.13_7faqyzkwzhg3btbxjjkwqxstpy: + resolution: {integrity: sha512-LqqK5s2ZfYHn2cQ376jC5V9dQztLH5ixkkJj9WR7JY2g4SghDd39WJhL3Jillw1Mu3F3b9sZwvAK+QkXhnDeAA==} peerDependencies: '@react-navigation/native': ^6.0.0 react: '*' react-native: '*' react-native-safe-area-context: '>= 3.0.0' dependencies: - '@react-navigation/native': 6.1.1_tj3nonr5gneraukzjkxpsiy7yu + '@react-navigation/native': 6.1.2_tj3nonr5gneraukzjkxpsiy7yu react: 18.1.0 react-native: 0.70.5_react@18.1.0 react-native-safe-area-context: 4.4.1_tj3nonr5gneraukzjkxpsiy7yu dev: false - /@react-navigation/native/6.1.1_tj3nonr5gneraukzjkxpsiy7yu: - resolution: {integrity: sha512-iIozx9c66EjSFyzKrZPixnk6vBuivYXp0jmbKCJXNIa7MY+8OLx9CXj/+1py/l/OGlXDhI6jiUWWetOfOtMaBQ==} + /@react-navigation/native/6.1.2_tj3nonr5gneraukzjkxpsiy7yu: + resolution: {integrity: sha512-qLUe0asHofr5EhxKjvUBJ9DrPPmR4535IEwmW3oU4DRb3cLbNysjajJKHL8kcYtqPvn9Bx9QZG2x0PMb2vN23A==} peerDependencies: react: '*' react-native: '*' dependencies: - '@react-navigation/core': 6.4.5_react@18.1.0 + '@react-navigation/core': 6.4.6_react@18.1.0 escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.4 @@ -5532,8 +5407,8 @@ packages: nanoid: 3.3.4 dev: false - /@react-navigation/stack/6.3.10_tyjudtnlcig67xhyismbj37vsy: - resolution: {integrity: sha512-mghQpCbGBI9jpwYmhXDI5drGOxz6F9hLxQgLeu1IsTSA9767Edov7TDt5n/PTJqhpOru7/xoNMs4yhp9ykVhng==} + /@react-navigation/stack/6.3.11_omkqc3xm6hu7gsihfbjfmuohle: + resolution: {integrity: sha512-GWOAyJfPEsjVwDWec1ERwWL5LvManJucCRUZetJqCBs4/mV7HXEt2x6l3SMitHxH1+K+9XuYXI+wBTbK1WDYOA==} peerDependencies: '@react-navigation/native': ^6.0.0 react: '*' @@ -5542,8 +5417,8 @@ packages: react-native-safe-area-context: '>= 3.0.0' react-native-screens: '>= 3.0.0' dependencies: - '@react-navigation/elements': 1.3.12_7smlkjcu7d3f2pvvxzzgt5tale - '@react-navigation/native': 6.1.1_tj3nonr5gneraukzjkxpsiy7yu + '@react-navigation/elements': 1.3.13_7faqyzkwzhg3btbxjjkwqxstpy + '@react-navigation/native': 6.1.2_tj3nonr5gneraukzjkxpsiy7yu color: 4.2.3 react: 18.1.0 react-native: 0.70.5_react@18.1.0 @@ -5553,113 +5428,113 @@ packages: warn-once: 0.1.1 dev: false - /@react-spring/animated/9.6.0_react@18.2.0: - resolution: {integrity: sha512-YFBLQ3bnGlUaWA9eVcZ7K1nfgVSF30XPfwqag5hlswYcMi7C5zVriFqN4oxRyDAFHfmNpPfFCRHmgP52L3GF1A==} + /@react-spring/animated/9.6.1_react@18.2.0: + resolution: {integrity: sha512-ls/rJBrAqiAYozjLo5EPPLLOb1LM0lNVQcXODTC1SMtS6DbuBCPaKco5svFUQFMP2dso3O+qcC4k9FsKc0KxMQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@react-spring/shared': 9.6.0_react@18.2.0 - '@react-spring/types': 9.6.0 + '@react-spring/shared': 9.6.1_react@18.2.0 + '@react-spring/types': 9.6.1 react: 18.2.0 dev: false - /@react-spring/core/9.6.0_react@18.2.0: - resolution: {integrity: sha512-CCU6MOp6Hk29qFhC+8/Hty5Rh8b4TcHvLjFX1GP9i2iXvw77WayRyy+Wi+KCt+RD+xXO2fi9bNWcloOHPHJp/g==} + /@react-spring/core/9.6.1_react@18.2.0: + resolution: {integrity: sha512-3HAAinAyCPessyQNNXe5W0OHzRfa8Yo5P748paPcmMowZ/4sMfaZ2ZB6e5x5khQI8NusOHj8nquoutd6FRY5WQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@react-spring/animated': 9.6.0_react@18.2.0 - '@react-spring/rafz': 9.6.0 - '@react-spring/shared': 9.6.0_react@18.2.0 - '@react-spring/types': 9.6.0 + '@react-spring/animated': 9.6.1_react@18.2.0 + '@react-spring/rafz': 9.6.1 + '@react-spring/shared': 9.6.1_react@18.2.0 + '@react-spring/types': 9.6.1 react: 18.2.0 dev: false - /@react-spring/konva/9.6.0_react@18.2.0: - resolution: {integrity: sha512-lRSF+2YQYeRH0RTZMV/ytcoXF7lDwn5BaY9oAXpLNtITpmlvDJrMQ3LgMrppywaujShF4F6ImZQB5dDlUX9CnQ==} + /@react-spring/konva/9.6.1_react@18.2.0: + resolution: {integrity: sha512-MevnU+tnG1LPsmMRpfJfevfLtI0ObIvrwYc+Xg+kmYJe00vwMRSdulQOztKANKalFXBewwk72XrQCeRLXFaUIg==} peerDependencies: konva: '>=2.6' react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-konva: ^16.8.0 || ^17.0.0 dependencies: - '@react-spring/animated': 9.6.0_react@18.2.0 - '@react-spring/core': 9.6.0_react@18.2.0 - '@react-spring/shared': 9.6.0_react@18.2.0 - '@react-spring/types': 9.6.0 + '@react-spring/animated': 9.6.1_react@18.2.0 + '@react-spring/core': 9.6.1_react@18.2.0 + '@react-spring/shared': 9.6.1_react@18.2.0 + '@react-spring/types': 9.6.1 react: 18.2.0 dev: false - /@react-spring/native/9.6.0_react@18.2.0: - resolution: {integrity: sha512-medVvnMkJ7GvQP4UfodiemOoNvyMIriGt9XMX0UfYDFjD/WEXBk63G/StI/hwCARRYnFdvgN1DT0Ywlv1JqJYQ==} + /@react-spring/native/9.6.1_react@18.2.0: + resolution: {integrity: sha512-ZIfSytxFGLw4gYOb8gsmwG0+JZYxuM/Y1XPCXCkhuoMn+RmOYrr0kQ4gLczbmf+TRxth7OT1c8vBYz0+SCGcIQ==} peerDependencies: react: ^16.8.0 || >=17.0.0 || >=18.0.0 react-native: '>=0.58' dependencies: - '@react-spring/animated': 9.6.0_react@18.2.0 - '@react-spring/core': 9.6.0_react@18.2.0 - '@react-spring/shared': 9.6.0_react@18.2.0 - '@react-spring/types': 9.6.0 + '@react-spring/animated': 9.6.1_react@18.2.0 + '@react-spring/core': 9.6.1_react@18.2.0 + '@react-spring/shared': 9.6.1_react@18.2.0 + '@react-spring/types': 9.6.1 react: 18.2.0 dev: false - /@react-spring/rafz/9.6.0: - resolution: {integrity: sha512-Vw8IwWXWEMszef8V/yemSR8YZe4cbX84JrMMuW+UE5Ha1/mOCznlFU59fKJxQQA/UJlfY70K9oZ+aboFgWWk0g==} + /@react-spring/rafz/9.6.1: + resolution: {integrity: sha512-v6qbgNRpztJFFfSE3e2W1Uz+g8KnIBs6SmzCzcVVF61GdGfGOuBrbjIcp+nUz301awVmREKi4eMQb2Ab2gGgyQ==} dev: false - /@react-spring/shared/9.6.0_react@18.2.0: - resolution: {integrity: sha512-Kama7SJiAajZsjfTJAxLDndxeYr0Qin6Ust9Wn/gRCVC1maXJ79Su0gsQYapSA0+Nmkxdi+RiXJUDmGX6LMuuw==} + /@react-spring/shared/9.6.1_react@18.2.0: + resolution: {integrity: sha512-PBFBXabxFEuF8enNLkVqMC9h5uLRBo6GQhRMQT/nRTnemVENimgRd+0ZT4yFnAQ0AxWNiJfX3qux+bW2LbG6Bw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@react-spring/rafz': 9.6.0 - '@react-spring/types': 9.6.0 + '@react-spring/rafz': 9.6.1 + '@react-spring/types': 9.6.1 react: 18.2.0 dev: false - /@react-spring/three/9.6.0_react@18.2.0: - resolution: {integrity: sha512-7JCx7uvJyKFHs9XnRXmAlf1VCjwDiEoiNnCpjpZiOOC8AukTRNHeFNsqwa9WKpEBNciHxAivAxxzSVh6JkBk0g==} + /@react-spring/three/9.6.1_react@18.2.0: + resolution: {integrity: sha512-Tyw2YhZPKJAX3t2FcqvpLRb71CyTe1GvT3V+i+xJzfALgpk10uPGdGaQQ5Xrzmok1340DAeg2pR/MCfaW7b8AA==} peerDependencies: '@react-three/fiber': '>=6.0' react: ^16.8.0 || ^17.0.0 || ^18.0.0 three: '>=0.126' dependencies: - '@react-spring/animated': 9.6.0_react@18.2.0 - '@react-spring/core': 9.6.0_react@18.2.0 - '@react-spring/shared': 9.6.0_react@18.2.0 - '@react-spring/types': 9.6.0 + '@react-spring/animated': 9.6.1_react@18.2.0 + '@react-spring/core': 9.6.1_react@18.2.0 + '@react-spring/shared': 9.6.1_react@18.2.0 + '@react-spring/types': 9.6.1 react: 18.2.0 dev: false - /@react-spring/types/9.6.0: - resolution: {integrity: sha512-XOWupgf+/rMhQTiIxZzjVRw+4ZNkXcO5tuha3pOBNK88a7LPGjM6imdS1aQ2kl3y1sBy0f9JrclNShfASbkvTw==} + /@react-spring/types/9.6.1: + resolution: {integrity: sha512-POu8Mk0hIU3lRXB3bGIGe4VHIwwDsQyoD1F394OK7STTiX9w4dG3cTLljjYswkQN+hDSHRrj4O36kuVa7KPU8Q==} dev: false - /@react-spring/web/9.6.0_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-ztdkBmRZB020MEPEU8gXlbkE6858/IdA2P37RvcjOHq4tEpIizrsh/XTipU+T5iyrbT6UQLnh4JnIWow4jfOmg==} + /@react-spring/web/9.6.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-X2zR6q2Z+FjsWfGAmAXlQaoUHbPmfuCaXpuM6TcwXPpLE1ZD4A1eys/wpXboFQmDkjnrlTmKvpVna1MjWpZ5Hw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@react-spring/animated': 9.6.0_react@18.2.0 - '@react-spring/core': 9.6.0_react@18.2.0 - '@react-spring/shared': 9.6.0_react@18.2.0 - '@react-spring/types': 9.6.0 + '@react-spring/animated': 9.6.1_react@18.2.0 + '@react-spring/core': 9.6.1_react@18.2.0 + '@react-spring/shared': 9.6.1_react@18.2.0 + '@react-spring/types': 9.6.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /@react-spring/zdog/9.6.0_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-YUOnOqVR9PY5vAxIhT4b/P0d+WT4Ze76o9bydsadHx3o3vO9yVl9FiImOUUY9iDCwvfcj31FoUVW0CosdHA4EQ==} + /@react-spring/zdog/9.6.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-0jSGm2OFW/+/+4dkRp46KzEkcLVfzV2k6DO1om0dLDtQ4q6FpX4dmDTlRc7Apzin6VtfQONMFIGITtbqoS28MQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 react-zdog: '>=1.0' zdog: '>=1.0' dependencies: - '@react-spring/animated': 9.6.0_react@18.2.0 - '@react-spring/core': 9.6.0_react@18.2.0 - '@react-spring/shared': 9.6.0_react@18.2.0 - '@react-spring/types': 9.6.0 + '@react-spring/animated': 9.6.1_react@18.2.0 + '@react-spring/core': 9.6.1_react@18.2.0 + '@react-spring/shared': 9.6.1_react@18.2.0 + '@react-spring/types': 9.6.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false @@ -5758,36 +5633,36 @@ packages: /@rspc/client/0.0.0-main-7c0a67c1: resolution: {integrity: sha512-PpFkqhp8KlfdFSa8f/Ff5nOg8jhHNq12q8p0ZLYU/1K68JVPQRIk432zpXg48QT/MQbMrogx/PF5E7refhEtvw==} - /@rspc/react/0.0.0-main-7c0a67c1_45mkgylr6uf2hod2xfbcqw3nyi: + /@rspc/react/0.0.0-main-7c0a67c1_7aie4jek34mpa466duyggl5x24: resolution: {integrity: sha512-SpsYJ+k/wXUCBDwVuu0WYOVRnrYzQaXyjHGIy/bSVphtYkMhJuZ3UlP2/YxMX4hj4wlDpsTZECzvez5D1vX+pw==} peerDependencies: '@tanstack/react-query': ^4.8.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@rspc/client': 0.0.0-main-7c0a67c1 - '@tanstack/react-query': 4.19.1_biqbaboplfbrettd7655fr4n2y - react: 18.2.0 - dev: true - - /@rspc/react/0.0.0-main-7c0a67c1_kw6vkyhizcdptco2nddor2skfy: - resolution: {integrity: sha512-SpsYJ+k/wXUCBDwVuu0WYOVRnrYzQaXyjHGIy/bSVphtYkMhJuZ3UlP2/YxMX4hj4wlDpsTZECzvez5D1vX+pw==} - peerDependencies: - '@tanstack/react-query': ^4.8.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - '@rspc/client': 0.0.0-main-7c0a67c1 - '@tanstack/react-query': 4.20.9_tj3nonr5gneraukzjkxpsiy7yu + '@tanstack/react-query': 4.22.0_tj3nonr5gneraukzjkxpsiy7yu react: 18.1.0 dev: false - /@rspc/react/0.0.0-main-7c0a67c1_tbzjkhe5jt5eajidrzbcozbyna: + /@rspc/react/0.0.0-main-7c0a67c1_ews3p2w6ewwkufep3giz5zum7m: resolution: {integrity: sha512-SpsYJ+k/wXUCBDwVuu0WYOVRnrYzQaXyjHGIy/bSVphtYkMhJuZ3UlP2/YxMX4hj4wlDpsTZECzvez5D1vX+pw==} peerDependencies: '@tanstack/react-query': ^4.8.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@rspc/client': 0.0.0-main-7c0a67c1 - '@tanstack/react-query': 4.19.1 + '@tanstack/react-query': 4.22.0_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + dev: true + + /@rspc/react/0.0.0-main-7c0a67c1_tqsbl3x6ixew47ctvte2nz2yki: + resolution: {integrity: sha512-SpsYJ+k/wXUCBDwVuu0WYOVRnrYzQaXyjHGIy/bSVphtYkMhJuZ3UlP2/YxMX4hj4wlDpsTZECzvez5D1vX+pw==} + peerDependencies: + '@tanstack/react-query': ^4.8.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + '@rspc/client': 0.0.0-main-7c0a67c1 + '@tanstack/react-query': 4.22.0 dev: false /@rspc/tauri/0.0.0-main-7c0a67c1_@tauri-apps+api@1.1.0: @@ -5806,35 +5681,45 @@ packages: join-component: 1.1.0 dev: false - /@sentry/browser/7.24.2: - resolution: {integrity: sha512-X6NbQT0Dp+h54j73TPLgWf3yyLyTZGJI5WQSGEsNIroqhVzD3UF8M+E+3roYpSJDDyYdfuM+WBme+MYkmeqHIw==} + /@sentry/browser/7.31.1: + resolution: {integrity: sha512-Rg9F61S1tz1Dv3iUyyGP26bxoi7WJAG2+f2fBbSmFuJ+JTH4Jvu2/F1bBig8Dz01ejzVhbNSUUCfoDhSvksIsQ==} engines: {node: '>=8'} dependencies: - '@sentry/core': 7.24.2 - '@sentry/types': 7.24.2 - '@sentry/utils': 7.24.2 + '@sentry/core': 7.31.1 + '@sentry/replay': 7.31.1 + '@sentry/types': 7.31.1 + '@sentry/utils': 7.31.1 tslib: 1.14.1 dev: false - /@sentry/core/7.24.2: - resolution: {integrity: sha512-CDfrVvr3PQ0qImJv7/6yN/5hxhwxy1HicxTL9K5RwSDoXqgK3kUGv/WmTvPNIVB2RQKodLwzS2T52NFRxRoqNw==} + /@sentry/core/7.31.1: + resolution: {integrity: sha512-quaNU6z8jabmatBTDi28Wpff2yzfWIp/IU4bbi2QOtEiCNT+TQJXqlRTRMu9xLrX7YzyKCL5X2gbit/85lyWUg==} engines: {node: '>=8'} dependencies: - '@sentry/types': 7.24.2 - '@sentry/utils': 7.24.2 + '@sentry/types': 7.31.1 + '@sentry/utils': 7.31.1 tslib: 1.14.1 dev: false - /@sentry/types/7.24.2: - resolution: {integrity: sha512-x2LEnKBPzUVzTGspvB0CjZmt1dWeJsLVHGeDKPUMUm004nIscFCxJsmYefqaJQdaIUMqDit5ApwcmKchuK6VKQ==} + /@sentry/replay/7.31.1: + resolution: {integrity: sha512-sLArvwZn6IwA/bASctyhxN7LhdCXJvMmyTynRfmk7pzuNzBMc5CNlHeIsDpHrfQuH53IKicvl6cHnHyclu5DSA==} + engines: {node: '>=12'} + dependencies: + '@sentry/core': 7.31.1 + '@sentry/types': 7.31.1 + '@sentry/utils': 7.31.1 + dev: false + + /@sentry/types/7.31.1: + resolution: {integrity: sha512-1uzr2l0AxEnxUX/S0EdmXUQ15/kDsam8Nbdw4Gai8SU764XwQgA/TTjoewVP597CDI/AHKan67Y630/Ylmkx9w==} engines: {node: '>=8'} dev: false - /@sentry/utils/7.24.2: - resolution: {integrity: sha512-VuuYEF39v43Qk6YZMid8Em/N0HqCsS5ItuTSvunMtBai2dzDAIkJ2LqemF95wWFAXrzpLy4Nx3QyGVHayMn31A==} + /@sentry/utils/7.31.1: + resolution: {integrity: sha512-ZsIPq29aNdP9q3R7qIzJhZ9WW+4DzE9g5SfGwx3UjTIxoRRBfdUJUbf7S+LKEdvCkKbyoDt6FLt5MiSJV43xBA==} engines: {node: '>=8'} dependencies: - '@sentry/types': 7.24.2 + '@sentry/types': 7.31.1 tslib: 1.14.1 dev: false @@ -5856,8 +5741,8 @@ packages: dependencies: '@hapi/hoek': 9.3.0 - /@sideway/formula/3.0.0: - resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==} + /@sideway/formula/3.0.1: + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} /@sideway/pinpoint/2.0.0: resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} @@ -5870,27 +5755,27 @@ packages: engines: {node: '>=6'} dev: true - /@splinetool/react-spline/2.2.5_wwkrfsiouqp7jcbn6zadxsxdoe: + /@splinetool/react-spline/2.2.5_3ok4u2chf7465ntwlp4i32bwcu: resolution: {integrity: sha512-eAD6+GteOT9S7Z3OdsT/6o6WNYk5NLx48zmHXathdNVdfW/P3npTxEGzEhiM+aMsf2+HbRZx0pX0WHt59HDjlg==} peerDependencies: '@splinetool/runtime': '*' react: '>=17.0.0' react-dom: '>=17.0.0' dependencies: - '@splinetool/runtime': 0.9.154 + '@splinetool/runtime': 0.9.191 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-merge-refs: 1.1.0 dev: false - /@splinetool/runtime/0.9.154: - resolution: {integrity: sha512-mhRDOql7jpdVm1gpDSCjIsgUwEZne26l4LPKZ8Z/PYcqd+k7WdUImM+IiUM8cAUmSjBeOinsJ2sNqgBCyiSxGA==} + /@splinetool/runtime/0.9.191: + resolution: {integrity: sha512-ftBeUnylp0OOEGZ/ow8gt8n8937NPdTEsoP3CEdPRWuCY/ftZjr5Yb3vwyfzSBx/MuWUkHhm6voFK1PVFADsFA==} dependencies: on-change: 4.0.2 dev: false - /@storybook/addon-actions/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-fZt8bn+oCsVDv9yuZfKL4lq77V5EqW60khHpOxLRRK69hMsE+gaylK0O5l/pelVf3Jf3+TablUG+2xWTaJHGlQ==} + /@storybook/addon-actions/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-cnLzVK1S+EydFDSuvxMmMAxVqNXijBGdV9QTgsu6ys5sOkoiXRETKZmxuN8/ZRbkfc4N+1KAylSCZOOHzBQTBQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -5900,14 +5785,14 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - core-js: 3.26.1 + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + core-js: 3.27.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -5923,8 +5808,8 @@ packages: uuid-browser: 3.1.0 dev: true - /@storybook/addon-backgrounds/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-DZY8oizDTiNLsknyrCyjf6OirwyfrXB4+UCXKXT7Xp+S5PHsdHwBZUADgM6yIwLUjDXzcsL7Ok00C1zI9qERdg==} + /@storybook/addon-backgrounds/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-9ddB3QIL8mRurf7TvYG1P9i1sW0b8Iik3kGlHggKogHER9WJPzbiUeH0XDjkASSa4rMCZdYn5CZKNkIAoJ2jdA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -5934,14 +5819,14 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - core-js: 3.26.1 + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + core-js: 3.27.2 global: 4.4.0 memoizerific: 1.11.3 react: 18.2.0 @@ -5951,8 +5836,8 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/addon-controls/6.5.14_o4scbtliisanygemawej7x2d6i: - resolution: {integrity: sha512-p16k/69GjwVtnpEiz0fmb1qoqp/H2d5aaSGDt7VleeXsdhs4Kh0kJyxfLpekHmlzT+5IkO08Nm/U8tJOHbw4Hw==} + /@storybook/addon-controls/6.5.15_o4scbtliisanygemawej7x2d6i: + resolution: {integrity: sha512-q5y0TvD0stvQoJZ2PnFmmKIRNSOI4/k2NKyZq//J2cBUBcP1reYlFxdsNwLZWmAFpSIkc2+nsliEzNxU1WByoA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -5962,16 +5847,16 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/node-logger': 6.5.14 - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - core-js: 3.26.1 + '@storybook/node-logger': 6.5.15 + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + core-js: 3.27.2 lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -5985,8 +5870,8 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.5.14_uwjrxhxalifgm75lfmfikbbazi: - resolution: {integrity: sha512-gapuzDY+dqgS4/Ap9zj5L76OSExBYtVNYej9xTiF+v0Gh4/kty9FIGlVWiqskffOmixL4nlyImpfsSH8V0JnCw==} + /@storybook/addon-docs/6.5.15_5ljiinlqbtjckr7dvlmbpn2ka4: + resolution: {integrity: sha512-k3LAu+wVp6pNhfh6B1soCRl6+7sNTNxtqy6WTrIeVJVCGbXbyc5s7gQ48gJ4WAk6meoDEZbypiP4NK1El03YLg==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -5999,26 +5884,26 @@ packages: react-dom: optional: true dependencies: - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 - '@babel/preset-env': 7.20.2_@babel+core@7.20.5 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12 + '@babel/preset-env': 7.20.2_@babel+core@7.20.12 '@jest/transform': 26.6.2 '@mdx-js/react': 1.6.22_react@18.2.0 - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/mdx1-csf': 0.0.1_@babel+core@7.20.5 - '@storybook/node-logger': 6.5.14 - '@storybook/postinstall': 6.5.14 - '@storybook/preview-web': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/source-loader': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - babel-loader: 8.3.0_@babel+core@7.20.5 - core-js: 3.26.1 + '@storybook/docs-tools': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.20.12 + '@storybook/node-logger': 6.5.15 + '@storybook/postinstall': 6.5.15 + '@storybook/preview-web': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/source-loader': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + babel-loader: 8.3.0_@babel+core@7.20.12 + core-js: 3.27.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -6040,8 +5925,8 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.5.14_uggn74keyxluoyf7tufo2lv3aq: - resolution: {integrity: sha512-6fmfDHbp1y/hF0GU0W95RLw4rzN3KGcEcpAZ8HbgTyXIF528j0hhlvkD5AjnQ5dVarlHdKAtMRZA9Y3OCEZD6A==} + /@storybook/addon-essentials/6.5.15_rj36isidkgsxpclpasfz6qwkx4: + resolution: {integrity: sha512-m3EY6BhUk6Z9Et7P5wGaRGNoEDHzJIOsLbGS/4IXvIoDfrqmNIilqUQl8kfDqpVdBSFprvpacHpKpLosu9H37w==} peerDependencies: '@babel/core': ^7.9.6 '@storybook/angular': '*' @@ -6097,21 +5982,21 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.20.5 - '@storybook/addon-actions': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-backgrounds': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-controls': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/addon-docs': 6.5.14_uwjrxhxalifgm75lfmfikbbazi - '@storybook/addon-measure': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-outline': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-toolbars': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/addon-viewport': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack5': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/node-logger': 6.5.14 - core-js: 3.26.1 + '@babel/core': 7.20.12 + '@storybook/addon-actions': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-backgrounds': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-controls': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/addon-docs': 6.5.15_5ljiinlqbtjckr7dvlmbpn2ka4 + '@storybook/addon-measure': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-outline': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-toolbars': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-viewport': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/builder-webpack5': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/node-logger': 6.5.15 + core-js: 3.27.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 @@ -6126,8 +6011,8 @@ packages: - webpack-command dev: true - /@storybook/addon-interactions/6.5.14_ezwba6lrfsfjf3koi7rmjevpvq: - resolution: {integrity: sha512-Stw/m3+T6ILrQPwyPgRNYtXZTBk9wE0KOSOUVrc6VixCcXm43nIYkUFiq4NL86lCBR4RKewfgl8U3Rn6chE8Tg==} + /@storybook/addon-interactions/6.5.15_g2qxizan4oahmorsw3xako4dfm: + resolution: {integrity: sha512-9mDhkKJeWPvfrSBvuE5zn3DAKTXw37ZT21jkQzIt+dUEu0X3jCLY1dWel3Rbr9JI/PLnUnANDHOY/YtFUfrK9Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6137,17 +6022,17 @@ packages: react-dom: optional: true dependencies: - '@devtools-ds/object-inspector': 1.2.0_ib3m5ricvtkl2cll7qpr2f6lvq - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/core-events': 6.5.14 + '@devtools-ds/object-inspector': 1.2.1_5ndqzdd6t4rivxsukjv3i3ak2q + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/instrumenter': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - core-js: 3.26.1 + '@storybook/instrumenter': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + core-js: 3.27.2 global: 4.4.0 jest-mock: 27.5.1 polished: 4.2.2 @@ -6164,8 +6049,8 @@ packages: - webpack-command dev: true - /@storybook/addon-links/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-Q4gNVFi3PqJH/YYmYJ6xX7a2VPZYs8QV97fMIjdg7/k4FLelSRj7QfsHc7jO2RGG2qQpenapO569jFoVNAW4/Q==} + /@storybook/addon-links/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-L7Q3u/xEUuy1uPq8ttjDfvDj19Hr2Crq/Us0RfowfGAAzOb7fCoiUJDP37ADtRUlCYyuKM5V/nHxN8eGpWtugw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6175,13 +6060,13 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.15_biqbaboplfbrettd7655fr4n2y '@types/qs': 6.9.7 - core-js: 3.26.1 + core-js: 3.27.2 global: 4.4.0 prop-types: 15.8.1 qs: 6.11.0 @@ -6191,8 +6076,8 @@ packages: ts-dedent: 2.2.0 dev: true - /@storybook/addon-measure/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-7JH35z7NRaNiOMYIG+tJQrQdV2fdURUK94g9x58rNBT4GCtXTclFvhWiwKHHT2CnM8xdYuKGMt3DY9U0urq3Gg==} + /@storybook/addon-measure/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-j77WX/v6qpWK8ZuYscWLIc+Am4/WOJRsVgyXLIw1EZIviQsjoXPo7mmyoTneEIbbHfPtWlLRbtmkjh8DAVDrCA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6202,20 +6087,20 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.26.1 + core-js: 3.27.2 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: true - /@storybook/addon-outline/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-eXkkRmSxfPIcztfcLxGO1Cj61Ohx4qKuYSjNh25CRc+HYbBjQkWyxOXZP+x4Ritx4IuQsgWiCJJO3/zdgXLRgw==} + /@storybook/addon-outline/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-8yGEZQOYypnliU3rsakoZlgT4Pkq8iOhX9JclVXZL/fJMQWFQGCsXqlLaRn8sx7qsa+21PPxY5bd2+Hv/Au4zQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6225,13 +6110,13 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.26.1 + core-js: 3.27.2 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -6243,7 +6128,7 @@ packages: resolution: {integrity: sha512-Nt82A7e9zJH4+A+VzLKKswUfru+T6FJTakj4dccP0i8DSn7a0CkzRPrLuZBq8tg4voV6gD74bcDf3gViCVBGtA==} engines: {node: '>=10', yarn: ^1.17.0} dependencies: - '@storybook/node-logger': 6.5.14 + '@storybook/node-logger': 6.5.15 css-loader: 3.6.0 postcss: 7.0.39 postcss-loader: 4.3.0_postcss@7.0.39 @@ -6252,8 +6137,8 @@ packages: - webpack dev: true - /@storybook/addon-toolbars/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-BZGQ9YadVRtSd5mpmrwnJta0wK1leX/vgziJX4gUKX2A5JX7VWsiswUGVukLVtE9Oa1jp3fJXE3O5Ip9moj0Ag==} + /@storybook/addon-toolbars/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-btwDTgElmaaT0dBRASABbTpq6m1UiQXQmLUmxfjLxVC3I2SK5tyJKbPQ2hVLFAQHK4cQn4u45BxdZ5LDpJ830A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6263,19 +6148,19 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - core-js: 3.26.1 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + core-js: 3.27.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 dev: true - /@storybook/addon-viewport/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-QtcQZe5ahWcMr4oRgfjeCIJtweTitArc8x1cDfS8maEEy965JJGjrR9xBIOLaw6IEiRtBuvrewYAWbRLLsUE+g==} + /@storybook/addon-viewport/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-oOiVzgFMlTnzPLVoHWQNzWdmpksrUyT6Aq8ZOyBPNMQ0RN2doIgFr7W53nZ1OBB5cPQx9q2FgWwzJ7Tawo+iVA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6285,13 +6170,13 @@ packages: react-dom: optional: true dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.14 - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - core-js: 3.26.1 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.15 + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + core-js: 3.27.2 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 @@ -6300,41 +6185,41 @@ packages: regenerator-runtime: 0.13.11 dev: true - /@storybook/addons/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-8wVy1eDKipj+dmWpVmmPa1p2jYVqDvrkWll4IsP/KU7AYFCiyCiVAd1ZPDv9EhDnwArfYYjrdJjAl6gmP0UMag==} + /@storybook/addons/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-xT31SuSX+kYGyxCNK2nqL7WTxucs3rSmhiCLovJcUjYk+QquV3c2c53Ki7lwwdDbzfXFcNAe0HJ4hoTN4jhn0Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/channels': 6.5.14 - '@storybook/client-logger': 6.5.14 - '@storybook/core-events': 6.5.14 + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.15 + '@storybook/client-logger': 6.5.15 + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y '@types/webpack-env': 1.18.0 - core-js: 3.26.1 + core-js: 3.27.2 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 dev: true - /@storybook/api/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-RpgEWV4mxD1mNsGWkjSNq3+B/LFNIhXZc4OapEEK5u0jgCZKB7OCsRL9NJZB5WfpyN+vx8SwbUTgo8DIkes3qw==} + /@storybook/api/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-BBE0KXKvj1/3jTghbIoWfrcDM0t+xO7EYtWWAXD6XlhGsZVD2Dy82Z52ONyLulMDRpMWl0OYy3h6A1YnFUH25w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/channels': 6.5.14 - '@storybook/client-logger': 6.5.14 - '@storybook/core-events': 6.5.14 + '@storybook/channels': 6.5.15 + '@storybook/client-logger': 6.5.15 + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.15_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - core-js: 3.26.1 + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + core-js: 3.27.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -6348,8 +6233,8 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.5.14_o4scbtliisanygemawej7x2d6i: - resolution: {integrity: sha512-0pv8BlsMeiP9VYU2CbCZaa3yXDt1ssb8OeTRDbFC0uFFb3eqslsH68I7XsC8ap/dr0RZR0Edtw0OW3HhkjUXXw==} + /@storybook/builder-webpack4/6.5.15_o4scbtliisanygemawej7x2d6i: + resolution: {integrity: sha512-1ZkMECUUdiYplhlgyUF5fqW3XU7eWNDJbuPUguyDOeidgJ111WZzBcLuKj+SNrzdNNgXwROCWAFybiNnX33YHQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6358,29 +6243,29 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.20.5 - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.14 - '@storybook/channels': 6.5.14 - '@storybook/client-api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/core-events': 6.5.14 - '@storybook/node-logger': 6.5.14 - '@storybook/preview-web': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/router': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@babel/core': 7.20.12 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.15 + '@storybook/channels': 6.5.15 + '@storybook/client-api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/core-events': 6.5.15 + '@storybook/node-logger': 6.5.15 + '@storybook/preview-web': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.15_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/ui': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@types/node': 16.18.8 + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.18.11 '@types/webpack': 4.41.33 autoprefixer: 9.8.8 - babel-loader: 8.3.0_em3sh5kto35xuanci4cvhzqfay + babel-loader: 8.3.0_nwtvwtk5tmh22l2urnqucz7kqu case-sensitive-paths-webpack-plugin: 2.4.0 - core-js: 3.26.1 + core-js: 3.27.2 css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 @@ -6417,8 +6302,8 @@ packages: - webpack-command dev: true - /@storybook/builder-webpack5/6.5.14_o4scbtliisanygemawej7x2d6i: - resolution: {integrity: sha512-Ukj7Wwxz/3mKn5TI5mkm2mIm583LxOz78ZrpcOgI+vpjeRlMFXmGGEb68R47SiCdZoVCfIeCXXXzBd6Q6As6QQ==} + /@storybook/builder-webpack5/6.5.15_o4scbtliisanygemawej7x2d6i: + resolution: {integrity: sha512-BnSoAmI02pvbGBSyzCx+voXb/d5EopQ78zx/lYv4CeOspBFOYEfGvAgYHILFo04V12S2/k8aSOc/tCYw5AqPtw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6427,28 +6312,28 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.20.5 - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.14 - '@storybook/channels': 6.5.14 - '@storybook/client-api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/core-events': 6.5.14 - '@storybook/node-logger': 6.5.14 - '@storybook/preview-web': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/router': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@babel/core': 7.20.12 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.15 + '@storybook/channels': 6.5.15 + '@storybook/client-api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/core-events': 6.5.15 + '@storybook/node-logger': 6.5.15 + '@storybook/preview-web': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.15_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@types/node': 16.18.8 - babel-loader: 8.3.0_ztqwsvkb6z73luspkai6ilstpu + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.18.11 + babel-loader: 8.3.0_la66t7xldg4uecmyawueag5wkm babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 - core-js: 3.26.1 + core-js: 3.27.2 css-loader: 5.2.7_webpack@5.75.0 fork-ts-checker-webpack-plugin: 6.5.2_3fkjkrd3audxnith3e7fo4fnxi glob: 7.2.3 @@ -6479,52 +6364,52 @@ packages: - webpack-command dev: true - /@storybook/channel-postmessage/6.5.14: - resolution: {integrity: sha512-0Cmdze5G3Qwxf7yYPGlJxGiY+KiEUQ+8GfpohsKGfvrP8cfSrx6VhxupHA7hDNyRh75hqZq5BrkW4HO9Ypbt5A==} + /@storybook/channel-postmessage/6.5.15: + resolution: {integrity: sha512-gMpA8LWT8lC4z5KWnaMh03aazEwtDO7GtY5kZVru+EEMgExGmaR82qgekwmLmgLj2nRJEv0o138o9IqYUcou8w==} dependencies: - '@storybook/channels': 6.5.14 - '@storybook/client-logger': 6.5.14 - '@storybook/core-events': 6.5.14 - core-js: 3.26.1 + '@storybook/channels': 6.5.15 + '@storybook/client-logger': 6.5.15 + '@storybook/core-events': 6.5.15 + core-js: 3.27.2 global: 4.4.0 qs: 6.11.0 telejson: 6.0.8 dev: true - /@storybook/channel-websocket/6.5.14: - resolution: {integrity: sha512-ZyDL5PBFWuFQ15NBljhbOaD/3FAijXvLj5oxfNris2khdkqlP6/8JmcIvfohJJcqepGZHUF9H29OaUsRC35ftA==} + /@storybook/channel-websocket/6.5.15: + resolution: {integrity: sha512-K85KEgzo5ahzJNJjyUbSNyuRmkeC8glJX2hCg2j9HiJ9rasX53qugkODrKDlWAeheulo3kR13VSuAqIuwVbmbw==} dependencies: - '@storybook/channels': 6.5.14 - '@storybook/client-logger': 6.5.14 - core-js: 3.26.1 + '@storybook/channels': 6.5.15 + '@storybook/client-logger': 6.5.15 + core-js: 3.27.2 global: 4.4.0 telejson: 6.0.8 dev: true - /@storybook/channels/6.5.14: - resolution: {integrity: sha512-hHpr4Sya6fuEDhy7vnfD2QnL5wy1CaAK9BC0FLupndXnQyKJtygfIaUP4a0B2KntuNPbzPhclb2Hb4yM7CExmQ==} + /@storybook/channels/6.5.15: + resolution: {integrity: sha512-gPpsBgirv2NCXbH4WbYqdkI0JLE96aiVuu7UEWfn9yu071pQ9CLHbhXGD9fSFNrfOkyBBY10ppSE7uCXw3Wexg==} dependencies: - core-js: 3.26.1 + core-js: 3.27.2 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/cli/6.5.14_o4scbtliisanygemawej7x2d6i: - resolution: {integrity: sha512-rhVtSJOp2Y06v8G0QyxHY3PrLfdEoKhSax3StY49D3XVf5KFn/xoQ5Y+Sz9zPIIWrRSZSk/QmbPWGpS0sRwY4g==} + /@storybook/cli/6.5.15_o4scbtliisanygemawej7x2d6i: + resolution: {integrity: sha512-oXmT6okxNsHFHTfc+fxkbnTn08ccZV1c9frVnKZt6v2+raq0B81A2DPBgh1LPZ3RHSii+U8DhbigxnyTS/CmGg==} hasBin: true dependencies: - '@babel/core': 7.20.5 - '@babel/preset-env': 7.20.2_@babel+core@7.20.5 - '@storybook/codemod': 6.5.14_@babel+preset-env@7.20.2 - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/csf-tools': 6.5.14 - '@storybook/node-logger': 6.5.14 + '@babel/core': 7.20.12 + '@babel/preset-env': 7.20.2_@babel+core@7.20.12 + '@storybook/codemod': 6.5.15_@babel+preset-env@7.20.2 + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/csf-tools': 6.5.15 + '@storybook/node-logger': 6.5.15 '@storybook/semver': 7.3.2 - '@storybook/telemetry': 6.5.14_o4scbtliisanygemawej7x2d6i + '@storybook/telemetry': 6.5.15_o4scbtliisanygemawej7x2d6i boxen: 5.1.2 chalk: 4.1.2 commander: 6.2.1 - core-js: 3.26.1 + core-js: 3.27.2 cross-spawn: 7.0.3 envinfo: 7.8.1 express: 4.18.2 @@ -6533,7 +6418,7 @@ packages: get-port: 5.1.1 globby: 11.1.0 jscodeshift: 0.13.1_@babel+preset-env@7.20.2 - json5: 2.2.1 + json5: 2.2.3 leven: 3.1.0 prompts: 2.4.2 puppeteer-core: 2.1.1 @@ -6557,22 +6442,22 @@ packages: - webpack-command dev: true - /@storybook/client-api/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-G5mBQCKn8/VqE9XDCL19ixcvu8YhaQZ0AE+EXGYXUsvPpyQ43oGoGJry5IqOzeRlc7dbglFWpMkB6PeeUD7aCw==} + /@storybook/client-api/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-0ZGpRgVz7rdbCguBqBpwObXbsVY5qlSTWDzzIBpmz8EkxW/MtK5wEyeq+0L0O+DTn41FwvH5yCGLAENpzWD8BQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.14 - '@storybook/channels': 6.5.14 - '@storybook/client-logger': 6.5.14 - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.15 + '@storybook/channels': 6.5.15 + '@storybook/client-logger': 6.5.15 + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y '@types/qs': 6.9.7 '@types/webpack-env': 1.18.0 - core-js: 3.26.1 + core-js: 3.27.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -6587,22 +6472,22 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/client-logger/6.5.14: - resolution: {integrity: sha512-r1pY69DGKzX9/GngkudthaaPxPlka16zjG7Y58psunwcoUuH3riAP1cjqhXt5+S8FKCNI/MGb82PLlCPX2Liuw==} + /@storybook/client-logger/6.5.15: + resolution: {integrity: sha512-0uyxKvodq+FycGv6aUwC1wUR6suXf2+7ywMFAOlYolI4UvNj8NyU/5AfgKT5XnxYAgPmoCiAjOE700TrfHrosw==} dependencies: - core-js: 3.26.1 + core-js: 3.27.2 global: 4.4.0 dev: true - /@storybook/codemod/6.5.14_@babel+preset-env@7.20.2: - resolution: {integrity: sha512-/u7bzXstueGE6VB3FTidd2jrd7TxdbNM/Am6eCrrApHd92WZRplKlgyZezxiCooUf3mbtdTB+MfqNqxv2JIKag==} + /@storybook/codemod/6.5.15_@babel+preset-env@7.20.2: + resolution: {integrity: sha512-WScvlWjzkdstVLIfYBRHVHiHKFAMkLI/QK07srPfcAt8jQ7gJzhTKeeslbFvLDDJ85P/ki3u9jHKpDNX5nkdUQ==} dependencies: - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 '@mdx-js/mdx': 1.6.22 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/csf-tools': 6.5.14 - '@storybook/node-logger': 6.5.14 - core-js: 3.26.1 + '@storybook/csf-tools': 6.5.15 + '@storybook/node-logger': 6.5.15 + core-js: 3.27.2 cross-spawn: 7.0.3 globby: 11.1.0 jscodeshift: 0.13.1_@babel+preset-env@7.20.2 @@ -6616,16 +6501,16 @@ packages: - supports-color dev: true - /@storybook/components/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-wqB9CF3sjxtgffnDW1G/W5SsKumsFQ0ftn/3PdrsvKULu5LM5bjNEqC2cTCWrk9vQhj+EVQxzdVM/BlPl/lSwg==} + /@storybook/components/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-bHTT0Oa3s4g+MBMaLBbX9ofMtb1AW59AzIUNGrfqW1XqJMGuUHMiJ7TSo+i5dRSFpbFygnwMEG9LfHxpR2Z0Dw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/client-logger': 6.5.14 + '@storybook/client-logger': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - core-js: 3.26.1 + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + core-js: 3.27.2 memoizerific: 1.11.3 qs: 6.11.0 react: 18.2.0 @@ -6634,8 +6519,8 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/core-client/6.5.14_fzk2o5r53sgjs5saca2d7spkha: - resolution: {integrity: sha512-d5mUgz1xSvrAdal8XKI5YOZOM/XUly90vis3DboeZRO58qSp+NH5xFYIBBED5qefDgmGU0Yv4rXHQlph96LSHQ==} + /@storybook/core-client/6.5.15_fzk2o5r53sgjs5saca2d7spkha: + resolution: {integrity: sha512-i9t4WONy2MxJwLI1FIp5ck7b52EXyJfALnxUn4O/3GTkw09J0NOKi2DPjefUsi7IB5MzFpDjDH9vw/XiTM+OZw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6645,19 +6530,19 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.14 - '@storybook/channel-websocket': 6.5.14 - '@storybook/client-api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.15 + '@storybook/channel-websocket': 6.5.15 + '@storybook/client-api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/ui': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/preview-web': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.15_biqbaboplfbrettd7655fr4n2y airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.26.1 + core-js: 3.27.2 global: 4.4.0 lodash: 4.17.21 qs: 6.11.0 @@ -6671,8 +6556,8 @@ packages: webpack: 5.75.0 dev: true - /@storybook/core-client/6.5.14_o3ten7nsuz3dqqktls46i6uq3y: - resolution: {integrity: sha512-d5mUgz1xSvrAdal8XKI5YOZOM/XUly90vis3DboeZRO58qSp+NH5xFYIBBED5qefDgmGU0Yv4rXHQlph96LSHQ==} + /@storybook/core-client/6.5.15_o3ten7nsuz3dqqktls46i6uq3y: + resolution: {integrity: sha512-i9t4WONy2MxJwLI1FIp5ck7b52EXyJfALnxUn4O/3GTkw09J0NOKi2DPjefUsi7IB5MzFpDjDH9vw/XiTM+OZw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6682,19 +6567,19 @@ packages: typescript: optional: true dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.14 - '@storybook/channel-websocket': 6.5.14 - '@storybook/client-api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.15 + '@storybook/channel-websocket': 6.5.15 + '@storybook/client-api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/ui': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/preview-web': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.15_biqbaboplfbrettd7655fr4n2y airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.26.1 + core-js: 3.27.2 global: 4.4.0 lodash: 4.17.21 qs: 6.11.0 @@ -6708,8 +6593,8 @@ packages: webpack: 4.46.0 dev: true - /@storybook/core-common/6.5.14_o4scbtliisanygemawej7x2d6i: - resolution: {integrity: sha512-MrxhYXYrtN6z/+tydjPkCIwDQm5q8Jx+w4TPdLKBZu7vzfp6T3sT12Ym96j9MJ42CvE4vSDl/Njbw6C0D+yEVw==} + /@storybook/core-common/6.5.15_o4scbtliisanygemawej7x2d6i: + resolution: {integrity: sha512-uits9o6qwHTPnjsNZP25f7hWmUBGRJ7FXtxxtEaNSmtiwk50KWxBaro7wt505lJ1Gb9vOhpNPhS7y3IxdsXNmQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6718,37 +6603,37 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-decorators': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.20.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5 - '@babel/preset-env': 7.20.2_@babel+core@7.20.5 - '@babel/preset-react': 7.18.6_@babel+core@7.20.5 - '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5 - '@babel/register': 7.18.9_@babel+core@7.20.5 - '@storybook/node-logger': 6.5.14 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-decorators': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-private-property-in-object': 7.20.5_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12 + '@babel/preset-env': 7.20.2_@babel+core@7.20.12 + '@babel/preset-react': 7.18.6_@babel+core@7.20.12 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 + '@babel/register': 7.18.9_@babel+core@7.20.12 + '@storybook/node-logger': 6.5.15 '@storybook/semver': 7.3.2 - '@types/node': 16.18.8 + '@types/node': 16.18.11 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.3.0_em3sh5kto35xuanci4cvhzqfay + babel-loader: 8.3.0_nwtvwtk5tmh22l2urnqucz7kqu babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.5 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.20.12 chalk: 4.1.2 - core-js: 3.26.1 + core-js: 3.27.2 express: 4.18.2 file-system-cache: 1.1.0 find-up: 5.0.0 @@ -6757,7 +6642,7 @@ packages: glob: 7.2.3 handlebars: 4.7.7 interpret: 2.2.0 - json5: 2.2.1 + json5: 2.2.3 lazy-universal-dotenv: 3.0.1 picomatch: 2.3.1 pkg-dir: 5.0.0 @@ -6779,14 +6664,14 @@ packages: - webpack-command dev: true - /@storybook/core-events/6.5.14: - resolution: {integrity: sha512-PLu0M8Mqt9ruN5RupgcFKHEybiSm3CdWQyylWO5FRGg+WZV3BCm0aI8ujvO1GAm+YEi57Lull+M9d6NUycTpRg==} + /@storybook/core-events/6.5.15: + resolution: {integrity: sha512-B1Ba6l5W7MeNclclqMMTMHgYgfdpB5SIhNCQFnzIz8blynzRhNFMdxvbAl6Je5G0S4xydYYd7Lno2kXQebs7HA==} dependencies: - core-js: 3.26.1 + core-js: 3.27.2 dev: true - /@storybook/core-server/6.5.14_uagv4dapw33smbwbw7677lquue: - resolution: {integrity: sha512-+Z3lHEsDpiBXt6xBwU5AVBoEkicndnHoiLwhEGPkfixy7POYEEny3cm54tteVxV8O5AHMwsHs54/QD+hHxAXnQ==} + /@storybook/core-server/6.5.15_vhwqry4max6627izwp5cp2rqwi: + resolution: {integrity: sha512-m+pZwHhCjwryeqTptyyKHSbIjnnPGKoRSnkqLTOpKQf8llZMnNQWUFrn4fx6UDKzxFQ2st2+laV8O2QbMs8qwQ==} peerDependencies: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack5': '*' @@ -6802,20 +6687,20 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/builder-webpack5': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/core-client': 6.5.14_o3ten7nsuz3dqqktls46i6uq3y - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/core-events': 6.5.14 + '@storybook/builder-webpack4': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/builder-webpack5': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/core-client': 6.5.15_o3ten7nsuz3dqqktls46i6uq3y + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/csf-tools': 6.5.14 - '@storybook/manager-webpack4': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/manager-webpack5': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/node-logger': 6.5.14 + '@storybook/csf-tools': 6.5.15 + '@storybook/manager-webpack4': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/manager-webpack5': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/node-logger': 6.5.15 '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/telemetry': 6.5.14_o4scbtliisanygemawej7x2d6i - '@types/node': 16.18.8 + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/telemetry': 6.5.15_o4scbtliisanygemawej7x2d6i + '@types/node': 16.18.11 '@types/node-fetch': 2.6.2 '@types/pretty-hrtime': 1.0.1 '@types/webpack': 4.41.33 @@ -6825,7 +6710,7 @@ packages: cli-table3: 0.6.3 commander: 6.2.1 compression: 1.7.4 - core-js: 3.26.1 + core-js: 3.27.2 cpy: 8.1.2 detect-port: 1.5.1 express: 4.18.2 @@ -6834,7 +6719,7 @@ packages: globby: 11.1.0 ip: 2.0.0 lodash: 4.17.21 - node-fetch: 2.6.7 + node-fetch: 2.6.8 open: 8.4.0 pretty-hrtime: 1.0.3 prompts: 2.4.2 @@ -6849,7 +6734,7 @@ packages: util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 - ws: 8.11.0 + ws: 8.12.0 x-default-browser: 0.4.0 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -6864,8 +6749,8 @@ packages: - webpack-command dev: true - /@storybook/core/6.5.14_6t67xle2sgrdwty6e3bdfruwf4: - resolution: {integrity: sha512-5rjwZXk++NkKWCmHt/CC+h2L4ZbOYkLJpMmaB97CwgQCA6kaF8xuJqlAwG72VUH3oV+6RntW02X6/ypgX1atPw==} + /@storybook/core/6.5.15_3hgwwzayml2erclsqgmjsey7fe: + resolution: {integrity: sha512-T9TjLxbb5P/XvLEoj0dnbtexJa0V3pqCifRlIUNkTJO0nU3PdGLMcKMSyIYWjkthAJ9oBrajnodV0UveM/epTg==} peerDependencies: '@storybook/builder-webpack5': '*' '@storybook/manager-webpack5': '*' @@ -6881,10 +6766,10 @@ packages: typescript: optional: true dependencies: - '@storybook/builder-webpack5': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/core-client': 6.5.14_fzk2o5r53sgjs5saca2d7spkha - '@storybook/core-server': 6.5.14_uagv4dapw33smbwbw7677lquue - '@storybook/manager-webpack5': 6.5.14_o4scbtliisanygemawej7x2d6i + '@storybook/builder-webpack5': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/core-client': 6.5.15_fzk2o5r53sgjs5saca2d7spkha + '@storybook/core-server': 6.5.15_vhwqry4max6627izwp5cp2rqwi + '@storybook/manager-webpack5': 6.5.15_o4scbtliisanygemawej7x2d6i react: 18.2.0 react-dom: 18.2.0_react@18.2.0 typescript: 4.9.4 @@ -6902,24 +6787,24 @@ packages: - webpack-command dev: true - /@storybook/csf-tools/6.5.14: - resolution: {integrity: sha512-PgCKgyfD6UD9aNilDxmKJRbCZwcZl8t8Orb6+vVGuzB5f0BV92NqnHS4sgAlFoZ+iqcQGUEU9vRIdUxNcyItaw==} + /@storybook/csf-tools/6.5.15: + resolution: {integrity: sha512-2LwSD7yE/ccXBc58K4vdKw/oJJg6IpC4WD51rBt2mAl5JUCkxhOq7wG/Z8Wy1lZw2LVuKNTmjVou5blGRI/bTg==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 peerDependenciesMeta: '@storybook/mdx2-csf': optional: true dependencies: - '@babel/core': 7.20.5 - '@babel/generator': 7.20.5 - '@babel/parser': 7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 - '@babel/preset-env': 7.20.2_@babel+core@7.20.5 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/core': 7.20.12 + '@babel/generator': 7.20.7 + '@babel/parser': 7.20.7 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12 + '@babel/preset-env': 7.20.2_@babel+core@7.20.12 + '@babel/traverse': 7.20.12 + '@babel/types': 7.20.7 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/mdx1-csf': 0.0.1_@babel+core@7.20.5 - core-js: 3.26.1 + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.20.12 + core-js: 3.27.2 fs-extra: 9.1.0 global: 4.4.0 regenerator-runtime: 0.13.11 @@ -6934,13 +6819,13 @@ packages: lodash: 4.17.21 dev: true - /@storybook/docs-tools/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-qA0UWvrZ7XyIWD+01NGHiiGPSbfercrxjphM9wHgF6KrO6e5iykNKIEL4elsM+EV4szfhlalQdtpnwM7WtXODA==} + /@storybook/docs-tools/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-8w78NFOtlJGuIa9vPPsr87J9iQUGmLFh7CrMS2+t9LxW+0oH5MZ8QqPQUHNuTuKsYN3r+QAmmi2pj0auZmCoKA==} dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y - core-js: 3.26.1 + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y + core-js: 3.27.2 doctrine: 3.0.0 lodash: 4.17.21 regenerator-runtime: 0.13.11 @@ -6950,21 +6835,21 @@ packages: - supports-color dev: true - /@storybook/instrumenter/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-R0yyXObz5j9HWIC33EiqscFt825Q02BNi/m8K+oYNCCqJHKhrB9ZXWfQVBcKj4BSpDttNABtJifngDkkz8J8QA==} + /@storybook/instrumenter/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-93WyH0s63RCv496eHjQ5dWFXoExXg9dlNMe7i4/FVVbWeDdb1pPVIHsLn28WxOiVQahQEAW2EA7Mao3BiBWg+A==} dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/core-events': 6.5.14 - core-js: 3.26.1 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/core-events': 6.5.15 + core-js: 3.27.2 global: 4.4.0 transitivePeerDependencies: - react - react-dom dev: true - /@storybook/manager-webpack4/6.5.14_o4scbtliisanygemawej7x2d6i: - resolution: {integrity: sha512-ixfJuaG0eiOlxn4i+LJNRUZkm+3WMsiaGUm0hw2XHF0pW3cBIA/+HyzkEwVh/fROHbsOERTkjNl0Ygl12Imw9w==} + /@storybook/manager-webpack4/6.5.15_o4scbtliisanygemawej7x2d6i: + resolution: {integrity: sha512-zRvBTMoaFO6MvHDsDLnt3tsFENhpY3k+e/UIPdqbIDMbUPGGQzxJucAM9aS/kbVSO5IVs8IflVxbeeB/uTIIfA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -6973,28 +6858,28 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 - '@babel/preset-react': 7.18.6_@babel+core@7.20.5 - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-client': 6.5.14_o3ten7nsuz3dqqktls46i6uq3y - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/node-logger': 6.5.14 - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/ui': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@types/node': 16.18.8 + '@babel/core': 7.20.12 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 + '@babel/preset-react': 7.18.6_@babel+core@7.20.12 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-client': 6.5.15_o3ten7nsuz3dqqktls46i6uq3y + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/node-logger': 6.5.15 + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.18.11 '@types/webpack': 4.41.33 - babel-loader: 8.3.0_em3sh5kto35xuanci4cvhzqfay + babel-loader: 8.3.0_nwtvwtk5tmh22l2urnqucz7kqu case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 - core-js: 3.26.1 + core-js: 3.27.2 css-loader: 3.6.0_webpack@4.46.0 express: 4.18.2 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - node-fetch: 2.6.7 + node-fetch: 2.6.8 pnp-webpack-plugin: 1.6.4_typescript@4.9.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -7021,8 +6906,8 @@ packages: - webpack-command dev: true - /@storybook/manager-webpack5/6.5.14_o4scbtliisanygemawej7x2d6i: - resolution: {integrity: sha512-Z9uXhaBPpUhbLEYkZVm95vKSmyxXk+DLqa1apAQEmHz3EBMTNk/2n0aZnNnsspYzjNP6wvXWT0sGyXG6yhX2cw==} + /@storybook/manager-webpack5/6.5.15_o4scbtliisanygemawej7x2d6i: + resolution: {integrity: sha512-yrHVFUHGdVRWq/oGJwQu+UOZzxELH5SS+Lpn5oIQ/Dblam9piQC0KmBZtFuA9X8acaw4BBVnXgF/aiqs9fOp/Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7031,26 +6916,26 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 - '@babel/preset-react': 7.18.6_@babel+core@7.20.5 - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-client': 6.5.14_fzk2o5r53sgjs5saca2d7spkha - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/node-logger': 6.5.14 - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/ui': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@types/node': 16.18.8 - babel-loader: 8.3.0_ztqwsvkb6z73luspkai6ilstpu + '@babel/core': 7.20.12 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 + '@babel/preset-react': 7.18.6_@babel+core@7.20.12 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-client': 6.5.15_fzk2o5r53sgjs5saca2d7spkha + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/node-logger': 6.5.15 + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.18.11 + babel-loader: 8.3.0_la66t7xldg4uecmyawueag5wkm case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 - core-js: 3.26.1 + core-js: 3.27.2 css-loader: 5.2.7_webpack@5.75.0 express: 4.18.2 find-up: 5.0.0 fs-extra: 9.1.0 html-webpack-plugin: 5.5.0_webpack@5.75.0 - node-fetch: 2.6.7 + node-fetch: 2.6.8 process: 0.11.10 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -7078,13 +6963,13 @@ packages: - webpack-command dev: true - /@storybook/mdx1-csf/0.0.1_@babel+core@7.20.5: + /@storybook/mdx1-csf/0.0.1_@babel+core@7.20.12: resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: - '@babel/generator': 7.20.5 - '@babel/parser': 7.20.5 - '@babel/preset-env': 7.20.2_@babel+core@7.20.5 - '@babel/types': 7.20.5 + '@babel/generator': 7.20.7 + '@babel/parser': 7.20.7 + '@babel/preset-env': 7.20.2_@babel+core@7.20.12 + '@babel/types': 7.20.7 '@mdx-js/mdx': 1.6.22 '@types/lodash': 4.14.191 js-string-escape: 1.0.1 @@ -7097,48 +6982,48 @@ packages: - supports-color dev: true - /@storybook/node-logger/6.5.14: - resolution: {integrity: sha512-MbEEgUEfrDN8Y0vzZJqPcxwWvX0l8zAsXy6d/DORP2AmwuNmnWTy++BE9YhxH6HMdM1ivRDmBbT30+KBUWhnUA==} + /@storybook/node-logger/6.5.15: + resolution: {integrity: sha512-LQjjbfMuUXm7wZTBKb+iGeCNnej4r1Jb2NxG3Svu2bVhaoB6u33jHAcbmhXpXW1jghzW3kQwOU7BoLuJiRRFIw==} dependencies: '@types/npmlog': 4.1.4 chalk: 4.1.2 - core-js: 3.26.1 + core-js: 3.27.2 npmlog: 5.0.1 pretty-hrtime: 1.0.3 dev: true - /@storybook/postinstall/6.5.14: - resolution: {integrity: sha512-vtnQczSSkz7aPIc2dsDaZWlCDAcJb258KGXk72w7MEY9/zLlr6tdQLI30B6SkRNFnR8fQQf4H2gbFq/GM0EF5A==} + /@storybook/postinstall/6.5.15: + resolution: {integrity: sha512-l7pApTgLD10OedNOyuf4vUdVCHLOSaIUIL9gdJl1WaSFHiUpJvvzBIh5M4aRICYPbnuExQc8y2GAjERKO4Ep+g==} dependencies: - core-js: 3.26.1 + core-js: 3.27.2 dev: true - /@storybook/preset-scss/1.0.3_53luwpld5o3bh7m7s676ypfgji: + /@storybook/preset-scss/1.0.3_ce4egdtryg4fsgh2l4kxzdsxk4: resolution: {integrity: sha512-o9Iz6wxPeNENrQa2mKlsDKynBfqU2uWaRP80HeWp4TkGgf7/x3DVF2O7yi9N0x/PI1qzzTTpxlQ90D62XmpiTw==} peerDependencies: css-loader: '*' sass-loader: '*' style-loader: '*' dependencies: - css-loader: 6.7.2 - sass-loader: 13.2.0_sass@1.56.2 + css-loader: 6.7.3 + sass-loader: 13.2.0_sass@1.57.1 style-loader: 3.3.1 dev: true - /@storybook/preview-web/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-ey2E7222xw0itPgCWH7ZIrdgM1yCdYte/QxRvwv/O4us4SUs/RQaL1aoCD+hCRwd0BNyZUk/u1KnqB4y0MnHww==} + /@storybook/preview-web/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-gIHABSAD0JS0iRaG67BnSDq/q8Zf4fFwEWBQOSYgcEx2TzhAUeSkhGZUQHdlOTCwuA2PpXT0/cWDH8u2Ev+msg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/channel-postmessage': 6.5.14 - '@storybook/client-logger': 6.5.14 - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.15 + '@storybook/client-logger': 6.5.15 + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y ansi-to-html: 0.6.15 - core-js: 3.26.1 + core-js: 3.27.2 global: 4.4.0 lodash: 4.17.21 qs: 6.11.0 @@ -7170,8 +7055,8 @@ packages: - supports-color dev: true - /@storybook/react/6.5.14_75idfm5lwtnm555ruqeudth5qa: - resolution: {integrity: sha512-SL0P5czN3g/IZAYw8ur9I/O8MPZI7Lyd46Pw+B1f7+Ou8eLmhqa8Uc8+3fU6v7ohtUDwsBiTsg3TAfTVEPog4A==} + /@storybook/react/6.5.15_7uh2vooadeub4it26j3d2ybtcq: + resolution: {integrity: sha512-iQta2xOs/oK0sw/zpn3g/huvOmvggzi8z2/WholmUmmRiSQRo9lOhRXH0u13T4ja4fEa+u7m58G83xOG6i73Kw==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -7198,31 +7083,31 @@ packages: typescript: optional: true dependencies: - '@babel/core': 7.20.5 - '@babel/preset-flow': 7.18.6_@babel+core@7.20.5 - '@babel/preset-react': 7.18.6_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/preset-flow': 7.18.6_@babel+core@7.20.12 + '@babel/preset-react': 7.18.6_@babel+core@7.20.12 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10_ohj47mxwagpoxvu7nhhwxzphqm - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-webpack5': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/client-logger': 6.5.14 - '@storybook/core': 6.5.14_6t67xle2sgrdwty6e3bdfruwf4 - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/builder-webpack5': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/client-logger': 6.5.15 + '@storybook/core': 6.5.15_3hgwwzayml2erclsqgmjsey7fe + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/docs-tools': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/manager-webpack5': 6.5.14_o4scbtliisanygemawej7x2d6i - '@storybook/node-logger': 6.5.14 + '@storybook/docs-tools': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/manager-webpack5': 6.5.15_o4scbtliisanygemawej7x2d6i + '@storybook/node-logger': 6.5.15 '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_3fkjkrd3audxnith3e7fo4fnxi '@storybook/semver': 7.3.2 - '@storybook/store': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.15_biqbaboplfbrettd7655fr4n2y '@types/estree': 0.0.51 - '@types/node': 16.18.8 + '@types/node': 16.18.11 '@types/webpack-env': 1.18.0 acorn: 7.4.1 acorn-jsx: 5.3.2_acorn@7.4.1 acorn-walk: 7.2.0 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-react-docgen: 4.2.1 - core-js: 3.26.1 + core-js: 3.27.2 escodegen: 2.0.0 fs-extra: 9.1.0 global: 4.4.0 @@ -7261,14 +7146,14 @@ packages: - webpack-plugin-serve dev: true - /@storybook/router/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-AvHbpRUAHnzm5pmwFPjDR09uPjQITD6kA0QNa2pe+7/Q/b4k40z5dHvHZJ/YhWhwVwGqGBG20KdDOl30wLXAZw==} + /@storybook/router/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-9t8rI8t7/Krolau29gsdjdbRQ66orONIyP0efp0EukVgv6reNFzb/U14ARrl0uHys6Tl5Xyece9FoakQUdn8Kg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/client-logger': 6.5.14 - core-js: 3.26.1 + '@storybook/client-logger': 6.5.15 + core-js: 3.27.2 memoizerific: 1.11.3 qs: 6.11.0 react: 18.2.0 @@ -7281,20 +7166,20 @@ packages: engines: {node: '>=10'} hasBin: true dependencies: - core-js: 3.26.1 + core-js: 3.27.2 find-up: 4.1.0 dev: true - /@storybook/source-loader/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-0GKMZ6IMVGxfQn/RYdRdnzxCe4+zZsxHBY9SQB2bbYWyfjJQ5rCJvmYQuMAuuuUmXBv9gk50iJLwai+lb4tbFg==} + /@storybook/source-loader/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-MaWzki40g0/7NWmJgUBhOp+e7y8Ohw6G/bRr/rcDP7eXSnud6ThYylXv0QqBScLPPTy8txjmBClCoqdLGyvLWQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.26.1 + core-js: 3.27.2 estraverse: 5.3.0 global: 4.4.0 loader-utils: 2.0.4 @@ -7305,17 +7190,17 @@ packages: regenerator-runtime: 0.13.11 dev: true - /@storybook/store/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-s07Vw4nbShPYwBJmVXzptuyCkrDQD3khcrKB5L7NsHHgWsm2QI0OyiPMuMbSvgipjcMc/oRqdL3tFUeFak9EMg==} + /@storybook/store/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-r6cYTf6GtbqgdI4ZG3xuWdJAAu5fJ3xAWMiDkHyoK2u+R2TeYXIsJvgn0BPrW87sZhELIkg4ckdFECmATs3kpQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/client-logger': 6.5.14 - '@storybook/core-events': 6.5.14 + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.15 + '@storybook/core-events': 6.5.15 '@storybook/csf': 0.0.2--canary.4566f4d.1 - core-js: 3.26.1 + core-js: 3.27.2 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 @@ -7330,13 +7215,13 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/telemetry/6.5.14_o4scbtliisanygemawej7x2d6i: - resolution: {integrity: sha512-AVSw7WyKHrVbXMSZZ0fvg3oAb8xAS7OrmNU6++yUfbuqpF0JNtNkNnRSaJ4Nh7Vujzloy5jYhbpfY44nb/hsCw==} + /@storybook/telemetry/6.5.15_o4scbtliisanygemawej7x2d6i: + resolution: {integrity: sha512-WHMRG6xMkEGscn1q4SotwzV8hxM1g3zHyXPN77iosY5zpOIn/qAzvkmW28V1DPH9jPWMZMizBgG1TIQvUpduXg==} dependencies: - '@storybook/client-logger': 6.5.14 - '@storybook/core-common': 6.5.14_o4scbtliisanygemawej7x2d6i + '@storybook/client-logger': 6.5.15 + '@storybook/core-common': 6.5.15_o4scbtliisanygemawej7x2d6i chalk: 4.1.2 - core-js: 3.26.1 + core-js: 3.27.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.3 fs-extra: 9.1.0 @@ -7360,46 +7245,46 @@ packages: /@storybook/testing-library/0.0.13_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-vRMeIGer4EjJkTgI8sQyK9W431ekPWYCWL//OmSDJ64IT3h7FnW7Xg6p+eqM3oII98/O5pcya5049GxnjaPtxw==} dependencies: - '@storybook/client-logger': 6.5.14 - '@storybook/instrumenter': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@testing-library/dom': 8.19.0 - '@testing-library/user-event': 13.5.0_aaq3sbffpfe3jnxzm2zngsddei + '@storybook/client-logger': 6.5.15 + '@storybook/instrumenter': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@testing-library/dom': 8.20.0 + '@testing-library/user-event': 13.5.0_yxlyej73nftwmh2fiao7paxmlm ts-dedent: 2.2.0 transitivePeerDependencies: - react - react-dom dev: true - /@storybook/theming/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-3ff6RLZGaIil/AFJ0/BRlE2hhdPrC5v6wGbRfroZVmGldRCxio/7+KAA3LH6cuHnjK5MeBcCBaHuxzXqGmbEFw==} + /@storybook/theming/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-pgdW0lVZKKXQ4VhIfLHycMmwFSVOY7vLTKnytag4Y8Yz+aXm0bwDN/QxPntFzDH47F1Rcy2ywNnvty8ooDTvuA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/client-logger': 6.5.14 - core-js: 3.26.1 + '@storybook/client-logger': 6.5.15 + core-js: 3.27.2 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.11 dev: true - /@storybook/ui/6.5.14_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-dXlCIULh8ytgdFrvVoheQLlZjAyyYmGCuw+6m+s+2yF/oUbFREG/5Zo9hDwlJ4ZiAyqNLkuwg2tnMYtjapZSog==} + /@storybook/ui/6.5.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-OO+TWZmI8ebWA1C3JBKNvbUbsgvt4GppqsGlkf5CTBZrT/MzmMlYiooLAtlY1ZPcMtTd5ynLxvroHWBEnMOk2A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@storybook/addons': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/api': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/channels': 6.5.14 - '@storybook/client-logger': 6.5.14 - '@storybook/components': 6.5.14_biqbaboplfbrettd7655fr4n2y - '@storybook/core-events': 6.5.14 - '@storybook/router': 6.5.14_biqbaboplfbrettd7655fr4n2y + '@storybook/addons': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.15 + '@storybook/client-logger': 6.5.15 + '@storybook/components': 6.5.15_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.15 + '@storybook/router': 6.5.15_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.14_biqbaboplfbrettd7655fr4n2y - core-js: 3.26.1 + '@storybook/theming': 6.5.15_biqbaboplfbrettd7655fr4n2y + core-js: 3.27.2 memoizerific: 1.11.3 qs: 6.11.0 react: 18.2.0 @@ -7408,101 +7293,101 @@ packages: resolve-from: 5.0.0 dev: true - /@svgr/babel-plugin-add-jsx-attribute/6.5.1_@babel+core@7.20.5: + /@svgr/babel-plugin-add-jsx-attribute/6.5.1_@babel+core@7.20.12: resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 dev: true - /@svgr/babel-plugin-remove-jsx-attribute/6.5.0_@babel+core@7.20.5: + /@svgr/babel-plugin-remove-jsx-attribute/6.5.0_@babel+core@7.20.12: resolution: {integrity: sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 dev: true - /@svgr/babel-plugin-remove-jsx-empty-expression/6.5.0_@babel+core@7.20.5: + /@svgr/babel-plugin-remove-jsx-empty-expression/6.5.0_@babel+core@7.20.12: resolution: {integrity: sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 dev: true - /@svgr/babel-plugin-replace-jsx-attribute-value/6.5.1_@babel+core@7.20.5: + /@svgr/babel-plugin-replace-jsx-attribute-value/6.5.1_@babel+core@7.20.12: resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 dev: true - /@svgr/babel-plugin-svg-dynamic-title/6.5.1_@babel+core@7.20.5: + /@svgr/babel-plugin-svg-dynamic-title/6.5.1_@babel+core@7.20.12: resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 dev: true - /@svgr/babel-plugin-svg-em-dimensions/6.5.1_@babel+core@7.20.5: + /@svgr/babel-plugin-svg-em-dimensions/6.5.1_@babel+core@7.20.12: resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 dev: true - /@svgr/babel-plugin-transform-react-native-svg/6.5.1_@babel+core@7.20.5: + /@svgr/babel-plugin-transform-react-native-svg/6.5.1_@babel+core@7.20.12: resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 dev: true - /@svgr/babel-plugin-transform-svg-component/6.5.1_@babel+core@7.20.5: + /@svgr/babel-plugin-transform-svg-component/6.5.1_@babel+core@7.20.12: resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} engines: {node: '>=12'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 dev: true - /@svgr/babel-preset/6.5.1_@babel+core@7.20.5: + /@svgr/babel-preset/6.5.1_@babel+core@7.20.12: resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@svgr/babel-plugin-add-jsx-attribute': 6.5.1_@babel+core@7.20.5 - '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0_@babel+core@7.20.5 - '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0_@babel+core@7.20.5 - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1_@babel+core@7.20.5 - '@svgr/babel-plugin-svg-dynamic-title': 6.5.1_@babel+core@7.20.5 - '@svgr/babel-plugin-svg-em-dimensions': 6.5.1_@babel+core@7.20.5 - '@svgr/babel-plugin-transform-react-native-svg': 6.5.1_@babel+core@7.20.5 - '@svgr/babel-plugin-transform-svg-component': 6.5.1_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@svgr/babel-plugin-add-jsx-attribute': 6.5.1_@babel+core@7.20.12 + '@svgr/babel-plugin-remove-jsx-attribute': 6.5.0_@babel+core@7.20.12 + '@svgr/babel-plugin-remove-jsx-empty-expression': 6.5.0_@babel+core@7.20.12 + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1_@babel+core@7.20.12 + '@svgr/babel-plugin-svg-dynamic-title': 6.5.1_@babel+core@7.20.12 + '@svgr/babel-plugin-svg-em-dimensions': 6.5.1_@babel+core@7.20.12 + '@svgr/babel-plugin-transform-react-native-svg': 6.5.1_@babel+core@7.20.12 + '@svgr/babel-plugin-transform-svg-component': 6.5.1_@babel+core@7.20.12 dev: true /@svgr/core/6.5.1: resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.20.5 - '@svgr/babel-preset': 6.5.1_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@svgr/babel-preset': 6.5.1_@babel+core@7.20.12 '@svgr/plugin-jsx': 6.5.1_@svgr+core@6.5.1 camelcase: 6.3.0 cosmiconfig: 7.1.0 @@ -7514,7 +7399,7 @@ packages: resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.20.5 + '@babel/types': 7.20.7 entities: 4.4.0 dev: true @@ -7524,8 +7409,8 @@ packages: peerDependencies: '@svgr/core': ^6.0.0 dependencies: - '@babel/core': 7.20.5 - '@svgr/babel-preset': 6.5.1_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@svgr/babel-preset': 6.5.1_@babel+core@7.20.12 '@svgr/core': 6.5.1 '@svgr/hast-util-to-babel-ast': 6.5.1 svg-parser: 2.0.4 @@ -7575,8 +7460,8 @@ packages: tailwindcss: 3.2.4 dev: true - /@tailwindcss/typography/0.5.8: - resolution: {integrity: sha512-xGQEp8KXN8Sd8m6R4xYmwxghmswrd0cPnNI2Lc6fmrC3OojysTBJJGSIVwPV56q4t6THFUK3HJ0EaWwpglSxWw==} + /@tailwindcss/typography/0.5.9: + resolution: {integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==} peerDependencies: tailwindcss: '>=3.0.0 || insiders' dependencies: @@ -7586,8 +7471,8 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /@tailwindcss/typography/0.5.8_tailwindcss@3.2.4: - resolution: {integrity: sha512-xGQEp8KXN8Sd8m6R4xYmwxghmswrd0cPnNI2Lc6fmrC3OojysTBJJGSIVwPV56q4t6THFUK3HJ0EaWwpglSxWw==} + /@tailwindcss/typography/0.5.9_tailwindcss@3.2.4: + resolution: {integrity: sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==} peerDependencies: tailwindcss: '>=3.0.0 || insiders' dependencies: @@ -7598,37 +7483,33 @@ packages: tailwindcss: 3.2.4 dev: true - /@tanstack/match-sorter-utils/8.7.2: - resolution: {integrity: sha512-bptNeoexeDB947fWoCPwUchPSx5FA9gwzU0bkXz0du5pT8Ud2+1ob+xOgHj6EF3VN0kdXtLhwjPyhY7/dJglkg==} + /@tanstack/match-sorter-utils/8.7.6: + resolution: {integrity: sha512-2AMpRiA6QivHOUiBpQAVxjiHAA68Ei23ZUMNaRJrN6omWiSFLoYrxGcT6BXtuzp0Jw4h6HZCmGGIM/gbwebO2A==} engines: {node: '>=12'} dependencies: remove-accents: 0.4.2 dev: false - /@tanstack/query-core/4.19.1: - resolution: {integrity: sha512-Zp0aIose5C8skBzqbVFGk9HJsPtUhRVDVNWIqVzFbGQQgYSeLZMd3Sdb4+EnA5wl1J7X+bre2PJGnQg9x/zHOA==} + /@tanstack/query-core/4.22.0: + resolution: {integrity: sha512-OeLyBKBQoT265f5G9biReijeP8mBxNFwY7ZUu1dKL+YzqpG5q5z7J/N1eT8aWyKuhyDTiUHuKm5l+oIVzbtrjw==} - /@tanstack/query-core/4.20.9: - resolution: {integrity: sha512-XTEEvOGy7wlABPTYfmg7U287WYcf2PV8lH15oKWD2I09okqMOHrB23WxyikEVRwJCjYNKcCW0BuYaAY4S2g/jg==} - dev: false - - /@tanstack/react-query-devtools/4.19.1_xnkyuugmv5unvdsxvtkktqsuae: - resolution: {integrity: sha512-U63A+ly9JLPJj7ryR9omdXT3n+gS7jlExrHty4klsd/6xdUhC38CKZyZ0Gi3vctaVYRGTU8/vI+uKzBYdFqLaA==} + /@tanstack/react-query-devtools/4.22.0_gp275tdwez2a4eujt75dnnp754: + resolution: {integrity: sha512-YeYFBnfqvb+ZlA0IiJqiHNNSzepNhI1p2o9i8NlhQli9+Zrn230M47OBaBUs8qr3DD1dC2zGB1Dis50Ktz8gAA==} peerDependencies: - '@tanstack/react-query': 4.19.1 + '@tanstack/react-query': 4.22.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@tanstack/match-sorter-utils': 8.7.2 - '@tanstack/react-query': 4.19.1_biqbaboplfbrettd7655fr4n2y + '@tanstack/match-sorter-utils': 8.7.6 + '@tanstack/react-query': 4.22.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - superjson: 1.12.0 + superjson: 1.12.2 use-sync-external-store: 1.2.0_react@18.2.0 dev: false - /@tanstack/react-query/4.19.1: - resolution: {integrity: sha512-5dvHvmc0vrWI03AJugzvKfirxCyCLe+qawrWFCXdu8t7dklIhJ7D5ZhgTypv7mMtIpdHPcECtCiT/+V74wCn2A==} + /@tanstack/react-query/4.22.0: + resolution: {integrity: sha512-P9o+HjG42uB/xHR6dMsJaPhtZydSe4v0xdG5G/cEj1oHZAXelMlm67/rYJNQGKgBamKElKogj+HYGF+NY2yHYg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7639,12 +7520,12 @@ packages: react-native: optional: true dependencies: - '@tanstack/query-core': 4.19.1 + '@tanstack/query-core': 4.22.0 use-sync-external-store: 1.2.0 dev: false - /@tanstack/react-query/4.19.1_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-5dvHvmc0vrWI03AJugzvKfirxCyCLe+qawrWFCXdu8t7dklIhJ7D5ZhgTypv7mMtIpdHPcECtCiT/+V74wCn2A==} + /@tanstack/react-query/4.22.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-P9o+HjG42uB/xHR6dMsJaPhtZydSe4v0xdG5G/cEj1oHZAXelMlm67/rYJNQGKgBamKElKogj+HYGF+NY2yHYg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7655,13 +7536,13 @@ packages: react-native: optional: true dependencies: - '@tanstack/query-core': 4.19.1 + '@tanstack/query-core': 4.22.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 use-sync-external-store: 1.2.0_react@18.2.0 - /@tanstack/react-query/4.20.9_tj3nonr5gneraukzjkxpsiy7yu: - resolution: {integrity: sha512-OqwcmqkxOYgLbVjsMm4Cl8MMZ063VqdRw1GpSWqN8WgppftPiFJTDb6Q1TX5I/ciCbHmRWNPE/D0ayyTesAKug==} + /@tanstack/react-query/4.22.0_tj3nonr5gneraukzjkxpsiy7yu: + resolution: {integrity: sha512-P9o+HjG42uB/xHR6dMsJaPhtZydSe4v0xdG5G/cEj1oHZAXelMlm67/rYJNQGKgBamKElKogj+HYGF+NY2yHYg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -7672,7 +7553,7 @@ packages: react-native: optional: true dependencies: - '@tanstack/query-core': 4.20.9 + '@tanstack/query-core': 4.22.0 react: 18.1.0 react-native: 0.70.5_react@18.1.0 use-sync-external-store: 1.2.0_react@18.1.0 @@ -7795,31 +7676,31 @@ packages: '@tauri-apps/cli-win32-x64-msvc': 1.1.1 dev: true - /@testing-library/dom/8.19.0: - resolution: {integrity: sha512-6YWYPPpxG3e/xOo6HIWwB/58HukkwIVTOaZ0VwdMVjhRUX/01E4FtQbck9GazOOj7MXHc5RBzMrU86iBJHbI+A==} + /@testing-library/dom/8.20.0: + resolution: {integrity: sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==} engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/runtime': 7.20.6 - '@types/aria-query': 4.2.2 + '@babel/runtime': 7.20.7 + '@types/aria-query': 5.0.1 aria-query: 5.1.3 chalk: 4.1.2 - dom-accessibility-api: 0.5.14 + dom-accessibility-api: 0.5.16 lz-string: 1.4.4 pretty-format: 27.5.1 dev: true - /@testing-library/user-event/13.5.0_aaq3sbffpfe3jnxzm2zngsddei: + /@testing-library/user-event/13.5.0_yxlyej73nftwmh2fiao7paxmlm: resolution: {integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==} engines: {node: '>=10', npm: '>=6'} peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: - '@babel/runtime': 7.20.6 - '@testing-library/dom': 8.19.0 + '@babel/runtime': 7.20.7 + '@testing-library/dom': 8.20.0 dev: true - /@trivago/prettier-plugin-sort-imports/3.4.0_prettier@2.8.1: + /@trivago/prettier-plugin-sort-imports/3.4.0_prettier@2.8.3: resolution: {integrity: sha512-485Iailw8X5f7KetzRka20RF1kPBEINR5LJMNwlBZWY1gRAlVnv5dZzyNPnLxSP0Qcia8HETa9Cdd8LlX9o+pg==} peerDependencies: prettier: 2.x @@ -7832,7 +7713,7 @@ packages: '@vue/compiler-sfc': 3.2.45 javascript-natural-sort: 0.7.1 lodash: 4.17.21 - prettier: 2.8.1 + prettier: 2.8.3 transitivePeerDependencies: - supports-color dev: true @@ -7866,8 +7747,8 @@ packages: resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} dev: false - /@types/aria-query/4.2.2: - resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} + /@types/aria-query/5.0.1: + resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} dev: true /@types/babel-core/6.25.7: @@ -7913,7 +7794,7 @@ packages: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 18.11.15 + '@types/node': 18.11.18 dev: true /@types/byte-size/8.1.0: @@ -7923,13 +7804,13 @@ packages: /@types/compression/1.7.2: resolution: {integrity: sha512-lwEL4M/uAGWngWFLSG87ZDr2kLrbuR8p7X+QZB1OQlT+qkHsCPDVFnHPyXf4Vyl4yDDorNY+mAhosxkCvppatg==} dependencies: - '@types/express': 4.17.14 + '@types/express': 4.17.15 dev: true /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 18.11.15 + '@types/node': 18.11.18 dev: true /@types/eslint-scope/3.7.4: @@ -7954,19 +7835,19 @@ packages: resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==} dev: true - /@types/express-serve-static-core/4.17.31: - resolution: {integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==} + /@types/express-serve-static-core/4.17.32: + resolution: {integrity: sha512-aI5h/VOkxOF2Z1saPy0Zsxs5avets/iaiAJYznQFm5By/pamU31xWKL//epiF4OfUA2qTOc9PV6tCUjhO8wlZA==} dependencies: - '@types/node': 18.11.15 + '@types/node': 18.11.18 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 dev: true - /@types/express/4.17.14: - resolution: {integrity: sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==} + /@types/express/4.17.15: + resolution: {integrity: sha512-Yv0k4bXGOH+8a+7bELd2PqHQsuiANB+A8a4gnQrkRWzrkKlb6KHaVvyXhqs04sVW/OWlbPyYxRgYlIXLfrufMQ==} dependencies: '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.31 + '@types/express-serve-static-core': 4.17.32 '@types/qs': 6.9.7 '@types/serve-static': 1.15.0 dev: true @@ -7975,20 +7856,20 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.11.15 + '@types/node': 16.18.11 dev: true /@types/glob/8.0.0: resolution: {integrity: sha512-l6NQsDDyQUVeoTynNpC9uRvCUint/gSUXQA2euwmTuWGvPY5LSDUu6tkCtJB2SvGQlJQzLaKqcGZP4//7EDveA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.11.15 + '@types/node': 16.18.11 dev: true - /@types/graceful-fs/4.1.5: - resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} + /@types/graceful-fs/4.1.6: + resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} dependencies: - '@types/node': 18.11.15 + '@types/node': 18.11.18 dev: true /@types/hammerjs/2.0.41: @@ -8041,13 +7922,13 @@ packages: /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 18.11.15 + '@types/node': 18.11.18 dev: true /@types/loadable__component/5.13.4: resolution: {integrity: sha512-YhoCCxyuvP2XeZNbHbi8Wb9EMaUJuA2VGHxJffcQYrJKIKSkymJrhbzsf9y4zpTmr5pExAAEh5hbF628PAZ8Dg==} dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 dev: true /@types/lodash/4.14.191: @@ -8079,16 +7960,15 @@ packages: /@types/node-fetch/2.6.2: resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} dependencies: - '@types/node': 18.11.15 + '@types/node': 16.18.11 form-data: 3.0.1 dev: true - /@types/node/16.18.8: - resolution: {integrity: sha512-TrpoNiaPvBH5h8rQQenMtVsJXtGsVBRJrcp2Ik6oEt99jHfGvDLh20VTTq3ixTbjYujukYz1IlY4N8a8yfY0jA==} - dev: true + /@types/node/16.18.11: + resolution: {integrity: sha512-3oJbGBUWuS6ahSnEq1eN2XrCyf4YsWI8OyCvo7c64zQJNplk3mO84t53o8lfTk+2ji59g5ycfc6qQ3fdHliHuA==} - /@types/node/18.11.15: - resolution: {integrity: sha512-VkhBbVo2+2oozlkdHXLrb3zjsRkpdnaU2bXmX8Wgle3PUi569eLRaHGlgETQHR7lLL1w7GiG3h9SnePhxNDecw==} + /@types/node/18.11.18: + resolution: {integrity: sha512-DHQpWGjyQKSHj3ebjFI/wRKcqQcdR+MoFBygntYOZytCqNfkd2ZC4ARDJ2DQqhjH5p85Nnd3jhUJIXrszFX/JA==} /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -8127,44 +8007,44 @@ packages: /@types/react-burger-menu/2.8.3: resolution: {integrity: sha512-dXH/HzYSpcSxfstfBeBz5vzFLvaDbapExfh2QaPHPVX/IrgeGS6J25XTUTjnVtXpYoSKxFu6QFupO1J/RYbQlA==} dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 dev: true - /@types/react-dom/18.0.9: - resolution: {integrity: sha512-qnVvHxASt/H7i+XG1U1xMiY5t+IHcPGUK7TDMDzom08xa7e86eCeKOiLZezwCKVxJn6NEiiy2ekgX8aQssjIKg==} + /@types/react-dom/18.0.10: + resolution: {integrity: sha512-E42GW/JA4Qv15wQdqJq8DL4JhNpB3prJgjgapN3qJT9K2zO5IIAQh4VXvCEDupoqAwnz0cY4RlXeC/ajX5SFHg==} dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 dev: true /@types/react-helmet/6.1.6: resolution: {integrity: sha512-ZKcoOdW/Tg+kiUbkFCBtvDw0k3nD4HJ/h/B9yWxN4uDO8OkRksWTO+EL+z/Qu3aHTeTll3Ro0Cc/8UhwBCMG5A==} dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 dev: true - /@types/react-native/0.70.8: - resolution: {integrity: sha512-jvs5QMOrlyi0ScfT5Brha2roDoOWtbIOadNkp0jsueVen5+pH4SQAYtzL6xu0+dIcx3J/5LtZ/JYby2C1/zUug==} + /@types/react-native/0.70.9: + resolution: {integrity: sha512-0C6sIo13ztzM2llaWdTq0Vpscx3VdU0T8F45kEurWv3l5n+BHm/Mkr8Z+N29eXDYGhTvCz5y2jegB8JyiVa5kw==} dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 dev: true /@types/react-router-dom/5.3.3: resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} dependencies: '@types/history': 4.7.11 - '@types/react': 18.0.26 - '@types/react-router': 5.1.19 + '@types/react': 18.0.27 + '@types/react-router': 5.1.20 dev: true - /@types/react-router/5.1.19: - resolution: {integrity: sha512-Fv/5kb2STAEMT3wHzdKQK2z8xKq38EDIGVrutYLmQVVLe+4orDFquU52hQrULnEHinMKv9FSA6lf9+uNT1ITtA==} + /@types/react-router/5.1.20: + resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} dependencies: '@types/history': 4.7.11 - '@types/react': 18.0.26 + '@types/react': 18.0.27 dev: true - /@types/react/18.0.26: - resolution: {integrity: sha512-hCR3PJQsAIXyxhTNSiDFY//LhnMZWpNNr5etoCqx/iUfGc5gXWtQR2Phl908jVR6uPXacojQWTg4qRpkxTuGug==} + /@types/react/18.0.27: + resolution: {integrity: sha512-3vtRKHgVxu3Jp9t718R9BuzoD4NcQ8YJ5XRzsSKxNDiDonD2MXIT1TmSkenxuCycZJoQT5d2vE8LwWJxBC1gmA==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 @@ -8173,7 +8053,7 @@ packages: /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 18.11.15 + '@types/node': 18.11.18 dev: true /@types/scheduler/0.16.2: @@ -8187,7 +8067,7 @@ packages: resolution: {integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==} dependencies: '@types/mime': 3.0.1 - '@types/node': 18.11.15 + '@types/node': 18.11.18 dev: true /@types/source-list-map/0.1.2: @@ -8227,7 +8107,7 @@ packages: /@types/webpack-sources/3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 18.11.15 + '@types/node': 16.18.11 '@types/source-list-map': 0.1.2 source-map: 0.7.4 dev: true @@ -8235,7 +8115,7 @@ packages: /@types/webpack/4.41.33: resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==} dependencies: - '@types/node': 18.11.15 + '@types/node': 16.18.11 '@types/tapable': 1.0.8 '@types/uglify-js': 3.17.1 '@types/webpack-sources': 3.2.0 @@ -8246,23 +8126,23 @@ packages: /@types/yargs-parser/21.0.0: resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} - /@types/yargs/15.0.14: - resolution: {integrity: sha512-yEJzHoxf6SyQGhBhIYGXQDSCkJjB6HohDShto7m8vaKg9Yp0Yn8+71J9eakh2bnPg6BfsH9PRMhiRTZnd4eXGQ==} + /@types/yargs/15.0.15: + resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==} dependencies: '@types/yargs-parser': 21.0.0 - /@types/yargs/16.0.4: - resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==} + /@types/yargs/16.0.5: + resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==} dependencies: '@types/yargs-parser': 21.0.0 - /@types/yargs/17.0.17: - resolution: {integrity: sha512-72bWxFKTK6uwWJAVT+3rF6Jo6RTojiJ27FQo8Rf60AL+VZbzoVPnMFhKsUnbjR8A3BTCYQ7Mv3hnl8T0A+CX9g==} + /@types/yargs/17.0.20: + resolution: {integrity: sha512-eknWrTHofQuPk2iuqDm1waA7V6xPlbgBoaaXEgYkClhLOnB0TtbW+srJaOToAgawPxPlHQzwypFA2bhZaUGP5A==} dependencies: '@types/yargs-parser': 21.0.0 - /@typescript-eslint/eslint-plugin/5.46.0_jx43xxcguvnqqmtmaaygwl7cmu: - resolution: {integrity: sha512-QrZqaIOzJAjv0sfjY4EjbXUi3ZOFpKfzntx22gPGr9pmFcTjcFw/1sS1LJhEubfAGwuLjNrPV0rH+D1/XZFy7Q==} + /@typescript-eslint/eslint-plugin/5.48.2_2l6piu6guil2f63lj3qmhzbnn4: + resolution: {integrity: sha512-sR0Gja9Ky1teIq4qJOl0nC+Tk64/uYdX+mi+5iB//MH8gwyx8e3SOyhEzeLZEFEEfCaLf8KJq+Bd/6je1t+CAg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -8272,13 +8152,13 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.46.0_eslint@8.29.0 - '@typescript-eslint/scope-manager': 5.46.0 - '@typescript-eslint/type-utils': 5.46.0_eslint@8.29.0 - '@typescript-eslint/utils': 5.46.0_eslint@8.29.0 + '@typescript-eslint/parser': 5.48.2_eslint@8.32.0 + '@typescript-eslint/scope-manager': 5.48.2 + '@typescript-eslint/type-utils': 5.48.2_eslint@8.32.0 + '@typescript-eslint/utils': 5.48.2_eslint@8.32.0 debug: 4.3.4 - eslint: 8.29.0 - ignore: 5.2.1 + eslint: 8.32.0 + ignore: 5.2.4 natural-compare-lite: 1.4.0 regexpp: 3.2.0 semver: 7.3.8 @@ -8287,8 +8167,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.46.0_eslint@8.29.0: - resolution: {integrity: sha512-joNO6zMGUZg+C73vwrKXCd8usnsmOYmgW/w5ZW0pG0RGvqeznjtGDk61EqqTpNrFLUYBW2RSBFrxdAZMqA4OZA==} + /@typescript-eslint/parser/5.48.2_eslint@8.32.0: + resolution: {integrity: sha512-38zMsKsG2sIuM5Oi/olurGwYJXzmtdsHhn5mI/pQogP+BjYVkK5iRazCQ8RGS0V+YLk282uWElN70zAAUmaYHw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -8297,25 +8177,25 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.46.0 - '@typescript-eslint/types': 5.46.0 - '@typescript-eslint/typescript-estree': 5.46.0 + '@typescript-eslint/scope-manager': 5.48.2 + '@typescript-eslint/types': 5.48.2 + '@typescript-eslint/typescript-estree': 5.48.2 debug: 4.3.4 - eslint: 8.29.0 + eslint: 8.32.0 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.46.0: - resolution: {integrity: sha512-7wWBq9d/GbPiIM6SqPK9tfynNxVbfpihoY5cSFMer19OYUA3l4powA2uv0AV2eAZV6KoAh6lkzxv4PoxOLh1oA==} + /@typescript-eslint/scope-manager/5.48.2: + resolution: {integrity: sha512-zEUFfonQid5KRDKoI3O+uP1GnrFd4tIHlvs+sTJXiWuypUWMuDaottkJuR612wQfOkjYbsaskSIURV9xo4f+Fw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.46.0 - '@typescript-eslint/visitor-keys': 5.46.0 + '@typescript-eslint/types': 5.48.2 + '@typescript-eslint/visitor-keys': 5.48.2 dev: true - /@typescript-eslint/type-utils/5.46.0_eslint@8.29.0: - resolution: {integrity: sha512-dwv4nimVIAsVS2dTA0MekkWaRnoYNXY26dKz8AN5W3cBFYwYGFQEqm/cG+TOoooKlncJS4RTbFKgcFY/pOiBCg==} + /@typescript-eslint/type-utils/5.48.2_eslint@8.32.0: + resolution: {integrity: sha512-QVWx7J5sPMRiOMJp5dYshPxABRoZV1xbRirqSk8yuIIsu0nvMTZesKErEA3Oix1k+uvsk8Cs8TGJ6kQ0ndAcew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -8324,22 +8204,22 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.46.0 - '@typescript-eslint/utils': 5.46.0_eslint@8.29.0 + '@typescript-eslint/typescript-estree': 5.48.2 + '@typescript-eslint/utils': 5.48.2_eslint@8.32.0 debug: 4.3.4 - eslint: 8.29.0 + eslint: 8.32.0 tsutils: 3.21.0 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.46.0: - resolution: {integrity: sha512-wHWgQHFB+qh6bu0IAPAJCdeCdI0wwzZnnWThlmHNY01XJ9Z97oKqKOzWYpR2I83QmshhQJl6LDM9TqMiMwJBTw==} + /@typescript-eslint/types/5.48.2: + resolution: {integrity: sha512-hE7dA77xxu7ByBc6KCzikgfRyBCTst6dZQpwaTy25iMYOnbNljDT4hjhrGEJJ0QoMjrfqrx+j1l1B9/LtKeuqA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.46.0: - resolution: {integrity: sha512-kDLNn/tQP+Yp8Ro2dUpyyVV0Ksn2rmpPpB0/3MO874RNmXtypMwSeazjEN/Q6CTp8D7ExXAAekPEcCEB/vtJkw==} + /@typescript-eslint/typescript-estree/5.48.2: + resolution: {integrity: sha512-bibvD3z6ilnoVxUBFEgkO0k0aFvUc4Cttt0dAreEr+nrAHhWzkO83PEVVuieK3DqcgL6VAK5dkzK8XUVja5Zcg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -8347,8 +8227,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.46.0 - '@typescript-eslint/visitor-keys': 5.46.0 + '@typescript-eslint/types': 5.48.2 + '@typescript-eslint/visitor-keys': 5.48.2 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -8358,31 +8238,31 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.46.0_eslint@8.29.0: - resolution: {integrity: sha512-4O+Ps1CRDw+D+R40JYh5GlKLQERXRKW5yIQoNDpmXPJ+C7kaPF9R7GWl+PxGgXjB3PQCqsaaZUpZ9dG4U6DO7g==} + /@typescript-eslint/utils/5.48.2_eslint@8.32.0: + resolution: {integrity: sha512-2h18c0d7jgkw6tdKTlNaM7wyopbLRBiit8oAxoP89YnuBOzCZ8g8aBCaCqq7h208qUTroL7Whgzam7UY3HVLow==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.46.0 - '@typescript-eslint/types': 5.46.0 - '@typescript-eslint/typescript-estree': 5.46.0 - eslint: 8.29.0 + '@typescript-eslint/scope-manager': 5.48.2 + '@typescript-eslint/types': 5.48.2 + '@typescript-eslint/typescript-estree': 5.48.2 + eslint: 8.32.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.29.0 + eslint-utils: 3.0.0_eslint@8.32.0 semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.46.0: - resolution: {integrity: sha512-E13gBoIXmaNhwjipuvQg1ByqSAu/GbEpP/qzFihugJ+MomtoJtFAJG/+2DRPByf57B863m0/q7Zt16V9ohhANw==} + /@typescript-eslint/visitor-keys/5.48.2: + resolution: {integrity: sha512-z9njZLSkwmjFWUelGEwEbdf4NwKvfHxvGC0OcGN1Hp/XNDIcJ7D5DpPNPv6x6/mFvc1tQHsaWmpD/a4gOvvCJQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.46.0 + '@typescript-eslint/types': 5.48.2 eslint-visitor-keys: 3.3.0 dev: true @@ -8412,14 +8292,14 @@ packages: peerDependencies: vite: ^3.0.0 dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.12 magic-string: 0.26.7 react-refresh: 0.14.0 - vite: 3.2.5_o2iixvyklpce477lkpnahelma4 + vite: 3.2.5_ovmyjmuuyckt3r3gpaexj2onji transitivePeerDependencies: - supports-color @@ -8429,14 +8309,14 @@ packages: peerDependencies: vite: ^3.0.0 dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-development': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.12 magic-string: 0.26.7 react-refresh: 0.14.0 - vite: 4.0.4_sass@1.56.2 + vite: 4.0.4_sass@1.57.1 transitivePeerDependencies: - supports-color dev: true @@ -8468,7 +8348,7 @@ packages: '@vue/shared': 3.2.45 estree-walker: 2.0.2 magic-string: 0.25.9 - postcss: 8.4.20 + postcss: 8.4.21 source-map: 0.6.1 dev: true @@ -8823,8 +8703,8 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - /address/1.2.1: - resolution: {integrity: sha512-B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA==} + /address/1.2.2: + resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} engines: {node: '>= 10.0.0'} dev: true @@ -8856,7 +8736,7 @@ packages: array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 es5-shim: 4.6.7 - es6-shim: 0.35.6 + es6-shim: 0.35.7 function.prototype.name: 1.1.5 globalthis: 1.0.3 object.entries: 1.1.6 @@ -8926,7 +8806,6 @@ packages: engines: {node: '>=8'} dependencies: type-fest: 0.21.3 - dev: false /ansi-fragments/0.2.1: resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==} @@ -8954,6 +8833,11 @@ packages: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} + /ansi-regex/6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + dev: true + /ansi-styles/3.2.1: resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} engines: {node: '>=4'} @@ -8971,6 +8855,11 @@ packages: engines: {node: '>=10'} dev: true + /ansi-styles/6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + dev: true + /ansi-to-html/0.6.15: resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} engines: {node: '>=8.0.0'} @@ -9044,7 +8933,7 @@ packages: /argparse/2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} - /aria-hidden/1.2.2_kzbn2opkn2327fwg5yzwzya5o4: + /aria-hidden/1.2.2_3stiutgnnbnfnf3uowm5cip22i: resolution: {integrity: sha512-6y/ogyDTk/7YAe91T3E2PR1ALVKyM2QbTio5HwM+N1Q6CMlCKhvClyIjkckBswa0f2xJhjsfzIGa1yVSe1UMVA==} engines: {node: '>=10'} peerDependencies: @@ -9054,7 +8943,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 react: 18.2.0 tslib: 2.4.1 dev: false @@ -9062,7 +8951,7 @@ packages: /aria-query/5.1.3: resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} dependencies: - deep-equal: 2.1.0 + deep-equal: 2.2.0 dev: true /arr-diff/4.0.0: @@ -9092,7 +8981,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 get-intrinsic: 1.1.3 is-string: 1.0.7 dev: true @@ -9127,7 +9016,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 es-shim-unscopables: 1.0.0 dev: true @@ -9137,7 +9026,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 es-shim-unscopables: 1.0.0 dev: true @@ -9147,7 +9036,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true @@ -9158,7 +9047,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true @@ -9168,7 +9057,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 es-shim-unscopables: 1.0.0 get-intrinsic: 1.1.3 dev: true @@ -9229,6 +9118,11 @@ packages: resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} engines: {node: '>=4'} + /astral-regex/2.0.0: + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} + engines: {node: '>=8'} + dev: true + /async-each/1.0.3: resolution: {integrity: sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==} dev: true @@ -9260,14 +9154,14 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001439 + caniuse-lite: 1.0.30001446 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 postcss-value-parser: 4.2.0 dev: false - /autoprefixer/10.4.13_postcss@8.4.20: + /autoprefixer/10.4.13_postcss@8.4.21: resolution: {integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==} engines: {node: ^10 || ^12 || >=14} hasBin: true @@ -9275,11 +9169,11 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001439 + caniuse-lite: 1.0.30001446 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.20 + postcss: 8.4.21 postcss-value-parser: 4.2.0 dev: true @@ -9288,7 +9182,7 @@ packages: hasBin: true dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001439 + caniuse-lite: 1.0.30001446 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -9310,50 +9204,35 @@ packages: - debug dev: false - /babel-core/7.0.0-bridge.0_@babel+core@7.20.5: + /babel-core/7.0.0-bridge.0_@babel+core@7.20.12: resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 - /babel-loader/8.3.0_@babel+core@7.20.5: + /babel-loader/8.3.0_@babel+core@7.20.12: resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 dev: true - /babel-loader/8.3.0_em3sh5kto35xuanci4cvhzqfay: + /babel-loader/8.3.0_la66t7xldg4uecmyawueag5wkm: resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.20.5 - find-cache-dir: 3.3.2 - loader-utils: 2.0.4 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 4.46.0 - dev: true - - /babel-loader/8.3.0_ztqwsvkb6z73luspkai6ilstpu: - resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' - dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -9361,6 +9240,21 @@ packages: webpack: 5.75.0 dev: true + /babel-loader/8.3.0_nwtvwtk5tmh22l2urnqucz7kqu: + resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': 7.20.12 + find-cache-dir: 3.3.2 + loader-utils: 2.0.4 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 4.46.0 + dev: true + /babel-plugin-add-react-displayname/0.0.5: resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} dev: true @@ -9382,7 +9276,7 @@ packages: dependencies: '@babel/helper-plugin-utils': 7.20.2 '@babel/plugin-syntax-typescript': 7.20.0 - '@babel/traverse': 7.20.5 + '@babel/traverse': 7.20.12 transitivePeerDependencies: - supports-color dev: true @@ -9410,7 +9304,7 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 cosmiconfig: 7.1.0 resolve: 1.22.1 dev: true @@ -9434,33 +9328,33 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.5 + '@babel/compat-data': 7.20.10 '@babel/helper-define-polyfill-provider': 0.3.3 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: false - /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.5: + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.20.12: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.20.5 - '@babel/core': 7.20.5 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 + '@babel/compat-data': 7.20.10 + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 semver: 6.3.0 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.20.5: + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.20.12: resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.20.5 - core-js-compat: 3.26.1 + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.20.12 + core-js-compat: 3.27.2 transitivePeerDependencies: - supports-color dev: true @@ -9471,19 +9365,19 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/helper-define-polyfill-provider': 0.3.3 - core-js-compat: 3.26.1 + core-js-compat: 3.27.2 transitivePeerDependencies: - supports-color dev: false - /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.5: + /babel-plugin-polyfill-corejs3/0.6.0_@babel+core@7.20.12: resolution: {integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 - core-js-compat: 3.26.1 + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 + core-js-compat: 3.27.2 transitivePeerDependencies: - supports-color @@ -9497,13 +9391,13 @@ packages: - supports-color dev: false - /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.5: + /babel-plugin-polyfill-regenerator/0.4.1_@babel+core@7.20.12: resolution: {integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.20.5 - '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.20.12 transitivePeerDependencies: - supports-color @@ -9539,38 +9433,38 @@ packages: - supports-color dev: false - /babel-preset-fbjs/3.4.0_@babel+core@7.20.5: + /babel-preset-fbjs/3.4.0_@babel+core@7.20.12: resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.5 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.5 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.5 - '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.20.12 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.12 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.20.12 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-member-expression-literals': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12 + '@babel/plugin-transform-object-super': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-property-literals': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 transitivePeerDependencies: - supports-color @@ -9667,24 +9561,6 @@ packages: resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} dev: true - /body-parser/1.19.0: - resolution: {integrity: sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==} - engines: {node: '>= 0.8'} - dependencies: - bytes: 3.1.0 - content-type: 1.0.4 - debug: 2.6.9 - depd: 1.1.2 - http-errors: 1.7.2 - iconv-lite: 0.4.24 - on-finished: 2.3.0 - qs: 6.7.0 - raw-body: 2.4.0 - type-is: 1.6.18 - transitivePeerDependencies: - - supports-color - dev: false - /body-parser/1.20.1: resolution: {integrity: sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} @@ -9865,9 +9741,9 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001439 + caniuse-lite: 1.0.30001446 electron-to-chromium: 1.4.284 - node-releases: 2.0.6 + node-releases: 2.0.8 update-browserslist-db: 1.0.10_browserslist@4.21.4 /bser/2.1.1: @@ -9932,11 +9808,6 @@ packages: resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} engines: {node: '>= 0.8'} - /bytes/3.1.0: - resolution: {integrity: sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==} - engines: {node: '>= 0.8'} - dev: false - /bytes/3.1.2: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} @@ -10102,8 +9973,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - /caniuse-lite/1.0.30001439: - resolution: {integrity: sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==} + /caniuse-lite/1.0.30001446: + resolution: {integrity: sha512-fEoga4PrImGcwUUGEol/PoFCSBnSkA9drgdkxXkJLsUBOnJ8rs3zDv6ApqYXGQFOyMPsjh79naWhF4DAxbF8rw==} /capture-exit/2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} @@ -10248,17 +10119,6 @@ packages: isobject: 3.0.1 static-extend: 0.1.2 - /class-variance-authority/0.2.4_typescript@4.9.4: - resolution: {integrity: sha512-JJKn9ESARiNEBBRdTSPB9/SwaPb+wi19DMX/r8BVSyp1dxHa3JyUxa2GQjEVag5rBi+O3pL64UZ0XhnQsMz+3w==} - peerDependencies: - typescript: '>= 4.5.5 < 5' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - typescript: 4.9.4 - dev: false - /class-variance-authority/0.4.0_typescript@4.9.4: resolution: {integrity: sha512-74enNN8O9ZNieycac/y8FxqgyzZhZbxmCitAtAeUrLPlxjSd5zA7LfpprmxEcOmQBnaGs5hYhiSGnJ0mqrtBLQ==} peerDependencies: @@ -10281,8 +10141,8 @@ packages: source-map: 0.6.1 dev: true - /clean-css/5.3.1: - resolution: {integrity: sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==} + /clean-css/5.3.2: + resolution: {integrity: sha512-JVJbM+f3d3Q704rF4bqQ5UUyTtuJ0JRKNbTKVEeujCCBoMdkEi+V+e8oktO9qGQNSvHrFTM6JZRXrUvGR1czww==} engines: {node: '>= 10.0'} dependencies: source-map: 0.6.1 @@ -10331,6 +10191,22 @@ packages: '@colors/colors': 1.5.0 dev: true + /cli-truncate/2.1.0: + resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} + engines: {node: '>=8'} + dependencies: + slice-ansi: 3.0.0 + string-width: 4.2.3 + dev: true + + /cli-truncate/3.1.0: + resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + slice-ansi: 5.0.0 + string-width: 5.1.2 + dev: true + /client-only/0.0.1: resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} dev: false @@ -10459,6 +10335,11 @@ packages: /command-exists/1.2.9: resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} + /commander/10.0.0: + resolution: {integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==} + engines: {node: '>=14'} + dev: true + /commander/2.13.0: resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==} @@ -10489,8 +10370,8 @@ packages: engines: {node: '>= 12'} dev: true - /commander/9.4.1: - resolution: {integrity: sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw==} + /commander/9.5.0: + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} engines: {node: ^12.20.0 || >=14} /comment-json/4.2.3: @@ -10641,24 +10522,18 @@ packages: resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} engines: {node: '>=0.10.0'} - /core-js-compat/3.26.1: - resolution: {integrity: sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==} + /core-js-compat/3.27.2: + resolution: {integrity: sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==} dependencies: browserslist: 4.21.4 - /core-js-compat/3.27.1: - resolution: {integrity: sha512-Dg91JFeCDA17FKnneN7oCMz4BkQ4TcffkgHP4OWwp9yx3pi7ubqMDXXSacfNak1PQqjc95skyt+YBLHQJnkJwA==} - dependencies: - browserslist: 4.21.4 - dev: false - - /core-js-pure/3.26.1: - resolution: {integrity: sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==} + /core-js-pure/3.27.2: + resolution: {integrity: sha512-Cf2jqAbXgWH3VVzjyaaFkY1EBazxugUepGymDoeteyYr9ByX51kD2jdHZlsEF/xnJMyN3Prua7mQuzwMg6Zc9A==} requiresBuild: true dev: true - /core-js/3.26.1: - resolution: {integrity: sha512-21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA==} + /core-js/3.27.2: + resolution: {integrity: sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w==} requiresBuild: true dev: true @@ -10835,112 +10710,111 @@ packages: type-fest: 2.19.0 dev: false - /cspell-dictionary/6.17.0: - resolution: {integrity: sha512-jUb/kIR2glYliRem11kCu7gaXUcHKp8L2G73LmzIULx+UKRgTa/100FXqm5lZUWnCaIznMmaA2QtutP+xYy5AQ==} + /cspell-dictionary/6.19.2: + resolution: {integrity: sha512-XLVIsoiy97VAtC4V3tNJkYU7CqWuSejrXIyLdzIaN4yBsC1kOrV1fwJ3vaAuSIqQauDYeST2gBIsHcDuGYEcew==} engines: {node: '>=14'} dependencies: - '@cspell/cspell-pipe': 6.17.0 - '@cspell/cspell-types': 6.17.0 - cspell-trie-lib: 6.17.0 + '@cspell/cspell-pipe': 6.19.2 + '@cspell/cspell-types': 6.19.2 + cspell-trie-lib: 6.19.2 fast-equals: 4.0.3 gensequence: 4.0.3 dev: true - /cspell-gitignore/6.17.0: - resolution: {integrity: sha512-SDyPv6LqBebvoTKFP+ewh51gvmv1z8JDg7llumUFH2u1WoiMZBLLOL2pAa9UM0f6eEzBC1iS6nWQ+20VJx2yQA==} + /cspell-gitignore/6.19.2: + resolution: {integrity: sha512-dPxGxakkBs5dmD+nCom6t74ejWsd6RJJkgs0sccPDFKULXAInjeKMeTraskYTg4wXqybbiuXCB2sOIdeQmNq6w==} engines: {node: '>=14'} hasBin: true dependencies: - cspell-glob: 6.17.0 + cspell-glob: 6.19.2 find-up: 5.0.0 dev: true - /cspell-glob/6.17.0: - resolution: {integrity: sha512-iKz2CvUU1HXuNJfxYRwSQFck3pCl9EhTx2qIR0lKf4gccCR89p44qxIR98nTbX1OF89lhfH6sUHtzkJ3nPWh+A==} + /cspell-glob/6.19.2: + resolution: {integrity: sha512-raco5vbd3Exb1uQaD5Bn6aS0KpRbNM7etmn/Q2T2KSwhvH+DRSEMTAkSG3rb0+y0ixkA/Qspjt68QnYxsbFPmw==} engines: {node: '>=14'} dependencies: micromatch: 4.0.5 dev: true - /cspell-grammar/6.17.0: - resolution: {integrity: sha512-3B9QmKWOjAPzLYqesLP2niIbo6Yvb4rodjIwFXUvL3vmMZF4c9HFU/JVTTerLxrwh3DH8u6Mac52RzUurOJ15Q==} + /cspell-grammar/6.19.2: + resolution: {integrity: sha512-f1IswIPxHX0uQaFzmDWJtgWVd3KkFElTnxj0cgvSZs8ehEaC+/jT30q4K36oVA7jgLtdLuDXafQf9Lp2FHf9bA==} engines: {node: '>=14'} hasBin: true dependencies: - '@cspell/cspell-pipe': 6.17.0 - '@cspell/cspell-types': 6.17.0 + '@cspell/cspell-pipe': 6.19.2 + '@cspell/cspell-types': 6.19.2 dev: true - /cspell-io/6.17.0: - resolution: {integrity: sha512-cofZlvKzXP3QytGM6OlREQIXLFcSdEKOFubSVHkRvAVX3IqeQnKo4oVF85C6McjwXTrJ1OH+SDP0vcpn6mKqTg==} + /cspell-io/6.19.2: + resolution: {integrity: sha512-ZVyygx4N8cTF2HeNUXV7IpX/LXSOSCNE+W3gY4/fju1PJWh+roTf7pVDURGtMxpSV7cq44ewYA3/qCgnF8QnkA==} engines: {node: '>=14'} dependencies: - '@cspell/cspell-service-bus': 6.17.0 - node-fetch: 2.6.7 + '@cspell/cspell-service-bus': 6.19.2 + node-fetch: 2.6.8 transitivePeerDependencies: - encoding dev: true - /cspell-lib/6.17.0: - resolution: {integrity: sha512-oZNkm0UhRa4nkoYPij23z7cbVXFPVHs7SdGC6IAVc71uz44nLNeC3e8+UnTErOU7nlROvjp9k3G90DEwej1TqQ==} + /cspell-lib/6.19.2: + resolution: {integrity: sha512-phPyt68bKeTUZKdmnjke2ffnIJPaXLdiUFAeU0kMNk15ljkczjMR4J6WkgYCKc+SCNQjYJSS+z4nLbtQivqDxg==} engines: {node: '>=14.6'} dependencies: - '@cspell/cspell-bundled-dicts': 6.17.0 - '@cspell/cspell-pipe': 6.17.0 - '@cspell/cspell-types': 6.17.0 - '@cspell/strong-weak-map': 6.17.0 + '@cspell/cspell-bundled-dicts': 6.19.2 + '@cspell/cspell-pipe': 6.19.2 + '@cspell/cspell-types': 6.19.2 + '@cspell/strong-weak-map': 6.19.2 clear-module: 4.1.2 comment-json: 4.2.3 configstore: 5.0.1 cosmiconfig: 8.0.0 - cspell-dictionary: 6.17.0 - cspell-glob: 6.17.0 - cspell-grammar: 6.17.0 - cspell-io: 6.17.0 - cspell-trie-lib: 6.17.0 + cspell-dictionary: 6.19.2 + cspell-glob: 6.19.2 + cspell-grammar: 6.19.2 + cspell-io: 6.19.2 + cspell-trie-lib: 6.19.2 fast-equals: 4.0.3 find-up: 5.0.0 - fs-extra: 10.1.0 gensequence: 4.0.3 import-fresh: 3.3.0 resolve-from: 5.0.0 resolve-global: 1.0.0 vscode-languageserver-textdocument: 1.0.8 - vscode-uri: 3.0.6 + vscode-uri: 3.0.7 transitivePeerDependencies: - encoding dev: true - /cspell-trie-lib/6.17.0: - resolution: {integrity: sha512-hmyZHhemWYLjjEDItAhgAF0tuL2iiQg+5PzUmELKIBSWEsmFdfxh1xWCmo1q0+vzVML+0Ms2cspiGyS9y/CF7A==} + /cspell-trie-lib/6.19.2: + resolution: {integrity: sha512-4rfiq0FeSlLG1hBQv5DpOgsbOzNs5hGz/V6Kmv0gbqaxRZyw+8sYECqdTNDx+0OXMgSRhUrwMoCpCMyWiq7tBA==} engines: {node: '>=14'} dependencies: - '@cspell/cspell-pipe': 6.17.0 - '@cspell/cspell-types': 6.17.0 - fs-extra: 10.1.0 + '@cspell/cspell-pipe': 6.19.2 + '@cspell/cspell-types': 6.19.2 + fs-extra: 11.1.0 gensequence: 4.0.3 dev: true - /cspell/6.17.0: - resolution: {integrity: sha512-R1TXu1p2vON6rHXxZAUPbdf+v+ckPhWiEb3apq2PyxLSjzMiZDm2ThIwRcsQaMLLZyFOD+J3SHj0lZi1Qoaa8w==} + /cspell/6.19.2: + resolution: {integrity: sha512-nyrxnTcv1UzzdElZe96OMU8mxJGaLBnmPCR/HOaFE367EZD+WS5fcpoDBHC9tfD7yJv4+q5sjByYZltcV6jo0A==} engines: {node: '>=14'} hasBin: true dependencies: - '@cspell/cspell-pipe': 6.17.0 + '@cspell/cspell-pipe': 6.19.2 chalk: 4.1.2 - commander: 9.4.1 - cspell-gitignore: 6.17.0 - cspell-glob: 6.17.0 - cspell-lib: 6.17.0 + commander: 10.0.0 + cspell-gitignore: 6.19.2 + cspell-glob: 6.19.2 + cspell-lib: 6.19.2 + fast-glob: 3.2.12 fast-json-stable-stringify: 2.1.0 file-entry-cache: 6.0.1 - fs-extra: 10.1.0 + fs-extra: 11.1.0 get-stdin: 8.0.0 - glob: 8.0.3 imurmurhash: 0.1.4 semver: 7.3.8 strip-ansi: 6.0.1 - vscode-uri: 3.0.6 + vscode-uri: 3.0.7 transitivePeerDependencies: - encoding dev: true @@ -10994,31 +10868,31 @@ packages: peerDependencies: webpack: ^4.27.0 || ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.20 + icss-utils: 5.1.0_postcss@8.4.21 loader-utils: 2.0.4 - postcss: 8.4.20 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.20 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.20 - postcss-modules-scope: 3.0.0_postcss@8.4.20 - postcss-modules-values: 4.0.0_postcss@8.4.20 + postcss: 8.4.21 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.21 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.21 + postcss-modules-scope: 3.0.0_postcss@8.4.21 + postcss-modules-values: 4.0.0_postcss@8.4.21 postcss-value-parser: 4.2.0 schema-utils: 3.1.1 semver: 7.3.8 webpack: 5.75.0 dev: true - /css-loader/6.7.2: - resolution: {integrity: sha512-oqGbbVcBJkm8QwmnNzrFrWTnudnRZC+1eXikLJl0n4ljcfotgRifpg2a1lKy8jTrc4/d9A/ap1GFq1jDKG7J+Q==} + /css-loader/6.7.3: + resolution: {integrity: sha512-qhOH1KlBMnZP8FzRO6YCH9UHXQhVMcEGLyNdb7Hv2cpcmJbW0YrddO+tG1ab5nT41KpHIYGsbeHqxB9xPu1pKQ==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.20 - postcss: 8.4.20 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.20 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.20 - postcss-modules-scope: 3.0.0_postcss@8.4.20 - postcss-modules-values: 4.0.0_postcss@8.4.20 + icss-utils: 5.1.0_postcss@8.4.21 + postcss: 8.4.21 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.21 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.21 + postcss-modules-scope: 3.0.0_postcss@8.4.21 + postcss-modules-values: 4.0.0_postcss@8.4.21 postcss-value-parser: 4.2.0 semver: 7.3.8 dev: true @@ -11141,15 +11015,17 @@ packages: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dev: true - /deep-equal/2.1.0: - resolution: {integrity: sha512-2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA==} + /deep-equal/2.2.0: + resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==} dependencies: call-bind: 1.0.2 - es-get-iterator: 1.1.2 + es-get-iterator: 1.1.3 get-intrinsic: 1.1.3 is-arguments: 1.1.1 + is-array-buffer: 3.0.1 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 @@ -11266,11 +11142,6 @@ packages: /denodeify/1.2.1: resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} - /depd/1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} - engines: {node: '>= 0.6'} - dev: false - /depd/2.0.0: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} @@ -11312,7 +11183,7 @@ packages: resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} hasBin: true dependencies: - address: 1.2.1 + address: 1.2.2 debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -11373,8 +11244,8 @@ packages: esutils: 2.0.3 dev: true - /dom-accessibility-api/0.5.14: - resolution: {integrity: sha512-NMt+m9zFMPZe0JcY9gN224Qvk6qLIdqex29clBvc/y75ZBX9YA9wNK3frsYvu2DI1xcCIwxwnX+TlsJ2DSOADg==} + /dom-accessibility-api/0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} dev: true /dom-converter/0.2.0: @@ -11484,6 +11355,10 @@ packages: stream-shift: 1.0.1 dev: true + /eastasianwidth/0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + dev: true + /ee-first/1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} @@ -11513,6 +11388,10 @@ packages: /emoji-regex/8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + /emoji-regex/9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + dev: true + /emojis-list/3.0.0: resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} engines: {node: '>= 4'} @@ -11602,43 +11481,51 @@ packages: accepts: 1.3.8 escape-html: 1.0.3 - /es-abstract/1.20.5: - resolution: {integrity: sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==} + /es-abstract/1.21.1: + resolution: {integrity: sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==} engines: {node: '>= 0.4'} dependencies: + available-typed-arrays: 1.0.5 call-bind: 1.0.2 + es-set-tostringtag: 2.0.1 es-to-primitive: 1.2.1 function-bind: 1.1.1 function.prototype.name: 1.1.5 get-intrinsic: 1.1.3 get-symbol-description: 1.0.0 + globalthis: 1.0.3 gopd: 1.0.1 has: 1.0.3 has-property-descriptors: 1.0.0 + has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.3 + internal-slot: 1.0.4 + is-array-buffer: 3.0.1 is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 is-string: 1.0.7 + is-typed-array: 1.1.10 is-weakref: 1.0.2 - object-inspect: 1.12.2 + object-inspect: 1.12.3 object-keys: 1.1.1 object.assign: 4.1.4 regexp.prototype.flags: 1.4.3 safe-regex-test: 1.0.0 string.prototype.trimend: 1.0.6 string.prototype.trimstart: 1.0.6 + typed-array-length: 1.0.4 unbox-primitive: 1.0.2 + which-typed-array: 1.1.9 dev: true /es-array-method-boxes-properly/1.0.0: resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} dev: true - /es-get-iterator/1.1.2: - resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==} + /es-get-iterator/1.1.3: + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.3 @@ -11648,6 +11535,7 @@ packages: is-set: 2.0.2 is-string: 1.0.7 isarray: 2.0.5 + stop-iteration-iterator: 1.0.0 dev: true /es-module-lexer/0.10.5: @@ -11658,6 +11546,15 @@ packages: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} dev: true + /es-set-tostringtag/2.0.1: + resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.1.3 + has: 1.0.3 + has-tostringtag: 1.0.0 + dev: true + /es-shim-unscopables/1.0.0: resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} dependencies: @@ -11678,8 +11575,8 @@ packages: engines: {node: '>=0.4.0'} dev: true - /es6-shim/0.35.6: - resolution: {integrity: sha512-EmTr31wppcaIAgblChZiuN/l9Y7DPyw8Xtbg7fIVngn6zMW+IEBJDJngeKC3x6wr0V/vcA2wqeFnaw1bFJbDdA==} + /es6-shim/0.35.7: + resolution: {integrity: sha512-baZkUfTDSx7X69+NA8imbvGrsPfqH0MX7ADdIDjqwsI8lkTgLIiD2QWrUCSGsUQ0YMnSCA/4pNgSyXdnLHWf3A==} dev: true /esbuild-android-64/0.15.18: @@ -11871,34 +11768,34 @@ packages: esbuild-windows-64: 0.15.18 esbuild-windows-arm64: 0.15.18 - /esbuild/0.16.14: - resolution: {integrity: sha512-6xAn3O6ZZyoxZAEkwfI9hw4cEqSr/o1ViJtnkvImVkblmUN65Md04o0S/7H1WNu1XGf1Cjij/on7VO4psIYjkw==} + /esbuild/0.16.17: + resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==} engines: {node: '>=12'} hasBin: true requiresBuild: true optionalDependencies: - '@esbuild/android-arm': 0.16.14 - '@esbuild/android-arm64': 0.16.14 - '@esbuild/android-x64': 0.16.14 - '@esbuild/darwin-arm64': 0.16.14 - '@esbuild/darwin-x64': 0.16.14 - '@esbuild/freebsd-arm64': 0.16.14 - '@esbuild/freebsd-x64': 0.16.14 - '@esbuild/linux-arm': 0.16.14 - '@esbuild/linux-arm64': 0.16.14 - '@esbuild/linux-ia32': 0.16.14 - '@esbuild/linux-loong64': 0.16.14 - '@esbuild/linux-mips64el': 0.16.14 - '@esbuild/linux-ppc64': 0.16.14 - '@esbuild/linux-riscv64': 0.16.14 - '@esbuild/linux-s390x': 0.16.14 - '@esbuild/linux-x64': 0.16.14 - '@esbuild/netbsd-x64': 0.16.14 - '@esbuild/openbsd-x64': 0.16.14 - '@esbuild/sunos-x64': 0.16.14 - '@esbuild/win32-arm64': 0.16.14 - '@esbuild/win32-ia32': 0.16.14 - '@esbuild/win32-x64': 0.16.14 + '@esbuild/android-arm': 0.16.17 + '@esbuild/android-arm64': 0.16.17 + '@esbuild/android-x64': 0.16.17 + '@esbuild/darwin-arm64': 0.16.17 + '@esbuild/darwin-x64': 0.16.17 + '@esbuild/freebsd-arm64': 0.16.17 + '@esbuild/freebsd-x64': 0.16.17 + '@esbuild/linux-arm': 0.16.17 + '@esbuild/linux-arm64': 0.16.17 + '@esbuild/linux-ia32': 0.16.17 + '@esbuild/linux-loong64': 0.16.17 + '@esbuild/linux-mips64el': 0.16.17 + '@esbuild/linux-ppc64': 0.16.17 + '@esbuild/linux-riscv64': 0.16.17 + '@esbuild/linux-s390x': 0.16.17 + '@esbuild/linux-x64': 0.16.17 + '@esbuild/netbsd-x64': 0.16.17 + '@esbuild/openbsd-x64': 0.16.17 + '@esbuild/sunos-x64': 0.16.17 + '@esbuild/win32-arm64': 0.16.17 + '@esbuild/win32-ia32': 0.16.17 + '@esbuild/win32-x64': 0.16.17 dev: true /escalade/3.1.1: @@ -11946,22 +11843,22 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-prettier/8.5.0_eslint@8.29.0: - resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} + /eslint-config-prettier/8.6.0_eslint@8.32.0: + resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.29.0 + eslint: 8.32.0 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.29.0: + /eslint-plugin-react-hooks/4.6.0_eslint@8.32.0: resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 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.29.0 + eslint: 8.32.0 dev: true /eslint-plugin-react-native-globals/0.1.2: @@ -11973,14 +11870,14 @@ packages: peerDependencies: eslint: ^3.17.0 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/traverse': 7.20.5 + '@babel/traverse': 7.20.12 eslint-plugin-react-native-globals: 0.1.2 transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-react/7.31.11_eslint@8.29.0: - resolution: {integrity: sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==} + /eslint-plugin-react/7.32.1_eslint@8.32.0: + resolution: {integrity: sha512-vOjdgyd0ZHBXNsmvU+785xY8Bfe57EFbTYYk8XrROzWpr9QBvpjITvAXt9xqcE6+8cjR/g1+mfumPToxsl1www==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 @@ -11989,7 +11886,7 @@ packages: array.prototype.flatmap: 1.3.1 array.prototype.tosorted: 1.1.1 doctrine: 2.1.0 - eslint: 8.29.0 + eslint: 8.32.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.3 minimatch: 3.1.2 @@ -12027,13 +11924,13 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.29.0: + /eslint-utils/3.0.0_eslint@8.32.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.29.0 + eslint: 8.32.0 eslint-visitor-keys: 2.1.0 dev: true @@ -12047,13 +11944,13 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.29.0: - resolution: {integrity: sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==} + /eslint/8.32.0: + resolution: {integrity: sha512-nETVXpnthqKPFyuY2FNjz/bEd6nbosRgKbkgS/y1C7LJop96gYHWpiguLecMHQ2XCPxn77DS0P+68WzG6vkZSQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint/eslintrc': 1.3.3 - '@humanwhocodes/config-array': 0.11.7 + '@eslint/eslintrc': 1.4.1 + '@humanwhocodes/config-array': 0.11.8 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 ajv: 6.12.6 @@ -12063,7 +11960,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.29.0 + eslint-utils: 3.0.0_eslint@8.32.0 eslint-visitor-keys: 3.3.0 espree: 9.4.1 esquery: 1.4.0 @@ -12074,12 +11971,12 @@ packages: glob-parent: 6.0.2 globals: 13.19.0 grapheme-splitter: 1.0.4 - ignore: 5.2.1 + 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.2.0 + js-sdsl: 4.3.0 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 @@ -12148,8 +12045,8 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/traverse': 7.20.12 + '@babel/types': 7.20.7 c8: 7.12.0 transitivePeerDependencies: - supports-color @@ -12227,6 +12124,21 @@ packages: strip-final-newline: 2.0.0 dev: true + /execa/6.1.0: + resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 3.0.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.1.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + dev: true + /expand-brackets/2.1.4: resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} engines: {node: '>=0.10.0'} @@ -12241,20 +12153,20 @@ packages: transitivePeerDependencies: - supports-color - /expo-application/5.0.1_expo@47.0.10: + /expo-application/5.0.1_expo@47.0.13: resolution: {integrity: sha512-bThxK5zH/Lc2tkCvEXGjfM7ayvOVmPWYcWzXsMIU1RtG73TyXo4cq+73FvfDNIWn6gKS0WyMcmoPB3WXEV/jsw==} peerDependencies: expo: '*' dependencies: - expo: 47.0.10 + expo: 47.0.13 dev: false - /expo-asset/8.7.0_expo@47.0.10: + /expo-asset/8.7.0_expo@47.0.13: resolution: {integrity: sha512-lkoNsHK6vf+outISB6/37SonXcAL6Buw0ycjiwQVFfpOBKpkQa+zw5wm1m3KwjH2txmR3xdIzcpWsJkgovYCvQ==} dependencies: blueimp-md5: 2.19.0 - expo-constants: 14.0.2_expo@47.0.10 - expo-file-system: 15.1.1_expo@47.0.10 + expo-constants: 14.0.2_expo@47.0.13 + expo-file-system: 15.1.1_expo@47.0.13 invariant: 2.2.4 md5-file: 3.2.3 path-browserify: 1.0.1 @@ -12264,59 +12176,59 @@ packages: - supports-color dev: false - /expo-constants/14.0.2_expo@47.0.10: + /expo-constants/14.0.2_expo@47.0.13: resolution: {integrity: sha512-wzV3nrzTXTI8yG0tfas3fnqCfKV6YE+1GphEREyVDAShEB6mBInX1b6HgtpHFy2wOtnml+lPVmTCeGtjjLnZhA==} peerDependencies: expo: '*' dependencies: '@expo/config': 7.0.3 - expo: 47.0.10 + expo: 47.0.13 uuid: 3.4.0 transitivePeerDependencies: - supports-color dev: false - /expo-error-recovery/4.0.1_expo@47.0.10: + /expo-error-recovery/4.0.1_expo@47.0.13: resolution: {integrity: sha512-wceptnRX+N3qCSVTNbIchUFu3GmY30onRH5L66OF8HMLpAIQfrZMLxJfz7SAMJTcr3jxsJ11vSa2l2RaPKgHsQ==} requiresBuild: true peerDependencies: expo: '*' dependencies: - expo: 47.0.10 + expo: 47.0.13 dev: false optional: true - /expo-file-system/15.1.1_expo@47.0.10: + /expo-file-system/15.1.1_expo@47.0.13: resolution: {integrity: sha512-MYYDKxjLo9VOkvGHqym5EOAUS+ero9O66X5zI+EXJzqNznKvnfScdXeeAaQzShmWtmLkdVDCoYFGOaTvTA1wTQ==} peerDependencies: expo: '*' dependencies: - expo: 47.0.10 + expo: 47.0.13 uuid: 3.4.0 dev: false - /expo-font/11.0.1_expo@47.0.10: + /expo-font/11.0.1_expo@47.0.13: resolution: {integrity: sha512-LGAIluWZfru0J0n87dzb6pwAB6TVMTEiLcsd/ktozzbn4DlN7SeQy40+ruU6bvAKCOGrnRneYbKSIOGkrd7oNg==} peerDependencies: expo: '*' dependencies: - expo: 47.0.10 + expo: 47.0.13 fontfaceobserver: 2.3.0 dev: false - /expo-keep-awake/11.0.1_expo@47.0.10: + /expo-keep-awake/11.0.1_expo@47.0.13: resolution: {integrity: sha512-44ZjgLE4lnce2d40Pv8xsjMVc6R5GvgHOwZfkLYtGmgYG9TYrEJeEj5UfSeweXPL3pBFhXKfFU8xpGYMaHdP0A==} peerDependencies: expo: '*' dependencies: - expo: 47.0.10 + expo: 47.0.13 dev: false - /expo-linking/3.3.0_expo@47.0.10: + /expo-linking/3.3.0_expo@47.0.13: resolution: {integrity: sha512-wXPzI2kijnql2L2F6i8zP1zINTkYlcRXyh1iV3P6Bt57v6yZiiniZBnb6grJVj19LOmluNs0PYrbX1ZsHBChCg==} dependencies: '@types/qs': 6.9.7 - expo-constants: 14.0.2_expo@47.0.10 + expo-constants: 14.0.2_expo@47.0.13 invariant: 2.2.4 qs: 6.11.0 url-parse: 1.5.10 @@ -12325,16 +12237,16 @@ packages: - supports-color dev: false - /expo-media-library/15.0.0_expo@47.0.10: + /expo-media-library/15.0.0_expo@47.0.13: resolution: {integrity: sha512-BO17VEElQHf2kK45Vuqm4QtutWsT5X4clO8DjTp2BUNvmY+JgOTKsjPs1LIQcNaaum64u/Gfp3V4HV2a6JnHJg==} peerDependencies: expo: '*' dependencies: - expo: 47.0.10 + expo: 47.0.13 dev: false - /expo-modules-autolinking/1.0.1: - resolution: {integrity: sha512-Ch0K/Vb2W7zSPlPKKFr6dwgwge6sSCpl7XPW8jrc7hUy+M72dvcfsBsaphvGNlKIZM6TtpCt0xbUlL48wI2y1A==} + /expo-modules-autolinking/1.0.2: + resolution: {integrity: sha512-skAUXERKw1gtSw8xsvft9DE0KVhBvw4dujAtgCZoG2l513fN7ds+B5+30ZVgZATMC+EjtlmjKXzhp5QS44DCFA==} hasBin: true dependencies: chalk: 4.1.2 @@ -12344,21 +12256,21 @@ packages: fs-extra: 9.1.0 dev: false - /expo-modules-core/1.1.0: - resolution: {integrity: sha512-alNfgWyGECYUK3R0bIUc0OHXi5btqFWDMNDSrdeNSdxFKvlzrtQKdbLHJTphumh9KgAIpbEKrUYE2Vimg+Tr8w==} + /expo-modules-core/1.1.1: + resolution: {integrity: sha512-+AcaYmaWphIfkBcccu65dyOhWnpOJ3+SQpoI4lI/Plg1nNjOLuBjmrdVvpiJOvkN+CqbNGsJ5Yll8LLk+C107Q==} dependencies: compare-versions: 3.6.0 invariant: 2.2.4 dev: false - /expo-splash-screen/0.17.5_expo@47.0.10: + /expo-splash-screen/0.17.5_expo@47.0.13: resolution: {integrity: sha512-ejSO78hwHXz8T9u8kh8t4r6CR4h70iBvA65gX8GK+dYxZl6/IANPbIb2VnUpND9vqfW+JnkDw+ZFst+gDnkpcQ==} peerDependencies: expo: '*' dependencies: '@expo/configure-splash-screen': 0.6.0 '@expo/prebuild-config': 5.0.7 - expo: 47.0.10 + expo: 47.0.13 transitivePeerDependencies: - encoding - expo-modules-autolinking @@ -12369,34 +12281,34 @@ packages: resolution: {integrity: sha512-ZWjO6D4ARGYfAd3SWDD3STNudHDhyBZDZjhhseqoEmsf7bS9ykny8KKOhlzJW24qIQNPhkgdvHhaw9fQwMJy3Q==} dev: false - /expo/47.0.10: - resolution: {integrity: sha512-iWiYvZAlxfIp1VYjVakr0koGPSHQOmIT6mz3qxSVi5N8zbHyroXsJX5cWbFJAs9irTTQQ39AaS5bfiRaIVb6xg==} + /expo/47.0.13: + resolution: {integrity: sha512-9VjjGdViCJ9NfWbUE7brkwFBDvKuA35V345vMtHFYNKoGJjXib36yitmawreMDQFv0kMTqTnzc7T2191Pod7Ng==} hasBin: true dependencies: '@babel/runtime': 7.20.7 - '@expo/cli': 0.4.10_6kzijzryk2izs5tfcpver6rkxq + '@expo/cli': 0.4.11_icwh4t4f22ilvzajfiepq6z62e '@expo/config': 7.0.3 '@expo/config-plugins': 5.0.4 '@expo/vector-icons': 13.0.0 babel-preset-expo: 9.2.2 cross-spawn: 6.0.5 - expo-application: 5.0.1_expo@47.0.10 - expo-asset: 8.7.0_expo@47.0.10 - expo-constants: 14.0.2_expo@47.0.10 - expo-file-system: 15.1.1_expo@47.0.10 - expo-font: 11.0.1_expo@47.0.10 - expo-keep-awake: 11.0.1_expo@47.0.10 - expo-modules-autolinking: 1.0.1 - expo-modules-core: 1.1.0 + expo-application: 5.0.1_expo@47.0.13 + expo-asset: 8.7.0_expo@47.0.13 + expo-constants: 14.0.2_expo@47.0.13 + expo-file-system: 15.1.1_expo@47.0.13 + expo-font: 11.0.1_expo@47.0.13 + expo-keep-awake: 11.0.1_expo@47.0.13 + expo-modules-autolinking: 1.0.2 + expo-modules-core: 1.1.1 fbemitter: 3.0.0 getenv: 1.0.0 invariant: 2.2.4 md5-file: 3.2.3 - node-fetch: 2.6.7 + node-fetch: 2.6.8 pretty-format: 26.6.2 uuid: 3.4.0 optionalDependencies: - expo-error-recovery: 4.0.1_expo@47.0.10 + expo-error-recovery: 4.0.1_expo@47.0.13 transitivePeerDependencies: - '@babel/core' - bluebird @@ -12529,8 +12441,8 @@ packages: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: true - /fastq/1.14.0: - resolution: {integrity: sha512-eR2D+V9/ExcbF9ls441yIuN6TI2ED1Y2ZcA5BmMtJsOkWOFRJQ0Jt0g1UwqXJJVAb+V+umH5Dfr8oh4EVP7VVg==} + /fastq/1.15.0: + resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} dependencies: reusify: 1.0.4 @@ -12616,7 +12528,7 @@ packages: /filelist/1.0.4: resolution: {integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==} dependencies: - minimatch: 5.1.1 + minimatch: 5.1.6 dev: true /fill-range/4.0.0: @@ -12849,7 +12761,7 @@ packages: deepmerge: 4.2.2 fs-extra: 9.1.0 glob: 7.2.3 - memfs: 3.4.12 + memfs: 3.4.13 minimatch: 3.1.2 schema-utils: 2.7.0 semver: 7.3.8 @@ -12880,7 +12792,7 @@ packages: deepmerge: 4.2.2 fs-extra: 9.1.0 glob: 7.2.3 - memfs: 3.4.12 + memfs: 3.4.13 minimatch: 3.1.2 schema-utils: 2.7.0 semver: 7.3.8 @@ -12980,6 +12892,15 @@ packages: universalify: 2.0.0 dev: true + /fs-extra/11.1.0: + resolution: {integrity: sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==} + engines: {node: '>=14.14'} + dependencies: + graceful-fs: 4.2.10 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + /fs-extra/8.1.0: resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} engines: {node: '>=6 <7 || >=8'} @@ -13057,7 +12978,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 functions-have-names: 1.2.3 dev: true @@ -13242,17 +13163,6 @@ packages: once: 1.4.0 path-is-absolute: 1.0.1 - /glob/8.0.3: - resolution: {integrity: sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==} - engines: {node: '>=12'} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 5.1.1 - once: 1.4.0 - dev: true - /global-dirs/0.1.1: resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} engines: {node: '>=4'} @@ -13413,6 +13323,11 @@ packages: get-intrinsic: 1.1.3 dev: true + /has-proto/1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} + dev: true + /has-symbols/1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} engines: {node: '>= 0.4'} @@ -13626,7 +13541,7 @@ packages: hasBin: true dependencies: camel-case: 4.1.2 - clean-css: 5.3.1 + clean-css: 5.3.2 commander: 8.3.0 he: 1.2.0 param-case: 3.0.4 @@ -13697,17 +13612,6 @@ packages: resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==} dev: true - /http-errors/1.7.2: - resolution: {integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==} - engines: {node: '>= 0.6'} - dependencies: - depd: 1.1.2 - inherits: 2.0.3 - setprototypeof: 1.1.1 - statuses: 1.5.0 - toidentifier: 1.0.0 - dev: false - /http-errors/2.0.0: resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} engines: {node: '>= 0.8'} @@ -13747,6 +13651,11 @@ packages: engines: {node: '>=10.17.0'} dev: true + /human-signals/3.0.1: + resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} + engines: {node: '>=12.20.0'} + dev: true + /iconv-lite/0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} engines: {node: '>=0.10.0'} @@ -13767,13 +13676,13 @@ packages: postcss: 7.0.39 dev: true - /icss-utils/5.1.0_postcss@8.4.20: + /icss-utils/5.1.0_postcss@8.4.21: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.20 + postcss: 8.4.21 dev: true /ieee754/1.2.1: @@ -13788,11 +13697,6 @@ packages: engines: {node: '>= 4'} dev: true - /ignore/5.2.1: - resolution: {integrity: sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA==} - engines: {node: '>= 4'} - dev: true - /ignore/5.2.4: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} engines: {node: '>= 4'} @@ -13802,8 +13706,8 @@ packages: engines: {node: '>=4.0'} hasBin: true - /immutable/4.1.0: - resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==} + /immutable/4.2.2: + resolution: {integrity: sha512-fTMKDwtbvO5tldky9QZ2fMX7slR0mYpY5nbnFWYp0fOzDhHqhgIw9KoYgxLWsoNTS9ZHGauHj18DTyEw6BK3Og==} /import-fresh/2.0.0: resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} @@ -13856,6 +13760,7 @@ packages: /inherits/2.0.3: resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + dev: true /inherits/2.0.4: resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} @@ -13880,8 +13785,8 @@ packages: ipaddr.js: 1.9.1 dev: false - /internal-slot/1.0.3: - resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} + /internal-slot/1.0.4: + resolution: {integrity: sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==} engines: {node: '>= 0.4'} dependencies: get-intrinsic: 1.1.3 @@ -13965,6 +13870,14 @@ packages: has-tostringtag: 1.0.0 dev: true + /is-array-buffer/3.0.1: + resolution: {integrity: sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==} + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.1.3 + is-typed-array: 1.1.10 + dev: true + /is-arrayish/0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} @@ -14113,6 +14026,11 @@ packages: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} engines: {node: '>=8'} + /is-fullwidth-code-point/4.0.0: + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + engines: {node: '>=12'} + dev: true + /is-function/1.0.2: resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} dev: true @@ -14262,6 +14180,11 @@ packages: resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} engines: {node: '>=8'} + /is-stream/3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + /is-string/1.0.7: resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} engines: {node: '>= 0.4'} @@ -14370,7 +14293,7 @@ packages: resolution: {integrity: sha512-zKqkK+O+dGqevc93KNsbZ/TqTUFd46MwWjYOoMrjIMZ51eU7DtQG3Wmd9SQQT7i7RVnuTPEiYEWHU3MSbxC1Tg==} engines: {node: '>=4.0.0'} dependencies: - punycode: 2.1.1 + punycode: 2.3.0 dev: true /isexe/2.0.0: @@ -14394,7 +14317,7 @@ packages: /isomorphic-unfetch/3.1.0: resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} dependencies: - node-fetch: 2.6.7 + node-fetch: 2.6.8 unfetch: 4.2.0 transitivePeerDependencies: - encoding @@ -14409,8 +14332,8 @@ packages: resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.20.5 - '@babel/parser': 7.20.5 + '@babel/core': 7.20.12 + '@babel/parser': 7.20.7 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -14442,7 +14365,7 @@ packages: /iterate-value/1.0.2: resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} dependencies: - es-get-iterator: 1.1.2 + es-get-iterator: 1.1.3 iterate-iterator: 1.0.2 dev: true @@ -14470,8 +14393,8 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/graceful-fs': 4.1.5 - '@types/node': 18.11.15 + '@types/graceful-fs': 4.1.6 + '@types/node': 18.11.18 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.10 @@ -14493,7 +14416,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 18.11.15 + '@types/node': 18.11.18 dev: true /jest-regex-util/26.0.0: @@ -14509,7 +14432,7 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 18.11.15 + '@types/node': 18.11.18 graceful-fs: 4.2.10 dev: true @@ -14517,7 +14440,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 18.11.15 + '@types/node': 18.11.18 graceful-fs: 4.2.10 /jest-util/26.6.2: @@ -14525,7 +14448,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 18.11.15 + '@types/node': 18.11.18 chalk: 4.1.2 graceful-fs: 4.2.10 is-ci: 2.0.0 @@ -14537,7 +14460,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 18.11.15 + '@types/node': 18.11.18 chalk: 4.1.2 ci-info: 3.7.1 graceful-fs: 4.2.10 @@ -14558,7 +14481,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.11.15 + '@types/node': 18.11.18 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -14567,7 +14490,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.11.15 + '@types/node': 16.18.11 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -14581,15 +14504,15 @@ packages: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 '@sideway/address': 4.1.4 - '@sideway/formula': 3.0.0 + '@sideway/formula': 3.0.1 '@sideway/pinpoint': 2.0.0 /join-component/1.1.0: resolution: {integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==} dev: false - /js-sdsl/4.2.0: - resolution: {integrity: sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==} + /js-sdsl/4.3.0: + resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==} dev: true /js-string-escape/1.0.1: @@ -14622,16 +14545,16 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.20.5 - '@babel/parser': 7.20.5 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.5 - '@babel/preset-flow': 7.18.6_@babel+core@7.20.5 - '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5 - '@babel/register': 7.18.9_@babel+core@7.20.5 - babel-core: 7.0.0-bridge.0_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/parser': 7.20.7 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12 + '@babel/preset-flow': 7.18.6_@babel+core@7.20.12 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 + '@babel/register': 7.18.9_@babel+core@7.20.12 + babel-core: 7.0.0-bridge.0_@babel+core@7.20.12 chalk: 4.1.2 flow-parser: 0.121.0 graceful-fs: 4.2.10 @@ -14650,17 +14573,17 @@ packages: peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.20.5 - '@babel/parser': 7.20.5 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.5 - '@babel/preset-env': 7.20.2_@babel+core@7.20.5 - '@babel/preset-flow': 7.18.6_@babel+core@7.20.5 - '@babel/preset-typescript': 7.18.6_@babel+core@7.20.5 - '@babel/register': 7.18.9_@babel+core@7.20.5 - babel-core: 7.0.0-bridge.0_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/parser': 7.20.7 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12 + '@babel/preset-env': 7.20.2_@babel+core@7.20.12 + '@babel/preset-flow': 7.18.6_@babel+core@7.20.12 + '@babel/preset-typescript': 7.18.6_@babel+core@7.20.12 + '@babel/register': 7.18.9_@babel+core@7.20.12 + babel-core: 7.0.0-bridge.0_@babel+core@7.20.12 chalk: 4.1.2 flow-parser: 0.121.0 graceful-fs: 4.2.10 @@ -14720,14 +14643,14 @@ packages: resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} hasBin: true - /json5/1.0.1: - resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} + /json5/1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true dependencies: minimist: 1.2.7 - /json5/2.2.1: - resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} + /json5/2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} engines: {node: '>=6'} hasBin: true @@ -14796,8 +14719,8 @@ packages: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} - /klona/2.0.5: - resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==} + /klona/2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} engines: {node: '>= 8'} dev: true @@ -14812,9 +14735,9 @@ packages: resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 app-root-dir: 1.0.2 - core-js: 3.26.1 + core-js: 3.27.2 dotenv: 8.6.0 dotenv-expand: 5.1.0 dev: true @@ -14867,6 +14790,48 @@ packages: uc.micro: 1.0.6 dev: true + /lint-staged/13.1.0: + resolution: {integrity: sha512-pn/sR8IrcF/T0vpWLilih8jmVouMlxqXxKuAojmbiGX5n/gDnz+abdPptlj0vYnbfE0SQNl3CY/HwtM0+yfOVQ==} + engines: {node: ^14.13.1 || >=16.0.0} + hasBin: true + dependencies: + cli-truncate: 3.1.0 + colorette: 2.0.19 + commander: 9.5.0 + debug: 4.3.4 + execa: 6.1.0 + lilconfig: 2.0.6 + listr2: 5.0.7 + micromatch: 4.0.5 + normalize-path: 3.0.0 + object-inspect: 1.12.3 + pidtree: 0.6.0 + string-argv: 0.3.1 + yaml: 2.2.1 + transitivePeerDependencies: + - enquirer + - supports-color + dev: true + + /listr2/5.0.7: + resolution: {integrity: sha512-MD+qXHPmtivrHIDRwPYdfNkrzqDiuaKU/rfBcec3WMyMF3xylQj3jMq344OtvQxz7zaCFViRAeqlr2AFhPvXHw==} + engines: {node: ^14.13.1 || >=16.0.0} + peerDependencies: + enquirer: '>= 2.3.0 < 3' + peerDependenciesMeta: + enquirer: + optional: true + dependencies: + cli-truncate: 2.1.0 + colorette: 2.0.19 + log-update: 4.0.0 + p-map: 4.0.0 + rfdc: 1.3.0 + rxjs: 7.8.0 + through: 2.3.8 + wrap-ansi: 7.0.0 + dev: true + /load-json-file/1.1.0: resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} engines: {node: '>=0.10.0'} @@ -14895,7 +14860,7 @@ packages: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 - json5: 1.0.1 + json5: 1.0.2 dev: true /loader-utils/2.0.4: @@ -14904,7 +14869,7 @@ packages: dependencies: big.js: 5.2.2 emojis-list: 3.0.0 - json5: 2.2.1 + json5: 2.2.3 dev: true /locate-path/3.0.0: @@ -14977,6 +14942,16 @@ packages: chalk: 4.1.2 is-unicode-supported: 0.1.0 + /log-update/4.0.0: + resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} + engines: {node: '>=10'} + dependencies: + ansi-escapes: 4.3.2 + cli-cursor: 3.1.0 + slice-ansi: 4.0.0 + wrap-ansi: 6.2.0 + dev: true + /logkitty/0.7.1: resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} hasBin: true @@ -15146,7 +15121,7 @@ packages: resolution: {integrity: sha512-r0NEbP1dsM+IqB62Ru9TXLP/HDaTdBNIeylYXumuBi6Xv4ufjE1/g3TnslYL8VNqNcGAGbMptQFHrrdfoZ/Sug==} dependencies: html-link-extractor: 1.0.5 - marked: 4.2.4 + marked: 4.2.12 dev: true /markdown-yaml-metadata-parser/3.0.0: @@ -15157,8 +15132,8 @@ packages: js-yaml: 3.14.1 dev: false - /marked/4.2.4: - resolution: {integrity: sha512-Wcc9ikX7Q5E4BYDPvh1C6QNSxrjC9tBgz+A/vAhp59KXUgachw++uMvMKiSW8oA85nopmPZcEvBoex/YLMsiyA==} + /marked/4.2.12: + resolution: {integrity: sha512-yr8hSKa3Fv4D3jdZmtMMPghgVt6TWbk86WQaWhDloQjRSQhMMYCAro7jP7VDJrjjdV8pxVxMssXS8B8Y5DZ5aw==} engines: {node: '>= 12'} hasBin: true @@ -15246,8 +15221,8 @@ packages: mimic-fn: 3.1.0 dev: true - /memfs/3.4.12: - resolution: {integrity: sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw==} + /memfs/3.4.13: + resolution: {integrity: sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.3 @@ -15322,7 +15297,7 @@ packages: /metro-babel-transformer/0.72.3: resolution: {integrity: sha512-PTOR2zww0vJbWeeM3qN90WKENxCLzv9xrwWaNtwVlhcV8/diNdNe82sE1xIxLFI6OQuAVwNMv1Y7VsO2I7Ejrw==} dependencies: - '@babel/core': 7.20.5 + '@babel/core': 7.20.12 hermes-parser: 0.8.0 metro-source-map: 0.72.3 nullthrows: 1.1.1 @@ -15395,8 +15370,8 @@ packages: - supports-color - utf-8-validate - /metro-minify-terser/0.73.6: - resolution: {integrity: sha512-nJH9hQehSX5T2K8zR9hy4YROPjCai+dhzV5eb274ko/K42UanLqM8E7L9BqSndw9jaysIgxe/UZwq/0VzgS7vA==} + /metro-minify-terser/0.73.7: + resolution: {integrity: sha512-gbv1fmMOZm6gJ6dQoD+QktlCi2wk6nlTR8j8lQCjeeXGbs6O9e5XLWNPOexHqo7S69bdbohEnfZnLJFcxgHeNw==} dependencies: terser: 5.16.1 dev: true @@ -15409,44 +15384,44 @@ packages: /metro-react-native-babel-preset/0.72.3: resolution: {integrity: sha512-uJx9y/1NIqoYTp6ZW1osJ7U5ZrXGAJbOQ/Qzl05BdGYvN1S7Qmbzid6xOirgK0EIT0pJKEEh1s8qbassYZe4cw==} dependencies: - '@babel/core': 7.20.5 - '@babel/plugin-proposal-async-generator-functions': 7.20.1_@babel+core@7.20.5 - '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.20.5 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-object-rest-spread': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.5 - '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-block-scoping': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-classes': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-destructuring': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-modules-commonjs': 7.19.6_@babel+core@7.20.5 - '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-parameters': 7.20.5_@babel+core@7.20.5 - '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.5 - '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.5 - '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.20.5 - '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.5 - '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.5 - '@babel/plugin-transform-typescript': 7.20.2_@babel+core@7.20.5 - '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.5 - '@babel/template': 7.18.10 + '@babel/core': 7.20.12 + '@babel/plugin-proposal-async-generator-functions': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.20.12 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-object-rest-spread': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-proposal-optional-chaining': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-export-default-from': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-syntax-flow': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.20.12 + '@babel/plugin-transform-arrow-functions': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-async-to-generator': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-block-scoping': 7.20.11_@babel+core@7.20.12 + '@babel/plugin-transform-classes': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-computed-properties': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-destructuring': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-flow-strip-types': 7.19.0_@babel+core@7.20.12 + '@babel/plugin-transform-function-name': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-literals': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-modules-commonjs': 7.20.11_@babel+core@7.20.12 + '@babel/plugin-transform-named-capturing-groups-regex': 7.20.5_@babel+core@7.20.12 + '@babel/plugin-transform-parameters': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-display-name': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-self': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.20.12 + '@babel/plugin-transform-runtime': 7.19.6_@babel+core@7.20.12 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-spread': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-sticky-regex': 7.18.6_@babel+core@7.20.12 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.20.12 + '@babel/plugin-transform-typescript': 7.20.7_@babel+core@7.20.12 + '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.20.12 + '@babel/template': 7.20.7 react-refresh: 0.4.3 transitivePeerDependencies: - supports-color @@ -15454,8 +15429,8 @@ packages: /metro-react-native-babel-transformer/0.72.3: resolution: {integrity: sha512-Ogst/M6ujYrl/+9mpEWqE3zF7l2mTuftDTy3L8wZYwX1pWUQWQpfU1aJBeWiLxt1XlIq+uriRjKzKoRoIK57EA==} dependencies: - '@babel/core': 7.20.5 - babel-preset-fbjs: 3.4.0_@babel+core@7.20.5 + '@babel/core': 7.20.12 + babel-preset-fbjs: 3.4.0_@babel+core@7.20.12 hermes-parser: 0.8.0 metro-babel-transformer: 0.72.3 metro-react-native-babel-preset: 0.72.3 @@ -15472,14 +15447,14 @@ packages: /metro-runtime/0.72.3: resolution: {integrity: sha512-3MhvDKfxMg2u7dmTdpFOfdR71NgNNo4tzAyJumDVQKwnHYHN44f2QFZQqpPBEmqhWlojNeOxsqFsjYgeyMx6VA==} dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 react-refresh: 0.4.3 /metro-source-map/0.72.3: resolution: {integrity: sha512-eNtpjbjxSheXu/jYCIDrbNEKzMGOvYW6/ePYpRM7gDdEagUOqKOCsi3St8NJIQJzZCsxD2JZ2pYOiomUSkT1yQ==} dependencies: - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/traverse': 7.20.12 + '@babel/types': 7.20.7 invariant: 2.2.4 metro-symbolicate: 0.72.3 nullthrows: 1.1.1 @@ -15506,10 +15481,10 @@ packages: /metro-transform-plugins/0.72.3: resolution: {integrity: sha512-D+TcUvCKZbRua1+qujE0wV1onZvslW6cVTs7dLCyC2pv20lNHjFr1GtW01jN2fyKR2PcRyMjDCppFd9VwDKnSg==} dependencies: - '@babel/core': 7.20.5 - '@babel/generator': 7.20.5 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 + '@babel/core': 7.20.12 + '@babel/generator': 7.20.7 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.12 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color @@ -15517,11 +15492,11 @@ packages: /metro-transform-worker/0.72.3: resolution: {integrity: sha512-WsuWj9H7i6cHuJuy+BgbWht9DK5FOgJxHLGAyULD5FJdTG9rSMFaHDO5WfC0OwQU5h4w6cPT40iDuEGksM7+YQ==} dependencies: - '@babel/core': 7.20.5 - '@babel/generator': 7.20.5 - '@babel/parser': 7.20.5 - '@babel/types': 7.20.5 - babel-preset-fbjs: 3.4.0_@babel+core@7.20.5 + '@babel/core': 7.20.12 + '@babel/generator': 7.20.7 + '@babel/parser': 7.20.7 + '@babel/types': 7.20.7 + babel-preset-fbjs: 3.4.0_@babel+core@7.20.12 metro: 0.72.3 metro-babel-transformer: 0.72.3 metro-cache: 0.72.3 @@ -15541,12 +15516,12 @@ packages: hasBin: true dependencies: '@babel/code-frame': 7.18.6 - '@babel/core': 7.20.5 - '@babel/generator': 7.20.5 - '@babel/parser': 7.20.5 - '@babel/template': 7.18.10 - '@babel/traverse': 7.20.5 - '@babel/types': 7.20.5 + '@babel/core': 7.20.12 + '@babel/generator': 7.20.7 + '@babel/parser': 7.20.7 + '@babel/template': 7.20.7 + '@babel/traverse': 7.20.12 + '@babel/types': 7.20.7 absolute-path: 0.0.0 accepts: 1.3.8 async: 3.2.4 @@ -15580,7 +15555,7 @@ packages: metro-transform-plugins: 0.72.3 metro-transform-worker: 0.72.3 mime-types: 2.1.35 - node-fetch: 2.6.7 + node-fetch: 2.6.8 nullthrows: 1.1.1 rimraf: 2.7.1 serialize-error: 2.1.0 @@ -15669,6 +15644,11 @@ packages: engines: {node: '>=8'} dev: true + /mimic-fn/4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + dev: true + /mimic-response/1.0.1: resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} engines: {node: '>=4'} @@ -15703,8 +15683,8 @@ packages: dependencies: brace-expansion: 1.1.11 - /minimatch/5.1.1: - resolution: {integrity: sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==} + /minimatch/5.1.6: + resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==} engines: {node: '>=10'} dependencies: brace-expansion: 2.0.1 @@ -15942,6 +15922,18 @@ packages: optional: true dependencies: whatwg-url: 5.0.0 + dev: false + + /node-fetch/2.6.8: + resolution: {integrity: sha512-RZ6dBYuj8dRSfxpUSu+NsdF1dpPpluJxwOp+6IoDp/sH2QNDSvurYsAa+F1WxY2RjA1iP93xhcsUoYbF2XBqVg==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 /node-forge/1.3.1: resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} @@ -15986,8 +15978,8 @@ packages: vm-browserify: 1.1.2 dev: true - /node-releases/2.0.6: - resolution: {integrity: sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==} + /node-releases/2.0.8: + resolution: {integrity: sha512-dFSmB8fFHEH/s81Xi+Y/15DQY6VHW81nXRj86EMSL3lmuTmK1e+aT4wrFCkTbm+gSwkw4KpX+rT/pMM2c1mF+A==} /node-stream-zip/1.15.0: resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==} @@ -16044,6 +16036,13 @@ packages: path-key: 3.1.1 dev: true + /npm-run-path/5.1.0: + resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + path-key: 4.0.0 + dev: true + /npmlog/5.0.1: resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} dependencies: @@ -16084,8 +16083,8 @@ packages: resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} engines: {node: '>= 6'} - /object-inspect/1.12.2: - resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} + /object-inspect/1.12.3: + resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} /object-is/1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} @@ -16122,7 +16121,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 dev: true /object.fromentries/2.0.6: @@ -16131,7 +16130,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 dev: true /object.getownpropertydescriptors/2.1.5: @@ -16141,14 +16140,14 @@ packages: array.prototype.reduce: 1.0.5 call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 dev: true /object.hasown/1.1.2: resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} dependencies: define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 dev: true /object.pick/1.3.0: @@ -16163,7 +16162,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 dev: true /objectorarray/1.0.5: @@ -16209,6 +16208,13 @@ packages: dependencies: mimic-fn: 2.1.0 + /onetime/6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + dependencies: + mimic-fn: 4.0.0 + dev: true + /open/6.4.0: resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==} engines: {node: '>=8'} @@ -16568,6 +16574,11 @@ packages: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} + /path-key/4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + dev: true + /path-parse/1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} @@ -16625,7 +16636,7 @@ packages: react-native: '*' react-native-svg: '*' dependencies: - caniuse-lite: 1.0.30001439 + caniuse-lite: 1.0.30001446 react: 18.1.0 react-native: 0.70.5_react@18.1.0 react-native-svg: 13.6.0_tj3nonr5gneraukzjkxpsiy7yu @@ -16651,6 +16662,12 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} + /pidtree/0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + dev: true + /pify/2.3.0: resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} engines: {node: '>=0.10.0'} @@ -16739,7 +16756,7 @@ packages: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 dev: true /popmotion/11.0.3: @@ -16761,27 +16778,27 @@ packages: postcss: 7.0.39 dev: true - /postcss-import/14.1.0_postcss@8.4.20: + /postcss-import/14.1.0_postcss@8.4.21: resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.20 + postcss: 8.4.21 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.1 - /postcss-js/4.0.0_postcss@8.4.20: + /postcss-js/4.0.0_postcss@8.4.21: resolution: {integrity: sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==} engines: {node: ^12 || ^14 || >= 16} peerDependencies: postcss: ^8.3.3 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.20 + postcss: 8.4.21 - /postcss-load-config/3.1.4_postcss@8.4.20: + /postcss-load-config/3.1.4_postcss@8.4.21: resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} engines: {node: '>= 10'} peerDependencies: @@ -16794,7 +16811,7 @@ packages: optional: true dependencies: lilconfig: 2.0.6 - postcss: 8.4.20 + postcss: 8.4.21 yaml: 1.10.2 /postcss-loader/4.3.0_gzaxsinx64nntyd3vmdqwl7coe: @@ -16805,7 +16822,7 @@ packages: webpack: ^4.0.0 || ^5.0.0 dependencies: cosmiconfig: 7.1.0 - klona: 2.0.5 + klona: 2.0.6 loader-utils: 2.0.4 postcss: 7.0.39 schema-utils: 3.1.1 @@ -16821,14 +16838,14 @@ packages: webpack: ^4.0.0 || ^5.0.0 dependencies: cosmiconfig: 7.1.0 - klona: 2.0.5 + klona: 2.0.6 loader-utils: 2.0.4 postcss: 7.0.39 schema-utils: 3.1.1 semver: 7.3.8 dev: true - /postcss-loader/7.0.2_postcss@8.4.20: + /postcss-loader/7.0.2_postcss@8.4.21: resolution: {integrity: sha512-fUJzV/QH7NXUAqV8dWJ9Lg4aTkDCezpTS5HgJ2DvqznexTbSTxgi/dTECvTZ15BwKTtk8G/bqI/QTu2HPd3ZCg==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -16836,8 +16853,8 @@ packages: webpack: ^5.0.0 dependencies: cosmiconfig: 7.1.0 - klona: 2.0.5 - postcss: 8.4.20 + klona: 2.0.6 + postcss: 8.4.21 semver: 7.3.8 dev: true @@ -16848,13 +16865,13 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-extract-imports/3.0.0_postcss@8.4.20: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.21: resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.20 + postcss: 8.4.21 dev: true /postcss-modules-local-by-default/3.0.3: @@ -16867,14 +16884,14 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-modules-local-by-default/4.0.0_postcss@8.4.20: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.21: resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.20 - postcss: 8.4.20 + icss-utils: 5.1.0_postcss@8.4.21 + postcss: 8.4.21 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 dev: true @@ -16887,13 +16904,13 @@ packages: postcss-selector-parser: 6.0.11 dev: true - /postcss-modules-scope/3.0.0_postcss@8.4.20: + /postcss-modules-scope/3.0.0_postcss@8.4.21: resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.20 + postcss: 8.4.21 postcss-selector-parser: 6.0.11 dev: true @@ -16904,23 +16921,23 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-values/4.0.0_postcss@8.4.20: + /postcss-modules-values/4.0.0_postcss@8.4.21: resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.20 - postcss: 8.4.20 + icss-utils: 5.1.0_postcss@8.4.21 + postcss: 8.4.21 dev: true - /postcss-nested/6.0.0_postcss@8.4.20: + /postcss-nested/6.0.0_postcss@8.4.21: resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.20 + postcss: 8.4.21 postcss-selector-parser: 6.0.11 /postcss-selector-parser/6.0.10: @@ -16949,8 +16966,8 @@ packages: source-map: 0.6.1 dev: true - /postcss/8.4.20: - resolution: {integrity: sha512-6Q04AXR1212bXr5fh03u8aAwbLxAQNGQ/Q1LNa0VfOI06ZAlhPHtQvE4OIdpj4kLThXilalPnmDSOD65DcHt+g==} + /postcss/8.4.21: + resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.4 @@ -16978,8 +16995,8 @@ packages: hasBin: true dev: true - /prettier/2.8.1: - resolution: {integrity: sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==} + /prettier/2.8.3: + resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==} engines: {node: '>=10.13.0'} hasBin: true dev: true @@ -17074,7 +17091,7 @@ packages: array.prototype.map: 1.0.5 call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 get-intrinsic: 1.1.3 iterate-value: 1.0.2 dev: true @@ -17085,7 +17102,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 dev: true /promise/7.3.1: @@ -17126,8 +17143,8 @@ packages: forwarded: 0.2.0 ipaddr.js: 1.9.1 - /proxy-compare/2.3.0: - resolution: {integrity: sha512-c3L2CcAi7f7pvlD0D7xsF+2CQIW8C3HaYx2Pfgq8eA4HAl3GAH6/dVYsyBbYF/0XJs2ziGLrzmz5fmzPm6A0pQ==} + /proxy-compare/2.4.0: + resolution: {integrity: sha512-FD8KmQUQD6Mfpd0hywCOzcon/dbkFP8XBd9F1ycbKtvVsfv6TsFUKJ2eC0Iz2y+KzlkdT1Z8SY6ZSgm07zOyqg==} dev: false /proxy-from-env/1.1.0: @@ -17178,8 +17195,8 @@ packages: resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} dev: true - /punycode/2.1.1: - resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} + /punycode/2.3.0: + resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} engines: {node: '>=6'} dev: true @@ -17225,11 +17242,6 @@ packages: dependencies: side-channel: 1.0.4 - /qs/6.7.0: - resolution: {integrity: sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==} - engines: {node: '>=0.6'} - dev: false - /query-string/7.1.3: resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} engines: {node: '>=6'} @@ -17289,16 +17301,6 @@ packages: resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} engines: {node: '>= 0.6'} - /raw-body/2.4.0: - resolution: {integrity: sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==} - engines: {node: '>= 0.8'} - dependencies: - bytes: 3.1.0 - http-errors: 1.7.2 - iconv-lite: 0.4.24 - unpipe: 1.0.0 - dev: false - /raw-body/2.5.1: resolution: {integrity: sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==} engines: {node: '>= 0.8'} @@ -17337,8 +17339,8 @@ packages: pure-color: 1.3.0 dev: false - /react-burger-menu/3.0.8_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-pkPHOUKKd5ClLg5OERIZLXtnYCO2Vxvti+BBIIVLNiD2xjCdgfkSt4TZ2IPUQBkYUY/id7Mq56YDgQ16p4kZog==} + /react-burger-menu/3.0.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-Qy15hkCxwxNEKfqdAv43F+8ZSl+/c6KkqrBwGP0CesFYJ02onHtiUFUbuhSWCMtBH8/n0HhfekFlp/NyCdKYzQ==} engines: {node: '>=4.0.0'} peerDependencies: react: '>=0.14.0' @@ -17385,9 +17387,9 @@ packages: engines: {node: '>=8.10.0'} hasBin: true dependencies: - '@babel/core': 7.20.5 - '@babel/generator': 7.20.5 - '@babel/runtime': 7.20.6 + '@babel/core': 7.20.12 + '@babel/generator': 7.20.7 + '@babel/runtime': 7.20.7 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -17427,7 +17429,7 @@ packages: peerDependencies: react: '>=16.13.1' dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 react: 18.2.0 dev: false @@ -17456,17 +17458,8 @@ packages: react-side-effect: 2.1.2_react@18.2.0 dev: false - /react-hook-form/7.40.0_react@18.2.0: - resolution: {integrity: sha512-0rokdxMPJs0k9bvFtY6dbcSydyNhnZNXCR49jgDr/aR03FDHFOK6gfh8ccqB3fl696Mk7lqh04xdm+agqWXKSw==} - engines: {node: '>=12.22.0'} - peerDependencies: - react: ^16.8.0 || ^17 || ^18 - dependencies: - react: 18.2.0 - dev: false - - /react-hook-form/7.41.5_react@18.1.0: - resolution: {integrity: sha512-DAKjSJ7X9f16oQrP3TW2/eD9N6HOgrmIahP4LOdFphEWVfGZ2LulFd6f6AQ/YS/0cx/5oc4j8a1PXxuaurWp/Q==} + /react-hook-form/7.42.1_react@18.1.0: + resolution: {integrity: sha512-2UIGqwMZksd5HS55crTT1ATLTr0rAI4jS7yVuqTaoRVDhY2Qc4IyjskCmpnmdYqUNOYFy04vW253tb2JRVh+IQ==} engines: {node: '>=12.22.0'} peerDependencies: react: ^16.8.0 || ^17 || ^18 @@ -17474,12 +17467,21 @@ packages: react: 18.1.0 dev: false + /react-hook-form/7.42.1_react@18.2.0: + resolution: {integrity: sha512-2UIGqwMZksd5HS55crTT1ATLTr0rAI4jS7yVuqTaoRVDhY2Qc4IyjskCmpnmdYqUNOYFy04vW253tb2JRVh+IQ==} + engines: {node: '>=12.22.0'} + peerDependencies: + react: ^16.8.0 || ^17 || ^18 + dependencies: + react: 18.2.0 + dev: false + /react-inspector/5.1.1_react@18.2.0: resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} peerDependencies: react: ^16.8.4 || ^17.0.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.2.0 @@ -17494,7 +17496,7 @@ packages: /react-is/18.2.0: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} - /react-json-view/1.21.3_ib3m5ricvtkl2cll7qpr2f6lvq: + /react-json-view/1.21.3_5ndqzdd6t4rivxsukjv3i3ak2q: resolution: {integrity: sha512-13p8IREj9/x/Ye4WI/JpjhoIwuzEgUAtgJZNBJckfzJt1qyh24BdTm6UQNGnyTq9dapQdrqvquZTo3dz1X6Cjw==} peerDependencies: react: ^17.0.0 || ^16.3.0 || ^15.5.4 @@ -17505,7 +17507,7 @@ packages: react-base16-styling: 0.6.0 react-dom: 18.2.0_react@18.2.0 react-lifecycles-compat: 3.0.4 - react-textarea-autosize: 8.4.0_kzbn2opkn2327fwg5yzwzya5o4 + react-textarea-autosize: 8.4.0_3stiutgnnbnfnf3uowm5cip22i transitivePeerDependencies: - '@types/react' - encoding @@ -17534,7 +17536,7 @@ packages: /react-native-codegen/0.70.6: resolution: {integrity: sha512-kdwIhH2hi+cFnG5Nb8Ji2JwmcCxnaOOo9440ov7XDzSvGfmUStnCzl+MCW8jLjqHcE4icT7N9y+xx4f50vfBTw==} dependencies: - '@babel/parser': 7.20.5 + '@babel/parser': 7.20.7 flow-parser: 0.121.0 jscodeshift: 0.13.1 nullthrows: 1.1.1 @@ -17740,7 +17742,7 @@ packages: resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==} engines: {node: '>=0.10.0'} - /react-remove-scroll-bar/2.3.4_kzbn2opkn2327fwg5yzwzya5o4: + /react-remove-scroll-bar/2.3.4_3stiutgnnbnfnf3uowm5cip22i: resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: @@ -17750,13 +17752,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 react: 18.2.0 - react-style-singleton: 2.2.1_kzbn2opkn2327fwg5yzwzya5o4 + react-style-singleton: 2.2.1_3stiutgnnbnfnf3uowm5cip22i tslib: 2.4.1 dev: false - /react-remove-scroll/2.5.4_kzbn2opkn2327fwg5yzwzya5o4: + /react-remove-scroll/2.5.4_3stiutgnnbnfnf3uowm5cip22i: resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==} engines: {node: '>=10'} peerDependencies: @@ -17766,16 +17768,16 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 react: 18.2.0 - react-remove-scroll-bar: 2.3.4_kzbn2opkn2327fwg5yzwzya5o4 - react-style-singleton: 2.2.1_kzbn2opkn2327fwg5yzwzya5o4 + react-remove-scroll-bar: 2.3.4_3stiutgnnbnfnf3uowm5cip22i + react-style-singleton: 2.2.1_3stiutgnnbnfnf3uowm5cip22i tslib: 2.4.1 - use-callback-ref: 1.3.0_kzbn2opkn2327fwg5yzwzya5o4 - use-sidecar: 1.1.2_kzbn2opkn2327fwg5yzwzya5o4 + use-callback-ref: 1.3.0_3stiutgnnbnfnf3uowm5cip22i + use-sidecar: 1.1.2_3stiutgnnbnfnf3uowm5cip22i dev: false - /react-remove-scroll/2.5.5_kzbn2opkn2327fwg5yzwzya5o4: + /react-remove-scroll/2.5.5_3stiutgnnbnfnf3uowm5cip22i: resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: @@ -17785,13 +17787,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 react: 18.2.0 - react-remove-scroll-bar: 2.3.4_kzbn2opkn2327fwg5yzwzya5o4 - react-style-singleton: 2.2.1_kzbn2opkn2327fwg5yzwzya5o4 + react-remove-scroll-bar: 2.3.4_3stiutgnnbnfnf3uowm5cip22i + react-style-singleton: 2.2.1_3stiutgnnbnfnf3uowm5cip22i tslib: 2.4.1 - use-callback-ref: 1.3.0_kzbn2opkn2327fwg5yzwzya5o4 - use-sidecar: 1.1.2_kzbn2opkn2327fwg5yzwzya5o4 + use-callback-ref: 1.3.0_3stiutgnnbnfnf3uowm5cip22i + use-sidecar: 1.1.2_3stiutgnnbnfnf3uowm5cip22i dev: false /react-router-dom/6.4.2_biqbaboplfbrettd7655fr4n2y: @@ -17834,18 +17836,18 @@ packages: react: 18.2.0 dev: false - /react-spring/9.6.0_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-BJJBhGPkNNoj83i6+7z7BDDuB3Q25j0w3WCCKlSqgLQafcjx+Se2ogxKM05m+JjjeML5DTDTbsw0UD0GbAzW4g==} + /react-spring/9.6.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-BeP80R4SLb1bZHW/Q62nECoScHw/fH+jzGkD7dc892HNGa+lbGIJXURc6U7N8JfZ8peEO46nPxR57aUMuYzquQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@react-spring/core': 9.6.0_react@18.2.0 - '@react-spring/konva': 9.6.0_react@18.2.0 - '@react-spring/native': 9.6.0_react@18.2.0 - '@react-spring/three': 9.6.0_react@18.2.0 - '@react-spring/web': 9.6.0_biqbaboplfbrettd7655fr4n2y - '@react-spring/zdog': 9.6.0_biqbaboplfbrettd7655fr4n2y + '@react-spring/core': 9.6.1_react@18.2.0 + '@react-spring/konva': 9.6.1_react@18.2.0 + '@react-spring/native': 9.6.1_react@18.2.0 + '@react-spring/three': 9.6.1_react@18.2.0 + '@react-spring/web': 9.6.1_biqbaboplfbrettd7655fr4n2y + '@react-spring/zdog': 9.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: @@ -17858,7 +17860,7 @@ packages: - zdog dev: false - /react-style-singleton/2.2.1_kzbn2opkn2327fwg5yzwzya5o4: + /react-style-singleton/2.2.1_3stiutgnnbnfnf3uowm5cip22i: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -17868,36 +17870,36 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 tslib: 2.4.1 dev: false - /react-textarea-autosize/8.4.0_kzbn2opkn2327fwg5yzwzya5o4: + /react-textarea-autosize/8.4.0_3stiutgnnbnfnf3uowm5cip22i: resolution: {integrity: sha512-YrTFaEHLgJsi8sJVYHBzYn+mkP3prGkmP2DKb/tm0t7CLJY5t1Rxix8070LAKb0wby7bl/lf2EeHkuMihMZMwQ==} engines: {node: '>=10'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.20.6 + '@babel/runtime': 7.20.7 react: 18.2.0 use-composed-ref: 1.3.0_react@18.2.0 - use-latest: 1.2.1_kzbn2opkn2327fwg5yzwzya5o4 + use-latest: 1.2.1_3stiutgnnbnfnf3uowm5cip22i transitivePeerDependencies: - '@types/react' dev: false - /react-tsparticles/2.6.0_react@18.2.0: - resolution: {integrity: sha512-AtJ/rsseC1eh+8AKfVlWq8E5tNOcfcbxeSI+UHBJTx5j+BvAexf+Db/WGMeWoff+sMzSJbKtY/brMVu+89AOPw==} + /react-tsparticles/2.8.0_react@18.2.0: + resolution: {integrity: sha512-WGvVy8y+D05IMUNiXEytGuJJ23KSBEuodD8FKw/MSK2+DxGEaDwuc07vgqRUyZOA/g+3xPANTHY9Md/j8PPanQ==} requiresBuild: true peerDependencies: react: '>=16' dependencies: fast-deep-equal: 3.1.3 react: 18.2.0 - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false /react/18.1.0: @@ -18358,6 +18360,10 @@ packages: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + /rfdc/1.3.0: + resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} + dev: true + /rimraf/2.2.8: resolution: {integrity: sha512-R5KMKHnPAQaZMqLOsyuyUmcIjSeDm+73eoqQpaXA7AZ22BL+6C+1mcUscgOsNd8WVlJuvlgAPsegcx7pjlV0Dg==} hasBin: true @@ -18395,21 +18401,6 @@ packages: inherits: 2.0.4 dev: true - /rollup-plugin-visualizer/5.8.3: - resolution: {integrity: sha512-QGJk4Bqe4AOat5AjipOh8esZH1nck5X2KFpf4VytUdSUuuuSwvIQZjMGgjcxe/zXexltqaXp5Vx1V3LmnQH15Q==} - engines: {node: '>=14'} - hasBin: true - peerDependencies: - rollup: 2.x || 3.x - peerDependenciesMeta: - rollup: - optional: true - dependencies: - open: 8.4.0 - source-map: 0.7.4 - yargs: 17.6.2 - dev: true - /rollup-plugin-visualizer/5.9.0: resolution: {integrity: sha512-bbDOv47+Bw4C/cgs0czZqfm8L82xOZssk4ayZjG40y9zbXclNk7YikrZTDao6p7+HDiGxrN0b65SgZiVm9k1Cg==} engines: {node: '>=14'} @@ -18433,8 +18424,8 @@ packages: optionalDependencies: fsevents: 2.3.2 - /rollup/3.9.1: - resolution: {integrity: sha512-GswCYHXftN8ZKGVgQhTFUJB/NBXxrRGgO2NCy6E8s1rwEJ4Q9/VttNqcYfEvx4dTo4j58YqdC3OVztPzlKSX8w==} + /rollup/3.10.0: + resolution: {integrity: sha512-JmRYz44NjC1MjVF2VKxc0M1a97vn+cDxeqWmnwyAF4FvpjK8YFdHpaqvQB+3IxCvX05vJxKZkoMDU8TShhmJVA==} engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: @@ -18470,6 +18461,12 @@ packages: aproba: 1.2.0 dev: true + /rxjs/7.8.0: + resolution: {integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==} + dependencies: + tslib: 2.4.1 + dev: true + /safe-buffer/5.1.1: resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} dev: true @@ -18521,7 +18518,7 @@ packages: - supports-color dev: true - /sass-loader/13.2.0_sass@1.56.2: + /sass-loader/13.2.0_sass@1.57.1: resolution: {integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==} engines: {node: '>= 14.15.0'} peerDependencies: @@ -18540,18 +18537,18 @@ packages: sass-embedded: optional: true dependencies: - klona: 2.0.5 + klona: 2.0.6 neo-async: 2.6.2 - sass: 1.56.2 + sass: 1.57.1 dev: true - /sass/1.56.2: - resolution: {integrity: sha512-ciEJhnyCRwzlBCB+h5cCPM6ie/6f8HrhZMQOf5vlU60Y1bI1rx5Zb0vlDZvaycHsg/MqFfF1Eq2eokAa32iw8w==} + /sass/1.57.1: + resolution: {integrity: sha512-O2+LwLS79op7GI0xZ8fqzF7X2m/m8WFfI02dHOdsK5R2ECeS5F62zrwg/relM1rjSLy7Vd/DiMNIvPrQGsA0jw==} engines: {node: '>=12.0.0'} hasBin: true dependencies: chokidar: 3.5.3 - immutable: 4.1.0 + immutable: 4.2.2 source-map-js: 1.0.2 /sax/1.2.4: @@ -18679,8 +18676,8 @@ packages: randombytes: 2.1.0 dev: true - /serialize-javascript/6.0.0: - resolution: {integrity: sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==} + /serialize-javascript/6.0.1: + resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} dependencies: randombytes: 2.1.0 dev: true @@ -18722,10 +18719,6 @@ packages: /setimmediate/1.0.5: resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} - /setprototypeof/1.1.1: - resolution: {integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==} - dev: false - /setprototypeof/1.2.0: resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} @@ -18781,7 +18774,7 @@ packages: dependencies: call-bind: 1.0.2 get-intrinsic: 1.1.3 - object-inspect: 1.12.2 + object-inspect: 1.12.3 /signal-exit/3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} @@ -18829,6 +18822,32 @@ packages: astral-regex: 1.0.0 is-fullwidth-code-point: 2.0.0 + /slice-ansi/3.0.0: + resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} + engines: {node: '>=8'} + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /slice-ansi/4.0.0: + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + astral-regex: 2.0.0 + is-fullwidth-code-point: 3.0.0 + dev: true + + /slice-ansi/5.0.0: + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + engines: {node: '>=12'} + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 4.0.0 + dev: true + /slugify/1.6.5: resolution: {integrity: sha512-8mo9bslnBO3tr5PEVFzMPIWwWnipGS0xVbYf65zxDqfNwmzYn1LpiKNrR6DlClusuvo+hDHd1zKpmfAe83NQSQ==} engines: {node: '>=8.0.0'} @@ -18878,8 +18897,8 @@ packages: eve: 0.5.4 dev: false - /solid-js/1.6.4: - resolution: {integrity: sha512-IfJJ1ejAcRTOEB0XXk/J8tzvVNZXAdEuHtWQwTXefUteZPGWOl4aVSOrkoj3y1bjwDayqok3+Vv3TV/j4IhKyw==} + /solid-js/1.6.9: + resolution: {integrity: sha512-kV3fMmm+1C2J95c8eDOPKGfZHnuAkHUBLG4hX1Xu08bXeAIPqmxuz/QdH3B8SIdTp3EatBVIyA6RCes3hrGzpg==} dependencies: csstype: 3.1.1 dev: false @@ -19028,6 +19047,13 @@ packages: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} + /stop-iteration-iterator/1.0.0: + resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} + engines: {node: '>= 0.4'} + dependencies: + internal-slot: 1.0.4 + dev: true + /store2/2.14.2: resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} dev: true @@ -19052,11 +19078,11 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: true - /storybook/6.5.14_o4scbtliisanygemawej7x2d6i: - resolution: {integrity: sha512-b9Csv3WMvuXyMPQK1szC8UyHLS2Bq5dfC3bYUvX55IJB5NwHA9z5FClo3uBvcxNV37su0tKQt4OtPz5ylWipdQ==} + /storybook/6.5.15_o4scbtliisanygemawej7x2d6i: + resolution: {integrity: sha512-qaoR70xFK1hQw9IaBU9C3roNRbcTi0JFsqOnuKAFbatLXnGni7Wx4krtqHaSsy9tNPIzZxy0n/RgoBS+4HC2sQ==} hasBin: true dependencies: - '@storybook/cli': 6.5.14_o4scbtliisanygemawej7x2d6i + '@storybook/cli': 6.5.15_o4scbtliisanygemawej7x2d6i transitivePeerDependencies: - '@storybook/mdx2-csf' - bufferutil @@ -19110,6 +19136,11 @@ packages: engines: {node: '>=4'} dev: false + /string-argv/0.3.1: + resolution: {integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==} + engines: {node: '>=0.6.19'} + dev: true + /string-hash-64/1.0.3: resolution: {integrity: sha512-D5OKWKvDhyVWWn2x5Y9b+37NUllks34q1dCDhk/vYcso9fmhs+Tl3KR/gE4v5UNj2UA35cnX4KdVVGkG1deKqw==} dev: false @@ -19122,15 +19153,24 @@ packages: is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 + /string-width/5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.0.1 + dev: true + /string.prototype.matchall/4.0.8: resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 get-intrinsic: 1.1.3 has-symbols: 1.0.3 - internal-slot: 1.0.3 + internal-slot: 1.0.4 regexp.prototype.flags: 1.4.3 side-channel: 1.0.4 dev: true @@ -19141,7 +19181,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 dev: true /string.prototype.padstart/3.1.4: @@ -19150,7 +19190,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 dev: true /string.prototype.trimend/1.0.6: @@ -19158,7 +19198,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 dev: true /string.prototype.trimstart/1.0.6: @@ -19166,7 +19206,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.5 + es-abstract: 1.21.1 dev: true /string_decoder/1.1.1: @@ -19198,6 +19238,13 @@ packages: dependencies: ansi-regex: 5.0.1 + /strip-ansi/7.0.1: + resolution: {integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==} + engines: {node: '>=12'} + dependencies: + ansi-regex: 6.0.1 + dev: true + /strip-bom/2.0.0: resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} engines: {node: '>=0.10.0'} @@ -19225,6 +19272,11 @@ packages: engines: {node: '>=6'} dev: true + /strip-final-newline/3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + dev: true + /strip-indent/1.0.1: resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} engines: {node: '>=0.10.0'} @@ -19329,8 +19381,8 @@ packages: /sudo-prompt/9.2.1: resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} - /superjson/1.12.0: - resolution: {integrity: sha512-B4tefmFqj8KDShHi2br2rz0kBlUJuQHtxMCydEuHvooL+6EscROTNWRfOLMDxW1dS/daK2zZr3C3N9DU+jXATQ==} + /superjson/1.12.2: + resolution: {integrity: sha512-ugvUo9/WmvWOjstornQhsN/sR9mnGtWGYeTxFuqLb4AiT4QdUavjGFRALCPKWWnAiUJ4HTpytj5e0t5HoMRkXg==} engines: {node: '>=10'} dependencies: copy-anything: 3.0.3 @@ -19398,8 +19450,8 @@ packages: resolution: {integrity: sha512-qImOD23aDfnIDNqlG1NOehdB9IYsn1V9oByPjKY1nakv2MQYCEMyX033/q+aEtYCpmYK1cv2+NTmlH+ra6GA5A==} dev: true - /tailwindcss-radix/2.6.1: - resolution: {integrity: sha512-ejh4BHkn/3g349l+JiEW6I4//uclU4nllEqnOK3/8zpORscIk9WbjLyYR2UzqwVRjjzgd72I/hMDJZm3+XO48w==} + /tailwindcss-radix/2.7.0: + resolution: {integrity: sha512-fIVkT5zQYdsjT9+/Mvp+DTlJDdTFpRDuyS5+PLuJDAIIVr9+rWYKhK6rsB9QtjwUwwb0YF+BkAJN6CjZivOfLA==} dev: false /tailwindcss/3.2.4: @@ -19421,11 +19473,11 @@ packages: normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.20 - postcss-import: 14.1.0_postcss@8.4.20 - postcss-js: 4.0.0_postcss@8.4.20 - postcss-load-config: 3.1.4_postcss@8.4.20 - postcss-nested: 6.0.0_postcss@8.4.20 + postcss: 8.4.21 + postcss-import: 14.1.0_postcss@8.4.21 + postcss-js: 4.0.0_postcss@8.4.21 + postcss-load-config: 3.1.4_postcss@8.4.21 + postcss-nested: 6.0.0_postcss@8.4.21 postcss-selector-parser: 6.0.11 postcss-value-parser: 4.2.0 quick-lru: 5.1.1 @@ -19575,7 +19627,7 @@ packages: '@jridgewell/trace-mapping': 0.3.17 jest-worker: 27.5.1 schema-utils: 3.1.1 - serialize-javascript: 6.0.0 + serialize-javascript: 6.0.1 terser: 5.16.1 webpack: 5.75.0 dev: true @@ -19630,7 +19682,6 @@ packages: /through/2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} - dev: false /through2/2.0.5: resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} @@ -19696,11 +19747,6 @@ packages: regex-not: 1.0.2 safe-regex: 1.1.0 - /toidentifier/1.0.0: - resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==} - engines: {node: '>=0.6'} - dev: false - /toidentifier/1.0.1: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} @@ -19743,7 +19789,7 @@ packages: /ts-interface-checker/0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - /ts-node/10.9.1_ewfw2lwfc3dwdvz7r6yz2ssqyi: + /ts-node/10.9.1_awa2wsr5thmg3i7jqycphctjfq: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -19762,7 +19808,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 18.11.15 + '@types/node': 18.11.18 acorn: 8.8.1 acorn-walk: 8.2.0 arg: 4.1.3 @@ -19803,11 +19849,11 @@ packages: typescript: 4.9.4 dev: true - /tsconfig-paths/4.1.1: - resolution: {integrity: sha512-VgPrtLKpRgEAJsMj5Q/I/mXouC6A/7eJ/X4Nuk6o0cRPwBtznYxTCU4FodbexbzH9somBPEXYi0ZkUViUpJ21Q==} + /tsconfig-paths/4.1.2: + resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==} engines: {node: '>=6'} dependencies: - json5: 2.2.1 + json5: 2.2.3 minimist: 1.2.7 strip-bom: 3.0.0 dev: true @@ -19831,295 +19877,295 @@ packages: /tslib/2.4.1: resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} - /tsparticles-engine/2.6.0: - resolution: {integrity: sha512-Kai80jf9mjQVP9WVKqCpxegi7HquVMtiniC2PKrY9aO9E546Lsll+ueUdKeWsSoXBVseN1yqHJcpOKkJy61hIw==} + /tsparticles-engine/2.8.0: + resolution: {integrity: sha512-r0cWKxefQkQCzU+RRG/82VQnl/fAkws27EuYIOKcnHiYsWnZYcX8iPiQs/qgDajP0haBSn4Vui8UbTCAwSFniw==} requiresBuild: true dev: false - /tsparticles-interaction-external-attract/2.6.0: - resolution: {integrity: sha512-XHf+USJVPSTbFup6Sc2QAHZnY/R3O8cQIS1t5OvotrihQ0Oj65xs8i1kiPALdT6V0jEghUkuC6kndav5s0xYNQ==} + /tsparticles-interaction-external-attract/2.8.0: + resolution: {integrity: sha512-9M0aiVcv6KmjlYFJO7YiNHMehLGsABY0fJjI8qW0zsNVDDWw7Cc7TVdjJUyoIPimmwQtX5WFkzBxO4+bEIVyVQ==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-external-bounce/2.6.0: - resolution: {integrity: sha512-Cd7ihbdoryu2LMSARRgLuZPZIwoEgtTO6UriNETbmjKg8IzaahDOkLHwwHL8Cs05nzyHlkBWJk+YlcAqVta/9Q==} + /tsparticles-interaction-external-bounce/2.8.0: + resolution: {integrity: sha512-6cMXiLxd7rb64kuOrlIzROnVWZwtfyl5imnH+9WpBeH5MAZF98XQnVZ09jfEByEmIg76yimQz2M4v10WCGG+dg==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-external-bubble/2.6.0: - resolution: {integrity: sha512-YDtRWxE89kIESIsgukOUn38stAIBw2gy9+GC1vK6THNetp6n2hDv7pYXdMIjMPExNWATrhMqCjeZkpmYnzzGFg==} + /tsparticles-interaction-external-bubble/2.8.0: + resolution: {integrity: sha512-raz+PMzxhXO3j/DBIP69jwfIrJpCP0CR1wdczzDd2lpMFpAgI9VuGkIMmH/9/sbDbjRtYWzRsHWIikdkud8W1Q==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-external-connect/2.6.0: - resolution: {integrity: sha512-xJPJa7BUoemYSRDwltS9UDQ+XyUAv4s1h5pR1HUwnVD1t/TSN5lhloR2HI3mzoIvKvSBXQCWb0biUMTeXywmmA==} + /tsparticles-interaction-external-connect/2.8.0: + resolution: {integrity: sha512-h21JkfP2VWPntkB0Cpu05JC5xRVDEyKmGIxHbBkTTRdI4AyUN9an9LXK6rlOsNB/FDK8hN4qaLuu/szUnf14ng==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-external-grab/2.6.0: - resolution: {integrity: sha512-+RQqgIs2ibcPpx2cIn89pb4P/jehBnnLZSVA2k+jGTrAjL1J6ihFU29MbhuHIFw50JIDhTPsHZllBFFMlrQHXQ==} + /tsparticles-interaction-external-grab/2.8.0: + resolution: {integrity: sha512-V5LzHDCRx5KEYXUe6UKmc2sv+zPsg0ruzBaH4mjWW/KXZGofuCewF7v00GopPEMZJiq3kf24ERIu2XAnUxo9+g==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-external-pause/2.6.0: - resolution: {integrity: sha512-tq7rtKLNaSyNr3P+e9V6aHM5GzR2d+k1rpe4/O/K54xG44e9N7nUBgBaTXT29LuEpvxj44arVE9iDbCA+6TqJg==} + /tsparticles-interaction-external-pause/2.8.0: + resolution: {integrity: sha512-Y67sb2TRa0UGp9e5eJhEpwE9pXj+Fxc6D4bUHzmaubOM01HYBE/GsOLF0wH3JUUpkkSOCc4elXYpU8sN0N8zqQ==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-external-push/2.6.0: - resolution: {integrity: sha512-DjYARXHbGTim5OHZaNpxyYsWB6WcaLrocnCY4XNGdayRqIHuSiAfNMut5Y4NnAVZKfacAe7Wpd8NUSDsicwu4g==} + /tsparticles-interaction-external-push/2.8.0: + resolution: {integrity: sha512-2IdfoQ/vIbK5XtwVq/s8MZKOckJJHx6ndGCrbvcJcrqecnIdJmbu+jIos7pilyHTDZQ/euN5O8zPpNU1xrow4g==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-external-remove/2.6.0: - resolution: {integrity: sha512-x9FM3b3XlvLE6WZpPRZ8ABbeOnJ4seKd7y2RsZJt4Tj8Qqn96bw/5iAC79N87j4ycLZux5hBTLbGECbdaoiZdA==} + /tsparticles-interaction-external-remove/2.8.0: + resolution: {integrity: sha512-KkAdvevH5VHU0xJhyhsZ3Jq4I2qYA0U1EpDpuuHjnuRfs2nc7eVx/SFQ6RfEEuST0sOR1B8RNlvB6g1XKqcXXw==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-external-repulse/2.6.0: - resolution: {integrity: sha512-VNZe5NdxNPbv1mHvD4wGVCaRn5QKFRVM65Bid4AniLTQ/+bhoJ8UkoJZr5ImsOcjYM+gW4O3pUUzNCXoTf+mYw==} + /tsparticles-interaction-external-repulse/2.8.0: + resolution: {integrity: sha512-N2MnXhKZMDV3oIHuLs6yWxsNf018E2tk7+N+8wAd4cMGfB5kr3ygulCFrzQFxmRvAcl+pb+jwCOzLzE0Hq/fNw==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-external-slow/2.6.0: - resolution: {integrity: sha512-Z4FYOQ/6jQ7GD1ErYZptXcy2MalUxcMdpXzsGmX1XotbnYmlGaypS9joSi/Pb1pZHI7PxVMfer8iP6HtKwj+EQ==} + /tsparticles-interaction-external-slow/2.8.0: + resolution: {integrity: sha512-jzhShoTTtlxuhtGzEmjChP1kfnh4H7NNYkq3d61sI3culNIBVxjD67cMl9PMEe/0kqXoQb6E28O6Ncxk+lSrRw==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-external-trail/2.6.0: - resolution: {integrity: sha512-dSmfHevh81JeYHsad6Z6/3t9+1uKfXYAGVUXx1TN4jSvLGpSKsdVG9Tg7Gasw/fidKcbNMrsipTbIq1dJhDraA==} + /tsparticles-interaction-external-trail/2.8.0: + resolution: {integrity: sha512-fmRdju4Wk8r2Xkye47vqHCl220cEHVvsM/ao99+XV+22XilETnnjRcE+s0bTspHTmmWCjtfejYW0qMNgPnYIdA==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-particles-attract/2.6.0: - resolution: {integrity: sha512-CbwcrSvxoHNgQJ18clpqzezeTMGM4g7D+pE10ApDnX8zIK1uc8IoUfdqHSMnSO3UYyWyqHrrcBDak2Ruj+fDwg==} + /tsparticles-interaction-particles-attract/2.8.0: + resolution: {integrity: sha512-iF+jLdfReruIehkJfvopjAwOKESjb6OrNhoXhLoFR0a75/9LLu9/jhTEYWGUfagfcsHHT/jdbm0upn4kYRgYVQ==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-particles-collisions/2.6.0: - resolution: {integrity: sha512-9oPOY4uLzbD/klyYPUjksShf8oNAJji1p6/CZUGweBxSoYHBGFeY/SKj3XTfaojwWlacVm9skiXyhaPaf5epSA==} + /tsparticles-interaction-particles-collisions/2.8.0: + resolution: {integrity: sha512-jOpuYtXuwbpWhtiwQ2XqcW40gMeznsJnBaU9SpjiB/MVOgY+YNHO+1iu+Oi4teZx5lxkiI1n5gxSj6m4ngK+5Q==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-interaction-particles-links/2.6.0: - resolution: {integrity: sha512-4CeXv1sOo2jjuvx3Mej90CFz9/VyX/VsKHMlT2U3U2JbbqV9bDJeglLBg6J/LWb4lE+q2VYRIv6JzsdHrJibHA==} + /tsparticles-interaction-particles-links/2.8.0: + resolution: {integrity: sha512-f1kFbghNryC0avW8yUJyfkLOaulcJu2o4zfGuvqVt4U6iSyg3CAMyTIUR1BYrDFM2ij1gBEerdWo/QkpEZYS3w==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-move-base/2.6.0: - resolution: {integrity: sha512-McnAM+N0P2xKdzAHYHn1QIiWF7jrSVmRPiTaWeQ4PMwLzPiPdPCBP6VfCRvw3YUiSfq4eNgPdPIJXckxhoVcOQ==} + /tsparticles-move-base/2.8.0: + resolution: {integrity: sha512-+LA6sJ429gvPsto6iX8Xf2WK13FDcdAgjU5jKmSXqFouAdFfiClj+QM0jjnAS4LT5UYjter6twrjwFawXctj0w==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-move-parallax/2.6.0: - resolution: {integrity: sha512-ES+1ScHPwslbE3piG+qqqV/e7P5vwauhHXXyIRK8sNHVlG8BHCpSOCoUqny/B8Zpbz7QLoU9GW7a2jxTy3DuDQ==} + /tsparticles-move-parallax/2.8.0: + resolution: {integrity: sha512-1NZAQmTIMILvNDXF8l8wRcn3U5pM1Y9rk/zARzIVuIQ/EwSlSf21jqY/Koye11fjMwNB6AchEwEK2b1+76tsKQ==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-particles.js/2.6.0: - resolution: {integrity: sha512-T7/j8IedlRGlc5XCVu9KIAgslSB+QLizuV9tDg6jgEceKXd4yCuzrbAzZJfDlIv6icHNBr9iGqkSMNl2L9tVEg==} + /tsparticles-particles.js/2.8.0: + resolution: {integrity: sha512-jYAhWIlKkN6oBRROmeYCUTDF1roomVT1HtPpDFMzIXyVQo1t4Y90b0/Z/tw+FZpDd5KsVx95VWmogDCmyBGJww==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-plugin-absorbers/2.6.0: - resolution: {integrity: sha512-7qZGUL9+zqA06hARh8UcEc5uOo4ePjyrOmQch4XvYxI5Z2e3uqlsS5IJMm/Dbu3tIUmbU4FlFzy9MW8DkE9xeg==} + /tsparticles-plugin-absorbers/2.8.0: + resolution: {integrity: sha512-9P7yth/UDwYM8N93qBL6eLfM3u3YlJr0SDuYGfWvJmRwdLpZAImYFPBjPUgo8y95lRw43WoBj1JHD0nJLfvaZw==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-plugin-easing-quad/2.6.0: - resolution: {integrity: sha512-Sl3XaFVCcr1kLyPdoK/NluhvFIhNInlHmZ7X+j6FjCOGIphUPur0X3eClW97BcDFwSTfsTKV/TWJWg7iid5GeA==} + /tsparticles-plugin-easing-quad/2.8.0: + resolution: {integrity: sha512-c0DoFzaYUrCcrybzTUJjhuBKaiyvpeIr3BzDBrLsOBJowXx7GShsIfQxlsSQGHQu4UaIqIkPhXrWAoLr1jE8XQ==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-plugin-emitters/2.6.0: - resolution: {integrity: sha512-IGFlCgDwt3YA2vjhDqnHcC2FIROnO89ub6WMuf3zafJlv/mc2mgJo6mqVOV0XDCpFFO/Hxp/p1P9DC6COljpsw==} + /tsparticles-plugin-emitters/2.8.0: + resolution: {integrity: sha512-3my+DcdQvf47j2XsUy2QRabb5vR/UIcqtzGNazNI9W0WdVUDCUF8vlhBkNji/D2jiUpCuKozzy3lb5uAFFCeYw==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-shape-circle/2.6.0: - resolution: {integrity: sha512-+uEIickybaOeSbjstg/tSiTX1s1CJ8Onpsoh9Lax9sO1pDNBt71W0i53tm0m99KyAUWBcakyk1zwONFBZZ89Tg==} + /tsparticles-shape-circle/2.8.0: + resolution: {integrity: sha512-mjBPnTakFZliBh9BZXtvHMjDR5CVst172XtypoMEwhqncal4Mp9rVAmGd43ctekQ/O45WB/2NykaGGLBkq4h7A==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-shape-image/2.6.0: - resolution: {integrity: sha512-hKGdTTyVHuZPGRQQdIXooVihaJRvR38XlDdJdFh1QC+QuFBJrwH9w5FPvBwWkfmP+YYy/JscYmOmpCYmWEHmXw==} + /tsparticles-shape-image/2.8.0: + resolution: {integrity: sha512-59uB2jjq5KizzdB2PeL/TYsnezSgTM3dEtklgZoNPj3PsZnd8s/H3U5h3t7KrD2WurO1qktllbjf08FeQA6dJg==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-shape-line/2.6.0: - resolution: {integrity: sha512-IeWgDSJ//KrmP9us3ORFm3c5DkTPTQpFNoSijDphRs4ivW91+QY70/ieC/OEwbtyXBT3ex+d28PPKeteqf0LUw==} + /tsparticles-shape-line/2.8.0: + resolution: {integrity: sha512-jDLtFNk9LL/Zqh5NM2ttMVoT3dmrAev91g8cVCgyFEFqq59zbOblWpF9sdr7A8c6H9w+Exm+aToB5TI/led/uA==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-shape-polygon/2.6.0: - resolution: {integrity: sha512-/HSjcoJBNCogY2ZWTf2JvYOsqcnfD/v/6AXSNB+d7J5pXvndP8eqrLtJ8lmLYZ7hg+Gm1QYpslgOkBZPXbEf/w==} + /tsparticles-shape-polygon/2.8.0: + resolution: {integrity: sha512-ZnWks0m1Cp1594s4NcD5oxRavLxVqBy21UoTzYEg/Ee9o0hm9GbRPNmYbh0/WeAs5xqlfHPADKP7qnt8ReiTpw==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-shape-square/2.6.0: - resolution: {integrity: sha512-3rRMbVzTtE5klhQp6FhzJxJYTUDh8K51q00R/dq/wlb6apUA1T/PnUjG/rb7lyRX1r7L2O/LIstfFr9q1OcK5Q==} + /tsparticles-shape-square/2.8.0: + resolution: {integrity: sha512-CRb3f19mybOQt2NvHytvAYfNOfQ3yQOTWQp/4xv+w/oRcVybYRHdhhcziDQ7VXtwHob0m8PbhDo4RnMZQb4/Eg==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-shape-star/2.6.0: - resolution: {integrity: sha512-+uudZKm/T/3QEvDOPbGdR8noHsKugTTkjapF51zOR25TTbihoPHlioO/4OEVF5Hk9hY34avkyniBY8rpmouI/Q==} + /tsparticles-shape-star/2.8.0: + resolution: {integrity: sha512-Or8GIozZPx0J83cfHX3923/bHsQr6wqif6jMAm1922Dp00Ycx3RgRMo2Jcj25j17VGEfBtLyT6l0/H5WJarYvQ==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-shape-text/2.6.0: - resolution: {integrity: sha512-aaxbMu8L72FsvpxrCXnDjUGr/Fu3LBdsRc0ltL6TxbVohHeb9WFPIvs1tVtsUnk2wJtYgHa0R489rq8HafPQJQ==} + /tsparticles-shape-text/2.8.0: + resolution: {integrity: sha512-02h0fjGQ0LIzjiBG6hbcUqkntyIXzuFzPbi2d0EwXFLYdoMSR/EGr58vW7Mbq31ferDGN+mG2che2sqEsV8ZUw==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-slim/2.6.0: - resolution: {integrity: sha512-F0DL/z8iPe/QZeJhJysvqOCMS0+GdmrpnFmvmML9xCki97DKpStvBYhld8XgPVD5qDVFiBVtpm86pu8lPbxTJw==} + /tsparticles-slim/2.8.0: + resolution: {integrity: sha512-Ev9AIxxBvjzHgGLYaZNBtZsIRGEGef5CRD5KKVTUzDFCCuxwSw9UMdRFXSYpykdQw7+8Zp0yroTHJ/yW9+9Apw==} dependencies: - tsparticles-engine: 2.6.0 - tsparticles-interaction-external-attract: 2.6.0 - tsparticles-interaction-external-bounce: 2.6.0 - tsparticles-interaction-external-bubble: 2.6.0 - tsparticles-interaction-external-connect: 2.6.0 - tsparticles-interaction-external-grab: 2.6.0 - tsparticles-interaction-external-pause: 2.6.0 - tsparticles-interaction-external-push: 2.6.0 - tsparticles-interaction-external-remove: 2.6.0 - tsparticles-interaction-external-repulse: 2.6.0 - tsparticles-interaction-external-slow: 2.6.0 - tsparticles-interaction-particles-attract: 2.6.0 - tsparticles-interaction-particles-collisions: 2.6.0 - tsparticles-interaction-particles-links: 2.6.0 - tsparticles-move-base: 2.6.0 - tsparticles-move-parallax: 2.6.0 - tsparticles-particles.js: 2.6.0 - tsparticles-plugin-easing-quad: 2.6.0 - tsparticles-shape-circle: 2.6.0 - tsparticles-shape-image: 2.6.0 - tsparticles-shape-line: 2.6.0 - tsparticles-shape-polygon: 2.6.0 - tsparticles-shape-square: 2.6.0 - tsparticles-shape-star: 2.6.0 - tsparticles-shape-text: 2.6.0 - tsparticles-updater-angle: 2.6.0 - tsparticles-updater-color: 2.6.0 - tsparticles-updater-life: 2.6.0 - tsparticles-updater-opacity: 2.6.0 - tsparticles-updater-out-modes: 2.6.0 - tsparticles-updater-size: 2.6.0 - tsparticles-updater-stroke-color: 2.6.0 + tsparticles-engine: 2.8.0 + tsparticles-interaction-external-attract: 2.8.0 + tsparticles-interaction-external-bounce: 2.8.0 + tsparticles-interaction-external-bubble: 2.8.0 + tsparticles-interaction-external-connect: 2.8.0 + tsparticles-interaction-external-grab: 2.8.0 + tsparticles-interaction-external-pause: 2.8.0 + tsparticles-interaction-external-push: 2.8.0 + tsparticles-interaction-external-remove: 2.8.0 + tsparticles-interaction-external-repulse: 2.8.0 + tsparticles-interaction-external-slow: 2.8.0 + tsparticles-interaction-particles-attract: 2.8.0 + tsparticles-interaction-particles-collisions: 2.8.0 + tsparticles-interaction-particles-links: 2.8.0 + tsparticles-move-base: 2.8.0 + tsparticles-move-parallax: 2.8.0 + tsparticles-particles.js: 2.8.0 + tsparticles-plugin-easing-quad: 2.8.0 + tsparticles-shape-circle: 2.8.0 + tsparticles-shape-image: 2.8.0 + tsparticles-shape-line: 2.8.0 + tsparticles-shape-polygon: 2.8.0 + tsparticles-shape-square: 2.8.0 + tsparticles-shape-star: 2.8.0 + tsparticles-shape-text: 2.8.0 + tsparticles-updater-angle: 2.8.0 + tsparticles-updater-color: 2.8.0 + tsparticles-updater-life: 2.8.0 + tsparticles-updater-opacity: 2.8.0 + tsparticles-updater-out-modes: 2.8.0 + tsparticles-updater-size: 2.8.0 + tsparticles-updater-stroke-color: 2.8.0 dev: false - /tsparticles-updater-angle/2.6.0: - resolution: {integrity: sha512-MFQjJJZn3BAPdLqjm6lblIyCo4TjoWWSSf4fC4mRiUhAcMY4UAg5L4lSeZoqQNlOQ8eRhwmo3FmYELpjqjpjrQ==} + /tsparticles-updater-angle/2.8.0: + resolution: {integrity: sha512-MjBoTiUcdn2or9E5+zvrZmiRGlt1AtWenNCCLF1CKEAwLGPFZukJEFcXiH8iMyb4rNKAz8rHM/Em48DjkQGFwg==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-color/2.6.0: - resolution: {integrity: sha512-r/4V0hVq7k/9WKXslTneiBXefpbCLPNJL/hXlv/9i54x2U8ZncgOJBiUQxYY0wKktipccHD1YHjxoTR4nQfw1Q==} + /tsparticles-updater-color/2.8.0: + resolution: {integrity: sha512-L++4ZYabHzqEQlElSZ6dGAxGJKYeAjRB1YoQVKMJVDots0b9EMpT14s0ihpte/tsYE+cmHeoE5UTPm6FmeAZ4Q==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-destroy/2.6.0: - resolution: {integrity: sha512-f49zQ0KQbODvv/UantfW6xovaDuk7Bf9pzU54SsJflFGD7YTI7nlV6Lp4gIWMQGcedMcuMFSGXmU4G4lzj7+1g==} + /tsparticles-updater-destroy/2.8.0: + resolution: {integrity: sha512-dFaPww0wBNEW4DzRIG883eFVrvV3FD7HsUF2M4UCtLpspRAwpVWuypTFoPhZXg9At8Tjh5ynWHZMx8tUzWHFYQ==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-life/2.6.0: - resolution: {integrity: sha512-teJAad55BioqNlqAANc7KociZ7PZZ8WyPSO5NI/QlxeX9ShxEzdQIKMGDEMU8K7OTWMBjlrRChm7TlJ2KkTJ1A==} + /tsparticles-updater-life/2.8.0: + resolution: {integrity: sha512-6v/RUmp7UkxqfAgAs4Iz0O9dUVjRjUpFkIvYa8n1sFRgj58k/7jlGPraIhzFRJ/OVC1pT1ev7c4oBDM0KK0QbA==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-opacity/2.6.0: - resolution: {integrity: sha512-Plhlj8qMQFhATA9FACAUPWLS6iXyCBcKZqXFGaQAHMsXFAqn6D5Kd3V4fe858KN2YnKQDjohbIZlYBJawsVLQg==} + /tsparticles-updater-opacity/2.8.0: + resolution: {integrity: sha512-L5SQ9k/sH7hzOWqAzxckfSc096kaQeYe3aFKm8WJ8RhCV71rQle381roRhq9qtWfFS//2X+tzcjRDLhhR0jOmg==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-out-modes/2.6.0: - resolution: {integrity: sha512-WdH7OhLkYCnDDKoe7+h8EX/mPTdxSyOgiTXimombW3Bds0N91Q/9HRsUfi6sKpqE8fPaitEULkomf58PJKXA4g==} + /tsparticles-updater-out-modes/2.8.0: + resolution: {integrity: sha512-BWJKfCXYMmNbtaq3i2iYFppVeKAb2sAWa5r88uius9nwL4gx1XDFW72m6Sy2f6s9n2r5uhTkMyXNHUeUskJnag==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-roll/2.6.0: - resolution: {integrity: sha512-23373EKikLOutISkl92J+zVMI68gcVj9Wbefm71SvooNs4uuUEtnKqYNi3qAz5AWH7mdOXpfMGs5PG16Mq/HQQ==} + /tsparticles-updater-roll/2.8.0: + resolution: {integrity: sha512-+I51iWIrcIC1hl5mZL815QDy3VPymlIcK5Dj5SkizVYHSDYiW6aSeSXwdhyJg27Vh+QRbkSGUL0/5+QV8NUsWQ==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-size/2.6.0: - resolution: {integrity: sha512-7CEW+2JuLJY8UYkn0Kr35cNS4cxmvkRR2OAnjNI4hKndxzOWH/CAAFe1uuhzfhao+xXqIH6V6hizbrIVkaCsPQ==} + /tsparticles-updater-size/2.8.0: + resolution: {integrity: sha512-QnbRObqu3jh2TsblKqfgWlvh9Zt65yoBnGBKdE0ZM3fYF2UCUud8NEqXMd+SoYSHOi78nwRPndrssHCQNh8tqg==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-stroke-color/2.6.0: - resolution: {integrity: sha512-o70eA/NQmcXxvuu+ngvQDOpN04XSCXwth6eIibvWdNmxwtd8CmCgT+enzHNathfoCFOa5na4e7ngK/brqd79UQ==} + /tsparticles-updater-stroke-color/2.8.0: + resolution: {integrity: sha512-wihEW5nPfMkqY0H2lxdTxjp7PcdLiJbVVIS43cvUz6bx239BvFv0ZsxNEfh/MNxtzj1Y7fRXhzoc5De02liOJA==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-tilt/2.6.0: - resolution: {integrity: sha512-PyrGBHPQj30sImyO64WR/UEWHNqvV3Y8ls5Y5aDc7O2xrQAdMNUD2nnGdfXMJTEjt0p4pcsClBEcVJUJEE90hQ==} + /tsparticles-updater-tilt/2.8.0: + resolution: {integrity: sha512-398ANj2ms9EPHyCqDmP8LNDBvw92vNP07nTt33hQvaFpAgi9u2gH70LgxTdCJil0+mPzW4602fPTD3WyfPCwPA==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-twinkle/2.6.0: - resolution: {integrity: sha512-CqLzr+SgDfueVI8V9u/dRQ4Nef4/EWTQRB8MjwJw0pHMYFxsuzV5wmVj4vIlSHCmok8LZT4OQ81XApFYEzHkDg==} + /tsparticles-updater-twinkle/2.8.0: + resolution: {integrity: sha512-FL55hmZZ/bC4Ou8l8He3bK1rm3PXtjOCdEMpkktzKDcu/WAZ0tZGPNllFKOi1FZ5KovqVLDg42dJzPmGOpoXzg==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles-updater-wobble/2.6.0: - resolution: {integrity: sha512-wXNWPRTYGpOJVW/7TzC/E9GpowMS9TEIHMaTvdhtAKktcF4Ja0DBCJxuF14q6c+lzq7P31JOs4+EqI7zIbQaXw==} + /tsparticles-updater-wobble/2.8.0: + resolution: {integrity: sha512-aDQKFKypW+jz8pH0KK5C03/bvkCGStCxBn7Dc9qkVPmtnzyA7+0lRjvYQrTEliq2d1pm67oixmwvskX0jbzdSw==} dependencies: - tsparticles-engine: 2.6.0 + tsparticles-engine: 2.8.0 dev: false - /tsparticles/2.6.0: - resolution: {integrity: sha512-8gJlKw+fQxCB7qb+VSwXAvyRk7gVkNieOdORg70xitULXMNG1kX8fVqhqBo4PXnA3S/0CNNjfUNUjMjVzn6lyA==} + /tsparticles/2.8.0: + resolution: {integrity: sha512-TgIdmPU/leNK68n2dgu+lRsC3At0pbP0xP3SU9gLkMyJxXHlsvtTsFafR2q9PlD1FoAPxkBMBTwspysagCeFdA==} dependencies: - tsparticles-engine: 2.6.0 - tsparticles-interaction-external-trail: 2.6.0 - tsparticles-plugin-absorbers: 2.6.0 - tsparticles-plugin-emitters: 2.6.0 - tsparticles-slim: 2.6.0 - tsparticles-updater-destroy: 2.6.0 - tsparticles-updater-roll: 2.6.0 - tsparticles-updater-tilt: 2.6.0 - tsparticles-updater-twinkle: 2.6.0 - tsparticles-updater-wobble: 2.6.0 + tsparticles-engine: 2.8.0 + tsparticles-interaction-external-trail: 2.8.0 + tsparticles-plugin-absorbers: 2.8.0 + tsparticles-plugin-emitters: 2.8.0 + tsparticles-slim: 2.8.0 + tsparticles-updater-destroy: 2.8.0 + tsparticles-updater-roll: 2.8.0 + tsparticles-updater-tilt: 2.8.0 + tsparticles-updater-twinkle: 2.8.0 + tsparticles-updater-wobble: 2.8.0 dev: false /tsutils/3.21.0: @@ -20135,16 +20181,16 @@ packages: resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} dev: true - /turbo-darwin-64/1.6.3: - resolution: {integrity: sha512-QmDIX0Yh1wYQl0bUS0gGWwNxpJwrzZU2GIAYt3aOKoirWA2ecnyb3R6ludcS1znfNV2MfunP+l8E3ncxUHwtjA==} + /turbo-darwin-64/1.7.0: + resolution: {integrity: sha512-hSGAueSf5Ko8J67mpqjpt9FsP6ePn1nMcl7IVPoJq5dHsgX3anCP/BPlexJ502bNK+87DDyhQhJ/LPSJXKrSYQ==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /turbo-darwin-arm64/1.6.3: - resolution: {integrity: sha512-75DXhFpwE7CinBbtxTxH08EcWrxYSPFow3NaeFwsG8aymkWXF+U2aukYHJA6I12n9/dGqf7yRXzkF0S/9UtdyQ==} + /turbo-darwin-arm64/1.7.0: + resolution: {integrity: sha512-BLLOW5W6VZxk5+0ZOj5AO1qjM0P5isIgjbEuyAl8lHZ4s9antUbY4CtFrspT32XxPTYoDl4UjviPMcSsbcl3WQ==} cpu: [arm64] os: [darwin] requiresBuild: true @@ -20156,53 +20202,53 @@ packages: hasBin: true dev: true - /turbo-linux-64/1.6.3: - resolution: {integrity: sha512-O9uc6J0yoRPWdPg9THRQi69K6E2iZ98cRHNvus05lZbcPzZTxJYkYGb5iagCmCW/pq6fL4T4oLWAd6evg2LGQA==} + /turbo-linux-64/1.7.0: + resolution: {integrity: sha512-aw2qxmfZa+kT87SB3GNUoFimqEPzTlzlRqhPgHuAAT6Uf0JHnmebPt4K+ZPtDNl5yfVmtB05bhHPqw+5QV97Yg==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /turbo-linux-arm64/1.6.3: - resolution: {integrity: sha512-dCy667qqEtZIhulsRTe8hhWQNCJO0i20uHXv7KjLHuFZGCeMbWxB8rsneRoY+blf8+QNqGuXQJxak7ayjHLxiA==} + /turbo-linux-arm64/1.7.0: + resolution: {integrity: sha512-AJEx2jX+zO5fQtJpO3r6uhTabj4oSA5ZhB7zTs/rwu/XqoydsvStA4X8NDW4poTbOjF7DcSHizqwi04tSMzpJw==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /turbo-windows-64/1.6.3: - resolution: {integrity: sha512-lKRqwL3mrVF09b9KySSaOwetehmGknV9EcQTF7d2dxngGYYX1WXoQLjFP9YYH8ZV07oPm+RUOAKSCQuDuMNhiA==} + /turbo-windows-64/1.7.0: + resolution: {integrity: sha512-ewj7PPv2uxqv0r31hgnBa3E5qwUu7eyVRP5M1gB/TJXfSHduU79gbxpKCyxIZv2fL/N2/3U7EPOQPSZxBAoljA==} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /turbo-windows-arm64/1.6.3: - resolution: {integrity: sha512-BXY1sDPEA1DgPwuENvDCD8B7Hb0toscjus941WpL8CVd10hg9pk/MWn9CNgwDO5Q9ks0mw+liDv2EMnleEjeNA==} + /turbo-windows-arm64/1.7.0: + resolution: {integrity: sha512-LzjOUzveWkvTD0jP8DBMYiAnYemmydsvqxdSmsUapHHJkl6wKZIOQNSO7pxsy+9XM/1/+0f9Y9F9ZNl5lePTEA==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /turbo/1.6.3: - resolution: {integrity: sha512-FtfhJLmEEtHveGxW4Ye/QuY85AnZ2ZNVgkTBswoap7UMHB1+oI4diHPNyqrQLG4K1UFtCkjOlVoLsllUh/9QRw==} + /turbo/1.7.0: + resolution: {integrity: sha512-cwympNwQNnQZ/TffBd8yT0i0O10Cf/hlxccCYgUcwhcGEb9rDjE5thDbHoHw1hlJQUF/5ua7ERJe7Zr0lNE/ww==} hasBin: true requiresBuild: true optionalDependencies: - turbo-darwin-64: 1.6.3 - turbo-darwin-arm64: 1.6.3 - turbo-linux-64: 1.6.3 - turbo-linux-arm64: 1.6.3 - turbo-windows-64: 1.6.3 - turbo-windows-arm64: 1.6.3 + turbo-darwin-64: 1.7.0 + turbo-darwin-arm64: 1.7.0 + turbo-linux-64: 1.7.0 + turbo-linux-arm64: 1.7.0 + turbo-windows-64: 1.7.0 + turbo-windows-arm64: 1.7.0 dev: true - /twrnc/3.5.0_react-native@0.70.5: - resolution: {integrity: sha512-HcvyGAjbE4udXnGYcU8Y0T0Jj5d6wY/X2vWmiy8aYg15K/K709HRRyVVcFu0CrgK62qBBDKwuS5gFgb+w7MCLw==} + /twrnc/3.6.0_react-native@0.70.5: + resolution: {integrity: sha512-ee3etAeEfJyH7a9iiQD6JEYJN7nQiZumO6KXCaAmgj9xL5BIFgZfjWsVfQ0eV+anSqgXVit/a2ZUNX3LFlbdhA==} peerDependencies: react-native: '>=0.63.0' dependencies: @@ -20244,7 +20290,6 @@ packages: /type-fest/0.21.3: resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} engines: {node: '>=10'} - dev: false /type-fest/0.3.1: resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==} @@ -20277,6 +20322,14 @@ packages: media-typer: 0.3.0 mime-types: 2.1.35 + /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 + dev: true + /typedarray-to-buffer/3.1.5: resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} dependencies: @@ -20520,7 +20573,7 @@ packages: /uri-js/4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: - punycode: 2.1.1 + punycode: 2.3.0 dev: true /urix/0.1.0: @@ -20569,7 +20622,7 @@ packages: querystring: 0.2.0 dev: true - /use-callback-ref/1.3.0_kzbn2opkn2327fwg5yzwzya5o4: + /use-callback-ref/1.3.0_3stiutgnnbnfnf3uowm5cip22i: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: @@ -20579,7 +20632,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 react: 18.2.0 tslib: 2.4.1 dev: false @@ -20619,8 +20672,8 @@ packages: react: 18.2.0 dev: false - /use-debounce/9.0.2_react@18.1.0: - resolution: {integrity: sha512-QLyB0sxt9F5AisGDrUybCRJSLE60bTQR0yXc+IebNGUu1GCXwii1zsZl82mPGdWqDVQy7+1FKMLHQUixxf5Nbw==} + /use-debounce/9.0.3_react@18.1.0: + resolution: {integrity: sha512-FhtlbDtDXILJV7Lix5OZj5yX/fW1tzq+VrvK1fnT2bUrPOGruU9Rw8NCEn+UI9wopfERBEZAOQ8lfeCJPllgnw==} engines: {node: '>= 10.0.0'} peerDependencies: react: '>=16.8.0' @@ -20644,7 +20697,7 @@ packages: react: 18.2.0 dev: false - /use-isomorphic-layout-effect/1.1.2_kzbn2opkn2327fwg5yzwzya5o4: + /use-isomorphic-layout-effect/1.1.2_3stiutgnnbnfnf3uowm5cip22i: resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: '@types/react': '*' @@ -20653,7 +20706,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 react: 18.2.0 dev: false @@ -20661,7 +20714,7 @@ packages: resolution: {integrity: sha512-HtHatS2U4/h32NlkhupDsPlrbiD27gSH5swBdtXbCAlc6pfOFzaj0FehW/FO12rx8j2Vy4/lJScCiJyM01E+bQ==} dev: false - /use-latest/1.2.1_kzbn2opkn2327fwg5yzwzya5o4: + /use-latest/1.2.1_3stiutgnnbnfnf3uowm5cip22i: resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} peerDependencies: '@types/react': '*' @@ -20670,12 +20723,12 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 react: 18.2.0 - use-isomorphic-layout-effect: 1.1.2_kzbn2opkn2327fwg5yzwzya5o4 + use-isomorphic-layout-effect: 1.1.2_3stiutgnnbnfnf3uowm5cip22i dev: false - /use-sidecar/1.1.2_kzbn2opkn2327fwg5yzwzya5o4: + /use-sidecar/1.1.2_3stiutgnnbnfnf3uowm5cip22i: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -20685,7 +20738,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.0.26 + '@types/react': 18.0.27 detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.4.1 @@ -20798,93 +20851,47 @@ packages: builtins: 1.0.3 dev: false - /valtio/1.7.6: - resolution: {integrity: sha512-zsGrCCYOIpy8egQxftduFyJusF/BMu3CganhHKUOE/I6t6V6yA1MDfZZkrYoWYCGkC3rSBYcIHEEsoYQM9lV2w==} - engines: {node: '>=12.7.0'} + /valtio/1.9.0: + resolution: {integrity: sha512-mQLFsAlKbYascZygFQh6lXuDjU5WHLoeZ8He4HqMnWfasM96V6rDbeFkw1XeG54xycmDonr/Jb4xgviHtuySrA==} + engines: {node: '>=12.20.0'} peerDependencies: - '@babel/helper-module-imports': '>=7.12' - '@babel/types': '>=7.13' - aslemammad-vite-plugin-macro: '>=1.0.0-alpha.1' - babel-plugin-macros: '>=3.0' react: '>=16.8' - vite: '>=2.8.6' peerDependenciesMeta: - '@babel/helper-module-imports': - optional: true - '@babel/types': - optional: true - aslemammad-vite-plugin-macro: - optional: true - babel-plugin-macros: - optional: true react: optional: true - vite: - optional: true dependencies: - proxy-compare: 2.3.0 + proxy-compare: 2.4.0 use-sync-external-store: 1.2.0 dev: false - /valtio/1.7.6_react@18.2.0+vite@3.2.5: - resolution: {integrity: sha512-zsGrCCYOIpy8egQxftduFyJusF/BMu3CganhHKUOE/I6t6V6yA1MDfZZkrYoWYCGkC3rSBYcIHEEsoYQM9lV2w==} - engines: {node: '>=12.7.0'} + /valtio/1.9.0_react@18.1.0: + resolution: {integrity: sha512-mQLFsAlKbYascZygFQh6lXuDjU5WHLoeZ8He4HqMnWfasM96V6rDbeFkw1XeG54xycmDonr/Jb4xgviHtuySrA==} + engines: {node: '>=12.20.0'} peerDependencies: - '@babel/helper-module-imports': '>=7.12' - '@babel/types': '>=7.13' - aslemammad-vite-plugin-macro: '>=1.0.0-alpha.1' - babel-plugin-macros: '>=3.0' react: '>=16.8' - vite: '>=2.8.6' peerDependenciesMeta: - '@babel/helper-module-imports': - optional: true - '@babel/types': - optional: true - aslemammad-vite-plugin-macro: - optional: true - babel-plugin-macros: - optional: true react: optional: true - vite: - optional: true dependencies: - proxy-compare: 2.3.0 - react: 18.2.0 - use-sync-external-store: 1.2.0_react@18.2.0 - vite: 3.2.5_@types+node@18.11.15 - dev: false - - /valtio/1.8.0_react@18.1.0: - resolution: {integrity: sha512-lNw7wM0Qb9iBzXMju+XCn+UiIlf5uCe5pcI8XRqcvxEZ/mnRXyKXoOodPDKB8cIAVekA3Q3zWA7rboCdS4ea7g==} - engines: {node: '>=12.7.0'} - peerDependencies: - '@babel/helper-module-imports': '>=7.12' - '@babel/types': '>=7.13' - aslemammad-vite-plugin-macro: '>=1.0.0-alpha.1' - babel-plugin-macros: '>=3.0' - react: '>=16.8' - vite: '>=2.8.6' - peerDependenciesMeta: - '@babel/helper-module-imports': - optional: true - '@babel/types': - optional: true - aslemammad-vite-plugin-macro: - optional: true - babel-plugin-macros: - optional: true - react: - optional: true - vite: - optional: true - dependencies: - proxy-compare: 2.3.0 + proxy-compare: 2.4.0 react: 18.1.0 use-sync-external-store: 1.2.0_react@18.1.0 dev: false + /valtio/1.9.0_react@18.2.0: + resolution: {integrity: sha512-mQLFsAlKbYascZygFQh6lXuDjU5WHLoeZ8He4HqMnWfasM96V6rDbeFkw1XeG54xycmDonr/Jb4xgviHtuySrA==} + engines: {node: '>=12.20.0'} + peerDependencies: + react: '>=16.8' + peerDependenciesMeta: + react: + optional: true + dependencies: + proxy-compare: 2.4.0 + react: 18.2.0 + use-sync-external-store: 1.2.0_react@18.2.0 + dev: false + /vary/1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} @@ -20950,15 +20957,15 @@ packages: front-matter: 4.0.2 htmlparser2: 6.1.0 markdown-it: 12.3.2 - vite: 3.2.5_o2iixvyklpce477lkpnahelma4 + vite: 3.2.5_ovmyjmuuyckt3r3gpaexj2onji dev: true /vite-plugin-optimizer/1.4.2: resolution: {integrity: sha512-UNQy+J31b+DeEc2NCxV+WIkwyYPWGPjYsnXO4+gM26CKY5KJ47JeRjchR11F3qfR8MWDX1+425LZfkUyXOfGFA==} dev: true - /vite-plugin-ssr/0.4.57_vite@3.2.5: - resolution: {integrity: sha512-H7KH7eOFasuzg4fvql7k3s5ZA5dFC7x54YtHcEsVCkcm6n00AL6q4yfcUWfY49omW93Nem/gOc6hq0BEHhYMbw==} + /vite-plugin-ssr/0.4.70_vite@3.2.5: + resolution: {integrity: sha512-qcAqNss7phJnfK8QwT0KIotwvTuJLZhEA6jZiAYfS++HOLffEqUVSx620LfAr9j1H1MCoTwGd82zAbspOKnEHQ==} engines: {node: '>=12.19.0'} hasBin: true peerDependencies: @@ -20970,13 +20977,13 @@ packages: dependencies: '@brillout/import': 0.2.1 '@brillout/json-serializer': 0.5.3 - '@brillout/vite-plugin-import-build': 0.1.0 + '@brillout/vite-plugin-import-build': 0.1.2 cac: 6.7.14 es-module-lexer: 0.10.5 fast-glob: 3.2.12 picocolors: 1.0.0 sirv: 2.0.2 - vite: 3.2.5_o2iixvyklpce477lkpnahelma4 + vite: 3.2.5_ovmyjmuuyckt3r3gpaexj2onji dev: false /vite-plugin-svgr/2.4.0_vite@3.2.5: @@ -20986,7 +20993,7 @@ packages: dependencies: '@rollup/pluginutils': 5.0.2 '@svgr/core': 6.5.1 - vite: 3.2.5_o2iixvyklpce477lkpnahelma4 + vite: 3.2.5_ovmyjmuuyckt3r3gpaexj2onji transitivePeerDependencies: - rollup - supports-color @@ -20999,7 +21006,7 @@ packages: dependencies: '@rollup/pluginutils': 5.0.2 '@svgr/core': 6.5.1 - vite: 4.0.4_sass@1.56.2 + vite: 4.0.4_sass@1.57.1 transitivePeerDependencies: - rollup - supports-color @@ -21013,8 +21020,8 @@ packages: debug: 4.3.4 globrex: 0.1.2 recrawl-sync: 2.2.3 - tsconfig-paths: 4.1.1 - vite: 3.2.5_o2iixvyklpce477lkpnahelma4 + tsconfig-paths: 4.1.2 + vite: 3.2.5_ovmyjmuuyckt3r3gpaexj2onji transitivePeerDependencies: - supports-color dev: true @@ -21027,21 +21034,18 @@ packages: debug: 4.3.4 globrex: 0.1.2 recrawl-sync: 2.2.3 - tsconfig-paths: 4.1.1 + tsconfig-paths: 4.1.2 vite: 4.0.4 transitivePeerDependencies: - supports-color dev: true - /vite-tsconfig-paths/4.0.3_gl4qsmwzp7wy5uclz4tx77gbli: - resolution: {integrity: sha512-gRO2Q/tOkV+9kMht5tz90+IaEKvW2zCnvwJV3tp2ruPNZOTM5rF+yXorJT4ggmAMYEaJ3nyXjx5P5jY5FwiZ+A==} - peerDependencies: - vite: '>2.0.0-0' + /vite-tsconfig-paths/4.0.5_typescript@4.9.4: + resolution: {integrity: sha512-/L/eHwySFYjwxoYt1WRJniuK/jPv+WGwgRGBYx3leciR5wBeqntQpUE6Js6+TJemChc+ter7fDBKieyEWDx4yQ==} dependencies: debug: 4.3.4 globrex: 0.1.2 tsconfck: 2.0.2_typescript@4.9.4 - vite: 4.0.4_sass@1.56.2 transitivePeerDependencies: - supports-color - typescript @@ -21073,14 +21077,14 @@ packages: optional: true dependencies: esbuild: 0.15.18 - postcss: 8.4.20 + postcss: 8.4.21 resolve: 1.22.1 rollup: 2.79.1 optionalDependencies: fsevents: 2.3.2 dev: true - /vite/3.2.5_@types+node@18.11.15: + /vite/3.2.5_@types+node@18.11.18: resolution: {integrity: sha512-4mVEpXpSOgrssFZAOmGIr85wPHKvaDAcXqxVxVRZhljkJOMZi1ibLibzjLHzJvcok8BMguLc7g1W6W/GqZbLdQ==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -21105,15 +21109,16 @@ packages: terser: optional: true dependencies: - '@types/node': 18.11.15 + '@types/node': 18.11.18 esbuild: 0.15.18 - postcss: 8.4.20 + postcss: 8.4.21 resolve: 1.22.1 rollup: 2.79.1 optionalDependencies: fsevents: 2.3.2 + dev: true - /vite/3.2.5_o2iixvyklpce477lkpnahelma4: + /vite/3.2.5_ovmyjmuuyckt3r3gpaexj2onji: resolution: {integrity: sha512-4mVEpXpSOgrssFZAOmGIr85wPHKvaDAcXqxVxVRZhljkJOMZi1ibLibzjLHzJvcok8BMguLc7g1W6W/GqZbLdQ==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -21138,12 +21143,12 @@ packages: terser: optional: true dependencies: - '@types/node': 18.11.15 + '@types/node': 18.11.18 esbuild: 0.15.18 - postcss: 8.4.20 + postcss: 8.4.21 resolve: 1.22.1 rollup: 2.79.1 - sass: 1.56.2 + sass: 1.57.1 optionalDependencies: fsevents: 2.3.2 @@ -21172,15 +21177,15 @@ packages: terser: optional: true dependencies: - esbuild: 0.16.14 - postcss: 8.4.20 + esbuild: 0.16.17 + postcss: 8.4.21 resolve: 1.22.1 - rollup: 3.9.1 + rollup: 3.10.0 optionalDependencies: fsevents: 2.3.2 dev: true - /vite/4.0.4_sass@1.56.2: + /vite/4.0.4_sass@1.57.1: resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -21205,11 +21210,11 @@ packages: terser: optional: true dependencies: - esbuild: 0.16.14 - postcss: 8.4.20 + esbuild: 0.16.17 + postcss: 8.4.21 resolve: 1.22.1 - rollup: 3.9.1 - sass: 1.56.2 + rollup: 3.10.0 + sass: 1.57.1 optionalDependencies: fsevents: 2.3.2 dev: true @@ -21225,8 +21230,8 @@ packages: resolution: {integrity: sha512-1bonkGqQs5/fxGT5UchTgjGVnfysL0O8v1AYMBjqTbWQTFn721zaPGDYFkOKtfDgFiSgXM3KwaG3FMGfW4Ed9Q==} dev: true - /vscode-uri/3.0.6: - resolution: {integrity: sha512-fmL7V1eiDBFRRnu+gfRWTzyPpNIHJTc4mWnFkwBUmO9U3KPgJAmTx7oxi2bl/Rh6HLdU7+4C9wlj0k2E4AdKFQ==} + /vscode-uri/3.0.7: + resolution: {integrity: sha512-eOpPHogvorZRobNqJGhapa0JdwaxpjVvyBp0QIUMRMSf8ZAlqOdEquKuRmw9Qwu0qXtJIWqFtMkmvJjUZmMjVA==} dev: true /walker/1.0.8: @@ -21302,7 +21307,7 @@ packages: dependencies: colorette: 1.4.0 mem: 8.1.1 - memfs: 3.4.12 + memfs: 3.4.13 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 3.1.1 @@ -21592,12 +21597,12 @@ packages: utf-8-validate: optional: true - /ws/8.11.0: - resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} + /ws/8.12.0: + resolution: {integrity: sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 + utf-8-validate: '>=5.0.2' peerDependenciesMeta: bufferutil: optional: true @@ -21677,6 +21682,11 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} + /yaml/2.2.1: + resolution: {integrity: sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw==} + engines: {node: '>= 14'} + dev: true + /yargs-parser/18.1.3: resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} engines: {node: '>=6'} diff --git a/turbo.json b/turbo.json index 2d6866d22..1d8239406 100644 --- a/turbo.json +++ b/turbo.json @@ -2,12 +2,8 @@ "$schema": "https://turborepo.org/schema.json", "pipeline": { "build": { - "dependsOn": [ - "^build" - ], - "outputs": [ - "dist/**" - ] + "dependsOn": ["^build"], + "outputs": ["dist/**"] }, "lint": { "outputs": []