diff --git a/apps/web/src/AppRoutes.tsx b/apps/web/src/AppRoutes.tsx index 07f902bd608..83898207e8e 100644 --- a/apps/web/src/AppRoutes.tsx +++ b/apps/web/src/AppRoutes.tsx @@ -1,7 +1,8 @@ import { FeatureFlagsKeysEnum } from '@novu/shared'; import { Route, Routes } from 'react-router-dom'; -import { AppLayout } from './components/layout/AppLayout'; -import { EnsureOnboardingComplete } from './components/layout/EnsureOnboardingComplete'; +import { PrivatePageLayout } from './components/layout/components/AppLayout'; +import { PublicPageLayout } from './components/layout/components/PublicPageLayout'; +import { EnsureOnboardingComplete } from './components/layout/components/EnsureOnboardingComplete'; import { ROUTES } from './constants/routes.enum'; import { useFeatureFlag } from './hooks'; import { ActivitiesPage } from './pages/activities/ActivitiesPage'; @@ -53,29 +54,31 @@ export const AppRoutes = () => { return ( - } /> - } /> - } /> - } /> - } /> - } /> - - - - } - /> - - - - } - /> - }> + }> + } /> + } /> + } /> + } /> + } /> + } /> + + + + } + /> + + + + } + /> + + }> } /> } /> }> diff --git a/apps/web/src/Providers.tsx b/apps/web/src/Providers.tsx index 9d158719b89..2fa2f6212b2 100644 --- a/apps/web/src/Providers.tsx +++ b/apps/web/src/Providers.tsx @@ -1,5 +1,5 @@ import { ColorSchemeProvider, Loader } from '@mantine/core'; -import { colors } from '@novu/design-system'; +import { colors, ThemeProvider } from '@novu/design-system'; import { CONTEXT_PATH, SegmentProvider } from '@novu/shared-web'; import * as Sentry from '@sentry/react'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; @@ -34,9 +34,6 @@ const fallbackDisplay = ( display: 'grid', placeItems: 'center', bg: 'surface.page', - // Root element may not have loaded so rely on OS - _osDark: { bg: 'legacy.BGDark' }, - _osLight: { bg: 'legacy.BGLight' }, })} > @@ -48,7 +45,7 @@ const fallbackDisplay = ( */ const Providers: React.FC> = ({ children }) => { return ( - {}}> + @@ -60,7 +57,7 @@ const Providers: React.FC> = ({ children }) => { - + ); }; diff --git a/apps/web/src/components/layout/AppLayout.tsx b/apps/web/src/components/layout/AppLayout.tsx deleted file mode 100644 index 8f002c93ffb..00000000000 --- a/apps/web/src/components/layout/AppLayout.tsx +++ /dev/null @@ -1,84 +0,0 @@ -import { useState } from 'react'; -import * as Sentry from '@sentry/react'; -import { Outlet } from 'react-router-dom'; -import styled from '@emotion/styled'; - -import { ThemeProvider } from '@novu/design-system'; -import { HeaderNav } from './components/HeaderNav'; -import { SideNav } from './components/SideNav'; -import { IntercomProvider } from 'react-use-intercom'; -import { INTERCOM_APP_ID } from '../../config'; -import { EnsureOnboardingComplete } from './EnsureOnboardingComplete'; -import { SpotLight } from '../utils/Spotlight'; -import { SpotLightProvider } from '../providers/SpotlightProvider'; -import { useFeatureFlag } from '@novu/shared-web'; -import { FeatureFlagsKeysEnum } from '@novu/shared'; -import { HeaderNav as HeaderNavNew } from './components/v2/HeaderNav'; -import { MainNav } from '../nav/MainNav'; -import { FreeTrialBanner } from './components/FreeTrialBanner'; - -const AppShell = styled.div` - display: flex; - width: 100vw; - height: 100vh; - min-width: 1024px; -`; - -const ContentShell = styled.div` - display: flex; - flex-direction: column; - flex: 1 1 0%; - overflow: hidden; // for appropriate scroll -`; - -export function AppLayout() { - const [isIntercomOpened, setIsIntercomOpened] = useState(false); - - const isInformationArchitectureEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_INFORMATION_ARCHITECTURE_ENABLED); - - return ( - - - - setIsIntercomOpened(true)} - onHide={() => setIsIntercomOpened(false)} - > - ( - <> - Sorry, but something went wrong.
- Our team has been notified and we are investigating. -
- - - Event Id: {eventId}. -
- {error.toString()} -
-
- - )} - > - - - {isInformationArchitectureEnabled ? : } - - - {isInformationArchitectureEnabled ? ( - - ) : ( - - )} - - - - -
-
-
-
-
- ); -} diff --git a/apps/web/src/components/layout/components/AppLayout.tsx b/apps/web/src/components/layout/components/AppLayout.tsx new file mode 100644 index 00000000000..a493c738047 --- /dev/null +++ b/apps/web/src/components/layout/components/AppLayout.tsx @@ -0,0 +1,81 @@ +import { useState } from 'react'; +import * as Sentry from '@sentry/react'; +import { Outlet } from 'react-router-dom'; +import styled from '@emotion/styled'; + +import { HeaderNav } from './HeaderNav'; +import { SideNav } from './SideNav'; +import { IntercomProvider } from 'react-use-intercom'; +import { INTERCOM_APP_ID } from '../../../config/index'; +import { EnsureOnboardingComplete } from '../components/EnsureOnboardingComplete'; +import { SpotLight } from '../../utils/Spotlight'; +import { SpotLightProvider } from '../../providers/SpotlightProvider'; +import { useFeatureFlag } from '@novu/shared-web'; +import { FeatureFlagsKeysEnum } from '@novu/shared'; +import { HeaderNav as HeaderNavNew } from './v2/HeaderNav'; +import { MainNav } from '../../nav/MainNav'; +import { FreeTrialBanner } from './FreeTrialBanner'; + +const AppShell = styled.div` + display: flex; + width: 100vw; + height: 100vh; + min-width: 1024px; +`; + +const ContentShell = styled.div` + display: flex; + flex-direction: column; + flex: 1 1 0%; + overflow: hidden; // for appropriate scroll +`; + +export function PrivatePageLayout() { + const [isIntercomOpened, setIsIntercomOpened] = useState(false); + + const isInformationArchitectureEnabled = useFeatureFlag(FeatureFlagsKeysEnum.IS_INFORMATION_ARCHITECTURE_ENABLED); + + return ( + + + setIsIntercomOpened(true)} + onHide={() => setIsIntercomOpened(false)} + > + ( + <> + Sorry, but something went wrong.
+ Our team has been notified and we are investigating. +
+ + + Event Id: {eventId}. +
+ {error.toString()} +
+
+ + )} + > + + + {isInformationArchitectureEnabled ? : } + + + {isInformationArchitectureEnabled ? ( + + ) : ( + + )} + + + + +
+
+
+
+ ); +} diff --git a/apps/web/src/components/layout/components/AuthLayout.tsx b/apps/web/src/components/layout/components/AuthLayout.tsx deleted file mode 100644 index e84e254638f..00000000000 --- a/apps/web/src/components/layout/components/AuthLayout.tsx +++ /dev/null @@ -1,73 +0,0 @@ -import React from 'react'; -import { createStyles, Box } from '@mantine/core'; -import { ThemeProvider } from '@novu/design-system'; -import { CONTEXT_PATH } from '../../../config'; - -export default function AuthLayout({ children }: { children?: React.ReactNode }) { - const { classes } = useStyles(); - - return ( - -
-
- logo - - logo - logo - logo - {' '} -
- {children} -
-
- ); -} - -const useStyles = createStyles((theme) => ({ - wrapper: { - display: 'grid', - gridAutoFlow: 'column', - gridAutoColumns: '1fr', - columnGap: 25, - minHeight: '100vh', - }, - bg: { - display: 'flex', - alignItems: 'center', - position: 'relative', - minWidth: 600, - backgroundSize: '70% 100%', - backgroundRepeat: 'no-repeat', - backgroundImage: 'url(' + CONTEXT_PATH + '/static/images/signin_bg.webp)', - '@media (max-width: 1100px)': { - display: 'none', - }, - }, -})); diff --git a/apps/web/src/components/layout/EnsureOnboardingComplete.tsx b/apps/web/src/components/layout/components/EnsureOnboardingComplete.tsx similarity index 76% rename from apps/web/src/components/layout/EnsureOnboardingComplete.tsx rename to apps/web/src/components/layout/components/EnsureOnboardingComplete.tsx index 7f04619df67..171c50d0030 100644 --- a/apps/web/src/components/layout/EnsureOnboardingComplete.tsx +++ b/apps/web/src/components/layout/components/EnsureOnboardingComplete.tsx @@ -1,6 +1,6 @@ import { Navigate, useLocation } from 'react-router-dom'; -import { ROUTES } from '../../constants/routes.enum'; -import { useBlueprint, useAuthController } from '../../hooks/index'; +import { ROUTES } from '../../../constants/routes.enum'; +import { useBlueprint, useAuthController } from '../../../hooks/index'; export function EnsureOnboardingComplete({ children }: any) { useBlueprint(); diff --git a/apps/web/src/components/layout/Header.tsx b/apps/web/src/components/layout/components/Header.tsx similarity index 100% rename from apps/web/src/components/layout/Header.tsx rename to apps/web/src/components/layout/components/Header.tsx diff --git a/apps/web/src/components/layout/components/PublicPageLayout.tsx b/apps/web/src/components/layout/components/PublicPageLayout.tsx new file mode 100644 index 00000000000..02e992b3f0f --- /dev/null +++ b/apps/web/src/components/layout/components/PublicPageLayout.tsx @@ -0,0 +1,70 @@ +import { createStyles, Box } from '@mantine/core'; +import { CONTEXT_PATH } from '../../../config/index'; +import { Outlet } from 'react-router-dom'; + +export function PublicPageLayout() { + const { classes } = useStyles(); + + return ( +
+
+ logo + + logo + logo + logo + {' '} +
+ +
+ ); +} + +const useStyles = createStyles((theme) => ({ + wrapper: { + display: 'grid', + gridAutoFlow: 'column', + gridAutoColumns: '1fr', + columnGap: 25, + minHeight: '100vh', + }, + bg: { + display: 'flex', + alignItems: 'center', + position: 'relative', + minWidth: 600, + backgroundSize: '70% 100%', + backgroundRepeat: 'no-repeat', + backgroundImage: 'url(' + CONTEXT_PATH + '/static/images/signin_bg.webp)', + '@media (max-width: 1100px)': { + display: 'none', + }, + }, +})); diff --git a/apps/web/src/pages/auth/InvitationPage.tsx b/apps/web/src/pages/auth/InvitationPage.tsx index 8288dadff8d..1b631dd05ad 100644 --- a/apps/web/src/pages/auth/InvitationPage.tsx +++ b/apps/web/src/pages/auth/InvitationPage.tsx @@ -5,7 +5,6 @@ import { Center, LoadingOverlay } from '@mantine/core'; import { IGetInviteResponseDto } from '@novu/shared'; import { getInviteTokenData } from '../../api/invitation'; -import AuthLayout from '../../components/layout/components/AuthLayout'; import AuthContainer from '../../components/layout/components/AuthContainer'; import { SignUpForm } from './components/SignUpForm'; import { colors, Text, Button } from '@novu/design-system'; @@ -55,75 +54,69 @@ export default function InvitationPage() { }; }, [queryClient]); - return ( - - {isLoggedIn && ( - - - {isAcceptingInvite || isLoggedInAsInvitedUser ? ( -

Accepting invite...

- ) : ( -

The invite is not valid for the current user. Please log in with the right user.

- )} -
- - } - > - -
- - Go to + return isLoggedIn ? ( + + + {isAcceptingInvite || isLoggedInAsInvitedUser ? ( +

Accepting invite...

+ ) : ( +

The invite is not valid for the current user. Please log in with the right user.

+ )} +
+
+ } + > + +
+ + Go to + + + Dashboard + +
+
+ ) : ( + + + {"You've been invited by "} + + + {inviterFirstName[0].toUpperCase() + inviterFirstName.slice(1)} + + + {' to join '} + + + {organizationName} + + + . - - Dashboard - - - )} - - {!isLoggedIn && ( - - - {"You've been invited by "} - - - {inviterFirstName[0].toUpperCase() + inviterFirstName.slice(1)} - - - {' to join '} - - - {organizationName} - - - . - - - ) : undefined - } - > - {isInitialLoading ? ( - - ) : ( -
- )} - + ) : undefined + } + > + {isInitialLoading ? ( + + ) : ( + )} - + ); } diff --git a/apps/web/src/pages/auth/LoginPage.tsx b/apps/web/src/pages/auth/LoginPage.tsx index a36ebe30aaa..57cf652d07e 100644 --- a/apps/web/src/pages/auth/LoginPage.tsx +++ b/apps/web/src/pages/auth/LoginPage.tsx @@ -3,7 +3,6 @@ import { useNavigate, useSearchParams } from 'react-router-dom'; import { useAuthContext } from '../../components/providers/AuthProvider'; import { LoginForm } from './components/LoginForm'; -import AuthLayout from '../../components/layout/components/AuthLayout'; import AuthContainer from '../../components/layout/components/AuthContainer'; import { useVercelIntegration, useBlueprint, useVercelParams } from '../../hooks'; import SetupLoader from './components/SetupLoader'; @@ -69,18 +68,11 @@ export default function LoginPage() { // eslint-disable-next-line react-hooks/exhaustive-deps }, [token]); - return ( - - {isLoading || isLoadingAcceptInvite ? ( - - ) : ( - - - - )} - + return isLoading || isLoadingAcceptInvite ? ( + + ) : ( + + + ); } diff --git a/apps/web/src/pages/auth/PasswordResetPage.tsx b/apps/web/src/pages/auth/PasswordResetPage.tsx index d64cced9ca4..3f25d99b9b4 100644 --- a/apps/web/src/pages/auth/PasswordResetPage.tsx +++ b/apps/web/src/pages/auth/PasswordResetPage.tsx @@ -1,7 +1,5 @@ -import { Link, useParams, useNavigate } from 'react-router-dom'; +import { useParams, useNavigate } from 'react-router-dom'; import { useState } from 'react'; -import { Center } from '@mantine/core'; -import AuthLayout from '../../components/layout/components/AuthLayout'; import AuthContainer from '../../components/layout/components/AuthContainer'; import { PasswordResetRequestForm } from './components/PasswordResetRequestForm'; import { PasswordResetForm } from './components/PasswordResetForm'; @@ -23,24 +21,19 @@ export function PasswordResetPage({}: Props) { setShowSentSuccess(true); } - return ( - - {!showSentSuccess && ( - - {!token && } - {token && } - - )} - {showSentSuccess && ( - - - - )} - + return showSentSuccess ? ( + + + + ) : ( + + {!token && } + {token && } + ); } diff --git a/apps/web/src/pages/auth/QuestionnairePage.tsx b/apps/web/src/pages/auth/QuestionnairePage.tsx index 04d1c4df411..2ef7288fc30 100644 --- a/apps/web/src/pages/auth/QuestionnairePage.tsx +++ b/apps/web/src/pages/auth/QuestionnairePage.tsx @@ -1,4 +1,3 @@ -import AuthLayout from '../../components/layout/components/AuthLayout'; import AuthContainer from '../../components/layout/components/AuthContainer'; import { QuestionnaireForm } from './components/QuestionnaireForm'; import { useVercelIntegration } from '../../hooks'; @@ -15,23 +14,19 @@ export default function QuestionnairePage() { const shouldUseHubspotForm = isHubspotFormEnabled && isNovuProd; - return ( - - {isLoading ? ( - - ) : ( - - - - - - - - - )} - + return isLoading ? ( + + ) : ( + + + + + + + + ); } diff --git a/apps/web/src/pages/auth/SignUpPage.tsx b/apps/web/src/pages/auth/SignUpPage.tsx index 94347b89b7e..c43d8a7ce0d 100644 --- a/apps/web/src/pages/auth/SignUpPage.tsx +++ b/apps/web/src/pages/auth/SignUpPage.tsx @@ -1,4 +1,3 @@ -import AuthLayout from '../../components/layout/components/AuthLayout'; import { SignUpForm } from './components/SignUpForm'; import AuthContainer from '../../components/layout/components/AuthContainer'; import { useBlueprint } from '../../hooks'; @@ -7,10 +6,8 @@ export default function SignUpPage() { useBlueprint(); return ( - - - - - + + + ); } diff --git a/apps/web/src/pages/partner-integrations/LinkVercelProjectPage.tsx b/apps/web/src/pages/partner-integrations/LinkVercelProjectPage.tsx index b33184a37bb..d423c1c1950 100644 --- a/apps/web/src/pages/partner-integrations/LinkVercelProjectPage.tsx +++ b/apps/web/src/pages/partner-integrations/LinkVercelProjectPage.tsx @@ -3,22 +3,20 @@ import { Stack } from '@mantine/core'; import { LinkProjectContainer } from './components/LinkProjectContainer'; import { PartnerIntegrationLayout } from '../../components/layout/components/PartnerIntegrationLayout'; -import { Container, Text, Title, ThemeProvider } from '@novu/design-system'; +import { Container, Text, Title } from '@novu/design-system'; export function LinkVercelProjectPage({ type }: { type: 'edit' | 'create' }) { return ( - - - - - - Link Vercel Projects to Novu - Choose the projects to link with your Organizations - - + + + + + Link Vercel Projects to Novu + Choose the projects to link with your Organizations - - - + + + + ); } diff --git a/enterprise/packages/billing-web/package.json b/enterprise/packages/billing-web/package.json index 27f9b829e8d..319a54041d8 100644 --- a/enterprise/packages/billing-web/package.json +++ b/enterprise/packages/billing-web/package.json @@ -28,7 +28,6 @@ "@emotion/css": "^11.10.5", "@emotion/react": "^11.7.1", "@emotion/styled": "^11.6.0", - "@mantine/core": "^5.7.1", "@mantine/hooks": "^5.7.1", "@novu/client": "workspace:*", "@novu/design-system": "workspace:*", @@ -51,6 +50,7 @@ "tslib": "^2.3.1" }, "devDependencies": { + "@mantine/core": "^5.7.1", "@types/node": "^18.11.12", "@types/react": "^17.0.0", "@types/react-dom": "^17.0.0", @@ -62,6 +62,7 @@ "typescript": "4.9.5" }, "peerDependencies": { + "@mantine/core": "^5.7.1", "react": "^16.8.0 || ^17.0.0", "react-dom": "^16.8.0 || ^17.0.0" } diff --git a/enterprise/packages/echo/echo-web/package.json b/enterprise/packages/echo/echo-web/package.json index 2ff707d26b2..5eaf17bb487 100644 --- a/enterprise/packages/echo/echo-web/package.json +++ b/enterprise/packages/echo/echo-web/package.json @@ -24,7 +24,6 @@ "start": "npm run build:watch" }, "dependencies": { - "@mantine/core": "^5.7.1", "@mantine/hooks": "^5.7.1", "@novu/design-system": "workspace:*", "@novu/shared-web": "workspace:*", @@ -35,6 +34,7 @@ "tslib": "^2.3.1" }, "devDependencies": { + "@mantine/core": "^5.7.1", "@types/node": "^18.11.12", "@types/react": "^17.0.0", "@types/react-dom": "^17.0.0", @@ -48,6 +48,7 @@ "typescript": "4.9.5" }, "peerDependencies": { + "@mantine/core": "^5.7.1", "react": "^16.8.0 || ^17.0.0", "react-dom": "^16.8.0 || ^17.0.0" } diff --git a/enterprise/packages/translation-web/package.json b/enterprise/packages/translation-web/package.json index 49daf5c1200..fa2fc8b931f 100644 --- a/enterprise/packages/translation-web/package.json +++ b/enterprise/packages/translation-web/package.json @@ -28,7 +28,6 @@ "@emotion/react": "^11.7.1", "@emotion/styled": "^11.6.0", "@handlebars/parser": "^2.1.0", - "@mantine/core": "^5.7.1", "@mantine/dropzone": "^5.9.2", "@mantine/hooks": "^5.7.1", "@mantine/prism": "^5.7.1", @@ -49,6 +48,7 @@ "tslib": "^2.3.1" }, "devDependencies": { + "@mantine/core": "^5.7.1", "@types/node": "^18.11.12", "@types/react": "^17.0.0", "@types/react-dom": "^17.0.0", @@ -60,6 +60,7 @@ "typescript": "4.9.5" }, "peerDependencies": { + "@mantine/core": "^5.7.1", "react": "^16.8.0 || ^17.0.0", "react-dom": "^16.8.0 || ^17.0.0" } diff --git a/libs/design-system/package.json b/libs/design-system/package.json index 04fe4fa13fc..c5be9aed527 100644 --- a/libs/design-system/package.json +++ b/libs/design-system/package.json @@ -34,7 +34,6 @@ "@emotion/css": "^11.10.5", "@emotion/react": "^11.7.1", "@emotion/styled": "^11.6.0", - "@mantine/core": "^5.7.1", "@mantine/hooks": "^5.7.1", "@mantine/notifications": "^5.7.1", "@novu/client": "workspace:*", @@ -51,6 +50,7 @@ "tslib": "^2.3.1" }, "devDependencies": { + "@mantine/core": "^5.7.1", "@storybook/addon-actions": "^7.5.0", "@storybook/addon-docs": "^7.4.2", "@storybook/client-api": "^7.6.10", @@ -82,6 +82,7 @@ "vitest": "^1.2.1" }, "peerDependencies": { + "@mantine/core": "^5.7.1", "react": "^16.8.0 || ^17.0.0", "react-dom": "^16.8.0 || ^17.0.0" }, diff --git a/libs/novui/package.json b/libs/novui/package.json index cc2e20f90a8..3afb29df522 100644 --- a/libs/novui/package.json +++ b/libs/novui/package.json @@ -80,7 +80,7 @@ "@testing-library/react-hooks": "^8.0.1", "@testing-library/user-event": "^14.5.2", "@types/node": "^18.11.12", - "@types/react": "^17.0.1", + "@types/react": "^17.0.0", "@types/react-dom": "^17.0.1", "@vitejs/plugin-react": "^4.0.3", "eslint-plugin-react-hooks": "^4.6.2", diff --git a/package.json b/package.json index 63f47dcb6aa..730f434f9bd 100644 --- a/package.json +++ b/package.json @@ -224,6 +224,7 @@ }, "pnpm": { "overrides": { + "@types/react": "17.0.62", "braces@<2.3.1": "^2.3.1", "file-type@>=13.0.0 <16.5.4": "^16.5.4", "get-func-name@<2.0.1": "^2.0.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 266bd899dbc..5b5519a6817 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,6 +5,7 @@ settings: excludeLinksFromLockfile: false overrides: + '@types/react': 17.0.62 braces@<2.3.1: ^2.3.1 file-type@>=13.0.0 <16.5.4: ^16.5.4 get-func-name@<2.0.1: ^2.0.1 @@ -729,7 +730,7 @@ importers: version: 7.23.2(@babel/core@7.22.11) '@cypress/react': specifier: ^7.0.3 - version: 7.0.3(@types/react@17.0.53)(cypress@13.3.1)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.0.3(@types/react@17.0.62)(cypress@13.3.1)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@cypress/webpack-dev-server': specifier: ^3.6.1 version: 3.6.1(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) @@ -744,10 +745,10 @@ importers: version: 11.10.6 '@emotion/react': specifier: ^11.7.1 - version: 11.10.6(@types/react@17.0.53)(react@17.0.2) + version: 11.10.6(@types/react@17.0.62)(react@17.0.2) '@emotion/styled': specifier: ^11.6.0 - version: 11.10.6(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@types/react@17.0.53)(react@17.0.2) + version: 11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@types/react@17.0.62)(react@17.0.2) '@fortawesome/fontawesome-svg-core': specifier: ^6.4.0 version: 6.4.0 @@ -765,16 +766,16 @@ importers: version: 2.1.0 '@hookform/devtools': specifier: ^4.3.0 - version: 4.3.1(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.3.1(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@hookform/resolvers': specifier: ^2.9.1 version: 2.9.11(react-hook-form@7.43.9(react@17.0.2)) '@mantine/core': specifier: ^5.7.1 - version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mantine/dropzone': specifier: ^5.9.2 - version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mantine/form': specifier: ^5.10.4 version: 5.10.5(react@17.0.2) @@ -783,13 +784,13 @@ importers: version: 5.10.5(react@17.0.2) '@mantine/notifications': specifier: ^5.7.1 - version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mantine/prism': specifier: ^5.7.1 - version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mantine/spotlight': specifier: ^5.7.1 - version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@monaco-editor/react': specifier: ^4.6.0 version: 4.6.0(monaco-editor@0.45.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -822,7 +823,7 @@ importers: version: 7.47.0 '@storybook/addon-docs': specifier: ^7.4.2 - version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/theming': specifier: ^7.4.2 version: 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -845,8 +846,8 @@ importers: specifier: ^12.0.0 version: 12.20.55 '@types/react': - specifier: ^17.0.0 - version: 17.0.53 + specifier: 17.0.62 + version: 17.0.62 '@types/react-dom': specifier: ^17.0.0 version: 17.0.19 @@ -987,7 +988,7 @@ importers: version: 1.6.6 storybook-dark-mode: specifier: ^3.0.1 - version: 3.0.1(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 3.0.1(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) typescript: specifier: 4.9.5 version: 4.9.5 @@ -1040,16 +1041,16 @@ importers: version: 0.38.0(jsdom@24.0.0)(typescript@4.9.5) '@pandacss/studio': specifier: ^0.38.0 - version: 0.38.0(@types/node@12.20.55)(@types/react-dom@17.0.19)(@types/react@17.0.53)(jsdom@24.0.0)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)(typescript@4.9.5) + version: 0.38.0(@types/node@12.20.55)(@types/react-dom@17.0.19)(@types/react@17.0.62)(jsdom@24.0.0)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)(typescript@4.9.5) '@playwright/test': specifier: ^1.42.1 version: 1.42.1 '@storybook/addon-actions': specifier: ^7.4.2 - version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/addon-essentials': specifier: ^7.4.2 - version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/addon-links': specifier: ^7.4.2 version: 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -1067,7 +1068,7 @@ importers: version: 7.4.2(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5) '@storybook/react-webpack5': specifier: ^7.4.2 - version: 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.107(@swc/helpers@0.5.2))(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.53)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@4.11.1(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)))(webpack-hot-middleware@2.25.3) + version: 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.107(@swc/helpers@0.5.2))(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.62)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@4.11.1(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)))(webpack-hot-middleware@2.25.3) '@testing-library/jest-dom': specifier: ^4.2.4 version: 4.2.4 @@ -1389,7 +1390,7 @@ importers: specifier: ^12.0.0 version: 12.20.55 '@types/react': - specifier: ^17.0.0 + specifier: 17.0.62 version: 17.0.62 '@types/react-dom': specifier: 17.0.20 @@ -1963,9 +1964,6 @@ importers: '@emotion/styled': specifier: ^11.6.0 version: 11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@types/react@17.0.62)(react@17.0.2) - '@mantine/core': - specifier: ^5.7.1 - version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mantine/hooks': specifier: ^5.7.1 version: 5.10.5(react@17.0.2) @@ -2027,11 +2025,14 @@ importers: specifier: ^2.3.1 version: 2.6.2 devDependencies: + '@mantine/core': + specifier: ^5.7.1 + version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@types/node': specifier: ^18.11.12 version: 18.18.5 '@types/react': - specifier: ^17.0.0 + specifier: 17.0.62 version: 17.0.62 '@types/react-dom': specifier: ^17.0.0 @@ -2151,9 +2152,6 @@ importers: enterprise/packages/echo/echo-web: dependencies: - '@mantine/core': - specifier: ^5.7.1 - version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mantine/hooks': specifier: ^5.7.1 version: 5.10.5(react@17.0.2) @@ -2179,11 +2177,14 @@ importers: specifier: ^2.3.1 version: 2.6.2 devDependencies: + '@mantine/core': + specifier: ^5.7.1 + version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@types/node': specifier: ^18.11.12 version: 18.18.5 '@types/react': - specifier: ^17.0.0 + specifier: 17.0.62 version: 17.0.62 '@types/react-dom': specifier: ^17.0.0 @@ -2480,9 +2481,6 @@ importers: '@handlebars/parser': specifier: ^2.1.0 version: 2.1.0 - '@mantine/core': - specifier: ^5.7.1 - version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mantine/dropzone': specifier: ^5.9.2 version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -2538,11 +2536,14 @@ importers: specifier: ^2.3.1 version: 2.6.2 devDependencies: + '@mantine/core': + specifier: ^5.7.1 + version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@types/node': specifier: ^18.11.12 version: 18.18.5 '@types/react': - specifier: ^17.0.0 + specifier: 17.0.62 version: 17.0.62 '@types/react-dom': specifier: ^17.0.0 @@ -2995,9 +2996,6 @@ importers: '@emotion/styled': specifier: ^11.6.0 version: 11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@types/react@17.0.62)(react@17.0.2) - '@mantine/core': - specifier: ^5.7.1 - version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mantine/hooks': specifier: ^5.7.1 version: 5.10.5(react@17.0.2) @@ -3041,6 +3039,9 @@ importers: specifier: ^2.3.1 version: 2.6.2 devDependencies: + '@mantine/core': + specifier: ^5.7.1 + version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/addon-actions': specifier: ^7.5.0 version: 7.5.1(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -3075,7 +3076,7 @@ importers: specifier: ^18.11.12 version: 18.18.5 '@types/react': - specifier: ^17.0.0 + specifier: 17.0.62 version: 17.0.62 '@types/react-dom': specifier: ^17.0.0 @@ -3280,7 +3281,7 @@ importers: specifier: ^18.11.12 version: 18.16.9 '@types/react': - specifier: ^17.0.1 + specifier: 17.0.62 version: 17.0.62 '@types/react-dom': specifier: ^17.0.1 @@ -3393,7 +3394,7 @@ importers: specifier: ^18.11.12 version: 18.18.5 '@types/react': - specifier: ^17.0.0 + specifier: 17.0.62 version: 17.0.62 '@types/react-dom': specifier: ^17.0.0 @@ -3945,13 +3946,13 @@ importers: version: 11.10.6 '@emotion/react': specifier: ^11.7.1 - version: 11.10.6(@types/react@17.0.53)(react@17.0.2) + version: 11.10.6(@types/react@17.0.62)(react@17.0.2) '@emotion/styled': specifier: ^11.6.0 - version: 11.10.6(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@types/react@17.0.53)(react@17.0.2) + version: 11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@types/react@17.0.62)(react@17.0.2) '@mantine/core': specifier: ^5.7.1 - version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mantine/hooks': specifier: ^5.7.1 version: 5.10.5(react@17.0.2) @@ -4003,13 +4004,13 @@ importers: version: 7.21.4(@babel/core@7.22.11) '@storybook/addon-actions': specifier: ^7.4.2 - version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/addon-essentials': specifier: ^7.4.2 - version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/addon-interactions': specifier: ^7.4.2 - version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/addon-links': specifier: ^7.4.2 version: 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -4021,7 +4022,7 @@ importers: version: 7.4.2(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5) '@storybook/react-webpack5': specifier: ^7.4.2 - version: 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.107(@swc/helpers@0.5.2))(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.53)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(type-fest@2.19.0)(typescript@4.9.5)(webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack-dev-server@4.15.1)(webpack@5.82.1))(webpack-dev-server@4.15.1(webpack-cli@5.1.4)(webpack@5.82.1))(webpack-hot-middleware@2.25.3) + version: 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.107(@swc/helpers@0.5.2))(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.62)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(type-fest@2.19.0)(typescript@4.9.5)(webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack-dev-server@4.15.1)(webpack@5.82.1))(webpack-dev-server@4.15.1(webpack-cli@5.1.4)(webpack@5.82.1))(webpack-hot-middleware@2.25.3) '@testing-library/dom': specifier: ^9.3.0 version: 9.3.0 @@ -4033,7 +4034,7 @@ importers: version: 11.2.7(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@testing-library/react-hooks': specifier: ^8.0.1 - version: 8.0.1(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 8.0.1(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@testing-library/user-event': specifier: ^12.1.10 version: 12.8.3(@testing-library/dom@9.3.0) @@ -4044,8 +4045,8 @@ importers: specifier: ^18.11.12 version: 18.15.11 '@types/react': - specifier: ^17.0.0 - version: 17.0.53 + specifier: 17.0.62 + version: 17.0.62 '@types/react-dom': specifier: ^17.0.0 version: 17.0.19 @@ -4201,7 +4202,7 @@ importers: specifier: workspace:* version: link:../../../notification-center '@types/react': - specifier: ^17.0.0 + specifier: 17.0.62 version: 17.0.62 react: specifier: ^17.0.1 @@ -4780,7 +4781,7 @@ packages: resolution: {integrity: sha512-uGRIwKMAn7tva2vxXMyoVIGxWFr0rjZ8ZWIlkTG/vIpnAjD2nM8Cz6B8j7yzj176jvl6gZ6xTbTVPm09aeK0Yw==} engines: {node: '>=18.14.1'} peerDependencies: - '@types/react': ^17.0.50 || ^18.0.21 + '@types/react': 17.0.62 '@types/react-dom': ^17.0.17 || ^18.0.6 react: ^17.0.2 || ^18.0.0 react-dom: ^17.0.2 || ^18.0.0 @@ -7818,7 +7819,7 @@ packages: '@cypress/react@7.0.3': resolution: {integrity: sha512-YseqnMugTbdPV9YCYEMXVqIf+P7x+pfjXOdjv4dnDFqNCZeHaZfOZVFZ4XfEHVxMv0aDszxlaLiIp3QDPhr12w==} peerDependencies: - '@types/react': ^16.9.16 || ^17.0.0 + '@types/react': 17.0.62 cypress: '*' react: ^=16.x || ^=17.x react-dom: ^=16.x || ^=17.x @@ -9576,7 +9577,7 @@ packages: '@mdx-js/react@3.0.1': resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==} peerDependencies: - '@types/react': '>=16' + '@types/react': 17.0.62 react: '>=16' '@medv/finder@3.2.0': @@ -11569,7 +11570,7 @@ packages: '@radix-ui/react-arrow@1.0.3': resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11582,7 +11583,7 @@ packages: '@radix-ui/react-collection@1.0.3': resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11605,7 +11606,7 @@ packages: '@radix-ui/react-compose-refs@1.0.1': resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11624,7 +11625,7 @@ packages: '@radix-ui/react-context@1.0.1': resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11633,7 +11634,7 @@ packages: '@radix-ui/react-dialog@1.0.5': resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11651,7 +11652,7 @@ packages: '@radix-ui/react-direction@1.0.1': resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11660,7 +11661,7 @@ packages: '@radix-ui/react-dismissable-layer@1.0.4': resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11673,7 +11674,7 @@ packages: '@radix-ui/react-dismissable-layer@1.0.5': resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11686,7 +11687,7 @@ packages: '@radix-ui/react-focus-guards@1.0.1': resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11695,7 +11696,7 @@ packages: '@radix-ui/react-focus-scope@1.0.3': resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11708,7 +11709,7 @@ packages: '@radix-ui/react-focus-scope@1.0.4': resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11721,7 +11722,7 @@ packages: '@radix-ui/react-id@1.0.1': resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11730,7 +11731,7 @@ packages: '@radix-ui/react-popper@1.1.2': resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11743,7 +11744,7 @@ packages: '@radix-ui/react-portal@1.0.3': resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11756,7 +11757,7 @@ packages: '@radix-ui/react-portal@1.0.4': resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11780,7 +11781,7 @@ packages: '@radix-ui/react-presence@1.0.1': resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11804,7 +11805,7 @@ packages: '@radix-ui/react-primitive@1.0.3': resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11817,7 +11818,7 @@ packages: '@radix-ui/react-roving-focus@1.0.4': resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11841,7 +11842,7 @@ packages: '@radix-ui/react-select@1.2.2': resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11854,7 +11855,7 @@ packages: '@radix-ui/react-separator@1.0.3': resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11877,7 +11878,7 @@ packages: '@radix-ui/react-slot@1.0.2': resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11886,7 +11887,7 @@ packages: '@radix-ui/react-toggle-group@1.0.4': resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11899,7 +11900,7 @@ packages: '@radix-ui/react-toggle@1.0.3': resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11912,7 +11913,7 @@ packages: '@radix-ui/react-toolbar@1.0.4': resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11935,7 +11936,7 @@ packages: '@radix-ui/react-use-callback-ref@1.0.1': resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11944,7 +11945,7 @@ packages: '@radix-ui/react-use-controllable-state@1.0.1': resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11958,7 +11959,7 @@ packages: '@radix-ui/react-use-escape-keydown@1.0.3': resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11977,7 +11978,7 @@ packages: '@radix-ui/react-use-layout-effect@1.0.1': resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11986,7 +11987,7 @@ packages: '@radix-ui/react-use-previous@1.0.1': resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11995,7 +11996,7 @@ packages: '@radix-ui/react-use-rect@1.0.1': resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12004,7 +12005,7 @@ packages: '@radix-ui/react-use-size@1.0.1': resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -12013,7 +12014,7 @@ packages: '@radix-ui/react-visually-hidden@1.0.3': resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} peerDependencies: - '@types/react': '*' + '@types/react': 17.0.62 '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -14591,7 +14592,7 @@ packages: resolution: {integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==} engines: {node: '>=12'} peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 + '@types/react': 17.0.62 react: ^16.9.0 || ^17.0.0 react-dom: ^16.9.0 || ^17.0.0 react-test-renderer: ^16.9.0 || ^17.0.0 @@ -15259,9 +15260,6 @@ packages: '@types/react-transition-group@4.4.10': resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} - '@types/react@17.0.53': - resolution: {integrity: sha512-1yIpQR2zdYu1Z/dc1OxC+MA6GR240u3gcnP4l6mvj/PJiVaqHsQPmWttsvHsfnhfPbU2FuGmo0wSITPygjBmsw==} - '@types/react@17.0.62': resolution: {integrity: sha512-eANCyz9DG8p/Vdhr0ZKST8JV12PhH2ACCDYlFw6DIO+D+ca+uP4jtEDEpVqXZrh/uZdXQGwk7whJa3ah5DtyLw==} @@ -27409,7 +27407,7 @@ packages: resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 17.0.62 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -27419,7 +27417,7 @@ packages: resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 17.0.62 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -27429,7 +27427,7 @@ packages: resolution: {integrity: sha512-K7XZySEzOHMTq7dDwcHsZA6Y7/1uX5RsWhRXVYv8rdh+y9Qz2nMwl9RX/Mwnj/j7JstCGmxyfyC0zbVGXYh3mA==} engines: {node: '>=8.5.0'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 + '@types/react': 17.0.62 react: ^16.8.0 || ^17.0.0 peerDependenciesMeta: '@types/react': @@ -27439,7 +27437,7 @@ packages: resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 17.0.62 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -27449,7 +27447,7 @@ packages: resolution: {integrity: sha512-bvHCLBrFfM2OgcrpPY2YW84sPdS2o2HKWJUf1xGyGLnSoEnOTOBpahIarjRuYtN0ryahCeP242yf+5TrBX/pZA==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 17.0.62 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -27504,7 +27502,7 @@ packages: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 17.0.62 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -30437,7 +30435,7 @@ packages: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + '@types/react': 17.0.62 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -30482,7 +30480,7 @@ packages: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 + '@types/react': 17.0.62 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -31568,7 +31566,7 @@ packages: resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==} engines: {node: '>=12.7.0'} peerDependencies: - '@types/react': '>=16.8' + '@types/react': 17.0.62 immer: '>=9.0.6' react: '>=16.8' peerDependenciesMeta: @@ -31967,9 +31965,9 @@ snapshots: dependencies: prismjs: 1.29.0 - '@astrojs/react@3.0.10(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.1.7(@types/node@12.20.55)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0))': + '@astrojs/react@3.0.10(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.1.7(@types/node@12.20.55)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0))': dependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@vitejs/plugin-react': 4.2.1(vite@5.1.7(@types/node@12.20.55)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) react: 18.2.0 @@ -39565,13 +39563,13 @@ snapshots: '@ctrl/tinycolor@3.6.0': {} - '@cypress/react@7.0.3(@types/react@17.0.53)(cypress@13.3.1)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@cypress/react@7.0.3(@types/react@17.0.62)(cypress@13.3.1)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: cypress: 13.3.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@cypress/request@3.0.1': dependencies: @@ -39751,20 +39749,6 @@ snapshots: '@emotion/memoize@0.8.1': {} - '@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@emotion/babel-plugin': 11.10.6 - '@emotion/cache': 11.10.7 - '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@17.0.2) - '@emotion/utils': 1.2.0 - '@emotion/weak-memoize': 0.3.0 - hoist-non-react-statics: 3.3.2 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -39835,19 +39819,6 @@ snapshots: '@emotion/sheet@1.2.2': {} - '@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@emotion/babel-plugin': 11.10.6 - '@emotion/is-prop-valid': 1.2.0 - '@emotion/react': 11.10.6(@types/react@17.0.53)(react@17.0.2) - '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@17.0.2) - '@emotion/utils': 1.2.0 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -40605,10 +40576,10 @@ snapshots: - aws-crt - supports-color - '@hookform/devtools@4.3.1(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@hookform/devtools@4.3.1(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: - '@emotion/react': 11.10.6(@types/react@17.0.53)(react@17.0.2) - '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@types/react@17.0.53)(react@17.0.2) + '@emotion/react': 11.10.6(@types/react@17.0.62)(react@17.0.2) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@types/react@17.0.62)(react@17.0.2) '@types/lodash': 4.14.192 little-state-machine: 4.8.0(react@17.0.2) lodash: 4.17.21 @@ -42267,20 +42238,6 @@ snapshots: - '@babel/core' - '@types/react' - '@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': - dependencies: - '@floating-ui/react': 0.19.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@mantine/hooks': 5.10.5(react@17.0.2) - '@mantine/styles': 5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@mantine/utils': 5.10.5(react@17.0.2) - '@radix-ui/react-scroll-area': 1.0.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-textarea-autosize: 8.3.4(@types/react@17.0.53)(react@17.0.2) - transitivePeerDependencies: - - '@emotion/react' - - '@types/react' - '@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@floating-ui/react': 0.19.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -42309,15 +42266,6 @@ snapshots: transitivePeerDependencies: - '@types/react' - '@mantine/dropzone@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': - dependencies: - '@mantine/core': 5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@mantine/hooks': 5.10.5(react@17.0.2) - '@mantine/utils': 5.10.5(react@17.0.2) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-dropzone: 14.2.3(react@17.0.2) - '@mantine/dropzone@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@mantine/core': 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -42352,15 +42300,6 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@mantine/notifications@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': - dependencies: - '@mantine/core': 5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@mantine/hooks': 5.10.5(react@17.0.2) - '@mantine/utils': 5.10.5(react@17.0.2) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-transition-group: 4.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@mantine/notifications@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@mantine/core': 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -42379,15 +42318,6 @@ snapshots: react-dom: 18.2.0(react@18.2.0) react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@mantine/prism@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': - dependencies: - '@mantine/core': 5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@mantine/hooks': 5.10.5(react@17.0.2) - '@mantine/utils': 5.10.5(react@17.0.2) - prism-react-renderer: 1.3.5(react@17.0.2) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - '@mantine/prism@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@mantine/core': 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -42397,9 +42327,9 @@ snapshots: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - '@mantine/spotlight@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@mantine/spotlight@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: - '@mantine/core': 5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@mantine/core': 5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@mantine/hooks@5.10.5(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@mantine/hooks': 5.10.5(react@17.0.2) '@mantine/utils': 5.10.5(react@17.0.2) react: 17.0.2 @@ -42431,14 +42361,6 @@ snapshots: - '@babel/core' - '@types/react' - '@mantine/styles@5.10.5(@emotion/react@11.10.6(@types/react@17.0.53)(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': - dependencies: - '@emotion/react': 11.10.6(@types/react@17.0.53)(react@17.0.2) - clsx: 1.1.1 - csstype: 3.0.9 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - '@mantine/styles@5.10.5(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@emotion/react': 11.10.6(@types/react@17.0.62)(react@17.0.2) @@ -45276,9 +45198,9 @@ snapshots: '@pandacss/shared@0.39.1': {} - '@pandacss/studio@0.38.0(@types/node@12.20.55)(@types/react-dom@17.0.19)(@types/react@17.0.53)(jsdom@24.0.0)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)(typescript@4.9.5)': + '@pandacss/studio@0.38.0(@types/node@12.20.55)(@types/react-dom@17.0.19)(@types/react@17.0.62)(jsdom@24.0.0)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)(typescript@4.9.5)': dependencies: - '@astrojs/react': 3.0.10(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.1.7(@types/node@12.20.55)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) + '@astrojs/react': 3.0.10(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.1.7(@types/node@12.20.55)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) '@pandacss/astro-plugin-studio': 0.38.0(astro@4.4.0(@types/node@12.20.55)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)(typescript@4.9.5))(jsdom@24.0.0)(typescript@4.9.5) '@pandacss/config': 0.38.0 '@pandacss/logger': 0.38.0 @@ -45819,14 +45741,14 @@ snapshots: dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-arrow@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-arrow@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-arrow@1.0.3(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -45839,17 +45761,17 @@ snapshots: '@types/react': 17.0.62 '@types/react-dom': 17.0.20 - '@radix-ui/react-collection@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-collection@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-slot': 1.0.2(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-slot': 1.0.2(@types/react@17.0.62)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-collection@1.0.3(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -45875,13 +45797,6 @@ snapshots: '@babel/runtime': 7.23.2 react: 17.0.2 - '@radix-ui/react-compose-refs@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-compose-refs@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -45899,13 +45814,6 @@ snapshots: '@babel/runtime': 7.23.2 react: 17.0.2 - '@radix-ui/react-context@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-context@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -45941,13 +45849,6 @@ snapshots: '@babel/runtime': 7.23.2 react: 17.0.2 - '@radix-ui/react-direction@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-direction@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -45955,18 +45856,18 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@17.0.62)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -45997,13 +45898,6 @@ snapshots: '@types/react': 17.0.62 '@types/react-dom': 17.0.20 - '@radix-ui/react-focus-guards@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-focus-guards@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -46011,16 +45905,16 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.62)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -46047,14 +45941,6 @@ snapshots: '@types/react': 17.0.62 '@types/react-dom': 17.0.20 - '@radix-ui/react-id@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.53)(react@17.0.2) - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-id@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -46063,23 +45949,23 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - '@radix-ui/react-popper@1.1.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-popper@1.1.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 '@floating-ui/react-dom': 2.0.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-use-rect': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-use-size': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-use-rect': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-use-size': 1.0.1(@types/react@17.0.62)(react@17.0.2) '@radix-ui/rect': 1.0.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-popper@1.1.2(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -46101,14 +45987,14 @@ snapshots: '@types/react': 17.0.62 '@types/react-dom': 17.0.20 - '@radix-ui/react-portal@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-portal@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-portal@1.0.3(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -46170,14 +46056,14 @@ snapshots: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - '@radix-ui/react-primitive@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-primitive@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-slot': 1.0.2(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-slot': 1.0.2(@types/react@17.0.62)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-primitive@1.0.3(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -46190,22 +46076,22 @@ snapshots: '@types/react': 17.0.62 '@types/react-dom': 17.0.20 - '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-direction': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-id': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-id': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.62)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -46255,34 +46141,34 @@ snapshots: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - '@radix-ui/react-select@1.2.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-select@1.2.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-direction': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-id': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-slot': 1.0.2(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-use-previous': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-id': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-popper': 1.1.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-portal': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-slot': 1.0.2(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-use-previous': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) aria-hidden: 1.2.3 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-remove-scroll: 2.5.5(@types/react@17.0.53)(react@17.0.2) + react-remove-scroll: 2.5.5(@types/react@17.0.62)(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-select@1.2.2(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -46315,14 +46201,14 @@ snapshots: '@types/react': 17.0.62 '@types/react-dom': 17.0.20 - '@radix-ui/react-separator@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-separator@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-separator@1.0.3(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -46347,14 +46233,6 @@ snapshots: '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) react: 17.0.2 - '@radix-ui/react-slot@1.0.2(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.53)(react@17.0.2) - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-slot@1.0.2(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -46363,20 +46241,20 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-direction': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.62)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -46395,16 +46273,16 @@ snapshots: '@types/react': 17.0.62 '@types/react-dom': 17.0.20 - '@radix-ui/react-toggle@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-toggle@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.53)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@17.0.62)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-toggle@1.0.3(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -46419,20 +46297,20 @@ snapshots: '@types/react': 17.0.62 '@types/react-dom': 17.0.20 - '@radix-ui/react-toolbar@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-toolbar@1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-direction': 1.0.1(@types/react@17.0.53)(react@17.0.2) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-separator': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-context': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-direction': 1.0.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-separator': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-toolbar@1.0.4(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -46461,13 +46339,6 @@ snapshots: '@babel/runtime': 7.23.2 react: 17.0.2 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -46475,14 +46346,6 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -46496,14 +46359,6 @@ snapshots: '@babel/runtime': 7.23.2 react: 17.0.2 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.53)(react@17.0.2) - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -46522,13 +46377,6 @@ snapshots: '@babel/runtime': 7.23.2 react: 17.0.2 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -46536,13 +46384,6 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - '@radix-ui/react-use-previous@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-use-previous@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -46550,14 +46391,6 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - '@radix-ui/react-use-rect@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@radix-ui/rect': 1.0.1 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-use-rect@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -46566,14 +46399,6 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - '@radix-ui/react-use-size@1.0.1(@types/react@17.0.53)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.53)(react@17.0.2) - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - '@radix-ui/react-use-size@1.0.1(@types/react@17.0.62)(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -46582,14 +46407,14 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) optionalDependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom': 17.0.19 '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': @@ -49350,10 +49175,10 @@ snapshots: '@stoplight/yaml-ast-parser': 0.0.48 tslib: 2.6.2 - '@storybook/addon-actions@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-actions@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -49409,10 +49234,10 @@ snapshots: polished: 4.2.2 uuid: 9.0.1 - '@storybook/addon-backgrounds@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-backgrounds@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -49428,11 +49253,11 @@ snapshots: - '@types/react' - '@types/react-dom' - '@storybook/addon-controls@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-controls@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: - '@storybook/blocks': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/blocks': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-common': 7.4.2(encoding@0.1.13) '@storybook/core-events': 7.4.2 '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -49466,13 +49291,13 @@ snapshots: - react-dom - supports-color - '@storybook/addon-docs@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-docs@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@jest/transform': 29.5.0 '@mdx-js/react': 2.3.0(react@17.0.2) - '@storybook/blocks': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/blocks': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/csf-plugin': 7.4.2 '@storybook/csf-tools': 7.4.2 '@storybook/global': 5.0.0 @@ -49552,17 +49377,17 @@ snapshots: - prettier - supports-color - '@storybook/addon-essentials@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-essentials@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: - '@storybook/addon-actions': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/addon-backgrounds': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/addon-controls': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/addon-docs': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/addon-actions': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/addon-backgrounds': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/addon-controls': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/addon-docs': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/addon-highlight': 7.4.2 - '@storybook/addon-measure': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/addon-outline': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/addon-toolbars': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/addon-viewport': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/addon-measure': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/addon-outline': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/addon-toolbars': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/addon-viewport': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-common': 7.4.2(encoding@0.1.13) '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/node-logger': 7.4.2 @@ -49582,10 +49407,10 @@ snapshots: '@storybook/global': 5.0.0 '@storybook/preview-api': 7.4.2 - '@storybook/addon-interactions@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-interactions@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-common': 7.4.2(encoding@0.1.13) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 @@ -49630,10 +49455,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@storybook/addon-measure@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-measure@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -49647,10 +49472,10 @@ snapshots: - '@types/react' - '@types/react-dom' - '@storybook/addon-outline@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-outline@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -49664,10 +49489,10 @@ snapshots: - '@types/react' - '@types/react-dom' - '@storybook/addon-toolbars@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-toolbars@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/preview-api': 7.4.2 '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -49678,10 +49503,10 @@ snapshots: - '@types/react' - '@types/react-dom' - '@storybook/addon-viewport@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-viewport@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -49712,11 +49537,11 @@ snapshots: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - '@storybook/blocks@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/blocks@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@storybook/channels': 7.4.2 '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/csf': 0.1.7 '@storybook/docs-tools': 7.4.2(encoding@0.1.13) @@ -49884,14 +49709,14 @@ snapshots: - prettier - supports-color - '@storybook/builder-webpack5@7.4.2(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5)': + '@storybook/builder-webpack5@7.4.2(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5)': dependencies: '@babel/core': 7.23.2 '@storybook/addons': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/channels': 7.4.2 '@storybook/client-api': 7.4.2 '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-common': 7.4.2(encoding@0.1.13) '@storybook/core-events': 7.4.2 '@storybook/core-webpack': 7.4.2(encoding@0.1.13) @@ -49944,14 +49769,14 @@ snapshots: - uglify-js - webpack-cli - '@storybook/builder-webpack5@7.4.2(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack-dev-server@4.15.1)(webpack@5.82.1))': + '@storybook/builder-webpack5@7.4.2(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack-dev-server@4.15.1)(webpack@5.82.1))': dependencies: '@babel/core': 7.24.4 '@storybook/addons': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/channels': 7.4.2 '@storybook/client-api': 7.4.2 '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-common': 7.4.2(encoding@0.1.13) '@storybook/core-events': 7.4.2 '@storybook/core-webpack': 7.4.2(encoding@0.1.13) @@ -50260,10 +50085,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@storybook/components@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/components@7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: - '@radix-ui/react-select': 1.2.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-select': 1.2.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/client-logger': 7.4.2 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 @@ -50989,9 +50814,9 @@ snapshots: - typescript - vite-plugin-glimmerx - '@storybook/react-webpack5@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.107(@swc/helpers@0.5.2))(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.53)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(type-fest@2.19.0)(typescript@4.9.5)(webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack-dev-server@4.15.1)(webpack@5.82.1))(webpack-dev-server@4.15.1(webpack-cli@5.1.4)(webpack@5.82.1))(webpack-hot-middleware@2.25.3)': + '@storybook/react-webpack5@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.107(@swc/helpers@0.5.2))(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.62)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(type-fest@2.19.0)(typescript@4.9.5)(webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack-dev-server@4.15.1)(webpack@5.82.1))(webpack-dev-server@4.15.1(webpack-cli@5.1.4)(webpack@5.82.1))(webpack-hot-middleware@2.25.3)': dependencies: - '@storybook/builder-webpack5': 7.4.2(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack-dev-server@4.15.1)(webpack@5.82.1)) + '@storybook/builder-webpack5': 7.4.2(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5)(webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack-dev-server@4.15.1)(webpack@5.82.1)) '@storybook/preset-react-webpack': 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(type-fest@2.19.0)(typescript@4.9.5)(webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack-dev-server@4.15.1)(webpack@5.82.1))(webpack-dev-server@4.15.1(webpack-cli@5.1.4)(webpack@5.82.1))(webpack-hot-middleware@2.25.3) '@storybook/react': 7.4.2(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5) '@types/node': 16.11.7 @@ -51017,9 +50842,9 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@storybook/react-webpack5@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.107(@swc/helpers@0.5.2))(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.53)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@4.11.1(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)))(webpack-hot-middleware@2.25.3)': + '@storybook/react-webpack5@7.4.2(@babel/core@7.22.11)(@swc/core@1.3.107(@swc/helpers@0.5.2))(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.62)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@4.11.1(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)))(webpack-hot-middleware@2.25.3)': dependencies: - '@storybook/builder-webpack5': 7.4.2(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.53)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5) + '@storybook/builder-webpack5': 7.4.2(@swc/helpers@0.5.2)(@types/react-dom@17.0.19)(@types/react@17.0.62)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5) '@storybook/preset-react-webpack': 7.4.2(@babel/core@7.22.11)(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@4.11.1(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)))(webpack-hot-middleware@2.25.3) '@storybook/react': 7.4.2(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5) '@types/node': 16.11.7 @@ -51568,15 +51393,6 @@ snapshots: jest: 29.7.0(@types/node@18.18.5)(ts-node@10.9.1(@swc/core@1.3.107)(@types/node@16.11.7)(typescript@4.9.5)) vitest: 1.2.1(@edge-runtime/vm@3.0.3)(@types/node@18.18.5)(jsdom@24.0.0)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0) - '@testing-library/react-hooks@8.0.1(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - react-error-boundary: 3.1.4(react@17.0.2) - optionalDependencies: - '@types/react': 17.0.53 - react-dom: 17.0.2(react@17.0.2) - '@testing-library/react-hooks@8.0.1(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': dependencies: '@babel/runtime': 7.23.2 @@ -52327,7 +52143,7 @@ snapshots: '@types/react-dom@17.0.19': dependencies: - '@types/react': 17.0.53 + '@types/react': 17.0.62 '@types/react-dom@17.0.20': dependencies: @@ -52352,12 +52168,6 @@ snapshots: dependencies: '@types/react': 17.0.62 - '@types/react@17.0.53': - dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.3 - csstype: 3.1.2 - '@types/react@17.0.62': dependencies: '@types/prop-types': 15.7.5 @@ -58845,7 +58655,7 @@ snapshots: eslint: 8.57.0 eslint-import-resolver-node: 0.3.7 eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.58.0(eslint@8.57.0)(typescript@4.9.5))(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-webpack@0.13.7(eslint-plugin-import@2.28.1)(webpack@5.88.2(@swc/core@1.3.107)))(eslint@8.57.0) - has: 1.0.4 + has: 1.0.3 is-core-module: 2.13.0 is-glob: 4.0.3 minimatch: 3.1.2 @@ -60202,7 +60012,7 @@ snapshots: minimatch: 3.1.2 node-abort-controller: 3.1.1 schema-utils: 3.3.0 - semver: 7.6.2 + semver: 7.5.4 tapable: 2.2.1 typescript: 4.9.5 webpack: 5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)(webpack-cli@5.1.4(webpack-bundle-analyzer@4.9.0)(webpack-dev-server@4.15.1)(webpack@5.82.1)) @@ -60219,7 +60029,7 @@ snapshots: minimatch: 3.1.2 node-abort-controller: 3.1.1 schema-utils: 3.3.0 - semver: 7.6.2 + semver: 7.5.4 tapable: 2.2.1 typescript: 4.9.5 webpack: 5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20) @@ -71095,14 +70905,6 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - react-remove-scroll-bar@2.3.6(@types/react@17.0.53)(react@17.0.2): - dependencies: - react: 17.0.2 - react-style-singleton: 2.2.1(@types/react@17.0.53)(react@17.0.2) - tslib: 2.6.2 - optionalDependencies: - '@types/react': 17.0.53 - react-remove-scroll-bar@2.3.6(@types/react@17.0.62)(react@17.0.2): dependencies: react: 17.0.2 @@ -71141,17 +70943,6 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - react-remove-scroll@2.5.5(@types/react@17.0.53)(react@17.0.2): - dependencies: - react: 17.0.2 - react-remove-scroll-bar: 2.3.6(@types/react@17.0.53)(react@17.0.2) - react-style-singleton: 2.2.1(@types/react@17.0.53)(react@17.0.2) - tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@17.0.53)(react@17.0.2) - use-sidecar: 1.1.2(@types/react@17.0.53)(react@17.0.2) - optionalDependencies: - '@types/react': 17.0.53 - react-remove-scroll@2.5.5(@types/react@17.0.62)(react@17.0.2): dependencies: react: 17.0.2 @@ -71440,15 +71231,6 @@ snapshots: dependencies: react-dom: 17.0.2(react@17.0.2) - react-style-singleton@2.2.1(@types/react@17.0.53)(react@17.0.2): - dependencies: - get-nonce: 1.0.1 - invariant: 2.2.4 - react: 17.0.2 - tslib: 2.6.2 - optionalDependencies: - '@types/react': 17.0.53 - react-style-singleton@2.2.1(@types/react@17.0.62)(react@17.0.2): dependencies: get-nonce: 1.0.1 @@ -71480,15 +71262,6 @@ snapshots: dependencies: react: 17.0.2 - react-textarea-autosize@8.3.4(@types/react@17.0.53)(react@17.0.2): - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - use-composed-ref: 1.3.0(react@17.0.2) - use-latest: 1.2.1(@types/react@17.0.53)(react@17.0.2) - transitivePeerDependencies: - - '@types/react' - react-textarea-autosize@8.3.4(@types/react@17.0.62)(react@17.0.2): dependencies: '@babel/runtime': 7.23.2 @@ -73275,11 +73048,11 @@ snapshots: store2@2.14.2: {} - storybook-dark-mode@3.0.1(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + storybook-dark-mode@3.0.1(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2): dependencies: '@storybook/addons': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.53)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@17.0.19)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) @@ -75497,13 +75270,6 @@ snapshots: dependencies: fast-url-parser: 1.1.3 - use-callback-ref@1.3.0(@types/react@17.0.53)(react@17.0.2): - dependencies: - react: 17.0.2 - tslib: 2.6.2 - optionalDependencies: - '@types/react': 17.0.53 - use-callback-ref@1.3.0(@types/react@17.0.62)(react@17.0.2): dependencies: react: 17.0.2 @@ -75532,12 +75298,6 @@ snapshots: dequal: 2.0.3 react: 17.0.2 - use-isomorphic-layout-effect@1.1.2(@types/react@17.0.53)(react@17.0.2): - dependencies: - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.53 - use-isomorphic-layout-effect@1.1.2(@types/react@17.0.62)(react@17.0.2): dependencies: react: 17.0.2 @@ -75550,13 +75310,6 @@ snapshots: optionalDependencies: '@types/react': 17.0.62 - use-latest@1.2.1(@types/react@17.0.53)(react@17.0.2): - dependencies: - react: 17.0.2 - use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.53)(react@17.0.2) - optionalDependencies: - '@types/react': 17.0.53 - use-latest@1.2.1(@types/react@17.0.62)(react@17.0.2): dependencies: react: 17.0.2 @@ -75577,14 +75330,6 @@ snapshots: react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - use-sidecar@1.1.2(@types/react@17.0.53)(react@17.0.2): - dependencies: - detect-node-es: 1.1.0 - react: 17.0.2 - tslib: 2.6.2 - optionalDependencies: - '@types/react': 17.0.53 - use-sidecar@1.1.2(@types/react@17.0.62)(react@17.0.2): dependencies: detect-node-es: 1.1.0