diff --git a/apps/web/package.json b/apps/web/package.json index e67103f06d4..0e98d00b798 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -30,7 +30,6 @@ "link:submodules": "pnpm link ../../enterprise/packages/translation-web && pnpm link ../../enterprise/packages/billing-web" }, "dependencies": { - "@ant-design/icons": "4.6.2", "@babel/plugin-proposal-optional-chaining": "^7.20.7", "@babel/plugin-transform-react-display-name": "^7.18.6", "@babel/plugin-transform-runtime": "^7.23.2", @@ -71,8 +70,6 @@ "@testing-library/user-event": "^12.1.10", "@types/jest": "^29.5.0", "@types/node": "^12.0.0", - "@types/react": "^17.0.0", - "@types/react-dom": "^17.0.0", "@types/react-table": "^7.7.12", "ace-builds": "^1.4.12", "antd": "^4.10.0", @@ -86,7 +83,7 @@ "eslint-plugin-react-hooks": "^4.4.0", "handlebars": "^4.7.7", "html-webpack-plugin": "5.5.3", - "launchdarkly-react-client-sdk": "^3.0.6", + "launchdarkly-react-client-sdk": "^3.3.2", "less": "^4.1.0", "localforage": "^1.10.0", "lodash.capitalize": "^4.2.1", @@ -97,13 +94,13 @@ "lodash.set": "^4.3.2", "monaco-editor": "^0.45.0", "polished": "^4.1.3", - "react": "^17.0.1", + "react": "^18.3.1", "react-ace": "^9.4.3", "react-chartjs-2": "^4.0.1", "react-color": "^2.19.3", "react-css-theme-switcher": "^0.3.0", "react-custom-scrollbars": "^4.2.1", - "react-dom": "^17.0.1", + "react-dom": "^18.3.1", "react-editor-js": "^1.9.0", "react-error-boundary": "^3.1.4", "react-flow-renderer": "^10.2.2", @@ -152,7 +149,8 @@ "@storybook/react": "^7.4.2", "@storybook/react-webpack5": "^7.4.2", "@testing-library/jest-dom": "^4.2.4", - "@types/react": "^17.0.0", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", "@types/testing-library__jest-dom": "^5.14.5", "eslint-plugin-storybook": "^0.6.13", "http-server": "^0.13.0", diff --git a/apps/web/src/components/layout/components/ListPage.tsx b/apps/web/src/components/layout/components/ListPage.tsx index 3a7fa7a239e..0003a4e5881 100644 --- a/apps/web/src/components/layout/components/ListPage.tsx +++ b/apps/web/src/components/layout/components/ListPage.tsx @@ -54,23 +54,21 @@ export const ListPage = ({ {children} {paginationInfo && ( - <> - - - - - - - - - - + + + + + + + + + )} ); diff --git a/apps/web/src/components/layout/components/VisibilityOff.tsx b/apps/web/src/components/layout/components/VisibilityOff.tsx index 40f92bbf628..628afc67294 100644 --- a/apps/web/src/components/layout/components/VisibilityOff.tsx +++ b/apps/web/src/components/layout/components/VisibilityOff.tsx @@ -1,4 +1,4 @@ -import { EyeInvisibleOutlined } from '@ant-design/icons'; +import { IconOutlineVisibilityOff } from '@novu/design-system'; import styled from '@emotion/styled'; import { colors } from '@novu/design-system'; @@ -7,11 +7,7 @@ import { colors } from '@novu/design-system'; export const VisibilityOff = ({ onClick }: { onClick: React.MouseEventHandler }) => { return ( - + ); }; diff --git a/apps/web/src/components/workflow/preview/common/PreviewEditOverlay.tsx b/apps/web/src/components/workflow/preview/common/PreviewEditOverlay.tsx index 978a088f6cc..9a595ffb35c 100644 --- a/apps/web/src/components/workflow/preview/common/PreviewEditOverlay.tsx +++ b/apps/web/src/components/workflow/preview/common/PreviewEditOverlay.tsx @@ -1,7 +1,8 @@ import styled from '@emotion/styled'; -import { Flex, Group, Overlay, UnstyledButton, useMantineColorScheme } from '@mantine/core'; +import { Flex, Group, Overlay, OverlayProps, UnstyledButton, useMantineColorScheme } from '@mantine/core'; import { colors, PencilOutlined, Text } from '@novu/design-system'; import { StepTypeEnum } from '@novu/shared'; +import { PropsWithChildren } from 'react'; import { useNavigate, useParams } from 'react-router-dom'; import { useBasePath } from '../../../../pages/templates/hooks/useBasePath'; @@ -44,7 +45,7 @@ export function PreviewEditOverlay() { ); } -const OverlayStyled = styled(Overlay)` +const OverlayStyled = styled(Overlay)>` border: 1px solid ${({ theme }) => (theme.colorScheme === 'dark' ? colors.B30 : colors.BGLight)}; background: ${({ theme }) => (theme.colorScheme === 'dark' ? 'rgba(41, 41, 51, 0.8)' : 'rgba(255, 255, 255, 0.8)')}; `; diff --git a/apps/web/src/index.tsx b/apps/web/src/index.tsx index 54cfcb23c26..bb432202046 100644 --- a/apps/web/src/index.tsx +++ b/apps/web/src/index.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import ReactDOM from 'react-dom'; +import { createRoot } from 'react-dom/client'; import { asyncWithLDProvider } from 'launchdarkly-react-client-sdk'; import App from './App'; import { initializeApp } from './initializeApp'; @@ -31,13 +31,19 @@ import '@novu/novui/styles.css'; }); } - ReactDOM.render( + const container = document.getElementById('root'); + if (!container) { + throw new Error("No element 'root' is defined in index.html!"); + } + + const root = createRoot(container); + + root.render( - , - document.getElementById('root') + ); })(); diff --git a/apps/web/src/pages/auth/components/OAuth.tsx b/apps/web/src/pages/auth/components/OAuth.tsx index ee06e3cea9d..ef4ae6c70cc 100644 --- a/apps/web/src/pages/auth/components/OAuth.tsx +++ b/apps/web/src/pages/auth/components/OAuth.tsx @@ -8,6 +8,7 @@ import { When } from '../../../components/utils/When'; import { IS_DOCKER_HOSTED } from '../../../config'; import { buildGithubLink, buildGoogleLink, buildVercelGithubLink } from './gitHubUtils'; import { useVercelParams } from '../../../hooks'; +import { PropsWithChildren } from 'react'; export function OAuth({ invitationToken }: { invitationToken?: string | undefined }) { const { isFromVercel, code, next, configurationId } = useVercelParams(); @@ -59,16 +60,18 @@ const Container = styled.div` justify-content: space-between; `; -const OAuthButton = styled(MantineButton)<{ - component: 'a'; - my: number; - href: string; - variant: 'white'; - fullWidth: boolean; - radius: 'md'; - leftIcon: any; - sx: any; -}>` +const OAuthButton = styled(MantineButton)< + PropsWithChildren<{ + component: 'a'; + my: number; + href: string; + variant: 'white'; + fullWidth: boolean; + radius: 'md'; + leftIcon: any; + sx: any; + }> +>` :hover { color: ${colors.B40}; } diff --git a/apps/web/src/pages/auth/components/PasswordResetForm.tsx b/apps/web/src/pages/auth/components/PasswordResetForm.tsx index fb65b8add6c..b860bdb85bd 100644 --- a/apps/web/src/pages/auth/components/PasswordResetForm.tsx +++ b/apps/web/src/pages/auth/components/PasswordResetForm.tsx @@ -77,7 +77,7 @@ export function PasswordResetForm({ token }: Props) {
} title="An error occurred!" color="red" mb={30}> + } title="An error occurred!" color="red" mb={30}> {checkIntegrationState.errorMsg} )} diff --git a/apps/web/src/pages/integrations/components/IntegrationSecretTextarea.tsx b/apps/web/src/pages/integrations/components/IntegrationSecretTextarea.tsx index 69fa95daf3d..b5f251bf9b6 100644 --- a/apps/web/src/pages/integrations/components/IntegrationSecretTextarea.tsx +++ b/apps/web/src/pages/integrations/components/IntegrationSecretTextarea.tsx @@ -1,9 +1,8 @@ -import { EyeInvisibleOutlined, EyeOutlined } from '@ant-design/icons'; import { Grid, UnstyledButton } from '@mantine/core'; import { IConfigCredentials } from '@novu/shared'; import { useState } from 'react'; import { When } from '../../../components/utils/When'; -import { Textarea } from '@novu/design-system'; +import { Textarea, IconOutlineVisibility, IconOutlineVisibilityOff } from '@novu/design-system'; export const IntegrationSecretTextarea = ({ credential, @@ -61,10 +60,10 @@ export const IntegrationSecretTextarea = ({ }} > - + - + diff --git a/apps/web/src/pages/integrations/components/Modal/ConnectIntegrationForm.tsx b/apps/web/src/pages/integrations/components/Modal/ConnectIntegrationForm.tsx index 79dd88c2a6b..e2aeaae3958 100644 --- a/apps/web/src/pages/integrations/components/Modal/ConnectIntegrationForm.tsx +++ b/apps/web/src/pages/integrations/components/Modal/ConnectIntegrationForm.tsx @@ -3,7 +3,6 @@ import { Controller, useForm, useWatch } from 'react-hook-form'; import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query'; import { useClipboard } from '@mantine/hooks'; import { ActionIcon, Alert, Center, Image, Stack, useMantineColorScheme } from '@mantine/core'; -import { WarningOutlined } from '@ant-design/icons'; import { ChannelTypeEnum, ChatProviderIdEnum, CredentialsKeyEnum, ProvidersIdEnum } from '@novu/shared'; import type { IResponseError, @@ -15,7 +14,18 @@ import type { } from '@novu/shared'; import styled from '@emotion/styled'; import { keyframes } from '@emotion/react'; -import { Button, colors, Input, shadows, Switch, Text, Close, Check, Copy } from '@novu/design-system'; +import { + Button, + colors, + Input, + shadows, + Switch, + Text, + Close, + Check, + Copy, + IconOutlineWarning, +} from '@novu/design-system'; import type { IIntegratedProvider } from '../../types'; import { createIntegration, getWebhookSupportStatus, updateIntegration } from '../../../../api/integration'; @@ -370,7 +380,7 @@ export function ConnectIntegrationForm({ )} } + icon={} title="An error occurred!" color="red" mb={30} diff --git a/apps/web/src/pages/integrations/components/NovuInAppForm.tsx b/apps/web/src/pages/integrations/components/NovuInAppForm.tsx index 50a5101cac9..6c5865051e0 100644 --- a/apps/web/src/pages/integrations/components/NovuInAppForm.tsx +++ b/apps/web/src/pages/integrations/components/NovuInAppForm.tsx @@ -1,6 +1,6 @@ -import { useMemo } from 'react'; +import { PropsWithChildren, useMemo } from 'react'; import styled from '@emotion/styled/macro'; -import { Title, Text, Grid, Stack, useMantineColorScheme } from '@mantine/core'; +import { Title, Text, Grid, Stack, useMantineColorScheme, TextProps } from '@mantine/core'; import { useMutation } from '@tanstack/react-query'; import { Controller, useForm } from 'react-hook-form'; import type { IResponseError, ICredentialsDto } from '@novu/shared'; @@ -157,7 +157,7 @@ export const NovuInAppForm = ({ ); }; -const StyledText = styled(Text)` +const StyledText = styled(Text)>` display: inline-block; word-break: normal; margin: 0 10px; diff --git a/apps/web/src/pages/integrations/components/UpdateIntegrationCommonFields.tsx b/apps/web/src/pages/integrations/components/UpdateIntegrationCommonFields.tsx index 528020681d7..a4632fe6290 100644 --- a/apps/web/src/pages/integrations/components/UpdateIntegrationCommonFields.tsx +++ b/apps/web/src/pages/integrations/components/UpdateIntegrationCommonFields.tsx @@ -49,7 +49,7 @@ export const UpdateIntegrationCommonFields = ({ provider }: { provider: IIntegra value={field.value ? field.value : provider?.displayName} required label="Name" - error={errors.name?.message} + error={errors.name?.message as string} data-test-id="provider-instance-name" /> )} @@ -70,7 +70,7 @@ export const UpdateIntegrationCommonFields = ({ provider }: { provider: IIntegra {...field} required label="Provider identifier" - error={errors.identifier?.message} + error={errors.identifier?.message as string} rightSection={ identifierClipboard.copy(field.value)}> {identifierClipboard.copied ? : } diff --git a/apps/web/src/pages/integrations/components/multi-provider/SelectProviderSidebar.tsx b/apps/web/src/pages/integrations/components/multi-provider/SelectProviderSidebar.tsx index bda90e28852..3207b36d435 100644 --- a/apps/web/src/pages/integrations/components/multi-provider/SelectProviderSidebar.tsx +++ b/apps/web/src/pages/integrations/components/multi-provider/SelectProviderSidebar.tsx @@ -306,7 +306,7 @@ const CenterDiv = styled.div` line-height: 20px; `; -const SelectProviderBodyContainer = styled.form` +const SelectProviderBodyContainer = styled.div` flex: 1; display: flex; flex-direction: column; diff --git a/apps/web/src/pages/partner-integrations/components/ProjectRow.tsx b/apps/web/src/pages/partner-integrations/components/ProjectRow.tsx index d86b31b414a..e12d6cfcaec 100644 --- a/apps/web/src/pages/partner-integrations/components/ProjectRow.tsx +++ b/apps/web/src/pages/partner-integrations/components/ProjectRow.tsx @@ -1,12 +1,11 @@ import { forwardRef, useRef, useEffect } from 'react'; import { Box, Group, CloseButton } from '@mantine/core'; -import { ArrowLeftOutlined, ArrowRightOutlined } from '@ant-design/icons'; import { useWatch, Control, Controller } from 'react-hook-form'; import { useIntersection } from '@mantine/hooks'; import type { FetchNextPageOptions, InfiniteQueryObserverResult } from '@tanstack/react-query'; import { IOrganizationEntity } from '@novu/shared'; -import { Text, Select } from '@novu/design-system'; +import { Text, Select, IconOutlineArrowLeft, IconOutlineArrowRight } from '@novu/design-system'; import { ProjectLinkFormValues } from './LinkProjectContainer'; type ProjectDataType = { @@ -110,9 +109,9 @@ export function ProjectRow(props: ProjectRowProps) { /> - + links to - + diff --git a/apps/web/src/pages/settings/tabs/ApiKeysCard.tsx b/apps/web/src/pages/settings/tabs/ApiKeysCard.tsx index 76c09fa5baf..7f30b90dbf3 100644 --- a/apps/web/src/pages/settings/tabs/ApiKeysCard.tsx +++ b/apps/web/src/pages/settings/tabs/ApiKeysCard.tsx @@ -3,12 +3,20 @@ import { useClipboard } from '@mantine/hooks'; import { useQuery } from '@tanstack/react-query'; import styled from '@emotion/styled'; -import { Input, Tooltip, colors, Check, Copy, inputStyles } from '@novu/design-system'; +import { + Input, + Tooltip, + colors, + Check, + Copy, + inputStyles, + IconOutlineVisibility, + IconOutlineVisibilityOff, +} from '@novu/design-system'; import { getApiKeys } from '../../../api/environment'; import { useEnvController } from '../../../hooks'; import { Regenerate } from './components/Regenerate'; import { When } from '../../../components/utils/When'; -import { EyeInvisibleOutlined, EyeOutlined } from '@ant-design/icons'; import { useState } from 'react'; export const ApiKeysCard = () => { @@ -41,20 +49,10 @@ export const ApiKeysCard = () => { <> setHidden(!hidden)}> - + - + diff --git a/apps/web/src/pages/templates/components/DeleteConfirmModal.tsx b/apps/web/src/pages/templates/components/DeleteConfirmModal.tsx index c2892f275e6..7e918a38488 100644 --- a/apps/web/src/pages/templates/components/DeleteConfirmModal.tsx +++ b/apps/web/src/pages/templates/components/DeleteConfirmModal.tsx @@ -1,6 +1,5 @@ import { Alert, Group, Modal, useMantineTheme } from '@mantine/core'; -import { WarningOutlined } from '@ant-design/icons'; -import { Button, colors, shadows, Title, Text } from '@novu/design-system'; +import { Button, colors, shadows, Title, Text, IconOutlineWarning } from '@novu/design-system'; export function DeleteConfirmModal({ target, @@ -60,7 +59,7 @@ export function DeleteConfirmModal({
{error && ( } + icon={} title="An error occurred!" color={`linear-gradient(0deg, ${colors.B17} 0%, ${colors.B17} 100%)`} mb={32} diff --git a/apps/web/src/pages/templates/components/ListProviders.tsx b/apps/web/src/pages/templates/components/ListProviders.tsx index 982e464d38e..c40fc68524f 100644 --- a/apps/web/src/pages/templates/components/ListProviders.tsx +++ b/apps/web/src/pages/templates/components/ListProviders.tsx @@ -1,4 +1,4 @@ -import { MouseEventHandler, useMemo } from 'react'; +import { MouseEventHandler, PropsWithChildren, useMemo } from 'react'; import styled from '@emotion/styled'; import { Group, Stack, Text, UnstyledButton, useMantineColorScheme } from '@mantine/core'; import { ChannelTypeEnum, NOVU_SMS_EMAIL_PROVIDERS } from '@novu/shared'; @@ -37,7 +37,7 @@ const ConfigureButton = styled(Button)` `; const IntegrationButton = styled(UnstyledButton)< - { isActive: boolean; isDark: boolean } & { onClick?: MouseEventHandler } + PropsWithChildren<{ isActive: boolean; isDark: boolean } & { onClick?: MouseEventHandler }> >` width: 100%; padding: 0.5rem 0.75rem; diff --git a/apps/web/src/pages/templates/components/email-editor/ContentRow.tsx b/apps/web/src/pages/templates/components/email-editor/ContentRow.tsx index 4423f4b872b..3869f55b713 100644 --- a/apps/web/src/pages/templates/components/email-editor/ContentRow.tsx +++ b/apps/web/src/pages/templates/components/email-editor/ContentRow.tsx @@ -2,10 +2,18 @@ import { useRef, useState } from 'react'; import { useFormContext, Controller } from 'react-hook-form'; import { ActionIcon, useMantineTheme } from '@mantine/core'; import styled from '@emotion/styled'; -import { AlignCenterOutlined, AlignLeftOutlined, AlignRightOutlined } from '@ant-design/icons'; import { TextAlignEnum } from '@novu/shared'; -import { DotsHorizontalOutlined, Trash, Button, colors, Dropdown } from '@novu/design-system'; +import { + DotsHorizontalOutlined, + Trash, + Button, + colors, + Dropdown, + IconOutlineAlignHorizontalLeft, + IconOutlineAlignHorizontalCenter, + IconOutlineAlignHorizontalRight, +} from '@novu/design-system'; import { useEnvController } from '../../../../hooks'; import { useStepFormPath } from '../../hooks/useStepFormPath'; @@ -30,9 +38,9 @@ export function ContentRow({ const stepFormPath = useStepFormPath(); const textAlignments = [ - ['left', ], - ['center', ], - ['right', ], + ['left', ], + ['center', ], + ['right', ], ]; function onHover() { diff --git a/apps/web/src/pages/templates/components/email-editor/variables-management/VariablesManagement.tsx b/apps/web/src/pages/templates/components/email-editor/variables-management/VariablesManagement.tsx index b7ef6946e39..1c60017e6ab 100644 --- a/apps/web/src/pages/templates/components/email-editor/variables-management/VariablesManagement.tsx +++ b/apps/web/src/pages/templates/components/email-editor/variables-management/VariablesManagement.tsx @@ -288,7 +288,7 @@ export const TranslationSectionItem = ({ /> - + } /> diff --git a/apps/web/src/pages/templates/components/in-app-editor/preview/AvatarContainer.tsx b/apps/web/src/pages/templates/components/in-app-editor/preview/AvatarContainer.tsx index aaa86966c44..2a29a2877bd 100644 --- a/apps/web/src/pages/templates/components/in-app-editor/preview/AvatarContainer.tsx +++ b/apps/web/src/pages/templates/components/in-app-editor/preview/AvatarContainer.tsx @@ -1,17 +1,23 @@ import { useState, Dispatch, SetStateAction } from 'react'; import { Box, Group, Divider, Popover, Stack, Avatar as MAvatar } from '@mantine/core'; -import { - WarningFilled, - InfoCircleFilled, - CheckCircleFilled, - CloseCircleFilled, - UpCircleFilled, - QuestionCircleFilled, -} from '@ant-design/icons'; import { useController } from 'react-hook-form'; import { SystemAvatarIconEnum, IActor, ActorTypeEnum } from '@novu/shared'; -import { colors, Input, Switch, Text, Tooltip, Avatar, Camera } from '@novu/design-system'; +import { + colors, + Input, + Switch, + Text, + Tooltip, + Avatar, + Camera, + IconWarning, + IconInfo, + IconCheckCircle, + IconCancel, + IconArrowCircleUp, + IconHelp, +} from '@novu/design-system'; import { AvatarWrapper, IconWrapper, useStyles } from './AvatarContainer.styles'; import { useStepFormPath } from '../../../hooks/useStepFormPath'; @@ -19,37 +25,37 @@ const MENU_CLICK_OUTSIDE_EVENTS = ['click', 'mousedown', 'touchstart']; const systemIcons = [ { - icon: , + icon: , type: SystemAvatarIconEnum.WARNING, iconColor: '#FFF000', containerBgColor: '#FFF00026', }, { - icon: , + icon: , type: SystemAvatarIconEnum.INFO, iconColor: '#0000FF', containerBgColor: '#0000FF26', }, { - icon: , + icon: , type: SystemAvatarIconEnum.UP, iconColor: colors.B70, containerBgColor: `${colors.B70}26`, }, { - icon: , + icon: , type: SystemAvatarIconEnum.QUESTION, iconColor: colors.B70, containerBgColor: `${colors.B70}26`, }, { - icon: , + icon: , type: SystemAvatarIconEnum.SUCCESS, iconColor: colors.success, containerBgColor: `${colors.success}26`, }, { - icon: , + icon: , type: SystemAvatarIconEnum.ERROR, iconColor: colors.error, containerBgColor: `${colors.error}26`, diff --git a/apps/widget/package.json b/apps/widget/package.json index 832f1f8aaea..ad333bfd91a 100644 --- a/apps/widget/package.json +++ b/apps/widget/package.json @@ -37,8 +37,8 @@ "eslint-plugin-cypress": "^2.15.1", "iframe-resizer": "^4.3.1", "polished": "^4.1.2", - "react": "^17.0.1", - "react-dom": "^17.0.1", + "react": "^18.3.1", + "react-dom": "^18.3.1", "react-infinite-scroll-component": "^6.0.0", "react-infinite-scroller": "^1.2.4", "react-is": "^18.2.0", @@ -66,8 +66,8 @@ "@novu/testing": "workspace:*", "@types/jest": "^29.5.0", "@types/node": "^12.0.0", - "@types/react": "^17.0.0", - "@types/react-dom": "17.0.20", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", "@types/react-router-dom": "^5.1.7", "cross-env": "^7.0.3", "customize-cra": "^1.0.0", diff --git a/enterprise/packages/billing-web/package.json b/enterprise/packages/billing-web/package.json index 319a54041d8..abdb1514238 100644 --- a/enterprise/packages/billing-web/package.json +++ b/enterprise/packages/billing-web/package.json @@ -52,10 +52,10 @@ "devDependencies": { "@mantine/core": "^5.7.1", "@types/node": "^18.11.12", - "@types/react": "^17.0.0", - "@types/react-dom": "^17.0.0", - "react": "^17.0.1", - "react-dom": "^17.0.1", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "react": "^18.3.1", + "react-dom": "^18.3.1", "rimraf": "^3.0.2", "ts-loader": "~9.4.0", "tslib": "^2.3.1", @@ -63,7 +63,7 @@ }, "peerDependencies": { "@mantine/core": "^5.7.1", - "react": "^16.8.0 || ^17.0.0", - "react-dom": "^16.8.0 || ^17.0.0" + "react": ">=16.8.0", + "react-dom": ">=16.8.0" } } diff --git a/enterprise/packages/echo/echo-web/package.json b/enterprise/packages/echo/echo-web/package.json index 5eaf17bb487..dc3c772adde 100644 --- a/enterprise/packages/echo/echo-web/package.json +++ b/enterprise/packages/echo/echo-web/package.json @@ -36,12 +36,12 @@ "devDependencies": { "@mantine/core": "^5.7.1", "@types/node": "^18.11.12", - "@types/react": "^17.0.0", - "@types/react-dom": "^17.0.0", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", "eslint": "^8.33.0", "eslint-plugin-react-hooks": "^4.4.0", - "react": "^17.0.1", - "react-dom": "^17.0.1", + "react": "^18.3.1", + "react-dom": "^18.3.1", "rimraf": "^3.0.2", "ts-loader": "~9.4.0", "tslib": "^2.3.1", @@ -49,7 +49,7 @@ }, "peerDependencies": { "@mantine/core": "^5.7.1", - "react": "^16.8.0 || ^17.0.0", - "react-dom": "^16.8.0 || ^17.0.0" + "react": ">=16.8.0", + "react-dom": ">=16.8.0" } } diff --git a/enterprise/packages/translation-web/package.json b/enterprise/packages/translation-web/package.json index fa2fc8b931f..5715a4032f6 100644 --- a/enterprise/packages/translation-web/package.json +++ b/enterprise/packages/translation-web/package.json @@ -50,10 +50,10 @@ "devDependencies": { "@mantine/core": "^5.7.1", "@types/node": "^18.11.12", - "@types/react": "^17.0.0", - "@types/react-dom": "^17.0.0", - "react": "^17.0.1", - "react-dom": "^17.0.1", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "react": "^18.3.1", + "react-dom": "^18.3.1", "rimraf": "^3.0.2", "ts-loader": "~9.4.0", "tslib": "^2.3.1", @@ -61,7 +61,7 @@ }, "peerDependencies": { "@mantine/core": "^5.7.1", - "react": "^16.8.0 || ^17.0.0", - "react-dom": "^16.8.0 || ^17.0.0" + "react": ">=16.8.0", + "react-dom": ">=16.8.0" } } diff --git a/libs/design-system/package.json b/libs/design-system/package.json index c5be9aed527..05b1c76239c 100644 --- a/libs/design-system/package.json +++ b/libs/design-system/package.json @@ -62,14 +62,14 @@ "@testing-library/react-hooks": "^8.0.1", "@testing-library/user-event": "^14.5.2", "@types/node": "^18.11.12", - "@types/react": "^17.0.0", - "@types/react-dom": "^17.0.0", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", "@vitejs/plugin-react": "^4.0.3", "acorn": "^8.7.1", "eslint-plugin-storybook": "^0.6.13", "jsdom": "^24.0.0", - "react": "^17.0.1", - "react-dom": "^17.0.1", + "react": "^18.3.1", + "react-dom": "^18.3.1", "react-router-dom": "6.2.2", "rimraf": "^3.0.2", "storybook": "^7.4.2", @@ -83,8 +83,8 @@ }, "peerDependencies": { "@mantine/core": "^5.7.1", - "react": "^16.8.0 || ^17.0.0", - "react-dom": "^16.8.0 || ^17.0.0" + "react": ">=16.8.0", + "react-dom": ">=16.8.0" }, "nx": { "targets": { diff --git a/libs/design-system/src/loading-overlay/LoadingOverlay.tsx b/libs/design-system/src/loading-overlay/LoadingOverlay.tsx index c83f8e59eca..c74ededaeb4 100644 --- a/libs/design-system/src/loading-overlay/LoadingOverlay.tsx +++ b/libs/design-system/src/loading-overlay/LoadingOverlay.tsx @@ -1,23 +1,18 @@ import { LoadingOverlayProps, LoadingOverlay as MantineLoadingOverlay, useMantineTheme } from '@mantine/core'; -import React from 'react'; +import { PropsWithChildren } from 'react'; import { colors } from '../config'; -interface ILoadingOverlayProps extends JSX.ElementChildrenAttribute { +interface ILoadingOverlayProps { visible: boolean; minLayoutHeight?: number; } -export function LoadingOverlay({ children, minLayoutHeight = 500, visible }: ILoadingOverlayProps) { +export function LoadingOverlay({ children, minLayoutHeight = 500, visible }: PropsWithChildren) { const theme = useMantineTheme(); const defaultDesign = { overlayColor: theme.colorScheme === 'dark' ? colors.B30 : colors.B98, loaderProps: { color: colors.error }, } as LoadingOverlayProps; - return ( -
- - {children} -
- ); + return
{children}
; } diff --git a/libs/design-system/src/navigation/NavMenu.tsx b/libs/design-system/src/navigation/NavMenu.tsx index bccd1aa823c..65544796ae3 100644 --- a/libs/design-system/src/navigation/NavMenu.tsx +++ b/libs/design-system/src/navigation/NavMenu.tsx @@ -58,21 +58,23 @@ const NavLink = ({ rightSide, link, testId, icon, label, tooltipLabel }: IMenuIt onMouseEnter={() => setIsHovered(true)} onMouseLeave={() => setIsHovered(false)} > - -
{icon}
-
{label}
-
- {!onHoverEnabled && rightSide} + <> + +
{icon}
+
{label}
+
+ {!onHoverEnabled && rightSide} - {onHoverEnabled && ( - - )} + {onHoverEnabled && ( + + )} + ); }; diff --git a/libs/design-system/src/pagination/usePaginationQueryParamsState.spec.tsx b/libs/design-system/src/pagination/usePaginationQueryParamsState.spec.tsx index 683f84b6f5f..f18df1fb07e 100644 --- a/libs/design-system/src/pagination/usePaginationQueryParamsState.spec.tsx +++ b/libs/design-system/src/pagination/usePaginationQueryParamsState.spec.tsx @@ -5,6 +5,7 @@ import * as ReactRouterDOM from 'react-router-dom'; import { afterEach, expect, it, vi } from 'vitest'; import { IUsePaginationQueryParamsStateOptions, usePaginationQueryParamsState } from './usePaginationQueryParamsState'; +import { PropsWithChildren } from 'react'; const initialPageNumber = 1; const pageSizes = [10, 20, 30]; @@ -15,7 +16,9 @@ const callHook = (options: IUsePaginationQueryParamsStateOptions, initialParams? const paramStr = initialParams ? `?page=${initialParams.page}&size=${initialParams.size}` : ''; return renderHook(() => usePaginationQueryParamsState(options), { - wrapper: ({ children }) => {children}, + wrapper: ({ children }: PropsWithChildren<{}>) => ( + {children} + ), }); }; diff --git a/libs/design-system/src/search-input/SearchInput.tsx b/libs/design-system/src/search-input/SearchInput.tsx index 59dca7894cd..b3fbb7cbfbf 100644 --- a/libs/design-system/src/search-input/SearchInput.tsx +++ b/libs/design-system/src/search-input/SearchInput.tsx @@ -33,9 +33,8 @@ const StyledInput = styled(Input)` } `; -const IconCloseStyled = styled(IconClose)<{ isVisible: boolean }>` +const IconCloseStyled = styled(IconClose)` cursor: pointer; - display: ${({ isVisible }) => (isVisible ? 'initial' : 'none')}; `; export const SearchInput = forwardRef( @@ -47,13 +46,9 @@ export const SearchInput = forwardRef( value={value} icon={} rightSection={ - + !!value && ( + + ) } /> ); diff --git a/libs/design-system/src/table/Table.tsx b/libs/design-system/src/table/Table.tsx index 8d41fa97002..a65a4a02a5f 100644 --- a/libs/design-system/src/table/Table.tsx +++ b/libs/design-system/src/table/Table.tsx @@ -183,11 +183,19 @@ export function Table({ {headerGroups.map((headerGroup, i) => { + const { key: trKey, ...trRest } = headerGroup.getHeaderGroupProps(); + return ( - - {headerGroup.headers.map((column) => ( - {column.render('Header')} - ))} + + {headerGroup.headers.map((column) => { + const { key: thKey, ...thRest } = column.getHeaderProps(); + + return ( + + {column.render('Header')} + + ); + })} ); })} @@ -196,30 +204,35 @@ export function Table({ {rows.map((row) => { prepareRow(row); + const { key: trKey, ...trRest } = row.getRowProps(); + return ( { e.stopPropagation(); if (!loading && onRowClick) { onRowClick(row); } }} - {...row.getRowProps()} + {...trRest} className={classes.tableRow} data-disabled={loading || !onRowClick} > - {row.cells.map((cell, i) => ( - - {cell.render('Cell', { isLoading: loading })} - - ))} + {row.cells.map((cell, i) => { + const { key: tdKey, ...tdRest } = cell.getCellProps({ + style: { + maxWidth: cell.column.maxWidth, + width: cell.column.width, + }, + }); + + return ( + + {cell.render('Cell', { isLoading: loading })} + + ); + })} ); })} diff --git a/libs/design-system/src/tag/Tag.tsx b/libs/design-system/src/tag/Tag.tsx index f2d504dda6c..46fbe1d8c0e 100644 --- a/libs/design-system/src/tag/Tag.tsx +++ b/libs/design-system/src/tag/Tag.tsx @@ -1,7 +1,8 @@ import { Badge } from '@mantine/core'; +import { PropsWithChildren } from 'react'; import { colors } from '../config'; -interface ITagProps extends JSX.ElementChildrenAttribute { +interface ITagProps extends PropsWithChildren<{}> { color?: string; border?: string; ml?: number; diff --git a/libs/design-system/src/typography/text/Text.tsx b/libs/design-system/src/typography/text/Text.tsx index a9439d8c588..794ae899eb0 100644 --- a/libs/design-system/src/typography/text/Text.tsx +++ b/libs/design-system/src/typography/text/Text.tsx @@ -1,10 +1,10 @@ -import React from 'react'; +import React, { PropsWithChildren } from 'react'; import { Text as MantineText, MantineColor, useMantineTheme, TextProps } from '@mantine/core'; import { colors } from '../../config'; import { SpacingProps } from '../../shared/spacing.props'; -interface ITextProps extends JSX.ElementChildrenAttribute, SpacingProps { +interface ITextProps extends PropsWithChildren<{}>, SpacingProps { size?: TextProps['size']; style?: TextProps['style']; styles?: TextProps['styles']; diff --git a/libs/design-system/src/typography/title/Title.tsx b/libs/design-system/src/typography/title/Title.tsx index 284ac551161..004625e23a6 100644 --- a/libs/design-system/src/typography/title/Title.tsx +++ b/libs/design-system/src/typography/title/Title.tsx @@ -1,8 +1,9 @@ import { MantineColor, Title as MantineTitle, useMantineTheme } from '@mantine/core'; +import { PropsWithChildren } from 'react'; import { colors } from '../../config'; import { SpacingProps } from '../../shared/spacing.props'; -interface ITitleProps extends JSX.ElementChildrenAttribute, SpacingProps { +interface ITitleProps extends PropsWithChildren<{}>, SpacingProps { size?: 1 | 2; color?: MantineColor; } diff --git a/libs/novui/package.json b/libs/novui/package.json index 3afb29df522..caea1f7abcf 100644 --- a/libs/novui/package.json +++ b/libs/novui/package.json @@ -80,13 +80,13 @@ "@testing-library/react-hooks": "^8.0.1", "@testing-library/user-event": "^14.5.2", "@types/node": "^18.11.12", - "@types/react": "^17.0.0", - "@types/react-dom": "^17.0.1", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", "@vitejs/plugin-react": "^4.0.3", "eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-storybook": "^0.6.13", - "react": "^17.0.1", - "react-dom": "^17.0.1", + "react": "^18.3.1", + "react-dom": "^18.3.1", "react-scanner": "^1.1.0", "rimraf": "^3.0.2", "storybook": "^8.1.0", diff --git a/libs/shared-web/package.json b/libs/shared-web/package.json index 1f07da79604..4c14d542e4e 100644 --- a/libs/shared-web/package.json +++ b/libs/shared-web/package.json @@ -36,22 +36,22 @@ "@tanstack/react-query": "^4.20.4", "axios": "^1.6.0", "jwt-decode": "^3.1.2", - "launchdarkly-react-client-sdk": "^3.0.6", + "launchdarkly-react-client-sdk": "^3.3.2", "react-router-dom": "6.2.2", "tslib": "^2.3.1" }, "devDependencies": { "@types/node": "^18.11.12", - "@types/react": "^17.0.0", - "@types/react-dom": "^17.0.0", - "react": "^17.0.1", - "react-dom": "^17.0.1", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "react": "^18.3.1", + "react-dom": "^18.3.1", "rimraf": "^3.0.2", "tslib": "^2.3.1", "typescript": "4.9.5" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0", - "react-dom": "^16.8.0 || ^17.0.0" + "react": ">=16.8.0", + "react-dom": ">=16.8.0" } } diff --git a/libs/shared-web/src/hooks/useFeatureFlags.ts b/libs/shared-web/src/hooks/useFeatureFlags.ts index 318208c1bb9..eeb2387be86 100644 --- a/libs/shared-web/src/hooks/useFeatureFlags.ts +++ b/libs/shared-web/src/hooks/useFeatureFlags.ts @@ -29,8 +29,20 @@ function isFlagMissingInLdResponse(key: FeatureFlagsKeysEnum, keysFromLunchDarkl export const useFeatureFlag = (key: FeatureFlagsKeysEnum): boolean => { const shouldUseLaunchDarkly = checkShouldUseLaunchDarkly(); + let flagValue = undefined; + /** We knowingly break the rule of hooks here to avoid making any LaunchDarkly calls when it is disabled */ - const flagValue = shouldUseLaunchDarkly ? useFlags()[key] : undefined; + if (shouldUseLaunchDarkly) { + const flags = useFlags(); + if (!flags || Object.keys(flags).length === 0) { + throw new Error( + 'No flags were returned by LaunchDarkly, Please ensure that the app is wrapped in an LDProvider!' + ); + } + + flagValue = flags[key]; + } + e2eExplicitFlagAssertion(key); const fallbackValue = false; const value = FEATURE_FLAGS[key]; diff --git a/package.json b/package.json index 00079d539c3..ac78d8fd2de 100644 --- a/package.json +++ b/package.json @@ -223,7 +223,6 @@ }, "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/packages/notification-center-angular/projects/notification-center-angular/package.json b/packages/notification-center-angular/projects/notification-center-angular/package.json index 4bebcca2a2e..9d4ee9dccdd 100644 --- a/packages/notification-center-angular/projects/notification-center-angular/package.json +++ b/packages/notification-center-angular/projects/notification-center-angular/package.json @@ -9,9 +9,9 @@ }, "dependencies": { "@novu/notification-center": "workspace:*", - "@types/react": "^17.0.0", - "react": "^17.0.1", - "react-dom": "^17.0.1", + "@types/react": "^18.3.3", + "react": "^18.3.1", + "react-dom": "^18.3.1", "tslib": "^2.3.0" }, "files": [ diff --git a/packages/notification-center-vue/package.json b/packages/notification-center-vue/package.json index e567636029b..d8c1af1412a 100644 --- a/packages/notification-center-vue/package.json +++ b/packages/notification-center-vue/package.json @@ -23,8 +23,8 @@ "@emotion/css": "^11.10.5", "@novu/floating-vue": "^2.0.3", "@novu/notification-center": "workspace:*", - "react": "^17.0.1", - "react-dom": "^17.0.1" + "react": "^18.3.1", + "react-dom": "^18.3.1" }, "peerDependencies": { "vue": ">=3.0.0" diff --git a/packages/notification-center/package.json b/packages/notification-center/package.json index dfbfe36fe27..c72761a443c 100644 --- a/packages/notification-center/package.json +++ b/packages/notification-center/package.json @@ -47,8 +47,8 @@ "@testing-library/user-event": "^12.1.10", "@types/jest": "^29.2.3", "@types/node": "^18.11.12", - "@types/react": "^17.0.0", - "@types/react-dom": "^17.0.0", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", "acorn": "^8.7.1", "babel-loader": "^8.2.4", "compression-webpack-plugin": "^10.0.0", @@ -56,8 +56,8 @@ "jest": "^29.3.1", "jest-environment-jsdom": "^29.3.1", "jest-transform-stub": "^2.0.0", - "react": "^17.0.1", - "react-dom": "^17.0.1", + "react": "^18.3.1", + "react-dom": "^18.3.1", "rimraf": "^3.0.2", "storybook": "^7.4.2", "terser-webpack-plugin": "^5.3.9", diff --git a/packages/notification-center/src/components/novu-provider/NovuProvider.tsx b/packages/notification-center/src/components/novu-provider/NovuProvider.tsx index b3072ecf52c..692b1a2ac95 100644 --- a/packages/notification-center/src/components/novu-provider/NovuProvider.tsx +++ b/packages/notification-center/src/components/novu-provider/NovuProvider.tsx @@ -1,4 +1,4 @@ -import React, { ReactElement, useEffect, useState, useMemo, useCallback } from 'react'; +import React, { ReactElement, useEffect, useState, useMemo, useCallback, PropsWithChildren } from 'react'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; import { IOrganizationEntity } from '@novu/shared'; import { ApiService } from '@novu/client'; @@ -33,9 +33,8 @@ const DEFAULT_FETCHING_STRATEGY: IFetchingStrategy = { fetchUserGlobalPreferences: false, }; -export interface INovuProviderProps { +export interface INovuProviderProps extends PropsWithChildren<{}> { stores?: IStore[]; - children: React.ReactNode; backendUrl?: string; subscriberId?: string; applicationIdentifier: string; diff --git a/packages/notification-center/src/store/styles/styles-provider.tsx b/packages/notification-center/src/store/styles/styles-provider.tsx index 1f9f689ec84..b015518d77e 100644 --- a/packages/notification-center/src/store/styles/styles-provider.tsx +++ b/packages/notification-center/src/store/styles/styles-provider.tsx @@ -1,4 +1,4 @@ -import React, { FunctionComponent, createContext, useMemo, useContext } from 'react'; +import React, { FunctionComponent, createContext, useMemo, useContext, PropsWithChildren } from 'react'; import { CSSInterpolation } from '@emotion/css'; import type { INotificationCenterStyles, StylesPaths } from './styles-provider.types'; @@ -38,7 +38,10 @@ export const useStyles = (path: StylesPaths | StylesPaths[]): CSSInterpolation[] ]; }; -export const StylesProvider: FunctionComponent<{ styles?: INotificationCenterStyles }> = ({ styles, children }) => { +export const StylesProvider: FunctionComponent> = ({ + styles, + children, +}) => { const contextValue = useMemo(() => ({ styles }), [styles]); return {children}; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4d264ea3c03..2b137086dc2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,7 +5,6 @@ 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 @@ -710,9 +709,6 @@ importers: apps/web: dependencies: - '@ant-design/icons': - specifier: 4.6.2 - version: 4.6.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) '@babel/plugin-proposal-optional-chaining': specifier: ^7.20.7 version: 7.21.0(@babel/core@7.22.11) @@ -733,10 +729,10 @@ importers: version: 11.10.6 '@emotion/react': specifier: ^11.7.1 - version: 11.10.6(@types/react@17.0.62)(react@17.0.2) + version: 11.10.6(@types/react@18.3.3)(react@18.3.1) '@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) + version: 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@fortawesome/fontawesome-svg-core': specifier: ^6.4.0 version: 6.4.0 @@ -748,40 +744,40 @@ importers: version: 6.4.0 '@fortawesome/react-fontawesome': specifier: ^0.2.0 - version: 0.2.0(@fortawesome/fontawesome-svg-core@6.4.0)(react@17.0.2) + version: 0.2.0(@fortawesome/fontawesome-svg-core@6.4.0)(react@18.3.1) '@handlebars/parser': specifier: ^2.1.0 version: 2.1.0 '@hookform/devtools': specifier: ^4.3.0 - version: 4.3.1(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.3.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@hookform/resolvers': specifier: ^2.9.1 - version: 2.9.11(react-hook-form@7.43.9(react@17.0.2)) + version: 2.9.11(react-hook-form@7.43.9(react@18.3.1)) '@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) + version: 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mantine/form': specifier: ^5.10.4 - version: 5.10.5(react@17.0.2) + version: 5.10.5(react@18.3.1) '@mantine/hooks': specifier: ^5.7.1 - version: 5.10.5(react@17.0.2) + version: 5.10.5(react@18.3.1) '@mantine/notifications': specifier: ^5.7.1 - 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) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mantine/prism': specifier: ^5.7.1 - 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) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mantine/spotlight': specifier: ^5.7.1 - 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) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + version: 4.6.0(monaco-editor@0.45.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@novu/design-system': specifier: workspace:* version: link:../../libs/design-system @@ -799,31 +795,31 @@ importers: version: link:../../libs/shared-web '@rive-app/react-canvas': specifier: ^4.8.1 - version: 4.8.3(react@17.0.2) + version: 4.8.3(react@18.3.1) '@segment/analytics-next': specifier: ^1.48.0 version: 1.51.3(encoding@0.1.13) '@sentry/react': specifier: ^7.40.0 - version: 7.47.0(react@17.0.2) + version: 7.47.0(react@18.3.1) '@sentry/tracing': specifier: ^7.40.0 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.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/theming': specifier: ^7.4.2 - version: 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@tanstack/react-query': specifier: ^4.20.4 - version: 4.29.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@tanstack/react-query-devtools': specifier: ^4.20.4 - version: 4.29.1(@tanstack/react-query@4.29.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.29.1(@tanstack/react-query@4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/react': specifier: ^11.1.0 - version: 11.2.7(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 11.2.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^12.1.10 version: 12.8.3(@testing-library/dom@9.3.3) @@ -833,12 +829,6 @@ importers: '@types/node': specifier: ^12.0.0 version: 12.20.55 - '@types/react': - specifier: 17.0.62 - version: 17.0.62 - '@types/react-dom': - specifier: ^17.0.0 - version: 17.0.19 '@types/react-table': specifier: ^7.7.12 version: 7.7.14 @@ -847,7 +837,7 @@ importers: version: 1.16.0 antd: specifier: ^4.10.0 - version: 4.24.8(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.24.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) autoprefixer: specifier: ^9.8.6 version: 9.8.8 @@ -879,8 +869,8 @@ importers: specifier: 5.5.3 version: 5.5.3(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) launchdarkly-react-client-sdk: - specifier: ^3.0.6 - version: 3.0.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + specifier: ^3.3.2 + version: 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) less: specifier: ^4.1.0 version: 4.1.3 @@ -912,65 +902,65 @@ importers: specifier: ^4.1.3 version: 4.2.2 react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-ace: specifier: ^9.4.3 - version: 9.5.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 9.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-chartjs-2: specifier: ^4.0.1 - version: 4.3.1(chart.js@3.9.1)(react@17.0.2) + version: 4.3.1(chart.js@3.9.1)(react@18.3.1) react-color: specifier: ^2.19.3 - version: 2.19.3(react@17.0.2) + version: 2.19.3(react@18.3.1) react-css-theme-switcher: specifier: ^0.3.0 - version: 0.3.0(react@17.0.2) + version: 0.3.0(react@18.3.1) react-custom-scrollbars: specifier: ^4.2.1 - version: 4.2.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) react-editor-js: specifier: ^1.9.0 version: 1.10.0(@editorjs/editorjs@2.26.5)(@editorjs/paragraph@2.9.0) react-error-boundary: specifier: ^3.1.4 - version: 3.1.4(react@17.0.2) + version: 3.1.4(react@18.3.1) react-flow-renderer: specifier: ^10.2.2 - version: 10.3.17(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 10.3.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-frame-component: specifier: ^5.2.3 - version: 5.2.6(prop-types@15.8.1)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 5.2.6(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-helmet-async: specifier: ^1.3.0 - version: 1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-hook-form: specifier: 7.43.9 - version: 7.43.9(react@17.0.2) + version: 7.43.9(react@18.3.1) react-is: specifier: ^18.2.0 version: 18.2.0 react-joyride: specifier: ^2.5.3 - version: 2.5.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 2.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-password-strength-bar: specifier: ^0.4.1 - version: 0.4.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 0.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: 6.2.2 - version: 6.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 6.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-syntax-highlighter: specifier: ^15.4.3 - version: 15.5.0(react@17.0.2) + version: 15.5.0(react@18.3.1) react-table: specifier: ^7.8.0 - version: 7.8.0(react@17.0.2) + version: 7.8.0(react@18.3.1) react-use-intercom: specifier: ^2.0.0 - version: 2.1.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -979,7 +969,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.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 3.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) typescript: specifier: 4.9.5 version: 4.9.5 @@ -1035,19 +1025,19 @@ 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.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) + version: 0.38.0(@types/node@12.20.55)(@types/react-dom@18.3.0)(@types/react@18.3.3)(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.44.0 version: 1.44.0 '@storybook/addon-actions': specifier: ^7.4.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) + version: 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-essentials': specifier: ^7.4.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) + version: 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-links': specifier: ^7.4.2 - version: 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-mdx-gfm': specifier: ^7.4.2 version: 7.4.2 @@ -1056,16 +1046,22 @@ importers: version: 7.4.2 '@storybook/preset-create-react-app': specifier: ^7.4.2 - version: 7.4.2(@babel/core@7.22.11)(@types/webpack@4.41.34)(react-refresh@0.11.0)(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3))(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)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) + version: 7.4.2(@babel/core@7.22.11)(@types/webpack@4.41.34)(react-refresh@0.11.0)(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3))(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)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) '@storybook/react': specifier: ^7.4.2 - 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) + version: 7.4.2(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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.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) + 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@18.3.0)(@types/react@18.3.3)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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 + '@types/react': + specifier: ^18.3.3 + version: 18.3.3 + '@types/react-dom': + specifier: ^18.3.0 + version: 18.3.0 '@types/testing-library__jest-dom': specifier: ^5.14.5 version: 5.14.5 @@ -1083,13 +1079,13 @@ importers: version: 3.0.1 react-app-rewired: specifier: ^2.2.1 - version: 2.2.1(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3)) + version: 2.2.1(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3)) react-error-overlay: specifier: 6.0.11 version: 6.0.11 react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3) + version: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3) sinon: specifier: 9.2.4 version: 9.2.4 @@ -1252,19 +1248,19 @@ importers: dependencies: '@ant-design/icons': specifier: ^4.5.0 - version: 4.8.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.8.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@emotion/react': specifier: ^11.7.1 - version: 11.10.6(@types/react@17.0.62)(react@17.0.2) + version: 11.10.6(@types/react@18.3.3)(react@18.3.1) '@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) + version: 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mantine/core': specifier: 4.2.12 - version: 4.2.12(@babel/core@7.21.4)(@mantine/hooks@4.2.12(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.2.12(@babel/core@7.21.4)(@mantine/hooks@4.2.12(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mantine/hooks': specifier: 4.2.12 - version: 4.2.12(react@17.0.2) + version: 4.2.12(react@18.3.1) '@novu/notification-center': specifier: workspace:* version: link:../../packages/notification-center @@ -1273,7 +1269,7 @@ importers: version: link:../../libs/shared antd: specifier: ^4.10.0 - version: 4.24.8(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.24.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) babel-plugin-import: specifier: ^1.13.3 version: 1.13.6 @@ -1290,17 +1286,17 @@ importers: specifier: ^4.1.2 version: 4.2.2 react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) react-infinite-scroll-component: specifier: ^6.0.0 - version: 6.1.0(react@17.0.2) + version: 6.1.0(react@18.3.1) react-infinite-scroller: specifier: ^1.2.4 - version: 1.2.6(react@17.0.2) + version: 1.2.6(react@18.3.1) react-is: specifier: ^18.2.0 version: 18.2.0 @@ -1309,7 +1305,7 @@ importers: version: 0.14.0 react-router-dom: specifier: 6.2.2 - version: 6.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 6.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -1366,11 +1362,11 @@ importers: specifier: ^12.0.0 version: 12.20.55 '@types/react': - specifier: 17.0.62 - version: 17.0.62 + specifier: ^18.3.3 + version: 18.3.3 '@types/react-dom': - specifier: 17.0.20 - version: 17.0.20 + specifier: ^18.3.0 + version: 18.3.0 '@types/react-router-dom': specifier: ^5.1.7 version: 5.3.3 @@ -1406,10 +1402,10 @@ importers: version: 4.1.0(less@4.1.3)(webpack@5.78.0(@swc/core@1.3.107)) react-app-rewired: specifier: ^2.2.1 - version: 2.2.1(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.4))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.4))(@swc/core@1.3.107)(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107)(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3)) + version: 2.2.1(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.4))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.4))(@swc/core@1.3.107)(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107)(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3)) react-scripts: specifier: ^5.0.1 - version: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.4))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.4))(@swc/core@1.3.107)(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107)(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3) + version: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.4))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.4))(@swc/core@1.3.107)(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107)(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3) typescript: specifier: 4.9.5 version: 4.9.5 @@ -1930,19 +1926,19 @@ importers: dependencies: '@chakra-ui/react': specifier: ^1.7 - version: 1.8.9(@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/react@17.0.62)(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@emotion/css': specifier: ^11.10.5 version: 11.10.6 '@emotion/react': specifier: ^11.7.1 - version: 11.10.6(@types/react@17.0.62)(react@17.0.2) + version: 11.10.6(@types/react@18.3.3)(react@18.3.1) '@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) + version: 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mantine/hooks': specifier: ^5.7.1 - version: 5.10.5(react@17.0.2) + version: 5.10.5(react@18.3.1) '@novu/client': specifier: workspace:* version: link:../../../packages/client @@ -1957,25 +1953,25 @@ importers: version: link:../../../libs/shared-web '@rjsf/chakra-ui': specifier: ^5.17.1 - version: 5.17.1(@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/react@1.8.9(@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/react@17.0.62)(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@17.0.2))(react@17.0.2))(@rjsf/utils@5.17.1(react@17.0.2))(@types/react@17.0.62)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 5.17.1(@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.3.1))(react@18.3.1))(@rjsf/utils@5.17.1(react@18.3.1))(@types/react@18.3.3)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@rjsf/core': specifier: ^5.17.1 - version: 5.17.1(@rjsf/utils@5.17.1(react@17.0.2))(react@17.0.2) + version: 5.17.1(@rjsf/utils@5.17.1(react@18.3.1))(react@18.3.1) '@rjsf/utils': specifier: ^5.17.1 - version: 5.17.1(react@17.0.2) + version: 5.17.1(react@18.3.1) '@rjsf/validator-ajv8': specifier: ^5.17.1 - version: 5.17.1(@rjsf/utils@5.17.1(react@17.0.2)) + version: 5.17.1(@rjsf/utils@5.17.1(react@18.3.1)) '@stripe/react-stripe-js': specifier: ^2.5.0 - version: 2.5.0(@stripe/stripe-js@2.4.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 2.5.0(@stripe/stripe-js@2.4.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@stripe/stripe-js': specifier: ^2.4.0 version: 2.4.0 '@tanstack/react-query': specifier: ^4.20.4 - version: 4.29.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) axios: specifier: ^1.4.0 version: 1.6.2 @@ -1990,35 +1986,35 @@ importers: version: 4.6.0(eslint@8.51.0) framer-motion: specifier: ^5 - version: 5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-hook-form: specifier: 7.43.9 - version: 7.43.9(react@17.0.2) + version: 7.43.9(react@18.3.1) react-router-dom: specifier: 6.2.2 - version: 6.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 6.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tslib: 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) + version: 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': specifier: ^18.11.12 version: 18.18.5 '@types/react': - specifier: 17.0.62 - version: 17.0.62 + specifier: ^18.3.3 + version: 18.3.3 '@types/react-dom': - specifier: ^17.0.0 - version: 17.0.20 + specifier: ^18.3.0 + version: 18.3.0 react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -2130,7 +2126,7 @@ importers: dependencies: '@mantine/hooks': specifier: ^5.7.1 - version: 5.10.5(react@17.0.2) + version: 5.10.5(react@18.3.1) '@novu/design-system': specifier: workspace:* version: link:../../../../libs/design-system @@ -2139,32 +2135,32 @@ importers: version: link:../../../../libs/shared-web '@rjsf/core': specifier: ^5.17.1 - version: 5.17.1(@rjsf/utils@5.17.1(react@17.0.2))(react@17.0.2) + version: 5.17.1(@rjsf/utils@5.17.1(react@18.3.1))(react@18.3.1) '@rjsf/validator-ajv8': specifier: ^5.17.1 - version: 5.17.1(@rjsf/utils@5.17.1(react@17.0.2)) + version: 5.17.1(@rjsf/utils@5.17.1(react@18.3.1)) '@tanstack/react-query': specifier: ^4.20.4 - version: 4.29.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: 6.2.2 - version: 6.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 6.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tslib: 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) + version: 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': specifier: ^18.11.12 version: 18.18.5 '@types/react': - specifier: 17.0.62 - version: 17.0.62 + specifier: ^18.3.3 + version: 18.3.3 '@types/react-dom': - specifier: ^17.0.0 - version: 17.0.20 + specifier: ^18.3.0 + version: 18.3.0 eslint: specifier: ^8.33.0 version: 8.51.0 @@ -2172,11 +2168,11 @@ importers: specifier: ^4.4.0 version: 4.6.0(eslint@8.51.0) react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -2450,25 +2446,25 @@ importers: version: 11.10.6 '@emotion/react': specifier: ^11.7.1 - version: 11.10.6(@types/react@17.0.62)(react@17.0.2) + version: 11.10.6(@types/react@18.3.3)(react@18.3.1) '@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) + version: 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@handlebars/parser': specifier: ^2.1.0 version: 2.1.0 '@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) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mantine/hooks': specifier: ^5.7.1 - version: 5.10.5(react@17.0.2) + version: 5.10.5(react@18.3.1) '@mantine/prism': specifier: ^5.7.1 - 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) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + version: 4.6.0(monaco-editor@0.45.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@novu/client': specifier: workspace:* version: link:../../../packages/client @@ -2483,7 +2479,7 @@ importers: version: link:../../../libs/shared-web '@tanstack/react-query': specifier: ^4.20.4 - version: 4.29.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) axios: specifier: ^1.4.0 version: 1.6.2 @@ -2501,10 +2497,10 @@ importers: version: 0.45.0 react-hook-form: specifier: 7.43.9 - version: 7.43.9(react@17.0.2) + version: 7.43.9(react@18.3.1) react-router-dom: specifier: 6.2.2 - version: 6.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 6.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) slugify: specifier: ^1.4.6 version: 1.6.6 @@ -2514,22 +2510,22 @@ importers: 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) + version: 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@types/node': specifier: ^18.11.12 version: 18.18.5 '@types/react': - specifier: 17.0.62 - version: 17.0.62 + specifier: ^18.3.3 + version: 18.3.3 '@types/react-dom': - specifier: ^17.0.0 - version: 17.0.20 + specifier: ^18.3.0 + version: 18.3.0 react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -2968,16 +2964,16 @@ importers: version: 11.10.6 '@emotion/react': specifier: ^11.7.1 - version: 11.10.6(@types/react@17.0.62)(react@17.0.2) + version: 11.10.6(@types/react@18.3.3)(react@18.3.1) '@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) + version: 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mantine/hooks': specifier: ^5.7.1 - version: 5.10.5(react@17.0.2) + version: 5.10.5(react@18.3.1) '@mantine/notifications': specifier: ^5.7.1 - 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) + version: 5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@novu/client': specifier: workspace:* version: link:../../packages/client @@ -2992,59 +2988,59 @@ importers: version: 1.59.0(encoding@0.1.13) '@sentry/react': specifier: ^7.40.0 - version: 7.47.0(react@17.0.2) + version: 7.47.0(react@18.3.1) '@tanstack/react-query': specifier: ^4.20.4 - version: 4.29.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) axios: specifier: ^1.3.3 version: 1.6.2 react-helmet-async: specifier: ^1.3.0 - version: 1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-hook-form: specifier: 7.43.9 - version: 7.43.9(react@17.0.2) + version: 7.43.9(react@18.3.1) react-icons: specifier: ^5.0.1 - version: 5.0.1(react@17.0.2) + version: 5.0.1(react@18.3.1) react-table: specifier: ^7.8.0 - version: 7.8.0(react@17.0.2) + version: 7.8.0(react@18.3.1) tslib: 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) + version: 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + version: 7.5.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-docs': specifier: ^7.4.2 - version: 7.4.2(@types/react-dom@17.0.20)(@types/react@17.0.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-api': specifier: ^7.6.10 version: 7.6.10 '@storybook/react': specifier: ^7.4.2 - 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) + version: 7.4.2(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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.20)(@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.15.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@18.3.0)(@types/react@18.3.3)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@4.15.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/theming': specifier: ^7.4.2 - version: 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/jest-dom': specifier: ^6.4.1 version: 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(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': specifier: ^12.1.5 - version: 12.1.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 12.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/react-hooks': specifier: ^8.0.1 - version: 8.0.1(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 8.0.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.3) @@ -3052,11 +3048,11 @@ importers: specifier: ^18.11.12 version: 18.18.5 '@types/react': - specifier: 17.0.62 - version: 17.0.62 + specifier: ^18.3.3 + version: 18.3.3 '@types/react-dom': - specifier: ^17.0.0 - version: 17.0.20 + specifier: ^18.3.0 + version: 18.3.0 '@vitejs/plugin-react': specifier: ^4.0.3 version: 4.1.0(vite@4.5.2(@types/node@18.18.5)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) @@ -3070,14 +3066,14 @@ importers: specifier: ^24.0.0 version: 24.0.0 react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) react-router-dom: specifier: 6.2.2 - version: 6.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 6.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -3219,25 +3215,25 @@ importers: version: 0.1.4(eslint@8.57.0)(jsdom@24.0.0)(typescript@4.9.5) '@pandacss/studio': specifier: ^0.38.0 - version: 0.38.0(@types/node@18.16.9)(@types/react-dom@17.0.20)(@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) + version: 0.38.0(@types/node@18.16.9)(@types/react-dom@18.3.0)(@types/react@18.3.3)(jsdom@24.0.0)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)(typescript@4.9.5) '@storybook/addon-actions': specifier: 8.1.0 version: 8.1.0 '@storybook/addon-controls': specifier: ^8.1.0 - version: 8.1.1(@types/react-dom@17.0.20)(@types/react@17.0.62)(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 8.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-docs': specifier: ^8.1.0 - version: 8.1.1(@types/react-dom@17.0.20)(encoding@0.1.13)(prettier@3.2.5) + version: 8.1.1(@types/react-dom@18.3.0)(encoding@0.1.13)(prettier@3.2.5) '@storybook/react': specifier: ^8.1.0 - version: 8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5) + version: 8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@storybook/react-vite': specifier: ^8.1.0 - version: 8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(rollup@4.9.6)(typescript@4.9.5)(vite@4.5.2(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) + version: 8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.9.6)(typescript@4.9.5)(vite@4.5.2(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) '@storybook/theming': specifier: ^8.1.0 - version: 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': specifier: ^8.1.0 version: 8.1.1 @@ -3246,10 +3242,10 @@ importers: version: 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(@types/node@18.16.9)(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.16.9)(jsdom@24.0.0)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) '@testing-library/react': specifier: ^12.1.5 - version: 12.1.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 12.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/react-hooks': specifier: ^8.0.1 - version: 8.0.1(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 8.0.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.2 version: 14.5.2(@testing-library/dom@9.3.3) @@ -3257,11 +3253,11 @@ importers: specifier: ^18.11.12 version: 18.16.9 '@types/react': - specifier: 17.0.62 - version: 17.0.62 + specifier: ^18.3.3 + version: 18.3.3 '@types/react-dom': - specifier: ^17.0.1 - version: 17.0.20 + specifier: ^18.3.0 + version: 18.3.0 '@vitejs/plugin-react': specifier: ^4.0.3 version: 4.2.1(vite@4.5.2(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) @@ -3272,11 +3268,11 @@ importers: specifier: ^0.6.13 version: 0.6.13(eslint@8.57.0)(typescript@4.9.5) react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) react-scanner: specifier: ^1.1.0 version: 1.1.0 @@ -3285,10 +3281,10 @@ importers: version: 3.0.2 storybook: specifier: ^8.1.0 - version: 8.1.1(@babel/preset-env@7.24.5(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 8.1.1(@babel/preset-env@7.24.5(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) storybook-dark-mode: specifier: ^4.0.1 - version: 4.0.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) + version: 4.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) typescript: specifier: ^4.9.5 version: 4.9.5 @@ -3334,10 +3330,10 @@ importers: dependencies: '@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) + version: 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@mantine/hooks': specifier: ^5.7.1 - version: 5.10.5(react@17.0.2) + version: 5.10.5(react@18.3.1) '@novu/shared': specifier: workspace:* version: link:../shared @@ -3346,10 +3342,10 @@ importers: version: 1.59.0(encoding@0.1.13) '@sentry/react': specifier: ^7.40.0 - version: 7.47.0(react@17.0.2) + version: 7.47.0(react@18.3.1) '@tanstack/react-query': specifier: ^4.20.4 - version: 4.29.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) axios: specifier: ^1.6.0 version: 1.6.2 @@ -3357,11 +3353,11 @@ importers: specifier: ^3.1.2 version: 3.1.2 launchdarkly-react-client-sdk: - specifier: ^3.0.6 - version: 3.0.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + specifier: ^3.3.2 + version: 3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-router-dom: specifier: 6.2.2 - version: 6.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 6.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) tslib: specifier: ^2.3.1 version: 2.6.2 @@ -3370,17 +3366,17 @@ importers: specifier: ^18.11.12 version: 18.18.5 '@types/react': - specifier: 17.0.62 - version: 17.0.62 + specifier: ^18.3.3 + version: 18.3.3 '@types/react-dom': - specifier: ^17.0.0 - version: 17.0.20 + specifier: ^18.3.0 + version: 18.3.0 react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -3559,7 +3555,7 @@ importers: version: link:../../libs/shared '@novu/studio': specifier: ^0.0.1-alpha.87 - version: 0.0.1-alpha.90(@ant-design/icons@4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@babel/core@7.24.4)(@chakra-ui/icons@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@emotion/is-prop-valid@1.2.0)(@opentelemetry/api@1.7.0)(@types/react@17.0.62)(antd@4.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(babel-plugin-macros@3.1.0)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(dayjs@1.11.10)(encoding@0.1.13)(immer@9.0.21)(sass@1.64.1)(webpack@5.88.2(@swc/core@1.3.107)) + version: 0.0.1-alpha.90(@ant-design/icons@4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@babel/core@7.24.4)(@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@emotion/is-prop-valid@1.2.0)(@opentelemetry/api@1.7.0)(@types/react@18.3.3)(antd@4.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(babel-plugin-macros@3.1.0)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(dayjs@1.11.10)(encoding@0.1.13)(immer@9.0.21)(sass@1.64.1)(webpack@5.88.2(@swc/core@1.3.107)) '@segment/analytics-node': specifier: ^1.1.4 version: 1.1.4(encoding@0.1.13) @@ -3922,16 +3918,16 @@ importers: version: 11.10.6 '@emotion/react': specifier: ^11.7.1 - version: 11.10.6(@types/react@17.0.62)(react@17.0.2) + version: 11.10.6(@types/react@18.3.3)(react@18.3.1) '@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) + version: 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@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) + version: 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@mantine/hooks': specifier: ^5.7.1 - version: 5.10.5(react@17.0.2) + version: 5.10.5(react@18.3.1) '@novu/client': specifier: workspace:* version: link:../client @@ -3940,7 +3936,7 @@ importers: version: link:../../libs/shared '@tanstack/react-query': specifier: ^4.20.4 - version: 4.29.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) acorn-jsx: specifier: ^5.3.2 version: 5.3.2(acorn@8.8.2) @@ -3958,7 +3954,7 @@ importers: version: 4.6.2 react-infinite-scroll-component: specifier: ^6.0.0 - version: 6.1.0(react@17.0.2) + version: 6.1.0(react@18.3.1) socket.io-client: specifier: 4.7.2 version: 4.7.2 @@ -3980,25 +3976,25 @@ 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.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-essentials': specifier: ^7.4.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) + version: 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-interactions': specifier: ^7.4.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) + version: 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-links': specifier: ^7.4.2 - version: 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-mdx-gfm': specifier: ^7.4.2 version: 7.4.2 '@storybook/react': specifier: ^7.4.2 - 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) + version: 7.4.2(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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.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) + 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@18.3.0)(@types/react@18.3.3)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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 @@ -4007,10 +4003,10 @@ importers: version: 4.2.4 '@testing-library/react': specifier: ^11.1.0 - version: 11.2.7(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 11.2.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/react-hooks': specifier: ^8.0.1 - version: 8.0.1(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + version: 8.0.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^12.1.10 version: 12.8.3(@testing-library/dom@9.3.0) @@ -4021,11 +4017,11 @@ importers: specifier: ^18.11.12 version: 18.15.11 '@types/react': - specifier: 17.0.62 - version: 17.0.62 + specifier: ^18.3.3 + version: 18.3.3 '@types/react-dom': - specifier: ^17.0.0 - version: 17.0.19 + specifier: ^18.3.0 + version: 18.3.0 acorn: specifier: ^8.7.1 version: 8.8.2 @@ -4048,11 +4044,11 @@ importers: specifier: ^2.0.0 version: 2.0.0 react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) rimraf: specifier: ^3.0.2 version: 3.0.2 @@ -4178,14 +4174,14 @@ importers: specifier: workspace:* version: link:../../../notification-center '@types/react': - specifier: 17.0.62 - version: 17.0.62 + specifier: ^18.3.3 + version: 18.3.3 react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) tslib: specifier: ^2.3.0 version: 2.6.2 @@ -4202,11 +4198,11 @@ importers: specifier: workspace:* version: link:../notification-center react: - specifier: ^17.0.1 - version: 17.0.2 + specifier: ^18.3.1 + version: 18.3.1 react-dom: - specifier: ^17.0.1 - version: 17.0.2(react@17.0.2) + specifier: ^18.3.1 + version: 18.3.1(react@18.3.1) devDependencies: '@rushstack/eslint-patch': specifier: ^1.1.4 @@ -4709,12 +4705,6 @@ packages: '@ant-design/icons-svg@4.2.1': resolution: {integrity: sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==} - '@ant-design/icons@4.6.2': - resolution: {integrity: sha512-QsBG2BxBYU/rxr2eb8b2cZ4rPKAPBpzAR+0v6rrZLp/lnyvflLH3tw1vregK+M7aJauGWjIGNdFmUfpAOtw25A==} - engines: {node: '>=8'} - peerDependencies: - react: '>=16.0.0' - '@ant-design/icons@4.8.0': resolution: {integrity: sha512-T89P2jG2vM7OJ0IfGx2+9FC5sQjtTzRSz+mCHTXkFn/ELZc2YpfStmYHmqzq2Jx55J0F7+O6i5/ZKFSVNWCKNg==} engines: {node: '>=8'} @@ -4757,7 +4747,7 @@ packages: resolution: {integrity: sha512-uGRIwKMAn7tva2vxXMyoVIGxWFr0rjZ8ZWIlkTG/vIpnAjD2nM8Cz6B8j7yzj176jvl6gZ6xTbTVPm09aeK0Yw==} engines: {node: '>=18.14.1'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': ^17.0.50 || ^18.0.21 '@types/react-dom': ^17.0.17 || ^18.0.6 react: ^17.0.2 || ^18.0.0 react-dom: ^17.0.2 || ^18.0.0 @@ -6734,9 +6724,6 @@ packages: peerDependencies: '@chakra-ui/system': '>=1.0.0' - '@chakra-ui/anatomy@2.2.2': - resolution: {integrity: sha512-MV6D4VLRIHr4PkW4zMyqfrNS1mPlCTiCXwvYGtDFQYr+xHFfonhAuf9WjsSc0nyp2m0OdkSLnzmVKkZFLo25Tg==} - '@chakra-ui/avatar@1.3.11': resolution: {integrity: sha512-/eRRK48Er92/QWAfWhxsJIN0gZBBvk+ew4Hglo+pxt3/NDnfTF2yPE7ZN29Dl6daPNbyTOpoksMwaU2mZIqLgA==} peerDependencies: @@ -6786,11 +6773,6 @@ packages: peerDependencies: react: '>=16.8.6' - '@chakra-ui/color-mode@2.2.0': - resolution: {integrity: sha512-niTEA8PALtMWRI9wJ4LL0CSBDo8NBfLNp4GD6/0hstcm3IlbBHTVKxN6HwSaoNYfphDQLxCjT4yG+0BJA5tFpg==} - peerDependencies: - react: '>=18' - '@chakra-ui/control-box@1.1.6': resolution: {integrity: sha512-EUcq5f854puG6ZA6wAWl4107OPl8+bj4MMHJCa48BB0qec0U8HCEtxQGnFwJmaYLalIAjMfHuY3OwO2A3Hi9hA==} peerDependencies: @@ -7072,11 +7054,6 @@ packages: peerDependencies: react: '>=16.8.6' - '@chakra-ui/react-utils@2.0.12': - resolution: {integrity: sha512-GbSfVb283+YA3kA8w8xWmzbjNWk14uhNpntnipHCftBibl0lxtQ9YqMFQLwuFOO0U2gYVocszqqDWX+XNKq9hw==} - peerDependencies: - react: '>=18' - '@chakra-ui/react@1.8.9': resolution: {integrity: sha512-NfR5XKVqEWhchFLiWaTWkWeYZJK1SNF2O6sQxFVrX6M+nAgJ3Q9tfMk6/I3II+xc4hXJUcYmUvmw37vT92yMaQ==} peerDependencies: @@ -7130,9 +7107,6 @@ packages: '@chakra-ui/styled-system@1.19.0': resolution: {integrity: sha512-z+bMfWs6jQGkpgarge1kmk78DuDhJIXRUMyRqZ3+CiIkze88bIIsww6mV2i8tEfUfTAvALeMnlYZ1DYsHsTTJw==} - '@chakra-ui/styled-system@2.9.2': - resolution: {integrity: sha512-To/Z92oHpIE+4nk11uVMWqo2GGRS86coeMmjxtpnErmWRdLcp1WVCVRAvn+ZwpLiNR+reWFr2FFqJRsREuZdAg==} - '@chakra-ui/switch@1.3.10': resolution: {integrity: sha512-V6qDLY6oECCbPyu7alWWOAhSBI4+SAuT6XW/zEQbelkwuUOiGO1ax67rTXOmZ59A2AaV1gqQFxDh8AcbvwO5XQ==} peerDependencies: @@ -7147,13 +7121,6 @@ packages: '@emotion/styled': ^11.0.0 react: '>=16.8.6' - '@chakra-ui/system@2.6.2': - resolution: {integrity: sha512-EGtpoEjLrUu4W1fHD+a62XR+hzC5YfsWm+6lO0Kybcga3yYEij9beegO0jZgug27V+Rf7vns95VPVP6mFd/DEQ==} - peerDependencies: - '@emotion/react': ^11.0.0 - '@emotion/styled': ^11.0.0 - react: '>=18' - '@chakra-ui/table@1.3.6': resolution: {integrity: sha512-7agZAgAeDFKviqStvixqnLAH54+setzhx67EztioZTr5Xu+6hQ4rotfJbu8L4i587pcbNg98kCEXEkidjw0XRQ==} peerDependencies: @@ -7183,24 +7150,11 @@ packages: peerDependencies: '@chakra-ui/system': '>=1.0.0' - '@chakra-ui/theme-tools@2.1.2': - resolution: {integrity: sha512-Qdj8ajF9kxY4gLrq7gA+Azp8CtFHGO9tWMN2wfF9aQNgG9AuMhPrUzMq9AMQ0MXiYcgNq/FD3eegB43nHVmXVA==} - peerDependencies: - '@chakra-ui/styled-system': '>=2.0.0' - - '@chakra-ui/theme-utils@2.0.21': - resolution: {integrity: sha512-FjH5LJbT794r0+VSCXB3lT4aubI24bLLRWB+CuRKHijRvsOg717bRdUN/N1fEmEpFnRVrbewttWh/OQs0EWpWw==} - '@chakra-ui/theme@1.14.1': resolution: {integrity: sha512-VeNZi+zD3yDwzvZm234Cy3vnalCzQ+dhAgpHdIYzGO1CYO8DPa+ROcQ70rUueL7dSvUz15KOiGTw6DAl7LXlGA==} peerDependencies: '@chakra-ui/system': '>=1.0.0' - '@chakra-ui/theme@3.3.1': - resolution: {integrity: sha512-Hft/VaT8GYnItGCBbgWd75ICrIrIFrR7lVOhV/dQnqtfGqsVDlrztbSErvMkoPKt0UgAkd9/o44jmZ6X4U2nZQ==} - peerDependencies: - '@chakra-ui/styled-system': '>=2.8.0' - '@chakra-ui/toast@1.5.9': resolution: {integrity: sha512-rns04bGdMcG7Ijg45L+PfuEW4rCd0Ycraix4EJQhcl9RXI18G9sphmlp9feidhZAkI6Ukafq1YvyvkBfkKnIzQ==} peerDependencies: @@ -7232,9 +7186,6 @@ packages: '@chakra-ui/utils@1.10.4': resolution: {integrity: sha512-AM91VQQxw8F4F1WDA28mqKY6NFIOuzc2Ekkna88imy2OiqqmYH0xkq8J16L2qj4cLiLozpYqba3C79pWioy6FA==} - '@chakra-ui/utils@2.0.15': - resolution: {integrity: sha512-El4+jL0WSaYYs+rJbuYFDbjmfCcfGDmRY95GO4xwzit6YAPZBLcR65rOEwLps+XWluZTy1xdMrusg/hW0c1aAA==} - '@chakra-ui/visually-hidden@1.1.6': resolution: {integrity: sha512-Xzy5bA0UA+IyMgwJizQYSEdgz8cC/tHdmFB3CniXzmpKTSK8mJddeEBl+cGbXHBzxEUhH7xF1eaS41O+0ezWEQ==} peerDependencies: @@ -8622,14 +8573,20 @@ packages: react: '>=16.8.0' react-dom: '>=16.8.0' + '@floating-ui/react-dom@2.1.0': + resolution: {integrity: sha512-lNzj5EQmEKn5FFKc04+zasr09h/uX8RtJRNj5gUXsSQIXHVWTVh+hVAg1vOMCexkX8EgvemMvIFpQfkosnVNyA==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + '@floating-ui/react@0.19.2': resolution: {integrity: sha512-JyNk4A0Ezirq8FlXECvRtQOX/iBe5Ize0W/pLkrZjfHW9GUV7Xnq6zm6fyZuQzaHHqEnVizmvlA96e1/CkZv+w==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' - '@floating-ui/react@0.26.13': - resolution: {integrity: sha512-kBa9wntpugzrZ8t/4yWelvSmEKZdeTXTJzrxqyrLmcU/n1SM4nvse8yQh2e1b37rJGvtu0EplV9+IkBrCJ1vkw==} + '@floating-ui/react@0.26.16': + resolution: {integrity: sha512-HEf43zxZNAI/E781QIVpYSF3K2VH4TTYZpqecjdsFkjsaU1EbaWcM++kw0HXFffj7gDUcBFevX8s0rQGQpxkow==} peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' @@ -9539,7 +9496,7 @@ packages: '@mdx-js/react@3.0.1': resolution: {integrity: sha512-9ZrPIU4MGf6et1m1ov3zKf+q9+deetI51zprKB1D/z3NOb+rUxxtEl3mCjW5wTGh6VhRdwPueh1oRzi6ezkA8A==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '>=16' react: '>=16' '@medv/finder@3.2.0': @@ -11532,7 +11489,7 @@ packages: '@radix-ui/react-arrow@1.0.3': resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11545,7 +11502,7 @@ packages: '@radix-ui/react-collection@1.0.3': resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11568,7 +11525,7 @@ packages: '@radix-ui/react-compose-refs@1.0.1': resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11587,7 +11544,7 @@ packages: '@radix-ui/react-context@1.0.1': resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11596,7 +11553,7 @@ packages: '@radix-ui/react-dialog@1.0.5': resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11614,7 +11571,7 @@ packages: '@radix-ui/react-direction@1.0.1': resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11623,7 +11580,7 @@ packages: '@radix-ui/react-dismissable-layer@1.0.4': resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11636,7 +11593,7 @@ packages: '@radix-ui/react-dismissable-layer@1.0.5': resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11649,7 +11606,7 @@ packages: '@radix-ui/react-focus-guards@1.0.1': resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11658,7 +11615,7 @@ packages: '@radix-ui/react-focus-scope@1.0.3': resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11671,7 +11628,7 @@ packages: '@radix-ui/react-focus-scope@1.0.4': resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11684,7 +11641,7 @@ packages: '@radix-ui/react-id@1.0.1': resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11693,7 +11650,7 @@ packages: '@radix-ui/react-popper@1.1.2': resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11706,7 +11663,7 @@ packages: '@radix-ui/react-portal@1.0.3': resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11719,7 +11676,7 @@ packages: '@radix-ui/react-portal@1.0.4': resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11743,7 +11700,7 @@ packages: '@radix-ui/react-presence@1.0.1': resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11767,7 +11724,7 @@ packages: '@radix-ui/react-primitive@1.0.3': resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11780,7 +11737,7 @@ packages: '@radix-ui/react-roving-focus@1.0.4': resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11804,7 +11761,7 @@ packages: '@radix-ui/react-select@1.2.2': resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11817,7 +11774,7 @@ packages: '@radix-ui/react-separator@1.0.3': resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11840,7 +11797,7 @@ packages: '@radix-ui/react-slot@1.0.2': resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11849,7 +11806,7 @@ packages: '@radix-ui/react-toggle-group@1.0.4': resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11862,7 +11819,7 @@ packages: '@radix-ui/react-toggle@1.0.3': resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11875,7 +11832,7 @@ packages: '@radix-ui/react-toolbar@1.0.4': resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -11898,7 +11855,7 @@ packages: '@radix-ui/react-use-callback-ref@1.0.1': resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11907,7 +11864,7 @@ packages: '@radix-ui/react-use-controllable-state@1.0.1': resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11921,7 +11878,7 @@ packages: '@radix-ui/react-use-escape-keydown@1.0.3': resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11940,7 +11897,7 @@ packages: '@radix-ui/react-use-layout-effect@1.0.1': resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11949,7 +11906,7 @@ packages: '@radix-ui/react-use-previous@1.0.1': resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11958,7 +11915,7 @@ packages: '@radix-ui/react-use-rect@1.0.1': resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11967,7 +11924,7 @@ packages: '@radix-ui/react-use-size@1.0.1': resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: '@types/react': @@ -11976,7 +11933,7 @@ packages: '@radix-ui/react-visually-hidden@1.0.3': resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '*' '@types/react-dom': '*' react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 @@ -12066,8 +12023,8 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@rjsf/antd@5.18.3': - resolution: {integrity: sha512-eKuxNGXBTwq5hqdqSpbkEUxzX5224y42EHJgiP0Eu3xDj74ktAjBHvBHfX4Fa76Gjwfv+Dkj/N1wg1+G+iBlZw==} + '@rjsf/antd@5.18.4': + resolution: {integrity: sha512-dLP6+R7uvl97vrbRpoYLs2VR14lHwe6NrtDEO0mVDrXGakDNicnnaAHiM6xOUR4LRUuAaG29DvTWoBxImcEYRQ==} engines: {node: '>=14'} peerDependencies: '@ant-design/icons': ^4.0.0 || ^5.0.0 @@ -12272,8 +12229,8 @@ packages: cpu: [x64] os: [win32] - '@rrweb/types@2.0.0-alpha.13': - resolution: {integrity: sha512-ytq+MeVm/vP2ybw+gTAN3Xvt7HN2yS+wlbfnwHpQMftxrwzq0kEZHdw+Jp5WUvvpONWzXriNAUU9dW0qLGkzNg==} + '@rrweb/types@2.0.0-alpha.14': + resolution: {integrity: sha512-H0qKW75SdsZM4/4116fQDDC3QkUxbP7A9AY5PK2nyUV56KReAQ1sH8ZHu9tomvn0kFJUXhtvjv2H6G6xxSJNqA==} '@rushstack/eslint-patch@1.2.0': resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} @@ -12393,18 +12350,22 @@ packages: resolution: {integrity: sha512-WkE0qwOrJMX9oQ+Xvtl3CdmucD6/iKw6go0VPoPieVlfXc43rbIf91wvtO6m7sKPnzxw3G+8rekBgXibmP4S8Q==} engines: {node: '>=12.*'} - '@sentry-internal/feedback@7.114.0': - resolution: {integrity: sha512-kUiLRUDZuh10QE9JbSVVLgqxFoD9eDPOzT0MmzlPuas8JlTmJuV4FtSANNcqctd5mBuLt2ebNXH0MhRMwyae4A==} + '@sentry-internal/feedback@7.116.0': + resolution: {integrity: sha512-tmfO+RTCrhIWMs3yg8X0axhbjWRZLsldSfoXBgfjNCk/XwkYiVGp7WnYVbb+IO+01mHCsis9uaYOBggLgFRB5Q==} engines: {node: '>=12'} - '@sentry-internal/replay-canvas@7.114.0': - resolution: {integrity: sha512-6rTiqmKi/FYtesdM2TM2U+rh6BytdPjLP65KTUodtxohJ+r/3m+termj2o4BhIYPE1YYOZNmbZfwebkuQPmWeg==} + '@sentry-internal/replay-canvas@7.116.0': + resolution: {integrity: sha512-Sy0ydY7A97JY/IFTIj8U25kHqR5rL9oBk3HFE5EK9Phw56irVhHzEwLWae0jlFeCQEWoBYqpPgO5vXsaYzrWvw==} engines: {node: '>=12'} '@sentry-internal/tracing@7.114.0': resolution: {integrity: sha512-dOuvfJN7G+3YqLlUY4HIjyWHaRP8vbOgF+OsE5w2l7ZEn1rMAaUbPntAR8AF9GBA6j2zWNoSo8e7GjbJxVofSg==} engines: {node: '>=8'} + '@sentry-internal/tracing@7.116.0': + resolution: {integrity: sha512-y5ppEmoOlfr77c/HqsEXR72092qmGYS4QE5gSz5UZFn9CiinEwGfEorcg2xIrrCuU7Ry/ZU2VLz9q3xd04drRA==} + engines: {node: '>=8'} + '@sentry-internal/tracing@7.47.0': resolution: {integrity: sha512-udpHnCzF8DQsWf0gQwd0XFGp6Y8MOiwnl8vGt2ohqZGS3m1+IxoRLXsSkD8qmvN6KKDnwbaAvYnK0z0L+AW95g==} engines: {node: '>=8'} @@ -12413,8 +12374,8 @@ packages: resolution: {integrity: sha512-3vCgC2hC3T45pn53yTDVcRpHoJTBxelDPPZVsipAbZnoOVPkj7n6dNfDhj3I3kwWCBPahPkXmE+R4xViR8VqJg==} engines: {node: '>=8'} - '@sentry/browser@7.114.0': - resolution: {integrity: sha512-ijJ0vOEY6U9JJADVYGkUbLrAbpGSQgA4zV+KW3tcsBLX9M1jaWq4BV1PWHdzDPPDhy4OgfOjIfaMb5BSPn1U+g==} + '@sentry/browser@7.116.0': + resolution: {integrity: sha512-2aosATT5qE+QLKgTmyF9t5Emsluy1MBczYNuPmLhDxGNfB+MA86S8u7Hb0CpxdwjS0nt14gmbiOtJHoeAF3uTw==} engines: {node: '>=8'} '@sentry/browser@7.47.0': @@ -12430,6 +12391,10 @@ packages: resolution: {integrity: sha512-YnanVlmulkjgZiVZ9BfY9k6I082n+C+LbZo52MTvx3FY6RE5iyiPMpaOh67oXEZRWcYQEGm+bKruRxLVP6RlbA==} engines: {node: '>=8'} + '@sentry/core@7.116.0': + resolution: {integrity: sha512-J6Wmjjx+o7RwST0weTU1KaKUAlzbc8MGkJV1rcHM9xjNTWTva+nrcCM3vFBagnk2Gm/zhwv3h0PvWEqVyp3U1Q==} + engines: {node: '>=8'} + '@sentry/core@7.47.0': resolution: {integrity: sha512-EFhZhKdMu7wKmWYZwbgTi8FNZ7Fq+HdlXiZWNz51Bqe3pHmfAkdHtAEs0Buo0v623MKA0CA4EjXIazGUM34XTg==} engines: {node: '>=8'} @@ -12446,8 +12411,12 @@ packages: resolution: {integrity: sha512-BJIBWXGKeIH0ifd7goxOS29fBA8BkEgVVCahs6xIOXBjX1IRS6PmX0zYx/GP23nQTfhJiubv2XPzoYOlZZmDxg==} engines: {node: '>=8'} - '@sentry/nextjs@7.114.0': - resolution: {integrity: sha512-QRqE+YTVG3btTPVhOfiq0XmHp0dG4A0C/R+ssR/pdfOBr4EfEEav0hlTlqvk9BV0u6naJ5TOvBZ6Fy41rkYYrQ==} + '@sentry/integrations@7.116.0': + resolution: {integrity: sha512-UZb60gaF+7veh1Yv79RiGvgGYOnU6xA97H+hI6tKgc1uT20YpItO4X56Vhp0lvyEyUGFZzBRRH1jpMDPNGPkqw==} + engines: {node: '>=8'} + + '@sentry/nextjs@7.116.0': + resolution: {integrity: sha512-FhPokzfjejc1a66cy/eyfMVhZk0r2ogvN0+1ezu7l4k78voS1NW+MyDxqHdgNmDoGdLnqw7Zc2CNursREwq7KQ==} engines: {node: '>=8'} peerDependencies: next: ^10.0.8 || ^11.0 || ^12.0 || ^13.0 || ^14.0 @@ -12461,6 +12430,10 @@ packages: resolution: {integrity: sha512-cqvi+OHV1Hj64mIGHoZtLgwrh1BG6ntcRjDLlVNMqml5rdTRD3TvG21579FtlqHlwZpbpF7K5xkwl8e5KL2hGw==} engines: {node: '>=8'} + '@sentry/node@7.116.0': + resolution: {integrity: sha512-HB/4TrJWbnu6swNzkid+MlwzLwY/D/klGt3R0aatgrgWPo2jJm6bSl4LUT39Cr2eg5I1gsREQtXE2mAlC6gm8w==} + engines: {node: '>=8'} + '@sentry/node@7.47.0': resolution: {integrity: sha512-LTg2r5EV9yh4GLYDF+ViSltR9LLj/pcvk8YhANJcMO3Fp//xh8njcdU0FC2yNthUREawYDzAsVzLyCYJfV0H1A==} engines: {node: '>=8'} @@ -12469,8 +12442,8 @@ packages: resolution: {integrity: sha512-PxqIqLr4Sh5xcDfECiBQ4PuZ7v8yTgLhaRkruWrZPYxQrcJFPkwbFkw/IskzVnhT2VwXUmeWEIlRMQKBJ0t83A==} engines: {node: '>=8'} - '@sentry/react@7.114.0': - resolution: {integrity: sha512-zVPtvSy00Al25Z21f5GNzo3rd/TKS+iOX9wQwLrUZAxyf9RwBxKATLVJNJPkf8dQml6Qx+lfr0BHIlVcr1a1SQ==} + '@sentry/react@7.116.0': + resolution: {integrity: sha512-b7sYSIewK/h3dGzm7Rx6tBUzA6w7zw6m5rVIO3fWCy7T3xEUDggUaqklrFVHXUYx2yjzEgTFPg/Dd2NrSzua4w==} engines: {node: '>=8'} peerDependencies: react: 15.x || 16.x || 17.x || 18.x @@ -12481,8 +12454,8 @@ packages: peerDependencies: react: 15.x || 16.x || 17.x || 18.x - '@sentry/replay@7.114.0': - resolution: {integrity: sha512-UvEajoLIX9n2poeW3R4Ybz7D0FgCGXoFr/x/33rdUEMIdTypknxjJWxg6fJngIduzwrlrvWpvP8QiZXczYQy2Q==} + '@sentry/replay@7.116.0': + resolution: {integrity: sha512-OrpDtV54pmwZuKp3g7PDiJg6ruRMJKOCzK08TF7IPsKrr4x4UQn56rzMOiABVuTjuS8lNfAWDar6c6vxXFz5KA==} engines: {node: '>=12'} '@sentry/replay@7.47.0': @@ -12497,6 +12470,10 @@ packages: resolution: {integrity: sha512-tsqkkyL3eJtptmPtT0m9W/bPLkU7ILY7nvwpi1hahA5jrM7ppoU0IMaQWAgTD+U3rzFH40IdXNBFb8Gnqcva4w==} engines: {node: '>=8'} + '@sentry/types@7.116.0': + resolution: {integrity: sha512-QCCvG5QuQrwgKzV11lolNQPP2k67Q6HHD9vllZ/C4dkxkjoIym8Gy+1OgAN3wjsR0f/kG9o5iZyglgNpUVRapQ==} + engines: {node: '>=8'} + '@sentry/types@7.47.0': resolution: {integrity: sha512-GxXocplN0j1+uczovHrfkykl9wvkamDtWxlPUQgyGlbLGZn+UH1Y79D4D58COaFWGEZdSNKr62gZAjfEYu9nQA==} engines: {node: '>=8'} @@ -12509,6 +12486,10 @@ packages: resolution: {integrity: sha512-319N90McVpupQ6vws4+tfCy/03AdtsU0MurIE4+W5cubHME08HtiEWlfacvAxX+yuKFhvdsO4K4BB/dj54ideg==} engines: {node: '>=8'} + '@sentry/utils@7.116.0': + resolution: {integrity: sha512-Vn9fcvwTq91wJvCd7WTMWozimqMi+dEZ3ie3EICELC2diONcN16ADFdzn65CQQbYwmUzRjN9EjDN2k41pKZWhQ==} + engines: {node: '>=8'} + '@sentry/utils@7.47.0': resolution: {integrity: sha512-A89SaOLp6XeZfByeYo2C8Ecye/YAtk/gENuyOUhQEdMulI6mZdjqtHAp7pTMVgkBc/YNARVuoa+kR/IdRrTPkQ==} engines: {node: '>=8'} @@ -12517,8 +12498,8 @@ packages: resolution: {integrity: sha512-9GYUVgXjK66uXXcLXVMXVzlptqMtq1eJENCuDeezQiEFrNA71KkLDg00wESp+LL+bl3wpVTBApArpbF6UEG5hQ==} engines: {node: '>=8'} - '@sentry/vercel-edge@7.114.0': - resolution: {integrity: sha512-EYMC8qXtJeZmsb+fPSmOO7BBezwTZjsI3S8JYtK+zeQgXWEVGI8UPlpkqkBiM29fHqCJ2nrLMyoWCOLG7ZwfhA==} + '@sentry/vercel-edge@7.116.0': + resolution: {integrity: sha512-II956v8ch99+DwhkFh7MDcYlnDURIO2rjy7U60Tol+xhlU5RcyySzRt/Ki1Zw2DiKXBuAk7C1JMioTr0FF9mAQ==} engines: {node: '>=8'} '@sentry/webpack-plugin@1.21.0': @@ -14479,8 +14460,8 @@ packages: '@tanstack/query-core@4.29.1': resolution: {integrity: sha512-vkPewLEG8ua0efo3SsVT0BcBtkq5RZX8oPhDAyKL+k/rdOYSQTEocfGEXSaBwIwsXeOGBUpfKqI+UmHvNqdWXg==} - '@tanstack/query-core@5.36.0': - resolution: {integrity: sha512-B5BD3pg/mztDR36i77hGcyySKKeYrbM5mnogOROTBi1SUml5ByRK7PGUUl16vvubvQC+mSnqziFG/VIy/DE3FQ==} + '@tanstack/query-core@5.40.0': + resolution: {integrity: sha512-eD8K8jsOIq0Z5u/QbvOmfvKKE/XC39jA7yv4hgpl/1SRiU+J8QCIwgM/mEHuunQsL87dcvnHqSVLmf9pD4CiaA==} '@tanstack/react-query-devtools@4.29.1': resolution: {integrity: sha512-lbtNGArplXLVmY8eEh8LFqZz61PJI38sASEcuKoSnEK8UgWvLCwY5vjlT8fzk10yQ4jhR3+PHKLDMXA5ifCTXw==} @@ -14501,8 +14482,8 @@ packages: react-native: optional: true - '@tanstack/react-query@5.36.0': - resolution: {integrity: sha512-BATvtM0rohwg7pRHUnxgeDiwLWRGZ8OM/4y8LImHVpecQWoH6Uhytu3Z8YV6V7hQ1sMQBFcUrGE1/e4MxR6YiA==} + '@tanstack/react-query@5.40.0': + resolution: {integrity: sha512-iv/W0Axc4aXhFzkrByToE1JQqayxTPNotCoSCnarR/A1vDIHaoKpg7FTIfP3Ev2mbKn1yrxq0ZKYUdLEJxs6Tg==} peerDependencies: react: ^18.0.0 @@ -14554,7 +14535,7 @@ packages: resolution: {integrity: sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==} engines: {node: '>=12'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': ^16.9.0 || ^17.0.0 react: ^16.9.0 || ^17.0.0 react-dom: ^16.9.0 || ^17.0.0 react-test-renderer: ^16.9.0 || ^17.0.0 @@ -15039,9 +15020,6 @@ packages: '@types/lodash.mergewith@4.6.6': resolution: {integrity: sha512-RY/8IaVENjG19rxTZu9Nukqh0W2UrYgmBj5sdns4hWRZaV8PqR7wIKHFKzvOTjo4zVRV7sVI+yFhAJql12Kfqg==} - '@types/lodash.mergewith@4.6.7': - resolution: {integrity: sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==} - '@types/lodash@4.14.192': resolution: {integrity: sha512-km+Vyn3BYm5ytMO13k9KTp27O75rbQ0NFw+U//g+PX7VZyjCioXaRFisqSIJRECljcTv73G3i6BpglNGHgUQ5A==} @@ -15201,12 +15179,12 @@ packages: '@types/range-parser@1.2.4': resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} - '@types/react-dom@17.0.19': - resolution: {integrity: sha512-PiYG40pnQRdPHnlf7tZnp0aQ6q9tspYr72vD61saO6zFCybLfMqwUCN0va1/P+86DXn18ZWeW30Bk7xlC5eEAQ==} - '@types/react-dom@17.0.20': resolution: {integrity: sha512-4pzIjSxDueZZ90F52mU3aPoogkHIoSIDG+oQ+wQK7Cy2B9S+MvOqY0uEA/qawKz381qrEDkvpwyt8Bm31I8sbA==} + '@types/react-dom@18.3.0': + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} + '@types/react-router-dom@5.3.3': resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} @@ -15219,8 +15197,11 @@ packages: '@types/react-transition-group@4.4.10': resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} - '@types/react@17.0.62': - resolution: {integrity: sha512-eANCyz9DG8p/Vdhr0ZKST8JV12PhH2ACCDYlFw6DIO+D+ca+uP4jtEDEpVqXZrh/uZdXQGwk7whJa3ah5DtyLw==} + '@types/react@17.0.80': + resolution: {integrity: sha512-LrgHIu2lEtIo8M7d1FcI3BdwXWoRQwMoXOZ7+dPTW0lYREjmlHl3P0U1VD0i/9tppOuv8/sam7sOjx34TxSFbA==} + + '@types/react@18.3.3': + resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} '@types/redis@2.8.32': resolution: {integrity: sha512-7jkMKxcGq9p242exlbsVzuJb57KqHRhNl4dHoQu2Y5v9bCAbtIXXH0R3HleSQW4CTOqpHIYUW3t6tpUj4BVQ+w==} @@ -15255,8 +15236,8 @@ packages: '@types/sarif@2.1.7': resolution: {integrity: sha512-kRz0VEkJqWLf1LLVN4pT1cg1Z9wAuvI6L97V3m2f5B76Tg8d413ddvLBPTEHAZJlnn4XSvu0FkZtViCQGVyrXQ==} - '@types/scheduler@0.16.3': - resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} + '@types/scheduler@0.16.8': + resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} '@types/semver@7.3.13': resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==} @@ -17774,9 +17755,6 @@ packages: resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} hasBin: true - color2k@2.0.3: - resolution: {integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==} - color@3.2.1: resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} @@ -20545,8 +20523,8 @@ packages: resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} engines: {node: '>=0.10.0'} - framer-motion@11.1.9: - resolution: {integrity: sha512-flECDIPV4QDNcOrDafVFiIazp8X01HFpzc01eDKJsdNH/wrATcYydJSH9JbPWMS8UD5lZlw+J1sK8LG2kICgqw==} + framer-motion@11.2.9: + resolution: {integrity: sha512-gfxNSkp4dC3vpy2hGNQK3K9bNOKwfasqOhrqvmZzYxCPSJ9Tpv/9JlCkeCMgFdKefgPr8+JiouGjVmaDzu750w==} peerDependencies: '@emotion/is-prop-valid': '*' react: ^18.0.0 @@ -20578,9 +20556,6 @@ packages: framesync@6.0.1: resolution: {integrity: sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==} - framesync@6.1.2: - resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==} - fresh@0.5.2: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} @@ -23118,18 +23093,18 @@ packages: resolution: {integrity: sha512-GL+r2Y3WccJlhFyL2buNKel+9VaMnYpbE/FfCkOST5jSNSFodahlxtGyrE8o7R+Qhobyq0Ree4a7iafJDQi9VQ==} engines: {node: '>=0.12.0'} - launchdarkly-js-client-sdk@3.1.3: - resolution: {integrity: sha512-/JR/ri8z3bEj9RFTTKDjd+con4F1MsWUea1MmBDtFj4gDA0l9NDm1KzhMKiIeoBdmB2rSaeFYe4CaYOEp8IryA==} + launchdarkly-js-client-sdk@3.3.0: + resolution: {integrity: sha512-Hb+EF/5m43jsKrkXLPrdklX5g+XUJiwJQlVfa4y+ZPEqSnP4w4GrFp+Iv5ftWCcRhhpQuw/rygoNZlL1e1vmgg==} - launchdarkly-js-sdk-common@5.0.3: - resolution: {integrity: sha512-wKG8UsVbPVq8+7eavgAm5CVmulQWN6Ddod2ZoA3euZ1zPvJPwIQ2GrOYaCJr3cFrrMIX+nQyBJHBHYxUAPcM+Q==} + launchdarkly-js-sdk-common@5.2.0: + resolution: {integrity: sha512-aLv2ZrUv229RIwLtFhdILu2aJS/fqGSJzTk4L/bCDZA8RuIh7PutI3ui/AJeNnzPzjKzdEQZw6wVhkVc84baog==} launchdarkly-node-server-sdk@7.0.1: resolution: {integrity: sha512-vliVBgoO3eZVBXl7LWE3hsB+8WEeyYS2Hf0BzgNx5yYrlFDHSAB2Ug+GEawgQEd9kxWESc3n5WyCn1sdMhG1xA==} engines: {node: '>= 12.0.0'} - launchdarkly-react-client-sdk@3.0.6: - resolution: {integrity: sha512-r7gSshScugjnJB4lJ6mAOMKpV4Pj/wUks3tsRHdfeXgER9jPdxmZOAkm0besMjK0S7lfQdjxJ2KIXrh+Mn1sQA==} + launchdarkly-react-client-sdk@3.3.2: + resolution: {integrity: sha512-Cusw0aB+L65FceGQQ77IFhKZT+J+NezDtmahhI/LtK/Da2YhlbSmxhInSLdf325e3Umj0+foDIOkFt/OOFmQsQ==} peerDependencies: react: ^16.6.3 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.4 || ^17.0.0 || ^18.0.0 @@ -24361,8 +24336,8 @@ packages: resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} engines: {node: '>=0.10.0'} - mixpanel-browser@2.50.0: - resolution: {integrity: sha512-iP4sbSRMemjWbnH+KQZRxZ360bcXtFpoQuUiWjjdw9AsURn0MrR9/2RnPOJ8J8tt1dMm7kTKwOjGV8pkbWbmAA==} + mixpanel-browser@2.51.0: + resolution: {integrity: sha512-cNjvvhlRkSlqW1w4nxRpK5y4R3QcfhY7H/ZfvZ4jLeiBUNeeuwyQTgOAk/mYiBDOonWEdeN7h3EkL2BdqKd2Sw==} mixpanel@0.17.0: resolution: {integrity: sha512-DY5WeOy/hmkPrNiiZugJpWR0iMuOwuj1a3u0bgwB2eUFRV6oIew/pIahhpawdbNjb+Bye4a8ID3gefeNPvL81g==} @@ -27058,8 +27033,8 @@ packages: react: '>=16.9.0' react-dom: '>=16.9.0' - rc-util@5.39.3: - resolution: {integrity: sha512-j9wOELkLQ8gC/NkUg3qg9mHZcJf+5mYYv40JrDHqnaf8VSycji4pCf7kJ5fdTXQPDIF0vr5zpb/T2HdrMs9rWA==} + rc-util@5.41.0: + resolution: {integrity: sha512-xtlCim9RpmVv0Ar2Nnc3WfJCxjQkTf3xHPWoFdjp1fSs2NirQwqiQrfqdU9HUe0kdfb168M/T8Dq0IaX50xeKg==} peerDependencies: react: '>=16.9.0' react-dom: '>=16.9.0' @@ -27165,11 +27140,6 @@ packages: resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} engines: {node: '>=16.14.0'} - react-dom@17.0.2: - resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} - peerDependencies: - react: 17.0.2 - react-dom@18.2.0: resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: @@ -27213,9 +27183,6 @@ packages: react-fast-compare@3.2.1: resolution: {integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==} - react-fast-compare@3.2.2: - resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} - react-floater@0.7.6: resolution: {integrity: sha512-tt/15k/HpaShbtvWCwsQYLR+ebfUuYbl+oAUJ3DcEDkgYKeUcSkDey2PdAIERdVwzdFZANz47HbwoET2/Rduxg==} peerDependencies: @@ -27332,7 +27299,7 @@ packages: resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -27342,7 +27309,7 @@ packages: resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} engines: {node: '>=10'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -27352,27 +27319,27 @@ packages: resolution: {integrity: sha512-K7XZySEzOHMTq7dDwcHsZA6Y7/1uX5RsWhRXVYv8rdh+y9Qz2nMwl9RX/Mwnj/j7JstCGmxyfyC0zbVGXYh3mA==} engines: {node: '>=8.5.0'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': ^16.8.0 || ^17.0.0 react: ^16.8.0 || ^17.0.0 peerDependenciesMeta: '@types/react': optional: true - react-remove-scroll@2.5.5: - resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} + react-remove-scroll@2.5.10: + resolution: {integrity: sha512-m3zvBRANPBw3qxVVjEIPEQinkcwlFZ4qyomuWVpNJdv4c6MvHfXV0C3L9Jx5rr3HeBHKNRX+1jreB5QloDIJjA==} engines: {node: '>=10'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': optional: true - react-remove-scroll@2.5.9: - resolution: {integrity: sha512-bvHCLBrFfM2OgcrpPY2YW84sPdS2o2HKWJUf1xGyGLnSoEnOTOBpahIarjRuYtN0ryahCeP242yf+5TrBX/pZA==} + react-remove-scroll@2.5.5: + resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -27427,7 +27394,7 @@ packages: resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -27486,10 +27453,6 @@ packages: react: '>=16.13' react-dom: '>=16.13' - react@17.0.2: - resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} - engines: {node: '>=0.10.0'} - react@18.2.0: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} @@ -28098,8 +28061,8 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true - rrdom@0.1.7: - resolution: {integrity: sha512-ZLd8f14z9pUy2Hk9y636cNv5Y2BMnNEY99wxzW9tD2BLDfe1xFxtLjB4q/xCBYo6HRe0wofzKzjm4JojmpBfFw==} + rrdom@2.0.0-alpha.14: + resolution: {integrity: sha512-aEDi8MNfKWRnWHM1Mhfx535EtHHYHg6L17PC3rvMUJMgHLcyMQsmI+OMeWt5RzXw1J2fdwhMV0grpp5VDTqRaA==} rrule@2.7.2: resolution: {integrity: sha512-NkBsEEB6FIZOZ3T8frvEBOB243dm46SPufpDckY/Ap/YH24V1zLeMmDY8OA10lk452NdrF621+ynDThE7FQU2A==} @@ -28107,14 +28070,11 @@ packages: rrweb-cssom@0.6.0: resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} - rrweb-snapshot@2.0.0-alpha.13: - resolution: {integrity: sha512-slbhNBCYjxLGCeH95a67ECCy5a22nloXp1F5wF7DCzUNw80FN7tF9Lef1sRGLNo32g3mNqTc2sWLATlKejMxYw==} + rrweb-snapshot@2.0.0-alpha.14: + resolution: {integrity: sha512-HuJd7iZauzhf7XI5FFtCGeUXkHk1mgc8yvH9Km9zB09Yk2cr0bW4eKx9fWQhRFiry9yXf/vOMkUy403xTLPIrQ==} - rrweb-snapshot@2.0.0-alpha.4: - resolution: {integrity: sha512-KQ2OtPpXO5jLYqg1OnXS/Hf+EzqnZyP5A+XPqBCjYpj3XIje/Od4gdUwjbFo3cVuWq5Cw5Y1d3/xwgIS7/XpQQ==} - - rrweb@2.0.0-alpha.4: - resolution: {integrity: sha512-wEHUILbxDPcNwkM3m4qgPgXAiBJyqCbbOHyVoNEVBJzHszWEFYyTbrZqUdeb1EfmTRC2PsumCIkVcomJ/xcOzA==} + rrweb@2.0.0-alpha.13: + resolution: {integrity: sha512-a8GXOCnzWHNaVZPa7hsrLZtNZ3CGjiL+YrkpLo0TfmxGLhjNZbWY2r7pE06p+FcjFNlgUVTmFrSJbK3kO7yxvw==} run-async@2.4.1: resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} @@ -28250,9 +28210,6 @@ packages: resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} engines: {node: '>=v12.22.7'} - scheduler@0.20.2: - resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} - scheduler@0.23.0: resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} @@ -29882,9 +29839,6 @@ packages: tslib@2.3.1: resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} - tslib@2.4.0: - resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - tslib@2.5.0: resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} @@ -29987,8 +29941,8 @@ packages: resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} engines: {node: '>=12.20'} - type-fest@4.18.2: - resolution: {integrity: sha512-+suCYpfJLAe4OXS6+PPXjW3urOS4IoP9waSiLuXfLgqZODKw/aWwASvzqE886wA0kQgGy0mIWyhd87VpqIy6Xg==} + type-fest@4.18.3: + resolution: {integrity: sha512-Q08/0IrpvM+NMY9PA2rti9Jb+JejTddwmwmVQGskAlhtcrw1wsRzoR6ode6mR+OAabNa75w/dxedSUY2mlphaQ==} engines: {node: '>=16'} type-is@1.6.18: @@ -30070,8 +30024,8 @@ packages: ua-parser-js@0.7.35: resolution: {integrity: sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==} - ua-parser-js@1.0.37: - resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==} + ua-parser-js@1.0.38: + resolution: {integrity: sha512-Aq5ppTOfvrCMgAPneW1HfWj66Xi7XL+/mIy996R1/CLS/rcyJQm6QZdsKrUeivDFQ+Oc9Wyuwor8Ze8peEoUoQ==} uc.micro@1.0.6: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} @@ -30346,7 +30300,7 @@ packages: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -30391,7 +30345,7 @@ packages: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: '@types/react': @@ -31474,7 +31428,7 @@ packages: resolution: {integrity: sha512-2cN1tPkDVkwCy5ickKrI7vijSjPksFRfqS6237NzT0vqSsztTNnQdHw9mmN7uBdk3gceVXU0a+21jFzFzAc9+g==} engines: {node: '>=12.7.0'} peerDependencies: - '@types/react': 17.0.62 + '@types/react': '>=16.8' immer: '>=9.0.6' react: '>=16.8' peerDependenciesMeta: @@ -31784,53 +31738,42 @@ snapshots: '@ant-design/icons-svg@4.2.1': {} - '@ant-design/icons@4.6.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': - dependencies: - '@ant-design/colors': 6.0.0 - '@ant-design/icons-svg': 4.2.1 - '@babel/runtime': 7.23.2 - classnames: 2.3.2 - rc-util: 5.29.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 - transitivePeerDependencies: - - react-dom - - '@ant-design/icons@4.8.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@ant-design/icons@4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@ant-design/colors': 6.0.0 '@ant-design/icons-svg': 4.2.1 '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3(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) + rc-util: 5.29.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - '@ant-design/icons@4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@ant-design/icons@4.8.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@ant-design/colors': 6.0.0 '@ant-design/icons-svg': 4.2.1 '@babel/runtime': 7.21.0 classnames: 2.3.2 - rc-util: 5.29.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@ant-design/react-slick@0.29.2(react@17.0.2)': + '@ant-design/react-slick@0.29.2(react@18.2.0)': dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 json2mq: 0.2.0 lodash: 4.17.21 - react: 17.0.2 + react: 18.2.0 resize-observer-polyfill: 1.5.1 - '@ant-design/react-slick@0.29.2(react@18.2.0)': + '@ant-design/react-slick@0.29.2(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 json2mq: 0.2.0 lodash: 4.17.21 - react: 18.2.0 + react: 18.3.1 resize-observer-polyfill: 1.5.1 '@apideck/better-ajv-errors@0.3.6(ajv@8.12.0)': @@ -31873,10 +31816,10 @@ snapshots: dependencies: prismjs: 1.29.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))': + '@astrojs/react@3.0.10(@types/react-dom@18.3.0)(@types/react@18.3.3)(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.62 - '@types/react-dom': 17.0.19 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 '@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 react-dom: 18.2.0(react@18.2.0) @@ -31885,10 +31828,10 @@ snapshots: - supports-color - vite - '@astrojs/react@3.0.10(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.1.7(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0))': + '@astrojs/react@3.0.10(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.1.7(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0))': dependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 '@vitejs/plugin-react': 4.2.1(vite@5.1.7(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -37477,137 +37420,129 @@ snapshots: '@bcoe/v8-coverage@0.2.3': {} - '@chakra-ui/accordion@1.4.12(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2)': - dependencies: - '@chakra-ui/descendant': 2.1.4(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/transition': 1.4.8(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - framer-motion: 5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 - - '@chakra-ui/accordion@1.4.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/accordion@1.4.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/descendant': 2.1.4(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/transition': 1.4.8(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/transition': 1.4.8(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/alert@1.3.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/accordion@1.4.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/descendant': 2.1.4(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/transition': 1.4.8(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/alert@1.3.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/alert@1.3.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/anatomy@1.3.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))': + '@chakra-ui/alert@1.3.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2)) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + react: 18.3.1 - '@chakra-ui/anatomy@1.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))': + '@chakra-ui/anatomy@1.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))': dependencies: - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)) - - '@chakra-ui/anatomy@2.2.2': {} + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)) - '@chakra-ui/avatar@1.3.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/anatomy@1.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))': dependencies: - '@chakra-ui/image': 1.1.10(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)) - '@chakra-ui/avatar@1.3.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/avatar@1.3.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/image': 1.1.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/image': 1.1.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/breadcrumb@1.3.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/avatar@1.3.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/image': 1.1.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/breadcrumb@1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/breadcrumb@1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/breakpoint-utils@2.0.8': + '@chakra-ui/breadcrumb@1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/shared-utils': 2.0.5 + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + react: 18.3.1 - '@chakra-ui/button@1.5.10(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/breakpoint-utils@2.0.8': dependencies: - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/spinner': 1.2.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/button@1.5.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/button@1.5.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/spinner': 1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/spinner': 1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/checkbox@1.7.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/button@1.5.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/spinner': 1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - framer-motion: 5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/checkbox@1.7.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/checkbox@1.7.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/clickable@1.2.6(react@17.0.2)': + '@chakra-ui/checkbox@1.7.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 '@chakra-ui/clickable@1.2.6(react@18.2.0)': dependencies: @@ -37615,11 +37550,11 @@ snapshots: '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/clickable@2.1.0(react@17.0.2)': + '@chakra-ui/clickable@1.2.6(react@18.3.1)': dependencies: - '@chakra-ui/react-use-merge-refs': 2.1.0(react@17.0.2) - '@chakra-ui/shared-utils': 2.0.5 - react: 17.0.2 + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + react: 18.3.1 '@chakra-ui/clickable@2.1.0(react@18.2.0)': dependencies: @@ -37627,26 +37562,25 @@ snapshots: '@chakra-ui/shared-utils': 2.0.5 react: 18.2.0 - '@chakra-ui/close-button@1.2.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/clickable@2.1.0(react@18.3.1)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1) + '@chakra-ui/shared-utils': 2.0.5 + react: 18.3.1 - '@chakra-ui/close-button@1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/close-button@1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/color-mode@1.4.8(react@17.0.2)': + '@chakra-ui/close-button@1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/react-env': 1.1.6(react@17.0.2) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 '@chakra-ui/color-mode@1.4.8(react@18.2.0)': dependencies: @@ -37655,28 +37589,24 @@ snapshots: '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/color-mode@2.2.0(react@18.2.0)': - dependencies: - '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0) - react: 18.2.0 - - '@chakra-ui/control-box@1.1.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/color-mode@1.4.8(react@18.3.1)': dependencies: - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/react-env': 1.1.6(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/control-box@1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/control-box@1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/counter@1.2.10(react@17.0.2)': + '@chakra-ui/control-box@1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/hooks': 1.9.1(react@17.0.2) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 '@chakra-ui/counter@1.2.10(react@18.2.0)': dependencies: @@ -37684,31 +37614,31 @@ snapshots: '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/css-reset@1.1.3(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(react@17.0.2)': + '@chakra-ui/counter@1.2.10(react@18.3.1)': dependencies: - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@17.0.2) - react: 17.0.2 + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + react: 18.3.1 - '@chakra-ui/css-reset@1.1.3(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)': + '@chakra-ui/css-reset@1.1.3(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)': dependencies: - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.2.0) react: 18.2.0 - '@chakra-ui/descendant@2.1.4(react@17.0.2)': + '@chakra-ui/css-reset@1.1.3(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - react: 17.0.2 + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 '@chakra-ui/descendant@2.1.4(react@18.2.0)': dependencies: '@chakra-ui/react-utils': 1.2.3(react@18.2.0) react: 18.2.0 - '@chakra-ui/descendant@3.1.0(react@17.0.2)': + '@chakra-ui/descendant@2.1.4(react@18.3.1)': dependencies: - '@chakra-ui/react-context': 2.1.0(react@17.0.2) - '@chakra-ui/react-use-merge-refs': 2.1.0(react@17.0.2) - react: 17.0.2 + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + react: 18.3.1 '@chakra-ui/descendant@3.1.0(react@18.2.0)': dependencies: @@ -37716,85 +37646,83 @@ snapshots: '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0) react: 18.2.0 - '@chakra-ui/dom-utils@2.1.0': {} - - '@chakra-ui/editable@1.4.2(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/descendant@3.1.0(react@18.3.1)': dependencies: - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/react-context': 2.1.0(react@18.3.1) + '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1) + react: 18.3.1 - '@chakra-ui/editable@1.4.2(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/dom-utils@2.1.0': {} + + '@chakra-ui/editable@1.4.2(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/focus-lock@1.2.6(@types/react@17.0.62)(react@17.0.2)': + '@chakra-ui/editable@1.4.2(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 - react-focus-lock: 2.5.2(@types/react@17.0.62)(react@17.0.2) - transitivePeerDependencies: - - '@types/react' + react: 18.3.1 - '@chakra-ui/focus-lock@1.2.6(@types/react@17.0.62)(react@18.2.0)': + '@chakra-ui/focus-lock@1.2.6(@types/react@18.3.3)(react@18.2.0)': dependencies: '@chakra-ui/utils': 1.10.4 react: 18.2.0 - react-focus-lock: 2.5.2(@types/react@17.0.62)(react@18.2.0) + react-focus-lock: 2.5.2(@types/react@18.3.3)(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@chakra-ui/form-control@1.6.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/focus-lock@1.2.6(@types/react@18.3.3)(react@18.3.1)': dependencies: - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 + react-focus-lock: 2.5.2(@types/react@18.3.3)(react@18.3.1) + transitivePeerDependencies: + - '@types/react' - '@chakra-ui/form-control@1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/form-control@1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/hooks': 1.9.1(react@18.2.0) - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/form-control@1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-context': 2.1.0(react@17.0.2) - '@chakra-ui/react-types': 2.0.7(react@17.0.2) - '@chakra-ui/react-use-merge-refs': 2.1.0(react@17.0.2) - '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - react: 17.0.2 + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + react: 18.3.1 - '@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/react-context': 2.1.0(react@18.2.0) '@chakra-ui/react-types': 2.0.7(react@18.2.0) '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/hooks@1.9.1(react@17.0.2)': + '@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - compute-scroll-into-view: 1.0.14 - copy-to-clipboard: 3.3.1 - react: 17.0.2 + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-context': 2.1.0(react@18.3.1) + '@chakra-ui/react-types': 2.0.7(react@18.3.1) + '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1) + '@chakra-ui/shared-utils': 2.0.5 + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + react: 18.3.1 '@chakra-ui/hooks@1.9.1(react@18.2.0)': dependencies: @@ -37804,202 +37732,189 @@ snapshots: copy-to-clipboard: 3.3.1 react: 18.2.0 - '@chakra-ui/icon@2.0.5(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/hooks@1.9.1(react@18.3.1)': dependencies: - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + compute-scroll-into-view: 1.0.14 + copy-to-clipboard: 3.3.1 + react: 18.3.1 - '@chakra-ui/icon@2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/icon@2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/icon@2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - react: 17.0.2 + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + react: 18.3.1 - '@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - react: 17.0.2 + '@chakra-ui/shared-utils': 2.0.5 + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/icons@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/image@1.1.10(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/image@1.1.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/image@1.1.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/hooks': 1.9.1(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/input@1.4.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/image@1.1.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/input@1.4.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/input@1.4.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/layout@1.8.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/input@1.4.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/layout@1.8.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/layout@1.8.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/layout@1.8.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/breakpoint-utils': 2.0.8 - '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/object-utils': 2.1.0 - '@chakra-ui/react-children-utils': 2.0.6(react@17.0.2) - '@chakra-ui/react-context': 2.1.0(react@17.0.2) - '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - react: 17.0.2 + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + react: 18.3.1 - '@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/breakpoint-utils': 2.0.8 - '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/object-utils': 2.1.0 '@chakra-ui/react-children-utils': 2.0.6(react@18.2.0) '@chakra-ui/react-context': 2.1.0(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/lazy-utils@2.0.5': {} - - '@chakra-ui/live-region@1.1.6(react@17.0.2)': + '@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/breakpoint-utils': 2.0.8 + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/object-utils': 2.1.0 + '@chakra-ui/react-children-utils': 2.0.6(react@18.3.1) + '@chakra-ui/react-context': 2.1.0(react@18.3.1) + '@chakra-ui/shared-utils': 2.0.5 + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + react: 18.3.1 + + '@chakra-ui/lazy-utils@2.0.5': {} '@chakra-ui/live-region@1.1.6(react@18.2.0)': dependencies: '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/media-query@2.0.4(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2)))(react@17.0.2)': + '@chakra-ui/live-region@1.1.6(react@18.3.1)': dependencies: - '@chakra-ui/react-env': 1.1.6(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2)) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/media-query@2.0.4(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)))(react@18.2.0)': + '@chakra-ui/media-query@2.0.4(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)))(react@18.2.0)': dependencies: '@chakra-ui/react-env': 1.1.6(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/media-query@2.0.4(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)))(react@18.3.1)': dependencies: - '@chakra-ui/breakpoint-utils': 2.0.8 - '@chakra-ui/react-env': 3.1.0(react@17.0.2) - '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - react: 17.0.2 + '@chakra-ui/react-env': 1.1.6(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)) + '@chakra-ui/utils': 1.10.4 + react: 18.3.1 - '@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/breakpoint-utils': 2.0.8 '@chakra-ui/react-env': 3.1.0(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/menu@1.8.12(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/clickable': 1.2.6(react@17.0.2) - '@chakra-ui/descendant': 2.1.4(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/popper': 2.4.3(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/transition': 1.4.8(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - framer-motion: 5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 + '@chakra-ui/breakpoint-utils': 2.0.8 + '@chakra-ui/react-env': 3.1.0(react@18.3.1) + '@chakra-ui/shared-utils': 2.0.5 + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/menu@1.8.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/menu@1.8.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/clickable': 1.2.6(react@18.2.0) '@chakra-ui/descendant': 2.1.4(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/popper': 2.4.3(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/transition': 1.4.8(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/transition': 1.4.8(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/menu@1.8.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/clickable': 2.1.0(react@17.0.2) - '@chakra-ui/descendant': 3.1.0(react@17.0.2) - '@chakra-ui/lazy-utils': 2.0.5 - '@chakra-ui/popper': 3.1.0(react@17.0.2) - '@chakra-ui/react-children-utils': 2.0.6(react@17.0.2) - '@chakra-ui/react-context': 2.1.0(react@17.0.2) - '@chakra-ui/react-use-animation-state': 2.1.0(react@17.0.2) - '@chakra-ui/react-use-controllable-state': 2.1.0(react@17.0.2) - '@chakra-ui/react-use-disclosure': 2.1.0(react@17.0.2) - '@chakra-ui/react-use-focus-effect': 2.1.0(react@17.0.2) - '@chakra-ui/react-use-merge-refs': 2.1.0(react@17.0.2) - '@chakra-ui/react-use-outside-click': 2.2.0(react@17.0.2) - '@chakra-ui/react-use-update-effect': 2.1.0(react@17.0.2) - '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/transition': 2.1.0(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - framer-motion: 5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 + '@chakra-ui/clickable': 1.2.6(react@18.3.1) + '@chakra-ui/descendant': 2.1.4(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/popper': 2.4.3(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/transition': 1.4.8(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/clickable': 2.1.0(react@18.2.0) '@chakra-ui/descendant': 3.1.0(react@18.2.0) @@ -38015,116 +37930,131 @@ snapshots: '@chakra-ui/react-use-outside-click': 2.2.0(react@18.2.0) '@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0) '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/transition': 2.1.0(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/transition': 2.1.0(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/modal@1.11.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@types/react@17.0.62)(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/focus-lock': 1.2.6(@types/react@17.0.62)(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/portal': 1.3.10(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/transition': 1.4.8(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - aria-hidden: 1.2.3 - framer-motion: 5.6.0(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-remove-scroll: 2.4.1(@types/react@17.0.62)(react@17.0.2) - transitivePeerDependencies: - - '@types/react' + '@chakra-ui/clickable': 2.1.0(react@18.3.1) + '@chakra-ui/descendant': 3.1.0(react@18.3.1) + '@chakra-ui/lazy-utils': 2.0.5 + '@chakra-ui/popper': 3.1.0(react@18.3.1) + '@chakra-ui/react-children-utils': 2.0.6(react@18.3.1) + '@chakra-ui/react-context': 2.1.0(react@18.3.1) + '@chakra-ui/react-use-animation-state': 2.1.0(react@18.3.1) + '@chakra-ui/react-use-controllable-state': 2.1.0(react@18.3.1) + '@chakra-ui/react-use-disclosure': 2.1.0(react@18.3.1) + '@chakra-ui/react-use-focus-effect': 2.1.0(react@18.3.1) + '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1) + '@chakra-ui/react-use-outside-click': 2.2.0(react@18.3.1) + '@chakra-ui/react-use-update-effect': 2.1.0(react@18.3.1) + '@chakra-ui/shared-utils': 2.0.5 + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/transition': 2.1.0(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/modal@1.11.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@types/react@17.0.62)(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@chakra-ui/modal@1.11.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@types/react@18.3.3)(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/focus-lock': 1.2.6(@types/react@17.0.62)(react@18.2.0) + '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/focus-lock': 1.2.6(@types/react@18.3.3)(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/portal': 1.3.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/transition': 1.4.8(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/transition': 1.4.8(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 aria-hidden: 1.2.3 - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.4.1(@types/react@17.0.62)(react@18.2.0) + react-remove-scroll: 2.4.1(@types/react@18.3.3)(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@chakra-ui/number-input@1.4.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/modal@1.11.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/counter': 1.2.10(react@17.0.2) - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/focus-lock': 1.2.6(@types/react@18.3.3)(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/portal': 1.3.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/transition': 1.4.8(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + aria-hidden: 1.2.3 + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.4.1(@types/react@18.3.3)(react@18.3.1) + transitivePeerDependencies: + - '@types/react' - '@chakra-ui/number-input@1.4.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/number-input@1.4.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/counter': 1.2.10(react@18.2.0) - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/object-utils@2.1.0': {} - - '@chakra-ui/pin-input@1.7.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/number-input@1.4.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/descendant': 2.1.4(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/counter': 1.2.10(react@18.3.1) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 + + '@chakra-ui/object-utils@2.1.0': {} - '@chakra-ui/pin-input@1.7.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/pin-input@1.7.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/descendant': 2.1.4(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/popover@1.11.9(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/pin-input@1.7.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/popper': 2.4.3(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/descendant': 2.1.4(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - framer-motion: 5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/popover@1.11.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/popover@1.11.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/popper': 2.4.3(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/popper@2.4.3(react@17.0.2)': + '@chakra-ui/popover@1.11.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@popperjs/core': 2.11.7 - react: 17.0.2 + '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/popper': 2.4.3(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 '@chakra-ui/popper@2.4.3(react@18.2.0)': dependencies: @@ -38132,12 +38062,11 @@ snapshots: '@popperjs/core': 2.11.7 react: 18.2.0 - '@chakra-ui/popper@3.1.0(react@17.0.2)': + '@chakra-ui/popper@2.4.3(react@18.3.1)': dependencies: - '@chakra-ui/react-types': 2.0.7(react@17.0.2) - '@chakra-ui/react-use-merge-refs': 2.1.0(react@17.0.2) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) '@popperjs/core': 2.11.7 - react: 17.0.2 + react: 18.3.1 '@chakra-ui/popper@3.1.0(react@18.2.0)': dependencies: @@ -38146,13 +38075,12 @@ snapshots: '@popperjs/core': 2.11.7 react: 18.2.0 - '@chakra-ui/portal@1.3.10(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@chakra-ui/popper@3.1.0(react@18.3.1)': dependencies: - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + '@chakra-ui/react-types': 2.0.7(react@18.3.1) + '@chakra-ui/react-use-merge-refs': 2.1.0(react@18.3.1) + '@popperjs/core': 2.11.7 + react: 18.3.1 '@chakra-ui/portal@1.3.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: @@ -38162,115 +38090,117 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@chakra-ui/progress@1.2.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/portal@1.3.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2)) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@chakra-ui/progress@1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/progress@1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/provider@1.7.14(@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))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@chakra-ui/progress@1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/css-reset': 1.1.3(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/portal': 1.3.10(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-env': 1.1.6(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)) '@chakra-ui/utils': 1.10.4 - '@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) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 - '@chakra-ui/provider@1.7.14(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@chakra-ui/provider@1.7.14(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/css-reset': 1.1.3(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/css-reset': 1.1.3(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/portal': 1.3.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@chakra-ui/react-env': 1.1.6(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@18.2.0) - '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@chakra-ui/radio@1.5.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/provider@1.7.14(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/css-reset': 1.1.3(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/portal': 1.3.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-env': 1.1.6(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - react: 17.0.2 + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@chakra-ui/radio@1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/radio@1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/react-children-utils@2.0.6(react@17.0.2)': + '@chakra-ui/radio@1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - react: 17.0.2 + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + react: 18.3.1 '@chakra-ui/react-children-utils@2.0.6(react@18.2.0)': dependencies: react: 18.2.0 - '@chakra-ui/react-context@2.1.0(react@17.0.2)': + '@chakra-ui/react-children-utils@2.0.6(react@18.3.1)': dependencies: - react: 17.0.2 + react: 18.3.1 '@chakra-ui/react-context@2.1.0(react@18.2.0)': dependencies: react: 18.2.0 - '@chakra-ui/react-env@1.1.6(react@17.0.2)': + '@chakra-ui/react-context@2.1.0(react@18.3.1)': dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 '@chakra-ui/react-env@1.1.6(react@18.2.0)': dependencies: '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/react-env@3.1.0(react@17.0.2)': + '@chakra-ui/react-env@1.1.6(react@18.3.1)': dependencies: - '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@17.0.2) - react: 17.0.2 + '@chakra-ui/utils': 1.10.4 + react: 18.3.1 '@chakra-ui/react-env@3.1.0(react@18.2.0)': dependencies: '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.2.0) react: 18.2.0 - '@chakra-ui/react-types@2.0.7(react@17.0.2)': + '@chakra-ui/react-env@3.1.0(react@18.3.1)': dependencies: - react: 17.0.2 + '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.3.1) + react: 18.3.1 '@chakra-ui/react-types@2.0.7(react@18.2.0)': dependencies: react: 18.2.0 - '@chakra-ui/react-use-animation-state@2.1.0(react@17.0.2)': + '@chakra-ui/react-types@2.0.7(react@18.3.1)': dependencies: - '@chakra-ui/dom-utils': 2.1.0 - '@chakra-ui/react-use-event-listener': 2.1.0(react@17.0.2) - react: 17.0.2 + react: 18.3.1 '@chakra-ui/react-use-animation-state@2.1.0(react@18.2.0)': dependencies: @@ -38278,51 +38208,49 @@ snapshots: '@chakra-ui/react-use-event-listener': 2.1.0(react@18.2.0) react: 18.2.0 - '@chakra-ui/react-use-callback-ref@2.1.0(react@17.0.2)': + '@chakra-ui/react-use-animation-state@2.1.0(react@18.3.1)': dependencies: - react: 17.0.2 + '@chakra-ui/dom-utils': 2.1.0 + '@chakra-ui/react-use-event-listener': 2.1.0(react@18.3.1) + react: 18.3.1 '@chakra-ui/react-use-callback-ref@2.1.0(react@18.2.0)': dependencies: react: 18.2.0 - '@chakra-ui/react-use-controllable-state@2.1.0(react@17.0.2)': + '@chakra-ui/react-use-callback-ref@2.1.0(react@18.3.1)': dependencies: - '@chakra-ui/react-use-callback-ref': 2.1.0(react@17.0.2) - react: 17.0.2 + react: 18.3.1 '@chakra-ui/react-use-controllable-state@2.1.0(react@18.2.0)': dependencies: '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0) react: 18.2.0 - '@chakra-ui/react-use-disclosure@2.1.0(react@17.0.2)': + '@chakra-ui/react-use-controllable-state@2.1.0(react@18.3.1)': dependencies: - '@chakra-ui/react-use-callback-ref': 2.1.0(react@17.0.2) - react: 17.0.2 + '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.3.1) + react: 18.3.1 '@chakra-ui/react-use-disclosure@2.1.0(react@18.2.0)': dependencies: '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0) react: 18.2.0 - '@chakra-ui/react-use-event-listener@2.1.0(react@17.0.2)': + '@chakra-ui/react-use-disclosure@2.1.0(react@18.3.1)': dependencies: - '@chakra-ui/react-use-callback-ref': 2.1.0(react@17.0.2) - react: 17.0.2 + '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.3.1) + react: 18.3.1 '@chakra-ui/react-use-event-listener@2.1.0(react@18.2.0)': dependencies: '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0) react: 18.2.0 - '@chakra-ui/react-use-focus-effect@2.1.0(react@17.0.2)': + '@chakra-ui/react-use-event-listener@2.1.0(react@18.3.1)': dependencies: - '@chakra-ui/dom-utils': 2.1.0 - '@chakra-ui/react-use-event-listener': 2.1.0(react@17.0.2) - '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@17.0.2) - '@chakra-ui/react-use-update-effect': 2.1.0(react@17.0.2) - react: 17.0.2 + '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.3.1) + react: 18.3.1 '@chakra-ui/react-use-focus-effect@2.1.0(react@18.2.0)': dependencies: @@ -38332,511 +38260,474 @@ snapshots: '@chakra-ui/react-use-update-effect': 2.1.0(react@18.2.0) react: 18.2.0 - '@chakra-ui/react-use-merge-refs@2.1.0(react@17.0.2)': + '@chakra-ui/react-use-focus-effect@2.1.0(react@18.3.1)': dependencies: - react: 17.0.2 + '@chakra-ui/dom-utils': 2.1.0 + '@chakra-ui/react-use-event-listener': 2.1.0(react@18.3.1) + '@chakra-ui/react-use-safe-layout-effect': 2.1.0(react@18.3.1) + '@chakra-ui/react-use-update-effect': 2.1.0(react@18.3.1) + react: 18.3.1 '@chakra-ui/react-use-merge-refs@2.1.0(react@18.2.0)': dependencies: react: 18.2.0 - '@chakra-ui/react-use-outside-click@2.2.0(react@17.0.2)': + '@chakra-ui/react-use-merge-refs@2.1.0(react@18.3.1)': dependencies: - '@chakra-ui/react-use-callback-ref': 2.1.0(react@17.0.2) - react: 17.0.2 + react: 18.3.1 '@chakra-ui/react-use-outside-click@2.2.0(react@18.2.0)': dependencies: '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.2.0) react: 18.2.0 - '@chakra-ui/react-use-safe-layout-effect@2.1.0(react@17.0.2)': + '@chakra-ui/react-use-outside-click@2.2.0(react@18.3.1)': dependencies: - react: 17.0.2 + '@chakra-ui/react-use-callback-ref': 2.1.0(react@18.3.1) + react: 18.3.1 '@chakra-ui/react-use-safe-layout-effect@2.1.0(react@18.2.0)': dependencies: react: 18.2.0 - '@chakra-ui/react-use-update-effect@2.1.0(react@17.0.2)': + '@chakra-ui/react-use-safe-layout-effect@2.1.0(react@18.3.1)': dependencies: - react: 17.0.2 + react: 18.3.1 '@chakra-ui/react-use-update-effect@2.1.0(react@18.2.0)': dependencies: react: 18.2.0 - '@chakra-ui/react-utils@1.2.3(react@17.0.2)': + '@chakra-ui/react-use-update-effect@2.1.0(react@18.3.1)': dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 '@chakra-ui/react-utils@1.2.3(react@18.2.0)': dependencies: '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/react-utils@2.0.12(react@18.2.0)': + '@chakra-ui/react-utils@1.2.3(react@18.3.1)': dependencies: - '@chakra-ui/utils': 2.0.15 - react: 18.2.0 - - '@chakra-ui/react@1.8.9(@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/react@17.0.62)(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': - dependencies: - '@chakra-ui/accordion': 1.4.12(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - '@chakra-ui/alert': 1.3.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/avatar': 1.3.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/breadcrumb': 1.3.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/button': 1.5.10(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/checkbox': 1.7.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/control-box': 1.1.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/counter': 1.2.10(react@17.0.2) - '@chakra-ui/css-reset': 1.1.3(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(react@17.0.2) - '@chakra-ui/editable': 1.4.2(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/image': 1.1.10(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/input': 1.4.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/layout': 1.8.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/live-region': 1.1.6(react@17.0.2) - '@chakra-ui/media-query': 2.0.4(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2)))(react@17.0.2) - '@chakra-ui/menu': 1.8.12(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - '@chakra-ui/modal': 1.11.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@types/react@17.0.62)(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@chakra-ui/number-input': 1.4.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/pin-input': 1.7.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/popover': 1.11.9(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - '@chakra-ui/popper': 2.4.3(react@17.0.2) - '@chakra-ui/portal': 1.3.10(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@chakra-ui/progress': 1.2.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/provider': 1.7.14(@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))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@chakra-ui/radio': 1.5.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-env': 1.1.6(react@17.0.2) - '@chakra-ui/select': 1.2.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/skeleton': 1.2.14(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@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))(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))(react@17.0.2) - '@chakra-ui/slider': 1.5.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/spinner': 1.2.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/stat': 1.2.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/switch': 1.3.10(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/table': 1.3.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/tabs': 1.6.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/tag': 1.2.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/textarea': 1.2.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2)) - '@chakra-ui/toast': 1.5.9(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@chakra-ui/tooltip': 1.5.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@chakra-ui/transition': 1.4.8(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(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) - framer-motion: 5.6.0(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) - transitivePeerDependencies: - - '@types/react' + react: 18.3.1 - '@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/accordion': 1.4.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/alert': 1.3.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/avatar': 1.3.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/breadcrumb': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/button': 1.5.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/checkbox': 1.7.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/control-box': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/accordion': 1.4.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/alert': 1.3.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/avatar': 1.3.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/breadcrumb': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/button': 1.5.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/checkbox': 1.7.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/control-box': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/counter': 1.2.10(react@18.2.0) - '@chakra-ui/css-reset': 1.1.3(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/editable': 1.4.2(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/css-reset': 1.1.3(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/editable': 1.4.2(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/image': 1.1.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/input': 1.4.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/layout': 1.8.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/image': 1.1.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/input': 1.4.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/layout': 1.8.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/live-region': 1.1.6(react@18.2.0) - '@chakra-ui/media-query': 2.0.4(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)))(react@18.2.0) - '@chakra-ui/menu': 1.8.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/modal': 1.11.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@types/react@17.0.62)(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@chakra-ui/number-input': 1.4.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/pin-input': 1.7.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/popover': 1.11.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/media-query': 2.0.4(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)))(react@18.2.0) + '@chakra-ui/menu': 1.8.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/modal': 1.11.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@types/react@18.3.3)(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/number-input': 1.4.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/pin-input': 1.7.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/popover': 1.11.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/popper': 2.4.3(react@18.2.0) '@chakra-ui/portal': 1.3.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@chakra-ui/progress': 1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/provider': 1.7.14(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@chakra-ui/radio': 1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/progress': 1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/provider': 1.7.14(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/radio': 1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/react-env': 1.1.6(react@18.2.0) - '@chakra-ui/select': 1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/skeleton': 1.2.14(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)))(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/slider': 1.5.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/spinner': 1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/stat': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/switch': 1.3.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/table': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/tabs': 1.6.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/tag': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/textarea': 1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)) - '@chakra-ui/toast': 1.5.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@chakra-ui/tooltip': 1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@chakra-ui/transition': 1.4.8(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/select': 1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/skeleton': 1.2.14(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/slider': 1.5.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/spinner': 1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/stat': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/switch': 1.3.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/table': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/tabs': 1.6.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/tag': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/textarea': 1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)) + '@chakra-ui/toast': 1.5.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/tooltip': 1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/transition': 1.4.8(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@18.2.0) - '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0) - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - '@types/react' - '@chakra-ui/select@1.2.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': - dependencies: - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@chakra-ui/accordion': 1.4.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/alert': 1.3.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/avatar': 1.3.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/breadcrumb': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/button': 1.5.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/checkbox': 1.7.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/control-box': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/counter': 1.2.10(react@18.3.1) + '@chakra-ui/css-reset': 1.1.3(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/editable': 1.4.2(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/image': 1.1.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/input': 1.4.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/layout': 1.8.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/live-region': 1.1.6(react@18.3.1) + '@chakra-ui/media-query': 2.0.4(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)))(react@18.3.1) + '@chakra-ui/menu': 1.8.12(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/modal': 1.11.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@types/react@18.3.3)(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@chakra-ui/number-input': 1.4.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/pin-input': 1.7.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/popover': 1.11.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/popper': 2.4.3(react@18.3.1) + '@chakra-ui/portal': 1.3.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@chakra-ui/progress': 1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/provider': 1.7.14(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@chakra-ui/radio': 1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-env': 1.1.6(react@18.3.1) + '@chakra-ui/select': 1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/skeleton': 1.2.14(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/slider': 1.5.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/spinner': 1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/stat': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/switch': 1.3.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/table': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/tabs': 1.6.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/tag': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/textarea': 1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)) + '@chakra-ui/toast': 1.5.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@chakra-ui/tooltip': 1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@chakra-ui/transition': 1.4.8(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + transitivePeerDependencies: + - '@types/react' - '@chakra-ui/select@1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/select@1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/shared-utils@2.0.5': {} - - '@chakra-ui/skeleton@1.2.14(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@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))(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))(react@17.0.2)': + '@chakra-ui/select@1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/media-query': 2.0.4(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2)))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2)) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - '@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) - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/skeleton@1.2.14(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)))(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)': + '@chakra-ui/shared-utils@2.0.5': {} + + '@chakra-ui/skeleton@1.2.14(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/hooks': 1.9.1(react@18.2.0) - '@chakra-ui/media-query': 2.0.4(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)))(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)) + '@chakra-ui/media-query': 2.0.4(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)) '@chakra-ui/utils': 1.10.4 - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@18.2.0) - '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0) react: 18.2.0 - '@chakra-ui/slider@1.5.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/skeleton@1.2.14(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/media-query': 2.0.4(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 - '@chakra-ui/slider@1.5.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/slider@1.5.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/spinner@1.2.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/slider@1.5.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/spinner@1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/spinner@1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/spinner@1.2.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - react: 17.0.2 + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/system': 2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/stat@1.2.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - react: 17.0.2 + '@chakra-ui/shared-utils': 2.0.5 + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/stat@1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/stat@1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/styled-system@1.19.0': + '@chakra-ui/stat@1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - csstype: 3.0.9 - - '@chakra-ui/styled-system@2.9.2': - dependencies: - '@chakra-ui/shared-utils': 2.0.5 - csstype: 3.1.2 - lodash.mergewith: 4.6.2 + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/switch@1.3.10(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/styled-system@1.19.0': dependencies: - '@chakra-ui/checkbox': 1.7.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) '@chakra-ui/utils': 1.10.4 - framer-motion: 5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 + csstype: 3.0.9 - '@chakra-ui/switch@1.3.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/switch@1.3.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/checkbox': 1.7.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/checkbox': 1.7.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/system@1.12.1(@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))(react@17.0.2)': + '@chakra-ui/switch@1.3.10(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/color-mode': 1.4.8(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/styled-system': 1.19.0 + '@chakra-ui/checkbox': 1.7.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - '@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) - react: 17.0.2 - react-fast-compare: 3.2.0 + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)': + '@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/color-mode': 1.4.8(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) '@chakra-ui/styled-system': 1.19.0 '@chakra-ui/utils': 1.10.4 - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@18.2.0) - '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.2.0) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0) react: 18.2.0 react-fast-compare: 3.2.0 - '@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)': - dependencies: - '@chakra-ui/color-mode': 2.2.0(react@18.2.0) - '@chakra-ui/object-utils': 2.1.0 - '@chakra-ui/react-utils': 2.0.12(react@18.2.0) - '@chakra-ui/styled-system': 2.9.2 - '@chakra-ui/theme-utils': 2.0.21 - '@chakra-ui/utils': 2.0.15 - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@18.2.0) - '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0) - react: 18.2.0 - react-fast-compare: 3.2.2 - - '@chakra-ui/table@1.3.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/color-mode': 1.4.8(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/styled-system': 1.19.0 '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-fast-compare: 3.2.0 - '@chakra-ui/table@1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/table@1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/tabs@1.6.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/table@1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/clickable': 1.2.6(react@17.0.2) - '@chakra-ui/descendant': 2.1.4(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/tabs@1.6.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/tabs@1.6.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/clickable': 1.2.6(react@18.2.0) '@chakra-ui/descendant': 2.1.4(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/tag@1.2.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/tabs@1.6.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/clickable': 1.2.6(react@18.3.1) + '@chakra-ui/descendant': 2.1.4(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/tag@1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/tag@1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/textarea@1.2.11(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/tag@1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/icon': 2.0.5(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.3.1 - '@chakra-ui/textarea@1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/textarea@1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 react: 18.2.0 - '@chakra-ui/theme-tools@1.3.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))': + '@chakra-ui/textarea@1.2.11(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/form-control': 1.6.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - '@ctrl/tinycolor': 3.6.0 + react: 18.3.1 - '@chakra-ui/theme-tools@1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))': + '@chakra-ui/theme-tools@1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))': dependencies: - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 '@ctrl/tinycolor': 3.6.0 - '@chakra-ui/theme-tools@2.1.2(@chakra-ui/styled-system@2.9.2)': - dependencies: - '@chakra-ui/anatomy': 2.2.2 - '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/styled-system': 2.9.2 - color2k: 2.0.3 - - '@chakra-ui/theme-utils@2.0.21': - dependencies: - '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/styled-system': 2.9.2 - '@chakra-ui/theme': 3.3.1(@chakra-ui/styled-system@2.9.2) - lodash.mergewith: 4.6.2 - - '@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))': + '@chakra-ui/theme-tools@1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))': dependencies: - '@chakra-ui/anatomy': 1.3.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2)) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2)) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 + '@ctrl/tinycolor': 3.6.0 - '@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))': + '@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))': dependencies: - '@chakra-ui/anatomy': 1.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)) + '@chakra-ui/anatomy': 1.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/theme@3.3.1(@chakra-ui/styled-system@2.9.2)': + '@chakra-ui/theme@1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))': dependencies: - '@chakra-ui/anatomy': 2.2.2 - '@chakra-ui/shared-utils': 2.0.5 - '@chakra-ui/styled-system': 2.9.2 - '@chakra-ui/theme-tools': 2.1.2(@chakra-ui/styled-system@2.9.2) - - '@chakra-ui/toast@1.5.9(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': - dependencies: - '@chakra-ui/alert': 1.3.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2)) - '@chakra-ui/transition': 1.4.8(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) + '@chakra-ui/anatomy': 1.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/theme-tools': 1.3.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)) '@chakra-ui/utils': 1.10.4 - '@reach/alert': 0.13.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - framer-motion: 5.6.0(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) - '@chakra-ui/toast@1.5.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@chakra-ui/toast@1.5.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/alert': 1.3.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/alert': 1.3.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/hooks': 1.9.1(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0)) - '@chakra-ui/transition': 1.4.8(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)) + '@chakra-ui/transition': 1.4.8(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 '@reach/alert': 0.13.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@chakra-ui/tooltip@1.5.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@chakra-ui/toast@1.5.9(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/hooks': 1.9.1(react@17.0.2) - '@chakra-ui/popper': 2.4.3(react@17.0.2) - '@chakra-ui/portal': 1.3.10(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@chakra-ui/react-utils': 1.2.3(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/alert': 1.3.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/close-button': 1.2.7(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/theme': 1.14.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1)) + '@chakra-ui/transition': 1.4.8(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - framer-motion: 5.6.0(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) + '@reach/alert': 0.13.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@chakra-ui/tooltip@1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@chakra-ui/tooltip@1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/hooks': 1.9.1(react@18.2.0) '@chakra-ui/popper': 2.4.3(react@18.2.0) '@chakra-ui/portal': 1.3.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@chakra-ui/react-utils': 1.2.3(react@18.2.0) - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@chakra-ui/transition@1.4.8(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/tooltip@1.5.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@chakra-ui/hooks': 1.9.1(react@18.3.1) + '@chakra-ui/popper': 2.4.3(react@18.3.1) + '@chakra-ui/portal': 1.3.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@chakra-ui/react-utils': 1.2.3(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@chakra-ui/utils': 1.10.4 + '@chakra-ui/visually-hidden': 1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + + '@chakra-ui/transition@1.4.8(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/utils': 1.10.4 - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/transition@1.4.8(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/transition@1.4.8(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: '@chakra-ui/utils': 1.10.4 - framer-motion: 5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 - '@chakra-ui/transition@2.1.0(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/transition@2.1.0(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: '@chakra-ui/shared-utils': 2.0.5 - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@chakra-ui/transition@2.1.0(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/transition@2.1.0(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: '@chakra-ui/shared-utils': 2.0.5 - framer-motion: 5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 '@chakra-ui/utils@1.10.4': dependencies: @@ -38845,24 +38736,17 @@ snapshots: framesync: 5.3.0 lodash.mergewith: 4.6.2 - '@chakra-ui/utils@2.0.15': - dependencies: - '@types/lodash.mergewith': 4.6.7 - css-box-model: 1.2.1 - framesync: 6.1.2 - lodash.mergewith: 4.6.2 - - '@chakra-ui/visually-hidden@1.1.6(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2)': + '@chakra-ui/visually-hidden@1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0)': dependencies: - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + react: 18.2.0 - '@chakra-ui/visually-hidden@1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0)': + '@chakra-ui/visually-hidden@1.1.6(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1)': dependencies: - '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) '@chakra-ui/utils': 1.10.4 - react: 18.2.0 + react: 18.3.1 '@clack/core@0.3.4': dependencies: @@ -39553,7 +39437,7 @@ snapshots: '@emotion/babel-plugin@11.11.0': dependencies: - '@babel/helper-module-imports': 7.22.15 + '@babel/helper-module-imports': 7.24.3 '@babel/runtime': 7.23.2 '@emotion/hash': 0.9.1 '@emotion/memoize': 0.8.1 @@ -39629,35 +39513,35 @@ snapshots: '@emotion/memoize@0.8.1': {} - '@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2)': + '@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0)': 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/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 hoist-non-react-statics: 3.3.2 - react: 17.0.2 + react: 18.2.0 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0)': + '@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1)': 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@18.2.0) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.3.1) '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.3.0 hoist-non-react-statics: 3.3.2 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@emotion/react@11.7.1(@babel/core@7.21.4)(@types/react@17.0.62)(react@17.0.2)': + '@emotion/react@11.7.1(@babel/core@7.21.4)(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@emotion/cache': 11.10.7 @@ -39666,10 +39550,10 @@ snapshots: '@emotion/utils': 1.2.0 '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 - react: 17.0.2 + react: 18.3.1 optionalDependencies: '@babel/core': 7.21.4 - '@types/react': 17.0.62 + '@types/react': 18.3.3 '@emotion/serialize@1.0.2': dependencies: @@ -39699,31 +39583,31 @@ snapshots: '@emotion/sheet@1.2.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)': + '@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0)': 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.62)(react@17.0.2) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.2.0) '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@17.0.2) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) '@emotion/utils': 1.2.0 - react: 17.0.2 + react: 18.2.0 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0)': + '@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1)': 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.62)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) '@emotion/serialize': 1.1.1 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.2.0) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.0(react@18.3.1) '@emotion/utils': 1.2.0 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 '@emotion/unitless@0.7.5': {} @@ -39731,17 +39615,17 @@ snapshots: '@emotion/unitless@0.8.1': {} - '@emotion/use-insertion-effect-with-fallbacks@1.0.0(react@17.0.2)': - dependencies: - react: 17.0.2 - '@emotion/use-insertion-effect-with-fallbacks@1.0.0(react@18.2.0)': dependencies: react: 18.2.0 - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@17.0.2)': + '@emotion/use-insertion-effect-with-fallbacks@1.0.0(react@18.3.1)': dependencies: - react: 17.0.2 + react: 18.3.1 + + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': + dependencies: + react: 18.3.1 '@emotion/utils@1.0.0': {} @@ -40201,35 +40085,35 @@ snapshots: '@floating-ui/core': 1.5.0 '@floating-ui/utils': 0.1.4 - '@floating-ui/react-dom@1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@floating-ui/react-dom@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@floating-ui/dom': 1.5.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@floating-ui/react-dom@2.0.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@floating-ui/react-dom@2.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@floating-ui/dom': 1.5.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@floating-ui/react-dom@2.0.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@floating-ui/react-dom@2.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@floating-ui/dom': 1.5.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@floating-ui/react@0.19.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@floating-ui/react@0.19.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@floating-ui/react-dom': 1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@floating-ui/react-dom': 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) aria-hidden: 1.2.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) tabbable: 6.1.1 - '@floating-ui/react@0.26.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@floating-ui/react@0.26.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@floating-ui/react-dom': 2.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@floating-ui/utils': 0.2.2 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -40253,11 +40137,11 @@ snapshots: dependencies: '@fortawesome/fontawesome-common-types': 6.4.0 - '@fortawesome/react-fontawesome@0.2.0(@fortawesome/fontawesome-svg-core@6.4.0)(react@17.0.2)': + '@fortawesome/react-fontawesome@0.2.0(@fortawesome/fontawesome-svg-core@6.4.0)(react@18.3.1)': dependencies: '@fortawesome/fontawesome-svg-core': 6.4.0 prop-types: 15.8.1 - react: 17.0.2 + react: 18.3.1 '@gar/promisify@1.1.3': {} @@ -40456,24 +40340,24 @@ snapshots: - aws-crt - supports-color - '@hookform/devtools@4.3.1(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@hookform/devtools@4.3.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@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) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) + '@emotion/styled': 11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1) '@types/lodash': 4.14.192 - little-state-machine: 4.8.0(react@17.0.2) + little-state-machine: 4.8.0(react@18.3.1) lodash: 4.17.21 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-simple-animate: 3.5.2(react-dom@17.0.2(react@17.0.2)) - use-deep-compare-effect: 1.8.1(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-simple-animate: 3.5.2(react-dom@18.3.1(react@18.3.1)) + use-deep-compare-effect: 1.8.1(react@18.3.1) uuid: 8.3.2 transitivePeerDependencies: - '@types/react' - '@hookform/resolvers@2.9.11(react-hook-form@7.43.9(react@17.0.2))': + '@hookform/resolvers@2.9.11(react-hook-form@7.43.9(react@18.3.1))': dependencies: - react-hook-form: 7.43.9(react@17.0.2) + react-hook-form: 7.43.9(react@18.3.1) '@humanwhocodes/config-array@0.11.11': dependencies: @@ -40509,9 +40393,9 @@ snapshots: '@hutson/parse-repository-url@3.0.2': {} - '@icons/material@0.2.4(react@17.0.2)': + '@icons/material@0.2.4(react@18.3.1)': dependencies: - react: 17.0.2 + react: 18.3.1 '@infobip-api/sdk@0.3.2': dependencies: @@ -42095,129 +41979,129 @@ snapshots: transitivePeerDependencies: - debug - '@mantine/code-highlight@7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@mantine/code-highlight@7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@mantine/core': 7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mantine/core': 7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@mantine/hooks': 7.6.2(react@18.2.0) clsx: 2.1.0 highlight.js: 11.9.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@mantine/core@4.2.12(@babel/core@7.21.4)(@mantine/hooks@4.2.12(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@mantine/core@4.2.12(@babel/core@7.21.4)(@mantine/hooks@4.2.12(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@mantine/hooks': 4.2.12(react@17.0.2) - '@mantine/styles': 4.2.12(@babel/core@7.21.4)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@mantine/hooks': 4.2.12(react@18.3.1) + '@mantine/styles': 4.2.12(@babel/core@7.21.4)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@popperjs/core': 2.11.7 - '@radix-ui/react-scroll-area': 0.1.4(react@17.0.2) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-popper: 2.3.0(@popperjs/core@2.11.7)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react-textarea-autosize: 8.4.1(@types/react@17.0.62)(react@17.0.2) + '@radix-ui/react-scroll-area': 0.1.4(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-popper: 2.3.0(@popperjs/core@2.11.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-textarea-autosize: 8.4.1(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@babel/core' - '@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)': + '@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 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.62)(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.62)(react@17.0.2) + '@floating-ui/react': 0.19.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mantine/hooks': 5.10.5(react@18.3.1) + '@mantine/styles': 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mantine/utils': 5.10.5(react@18.3.1) + '@radix-ui/react-scroll-area': 1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-textarea-autosize: 8.3.4(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@emotion/react' - '@types/react' - '@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@floating-ui/react': 0.26.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@floating-ui/react': 0.26.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@mantine/hooks': 7.6.2(react@18.2.0) clsx: 2.1.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-number-format: 5.3.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react-remove-scroll: 2.5.9(@types/react@17.0.62)(react@18.2.0) - react-textarea-autosize: 8.5.3(@types/react@17.0.62)(react@18.2.0) - type-fest: 4.18.2 + react-remove-scroll: 2.5.10(@types/react@18.3.3)(react@18.2.0) + react-textarea-autosize: 8.5.3(@types/react@18.3.3)(react@18.2.0) + type-fest: 4.18.3 transitivePeerDependencies: - '@types/react' - '@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)': + '@mantine/dropzone@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 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) - '@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/core': 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mantine/hooks': 5.10.5(react@18.3.1) + '@mantine/utils': 5.10.5(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-dropzone: 14.2.3(react@18.3.1) - '@mantine/form@5.10.5(react@17.0.2)': + '@mantine/form@5.10.5(react@18.3.1)': dependencies: fast-deep-equal: 3.1.3 klona: 2.0.6 - react: 17.0.2 + react: 18.3.1 - '@mantine/hooks@4.2.12(react@17.0.2)': + '@mantine/hooks@4.2.12(react@18.3.1)': dependencies: - react: 17.0.2 + react: 18.3.1 - '@mantine/hooks@5.10.5(react@17.0.2)': + '@mantine/hooks@5.10.5(react@18.3.1)': dependencies: - react: 17.0.2 + react: 18.3.1 '@mantine/hooks@7.6.2(react@18.2.0)': dependencies: react: 18.2.0 - '@mantine/modals@7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@mantine/modals@7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@mantine/core': 7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mantine/core': 7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@mantine/hooks': 7.6.2(react@18.2.0) 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.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/notifications@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 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) - '@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/core': 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mantine/hooks': 5.10.5(react@18.3.1) + '@mantine/utils': 5.10.5(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-transition-group: 4.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@mantine/notifications@7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@mantine/notifications@7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@mantine/core': 7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mantine/core': 7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@mantine/hooks': 7.6.2(react@18.2.0) '@mantine/store': 7.6.2(react@18.2.0) react: 18.2.0 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.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@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 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) - '@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/core': 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mantine/hooks': 5.10.5(react@18.3.1) + '@mantine/utils': 5.10.5(react@18.3.1) + prism-react-renderer: 1.3.5(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@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)': + '@mantine/spotlight@5.10.5(@mantine/core@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 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) - '@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) + '@mantine/core': 5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@mantine/hooks@5.10.5(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@mantine/hooks': 5.10.5(react@18.3.1) + '@mantine/utils': 5.10.5(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@mantine/spotlight@7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@mantine/spotlight@7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@mantine/core': 7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mantine/core': 7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@mantine/hooks': 7.6.2(react@18.2.0) '@mantine/store': 7.6.2(react@18.2.0) react: 18.2.0 @@ -42227,31 +42111,31 @@ snapshots: dependencies: react: 18.2.0 - '@mantine/styles@4.2.12(@babel/core@7.21.4)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@mantine/styles@4.2.12(@babel/core@7.21.4)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@emotion/cache': 11.7.1 - '@emotion/react': 11.7.1(@babel/core@7.21.4)(@types/react@17.0.62)(react@17.0.2) + '@emotion/react': 11.7.1(@babel/core@7.21.4)(@types/react@18.3.3)(react@18.3.1) '@emotion/serialize': 1.0.2 '@emotion/utils': 1.0.0 clsx: 1.2.1 csstype: 3.0.9 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@babel/core' - '@types/react' - '@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)': + '@mantine/styles@5.10.5(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@17.0.2) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) clsx: 1.1.1 csstype: 3.0.9 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@mantine/utils@5.10.5(react@17.0.2)': + '@mantine/utils@5.10.5(react@18.3.1)': dependencies: - react: 17.0.2 + react: 18.3.1 '@mapbox/node-pre-gyp@1.0.10(encoding@0.1.13)': dependencies: @@ -42268,28 +42152,28 @@ snapshots: - encoding - supports-color - '@mdx-js/react@2.3.0(react@17.0.2)': + '@mdx-js/react@2.3.0(react@18.3.1)': dependencies: '@types/mdx': 2.0.7 - '@types/react': 17.0.62 - react: 17.0.2 + '@types/react': 18.3.3 + react: 18.3.1 - '@mdx-js/react@3.0.1(@types/react@17.0.62)(react@17.0.2)': + '@mdx-js/react@3.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@types/mdx': 2.0.7 - '@types/react': 17.0.62 - react: 17.0.2 + '@types/react': 18.3.3 + react: 18.3.1 '@medv/finder@3.2.0': {} - '@microlink/react-json-view@1.23.0(@types/react@17.0.62)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@microlink/react-json-view@1.23.0(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: flux: 4.0.4(encoding@0.1.13)(react@18.2.0) react: 18.2.0 react-base16-styling: 0.6.0 react-dom: 18.2.0(react@18.2.0) react-lifecycles-compat: 3.0.4 - react-textarea-autosize: 8.3.4(@types/react@17.0.62)(react@18.2.0) + react-textarea-autosize: 8.3.4(@types/react@18.3.3)(react@18.2.0) transitivePeerDependencies: - '@types/react' - encoding @@ -42333,12 +42217,12 @@ snapshots: monaco-editor: 0.45.0 state-local: 1.0.7 - '@monaco-editor/react@4.6.0(monaco-editor@0.45.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@monaco-editor/react@4.6.0(monaco-editor@0.45.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@monaco-editor/loader': 1.4.0(monaco-editor@0.45.0) monaco-editor: 0.45.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@mongodb-js/saslprep@1.1.0': dependencies: @@ -42745,35 +42629,35 @@ snapshots: vue: 3.2.47 vue-resize: 2.0.0-alpha.1(vue@3.2.47) - ? '@novu/studio@0.0.1-alpha.90(@ant-design/icons@4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@babel/core@7.24.4)(@chakra-ui/icons@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@emotion/is-prop-valid@1.2.0)(@opentelemetry/api@1.7.0)(@types/react@17.0.62)(antd@4.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(babel-plugin-macros@3.1.0)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(dayjs@1.11.10)(encoding@0.1.13)(immer@9.0.21)(sass@1.64.1)(webpack@5.88.2(@swc/core@1.3.107))' + ? '@novu/studio@0.0.1-alpha.90(@ant-design/icons@4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@babel/core@7.24.4)(@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@emotion/is-prop-valid@1.2.0)(@opentelemetry/api@1.7.0)(@types/react@18.3.3)(antd@4.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(babel-plugin-macros@3.1.0)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(dayjs@1.11.10)(encoding@0.1.13)(immer@9.0.21)(sass@1.64.1)(webpack@5.88.2(@swc/core@1.3.107))' : dependencies: - '@mantine/code-highlight': 7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@mantine/core': 7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mantine/code-highlight': 7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mantine/core': 7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@mantine/hooks': 7.6.2(react@18.2.0) - '@mantine/modals': 7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@mantine/notifications': 7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@mantine/spotlight': 7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@microlink/react-json-view': 1.23.0(@types/react@17.0.62)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mantine/modals': 7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mantine/notifications': 7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mantine/spotlight': 7.6.2(@mantine/core@7.6.2(@mantine/hooks@7.6.2(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@mantine/hooks@7.6.2(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@microlink/react-json-view': 1.23.0(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@next/bundle-analyzer': 14.2.3 - '@rjsf/antd': 5.18.3(@ant-design/icons@4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0))(@rjsf/utils@5.17.1(react@18.2.0))(antd@4.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(dayjs@1.11.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@rjsf/chakra-ui': 5.17.1(@chakra-ui/icons@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0))(@rjsf/utils@5.17.1(react@18.2.0))(@types/react@17.0.62)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@rjsf/antd': 5.18.4(@ant-design/icons@4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0))(@rjsf/utils@5.17.1(react@18.2.0))(antd@4.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(dayjs@1.11.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@rjsf/chakra-ui': 5.17.1(@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0))(@rjsf/utils@5.17.1(react@18.2.0))(@types/react@18.3.3)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@rjsf/core': 5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0) '@rjsf/utils': 5.17.1(react@18.2.0) '@rjsf/validator-ajv8': 5.17.1(@rjsf/utils@5.17.1(react@18.2.0)) - '@sentry/nextjs': 7.114.0(encoding@0.1.13)(next@14.1.0(@babel/core@7.24.4)(@opentelemetry/api@1.7.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.64.1))(react@18.2.0)(webpack@5.88.2(@swc/core@1.3.107)) + '@sentry/nextjs': 7.116.0(encoding@0.1.13)(next@14.1.0(@babel/core@7.24.4)(@opentelemetry/api@1.7.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.64.1))(react@18.2.0)(webpack@5.88.2(@swc/core@1.3.107)) '@tabler/icons-react': 2.47.0(react@18.2.0) - '@tanstack/react-query': 5.36.0(react@18.2.0) + '@tanstack/react-query': 5.40.0(react@18.2.0) axios: 1.6.8 - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) logrocket: 8.1.0 mixpanel: 0.18.0 - mixpanel-browser: 2.50.0 + mixpanel-browser: 2.51.0 next: 14.1.0(@babel/core@7.24.4)(@opentelemetry/api@1.7.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.64.1) react: 18.2.0 react-confetti: 6.1.0(react@18.2.0) react-diff-viewer-continued: 3.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-dom: 18.2.0(react@18.2.0) - reactflow: 11.11.3(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + reactflow: 11.11.3(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - '@ant-design/icons' - '@babel/core' @@ -45078,9 +44962,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.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)': + '@pandacss/studio@0.38.0(@types/node@12.20.55)(@types/react-dom@18.3.0)(@types/react@18.3.3)(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.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)) + '@astrojs/react': 3.0.10(@types/react-dom@18.3.0)(@types/react@18.3.3)(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 @@ -45105,9 +44989,9 @@ snapshots: - terser - typescript - '@pandacss/studio@0.38.0(@types/node@18.16.9)(@types/react-dom@17.0.20)(@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)': + '@pandacss/studio@0.38.0(@types/node@18.16.9)(@types/react-dom@18.3.0)(@types/react@18.3.3)(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.20)(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.1.7(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) + '@astrojs/react': 3.0.10(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vite@5.1.7(@types/node@18.16.9)(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@18.16.9)(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 @@ -45621,704 +45505,496 @@ snapshots: dependencies: '@babel/runtime': 7.23.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-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.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.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)': - dependencies: - '@babel/runtime': 7.23.2 - '@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) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - optionalDependencies: - '@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.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.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) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.19 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@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)': + '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.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.20)(@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) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@radix-ui/react-compose-refs@0.1.0(react@17.0.2)': + '@radix-ui/react-compose-refs@0.1.0(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 - '@radix-ui/react-compose-refs@1.0.0(react@17.0.2)': + '@radix-ui/react-compose-refs@1.0.0(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 - '@radix-ui/react-compose-refs@1.0.1(@types/react@17.0.62)(react@17.0.2)': + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@radix-ui/react-context@0.1.1(react@17.0.2)': + '@radix-ui/react-context@0.1.1(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 - '@radix-ui/react-context@1.0.0(react@17.0.2)': + '@radix-ui/react-context@1.0.0(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 - '@radix-ui/react-context@1.0.1(@types/react@17.0.62)(react@17.0.2)': + '@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@radix-ui/react-dialog@1.0.5(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@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-dismissable-layer': 1.0.5(@types/react-dom@17.0.20)(@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.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) - '@radix-ui/react-id': 1.0.1(@types/react@17.0.62)(react@17.0.2) - '@radix-ui/react-portal': 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) - '@radix-ui/react-presence': 1.0.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) - '@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) - '@radix-ui/react-slot': 1.0.2(@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-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@18.3.1) 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.62)(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@radix-ui/react-direction@1.0.0(react@17.0.2)': + '@radix-ui/react-direction@1.0.0(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 - - '@radix-ui/react-direction@1.0.1(@types/react@17.0.62)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.62 + react: 18.3.1 - '@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-direction@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/primitive': 1.0.1 - '@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) + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.19 + '@types/react': 18.3.3 - '@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)': + '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@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.20)(@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) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@17.0.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@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.20)(@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.62 - '@types/react-dom': 17.0.20 - - '@radix-ui/react-focus-guards@1.0.1(@types/react@17.0.62)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.62 - - '@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.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) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.19 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@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)': + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.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.20)(@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) + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 - '@radix-ui/react-focus-scope@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)': + '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.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.20)(@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) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@radix-ui/react-id@1.0.1(@types/react@17.0.62)(react@17.0.2)': + '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.62)(react@17.0.2) - react: 17.0.2 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@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-id@1.0.1(@types/react@18.3.3)(react@18.3.1)': 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.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) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.19 + '@types/react': 18.3.3 - '@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)': + '@radix-ui/react-popper@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 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.20)(@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.20)(@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) + '@floating-ui/react-dom': 2.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.3)(react@18.3.1) '@radix-ui/rect': 1.0.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - optionalDependencies: - '@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.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.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) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.19 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@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)': + '@radix-ui/react-portal@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@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) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@radix-ui/react-portal@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)': + '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@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) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@radix-ui/react-presence@0.1.2(react@17.0.2)': + '@radix-ui/react-presence@0.1.2(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 0.1.0(react@17.0.2) - '@radix-ui/react-use-layout-effect': 0.1.0(react@17.0.2) - react: 17.0.2 + '@radix-ui/react-compose-refs': 0.1.0(react@18.3.1) + '@radix-ui/react-use-layout-effect': 0.1.0(react@18.3.1) + react: 18.3.1 - '@radix-ui/react-presence@1.0.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-presence@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) - '@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@radix-ui/react-presence@1.0.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)': + '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 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) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@radix-ui/react-primitive@0.1.4(react@17.0.2)': + '@radix-ui/react-primitive@0.1.4(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-slot': 0.1.2(react@17.0.2) - react: 17.0.2 - - '@radix-ui/react-primitive@1.0.1(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.1(react@17.0.2) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + '@radix-ui/react-slot': 0.1.2(react@18.3.1) + react: 18.3.1 - '@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-primitive@1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.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.62 - '@types/react-dom': 17.0.19 + '@radix-ui/react-slot': 1.0.1(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@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)': + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.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) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@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-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 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.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) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.19 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@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)': - dependencies: - '@babel/runtime': 7.23.2 - '@radix-ui/primitive': 1.0.1 - '@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) - '@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.20)(@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.62 - '@types/react-dom': 17.0.20 - - '@radix-ui/react-scroll-area@0.1.4(react@17.0.2)': + '@radix-ui/react-scroll-area@0.1.4(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/number': 0.1.0 '@radix-ui/primitive': 0.1.0 - '@radix-ui/react-compose-refs': 0.1.0(react@17.0.2) - '@radix-ui/react-context': 0.1.1(react@17.0.2) - '@radix-ui/react-presence': 0.1.2(react@17.0.2) - '@radix-ui/react-primitive': 0.1.4(react@17.0.2) - '@radix-ui/react-use-callback-ref': 0.1.0(react@17.0.2) - '@radix-ui/react-use-direction': 0.1.0(react@17.0.2) - '@radix-ui/react-use-layout-effect': 0.1.0(react@17.0.2) - react: 17.0.2 + '@radix-ui/react-compose-refs': 0.1.0(react@18.3.1) + '@radix-ui/react-context': 0.1.1(react@18.3.1) + '@radix-ui/react-presence': 0.1.2(react@18.3.1) + '@radix-ui/react-primitive': 0.1.4(react@18.3.1) + '@radix-ui/react-use-callback-ref': 0.1.0(react@18.3.1) + '@radix-ui/react-use-direction': 0.1.0(react@18.3.1) + '@radix-ui/react-use-layout-effect': 0.1.0(react@18.3.1) + react: 18.3.1 - '@radix-ui/react-scroll-area@1.0.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@radix-ui/react-scroll-area@1.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/number': 1.0.0 '@radix-ui/primitive': 1.0.0 - '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) - '@radix-ui/react-context': 1.0.0(react@17.0.2) - '@radix-ui/react-direction': 1.0.0(react@17.0.2) - '@radix-ui/react-presence': 1.0.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-primitive': 1.0.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@radix-ui/react-use-callback-ref': 1.0.0(react@17.0.2) - '@radix-ui/react-use-layout-effect': 1.0.0(react@17.0.2) - 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.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.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.62)(react@17.0.2) - optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.19 + '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1) + '@radix-ui/react-context': 1.0.0(react@18.3.1) + '@radix-ui/react-direction': 1.0.0(react@18.3.1) + '@radix-ui/react-presence': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@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)': + '@radix-ui/react-select@1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 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.20)(@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.20)(@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.20)(@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.20)(@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.20)(@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.20)(@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.20)(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 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.62)(react@17.0.2) - optionalDependencies: - '@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.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.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.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)': - dependencies: - '@babel/runtime': 7.23.2 - '@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) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 - - '@radix-ui/react-slot@0.1.2(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 0.1.0(react@17.0.2) - react: 17.0.2 - - '@radix-ui/react-slot@1.0.1(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 1.0.0(react@17.0.2) - react: 17.0.2 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@radix-ui/react-slot@1.0.2(@types/react@17.0.62)(react@17.0.2)': + '@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@17.0.62)(react@17.0.2) - react: 17.0.2 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@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)': + '@radix-ui/react-slot@0.1.2(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/primitive': 1.0.1 - '@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.62 - '@types/react-dom': 17.0.19 + '@radix-ui/react-compose-refs': 0.1.0(react@18.3.1) + react: 18.3.1 - '@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)': + '@radix-ui/react-slot@1.0.1(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/primitive': 1.0.1 - '@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.20)(@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.20)(@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.20)(@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.62 - '@types/react-dom': 17.0.20 + '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1) + react: 18.3.1 - '@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-slot@1.0.2(@types/react@18.3.3)(react@18.3.1)': 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.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) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.19 + '@types/react': 18.3.3 - '@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)': + '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@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) - '@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) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@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)': + '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@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) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.19 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@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)': + '@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@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.20)(@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.20)(@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.20)(@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.20)(@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) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.3)(react@18.3.1) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 - '@radix-ui/react-use-callback-ref@0.1.0(react@17.0.2)': + '@radix-ui/react-use-callback-ref@0.1.0(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 - '@radix-ui/react-use-callback-ref@1.0.0(react@17.0.2)': + '@radix-ui/react-use-callback-ref@1.0.0(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@17.0.62)(react@17.0.2)': + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@17.0.62)(react@17.0.2)': + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.62)(react@17.0.2) - react: 17.0.2 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@radix-ui/react-use-direction@0.1.0(react@17.0.2)': + '@radix-ui/react-use-direction@0.1.0(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@17.0.62)(react@17.0.2)': + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@17.0.62)(react@17.0.2) - react: 17.0.2 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@radix-ui/react-use-layout-effect@0.1.0(react@17.0.2)': + '@radix-ui/react-use-layout-effect@0.1.0(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 - '@radix-ui/react-use-layout-effect@1.0.0(react@17.0.2)': + '@radix-ui/react-use-layout-effect@1.0.0(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@17.0.62)(react@17.0.2)': + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@radix-ui/react-use-previous@1.0.1(@types/react@17.0.62)(react@17.0.2)': + '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@radix-ui/react-use-rect@1.0.1(@types/react@17.0.62)(react@17.0.2)': + '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@radix-ui/rect': 1.0.1 - react: 17.0.2 - optionalDependencies: - '@types/react': 17.0.62 - - '@radix-ui/react-use-size@1.0.1(@types/react@17.0.62)(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@17.0.62)(react@17.0.2) - react: 17.0.2 + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - '@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)': + '@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@18.3.1)': dependencies: '@babel/runtime': 7.23.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) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.19 + '@types/react': 18.3.3 - '@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)': + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - '@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) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - '@types/react-dom': 17.0.20 + '@types/react': 18.3.3 + '@types/react-dom': 18.3.0 '@radix-ui/rect@1.0.1': dependencies: '@babel/runtime': 7.23.2 - '@rc-component/portal@1.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': - dependencies: - '@babel/runtime': 7.23.2 - classnames: 2.3.2 - rc-util: 5.29.3(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) - '@rc-component/portal@1.1.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@babel/runtime': 7.23.2 @@ -46327,14 +46003,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@reach/alert@0.13.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@rc-component/portal@1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@reach/utils': 0.13.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@reach/visually-hidden': 0.13.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - tslib: 2.6.2 + '@babel/runtime': 7.23.2 + classnames: 2.3.2 + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@reach/alert@0.13.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: @@ -46345,13 +46020,14 @@ snapshots: react-dom: 18.2.0(react@18.2.0) tslib: 2.6.2 - '@reach/utils@0.13.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@reach/alert@0.13.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@types/warning': 3.0.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + '@reach/utils': 0.13.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@reach/visually-hidden': 0.13.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) tslib: 2.6.2 - warning: 4.0.3 '@reach/utils@0.13.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: @@ -46361,12 +46037,13 @@ snapshots: tslib: 2.6.2 warning: 4.0.3 - '@reach/visually-hidden@0.13.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@reach/utils@0.13.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + '@types/warning': 3.0.3 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) tslib: 2.6.2 + warning: 4.0.3 '@reach/visually-hidden@0.13.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: @@ -46375,6 +46052,13 @@ snapshots: react-dom: 18.2.0(react@18.2.0) tslib: 2.6.2 + '@reach/visually-hidden@0.13.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + tslib: 2.6.2 + '@react-email/render@0.0.9': dependencies: html-to-text: 9.0.5 @@ -46382,29 +46066,29 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@reactflow/background@11.3.13(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/background@11.3.13(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@reactflow/core': 11.11.3(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.3(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) classcat: 5.0.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.2(@types/react@17.0.62)(immer@9.0.21)(react@18.2.0) + zustand: 4.5.2(@types/react@18.3.3)(immer@9.0.21)(react@18.2.0) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/controls@11.2.13(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/controls@11.2.13(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@reactflow/core': 11.11.3(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.3(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) classcat: 5.0.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.2(@types/react@17.0.62)(immer@9.0.21)(react@18.2.0) + zustand: 4.5.2(@types/react@18.3.3)(immer@9.0.21)(react@18.2.0) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/core@11.11.3(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/core@11.11.3(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@types/d3': 7.4.0 '@types/d3-drag': 3.0.2 @@ -46416,14 +46100,14 @@ snapshots: d3-zoom: 3.0.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.2(@types/react@17.0.62)(immer@9.0.21)(react@18.2.0) + zustand: 4.5.2(@types/react@18.3.3)(immer@9.0.21)(react@18.2.0) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/minimap@11.7.13(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/minimap@11.7.13(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@reactflow/core': 11.11.3(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.3(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@types/d3-selection': 3.0.5 '@types/d3-zoom': 3.0.2 classcat: 5.0.4 @@ -46431,31 +46115,31 @@ snapshots: d3-zoom: 3.0.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.2(@types/react@17.0.62)(immer@9.0.21)(react@18.2.0) + zustand: 4.5.2(@types/react@18.3.3)(immer@9.0.21)(react@18.2.0) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/node-resizer@2.2.13(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/node-resizer@2.2.13(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@reactflow/core': 11.11.3(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.3(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) classcat: 5.0.4 d3-drag: 3.0.0 d3-selection: 3.0.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.2(@types/react@17.0.62)(immer@9.0.21)(react@18.2.0) + zustand: 4.5.2(@types/react@18.3.3)(immer@9.0.21)(react@18.2.0) transitivePeerDependencies: - '@types/react' - immer - '@reactflow/node-toolbar@1.3.13(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@reactflow/node-toolbar@1.3.13(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@reactflow/core': 11.11.3(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.3(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) classcat: 5.0.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - zustand: 4.5.2(@types/react@17.0.62)(immer@9.0.21)(react@18.2.0) + zustand: 4.5.2(@types/react@18.3.3)(immer@9.0.21)(react@18.2.0) transitivePeerDependencies: - '@types/react' - immer @@ -46470,12 +46154,12 @@ snapshots: '@rive-app/canvas@2.10.3': {} - '@rive-app/react-canvas@4.8.3(react@17.0.2)': + '@rive-app/react-canvas@4.8.3(react@18.3.1)': dependencies: '@rive-app/canvas': 2.10.3 - react: 17.0.2 + react: 18.3.1 - '@rjsf/antd@5.18.3(@ant-design/icons@4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0))(@rjsf/utils@5.17.1(react@18.2.0))(antd@4.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(dayjs@1.11.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@rjsf/antd@5.18.4(@ant-design/icons@4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0))(@rjsf/utils@5.17.1(react@18.2.0))(antd@4.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(dayjs@1.11.10)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@ant-design/icons': 4.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@rjsf/core': 5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0) @@ -46490,85 +46174,85 @@ snapshots: transitivePeerDependencies: - react-dom - ? '@rjsf/chakra-ui@5.17.1(@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/react@1.8.9(@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/react@17.0.62)(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@17.0.2))(react@17.0.2))(@rjsf/utils@5.17.1(react@17.0.2))(@types/react@17.0.62)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)' + ? '@rjsf/chakra-ui@5.17.1(@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0))(@rjsf/utils@5.17.1(react@18.2.0))(@types/react@18.3.3)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)' : dependencies: - '@chakra-ui/icons': 2.1.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/react': 1.8.9(@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/react@17.0.62)(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@rjsf/core': 5.17.1(@rjsf/utils@5.17.1(react@17.0.2))(react@17.0.2) - '@rjsf/utils': 5.17.1(react@17.0.2) - chakra-react-select: 4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - framer-motion: 5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react: 17.0.2 - react-select: 5.8.0(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@chakra-ui/icons': 2.1.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/react': 1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@rjsf/core': 5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0) + '@rjsf/utils': 5.17.1(react@18.2.0) + chakra-react-select: 4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + framer-motion: 11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + react-select: 5.8.0(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - '@types/react' - react-dom - ? '@rjsf/chakra-ui@5.17.1(@chakra-ui/icons@2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0))(@rjsf/utils@5.17.1(react@18.2.0))(@types/react@17.0.62)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)' + ? '@rjsf/chakra-ui@5.17.1(@chakra-ui/icons@2.1.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/react@1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.3.1))(react@18.3.1))(@rjsf/utils@5.17.1(react@18.3.1))(@types/react@18.3.3)(chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)' : dependencies: - '@chakra-ui/icons': 2.1.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/react': 1.8.9(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@rjsf/core': 5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0) - '@rjsf/utils': 5.17.1(react@18.2.0) - chakra-react-select: 4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - framer-motion: 11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-select: 5.8.0(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/icons': 2.1.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/react': 1.8.9(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@rjsf/core': 5.17.1(@rjsf/utils@5.17.1(react@18.3.1))(react@18.3.1) + '@rjsf/utils': 5.17.1(react@18.3.1) + chakra-react-select: 4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + framer-motion: 5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-select: 5.8.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@types/react' - react-dom - '@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@17.0.2))(react@17.0.2)': + '@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0)': dependencies: - '@rjsf/utils': 5.17.1(react@17.0.2) + '@rjsf/utils': 5.17.1(react@18.2.0) lodash: 4.17.21 lodash-es: 4.17.21 - markdown-to-jsx: 7.4.1(react@17.0.2) + markdown-to-jsx: 7.4.1(react@18.2.0) nanoid: 3.3.7 prop-types: 15.8.1 - react: 17.0.2 + react: 18.2.0 - '@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))(react@18.2.0)': + '@rjsf/core@5.17.1(@rjsf/utils@5.17.1(react@18.3.1))(react@18.3.1)': dependencies: - '@rjsf/utils': 5.17.1(react@18.2.0) + '@rjsf/utils': 5.17.1(react@18.3.1) lodash: 4.17.21 lodash-es: 4.17.21 - markdown-to-jsx: 7.4.1(react@18.2.0) + markdown-to-jsx: 7.4.1(react@18.3.1) nanoid: 3.3.7 prop-types: 15.8.1 - react: 18.2.0 + react: 18.3.1 - '@rjsf/utils@5.17.1(react@17.0.2)': + '@rjsf/utils@5.17.1(react@18.2.0)': dependencies: json-schema-merge-allof: 0.8.1 jsonpointer: 5.0.1 lodash: 4.17.21 lodash-es: 4.17.21 - react: 17.0.2 + react: 18.2.0 react-is: 18.2.0 - '@rjsf/utils@5.17.1(react@18.2.0)': + '@rjsf/utils@5.17.1(react@18.3.1)': dependencies: json-schema-merge-allof: 0.8.1 jsonpointer: 5.0.1 lodash: 4.17.21 lodash-es: 4.17.21 - react: 18.2.0 + react: 18.3.1 react-is: 18.2.0 - '@rjsf/validator-ajv8@5.17.1(@rjsf/utils@5.17.1(react@17.0.2))': + '@rjsf/validator-ajv8@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))': dependencies: - '@rjsf/utils': 5.17.1(react@17.0.2) + '@rjsf/utils': 5.17.1(react@18.2.0) ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) lodash: 4.17.21 lodash-es: 4.17.21 - '@rjsf/validator-ajv8@5.17.1(@rjsf/utils@5.17.1(react@18.2.0))': + '@rjsf/validator-ajv8@5.17.1(@rjsf/utils@5.17.1(react@18.3.1))': dependencies: - '@rjsf/utils': 5.17.1(react@18.2.0) + '@rjsf/utils': 5.17.1(react@18.3.1) ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) lodash: 4.17.21 @@ -46744,9 +46428,9 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.9.6': optional: true - '@rrweb/types@2.0.0-alpha.13': + '@rrweb/types@2.0.0-alpha.14': dependencies: - rrweb-snapshot: 2.0.0-alpha.13 + rrweb-snapshot: 2.0.0-alpha.14 '@rushstack/eslint-patch@1.2.0': {} @@ -46985,18 +46669,18 @@ snapshots: transitivePeerDependencies: - debug - '@sentry-internal/feedback@7.114.0': + '@sentry-internal/feedback@7.116.0': dependencies: - '@sentry/core': 7.114.0 - '@sentry/types': 7.114.0 - '@sentry/utils': 7.114.0 + '@sentry/core': 7.116.0 + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 - '@sentry-internal/replay-canvas@7.114.0': + '@sentry-internal/replay-canvas@7.116.0': dependencies: - '@sentry/core': 7.114.0 - '@sentry/replay': 7.114.0 - '@sentry/types': 7.114.0 - '@sentry/utils': 7.114.0 + '@sentry/core': 7.116.0 + '@sentry/replay': 7.116.0 + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 '@sentry-internal/tracing@7.114.0': dependencies: @@ -47004,6 +46688,12 @@ snapshots: '@sentry/types': 7.114.0 '@sentry/utils': 7.114.0 + '@sentry-internal/tracing@7.116.0': + dependencies: + '@sentry/core': 7.116.0 + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 + '@sentry-internal/tracing@7.47.0': dependencies: '@sentry/core': 7.47.0 @@ -47018,16 +46708,16 @@ snapshots: '@sentry/utils': 7.66.0 tslib: 2.6.2 - '@sentry/browser@7.114.0': + '@sentry/browser@7.116.0': dependencies: - '@sentry-internal/feedback': 7.114.0 - '@sentry-internal/replay-canvas': 7.114.0 - '@sentry-internal/tracing': 7.114.0 - '@sentry/core': 7.114.0 - '@sentry/integrations': 7.114.0 - '@sentry/replay': 7.114.0 - '@sentry/types': 7.114.0 - '@sentry/utils': 7.114.0 + '@sentry-internal/feedback': 7.116.0 + '@sentry-internal/replay-canvas': 7.116.0 + '@sentry-internal/tracing': 7.116.0 + '@sentry/core': 7.116.0 + '@sentry/integrations': 7.116.0 + '@sentry/replay': 7.116.0 + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 '@sentry/browser@7.47.0': dependencies: @@ -47055,6 +46745,11 @@ snapshots: '@sentry/types': 7.114.0 '@sentry/utils': 7.114.0 + '@sentry/core@7.116.0': + dependencies: + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 + '@sentry/core@7.47.0': dependencies: '@sentry/types': 7.47.0 @@ -47081,16 +46776,23 @@ snapshots: '@sentry/utils': 7.114.0 localforage: 1.10.0 - '@sentry/nextjs@7.114.0(encoding@0.1.13)(next@14.1.0(@babel/core@7.24.4)(@opentelemetry/api@1.7.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.64.1))(react@18.2.0)(webpack@5.88.2(@swc/core@1.3.107))': + '@sentry/integrations@7.116.0': + dependencies: + '@sentry/core': 7.116.0 + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 + localforage: 1.10.0 + + '@sentry/nextjs@7.116.0(encoding@0.1.13)(next@14.1.0(@babel/core@7.24.4)(@opentelemetry/api@1.7.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.64.1))(react@18.2.0)(webpack@5.88.2(@swc/core@1.3.107))': dependencies: '@rollup/plugin-commonjs': 24.0.0(rollup@2.78.0) - '@sentry/core': 7.114.0 - '@sentry/integrations': 7.114.0 - '@sentry/node': 7.114.0 - '@sentry/react': 7.114.0(react@18.2.0) - '@sentry/types': 7.114.0 - '@sentry/utils': 7.114.0 - '@sentry/vercel-edge': 7.114.0 + '@sentry/core': 7.116.0 + '@sentry/integrations': 7.116.0 + '@sentry/node': 7.116.0 + '@sentry/react': 7.116.0(react@18.2.0) + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 + '@sentry/vercel-edge': 7.116.0 '@sentry/webpack-plugin': 1.21.0(encoding@0.1.13) chalk: 3.0.0 next: 14.1.0(@babel/core@7.24.4)(@opentelemetry/api@1.7.0)(babel-plugin-macros@3.1.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.64.1) @@ -47112,6 +46814,14 @@ snapshots: '@sentry/types': 7.114.0 '@sentry/utils': 7.114.0 + '@sentry/node@7.116.0': + dependencies: + '@sentry-internal/tracing': 7.116.0 + '@sentry/core': 7.116.0 + '@sentry/integrations': 7.116.0 + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 + '@sentry/node@7.47.0': dependencies: '@sentry-internal/tracing': 7.47.0 @@ -47138,30 +46848,30 @@ snapshots: transitivePeerDependencies: - supports-color - '@sentry/react@7.114.0(react@18.2.0)': + '@sentry/react@7.116.0(react@18.2.0)': dependencies: - '@sentry/browser': 7.114.0 - '@sentry/core': 7.114.0 - '@sentry/types': 7.114.0 - '@sentry/utils': 7.114.0 + '@sentry/browser': 7.116.0 + '@sentry/core': 7.116.0 + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 hoist-non-react-statics: 3.3.2 react: 18.2.0 - '@sentry/react@7.47.0(react@17.0.2)': + '@sentry/react@7.47.0(react@18.3.1)': dependencies: '@sentry/browser': 7.47.0 '@sentry/types': 7.47.0 '@sentry/utils': 7.47.0 hoist-non-react-statics: 3.3.2 - react: 17.0.2 + react: 18.3.1 tslib: 1.14.1 - '@sentry/replay@7.114.0': + '@sentry/replay@7.116.0': dependencies: - '@sentry-internal/tracing': 7.114.0 - '@sentry/core': 7.114.0 - '@sentry/types': 7.114.0 - '@sentry/utils': 7.114.0 + '@sentry-internal/tracing': 7.116.0 + '@sentry/core': 7.116.0 + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 '@sentry/replay@7.47.0': dependencies: @@ -47175,6 +46885,8 @@ snapshots: '@sentry/types@7.114.0': {} + '@sentry/types@7.116.0': {} + '@sentry/types@7.47.0': {} '@sentry/types@7.66.0': {} @@ -47183,6 +46895,10 @@ snapshots: dependencies: '@sentry/types': 7.114.0 + '@sentry/utils@7.116.0': + dependencies: + '@sentry/types': 7.116.0 + '@sentry/utils@7.47.0': dependencies: '@sentry/types': 7.47.0 @@ -47193,13 +46909,13 @@ snapshots: '@sentry/types': 7.66.0 tslib: 2.6.2 - '@sentry/vercel-edge@7.114.0': + '@sentry/vercel-edge@7.116.0': dependencies: - '@sentry-internal/tracing': 7.114.0 - '@sentry/core': 7.114.0 - '@sentry/integrations': 7.114.0 - '@sentry/types': 7.114.0 - '@sentry/utils': 7.114.0 + '@sentry-internal/tracing': 7.116.0 + '@sentry/core': 7.116.0 + '@sentry/integrations': 7.116.0 + '@sentry/types': 7.116.0 + '@sentry/utils': 7.116.0 '@sentry/webpack-plugin@1.21.0(encoding@0.1.13)': dependencies: @@ -49055,52 +48771,52 @@ 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.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-actions@7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.4.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/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.4.2 dequal: 2.0.3 lodash: 4.17.21 polished: 4.2.2 prop-types: 15.8.1 - react-inspector: 6.0.2(react@17.0.2) + react-inspector: 6.0.2(react@18.3.1) telejson: 7.2.0 ts-dedent: 2.2.0 uuid: 9.0.0 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - '@storybook/addon-actions@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)': + '@storybook/addon-actions@7.5.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.5.1 - '@storybook/components': 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) + '@storybook/components': 7.5.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 7.5.1 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.5.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/manager-api': 7.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.5.1 - '@storybook/theming': 7.5.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.5.1 dequal: 2.0.3 lodash: 4.17.21 polished: 4.2.2 prop-types: 15.8.1 - react-inspector: 6.0.2(react@17.0.2) + react-inspector: 6.0.2(react@18.3.1) telejson: 7.2.0 ts-dedent: 2.2.0 uuid: 9.0.0 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' @@ -49114,51 +48830,51 @@ 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.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-backgrounds@7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.4.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/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.4.2 memoizerific: 1.11.3 ts-dedent: 2.2.0 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - '@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-controls@7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@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/blocks': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 7.4.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/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 7.4.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) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.4.2 lodash: 4.17.21 ts-dedent: 2.2.0 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - encoding - supports-color - '@storybook/addon-controls@8.1.1(@types/react-dom@17.0.20)(@types/react@17.0.62)(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-controls@8.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/blocks': 8.1.1(@types/react-dom@17.0.20)(@types/react@17.0.62)(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/blocks': 8.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) dequal: 2.0.3 lodash: 4.17.21 ts-dedent: 2.2.0 @@ -49171,13 +48887,13 @@ snapshots: - react-dom - supports-color - '@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-docs@7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 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.62)(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@mdx-js/react': 2.3.0(react@18.3.1) + '@storybook/blocks': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 7.4.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/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/csf-plugin': 7.4.2 '@storybook/csf-tools': 7.4.2 '@storybook/global': 5.0.0 @@ -49185,41 +48901,12 @@ snapshots: '@storybook/node-logger': 7.4.2 '@storybook/postinstall': 7.4.2 '@storybook/preview-api': 7.4.2 - '@storybook/react-dom-shim': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/react-dom-shim': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.4.2 fs-extra: 11.2.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - remark-external-links: 8.0.0 - remark-slug: 6.1.0 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - encoding - - supports-color - - '@storybook/addon-docs@7.4.2(@types/react-dom@17.0.20)(@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.20)(@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.20)(@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 - '@storybook/mdx2-csf': 1.1.0 - '@storybook/node-logger': 7.4.2 - '@storybook/postinstall': 7.4.2 - '@storybook/preview-api': 7.4.2 - '@storybook/react-dom-shim': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/types': 7.4.2 - fs-extra: 11.2.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 @@ -49229,25 +48916,25 @@ snapshots: - encoding - supports-color - '@storybook/addon-docs@8.1.1(@types/react-dom@17.0.20)(encoding@0.1.13)(prettier@3.2.5)': + '@storybook/addon-docs@8.1.1(@types/react-dom@18.3.0)(encoding@0.1.13)(prettier@3.2.5)': dependencies: '@babel/core': 7.24.4 - '@mdx-js/react': 3.0.1(@types/react@17.0.62)(react@17.0.2) - '@storybook/blocks': 8.1.1(@types/react-dom@17.0.20)(@types/react@17.0.62)(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@mdx-js/react': 3.0.1(@types/react@18.3.3)(react@18.3.1) + '@storybook/blocks': 8.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 8.1.1 - '@storybook/components': 8.1.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) + '@storybook/components': 8.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/csf-plugin': 8.1.1 '@storybook/csf-tools': 8.1.1 '@storybook/global': 5.0.0 '@storybook/node-logger': 8.1.1 '@storybook/preview-api': 8.1.1 - '@storybook/react-dom-shim': 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/theming': 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/react-dom-shim': 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.1.1 - '@types/react': 17.0.62 + '@types/react': 18.3.3 fs-extra: 11.2.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rehype-external-links: 3.0.0 rehype-slug: 6.0.0 ts-dedent: 2.2.0 @@ -49257,23 +48944,23 @@ snapshots: - prettier - supports-color - '@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)': + '@storybook/addon-essentials@7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@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-actions': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addon-backgrounds': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addon-controls': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addon-docs': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-highlight': 7.4.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/addon-measure': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addon-outline': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addon-toolbars': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/addon-viewport': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 7.4.2 '@storybook/preview-api': 7.4.2 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) ts-dedent: 2.2.0 transitivePeerDependencies: - '@types/react' @@ -49287,45 +48974,45 @@ 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.62)(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@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.4.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/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-common': 7.4.2(encoding@0.1.13) '@storybook/core-events': 7.4.2 '@storybook/global': 5.0.0 '@storybook/instrumenter': 7.4.2 - '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.4.2 jest-mock: 27.5.1 polished: 4.2.2 ts-dedent: 2.2.0 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - encoding - supports-color - '@storybook/addon-links@7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addon-links@7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.4.2 '@storybook/core-events': 7.4.2 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.4.2 - '@storybook/router': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/router': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.4.2 prop-types: 15.8.1 ts-dedent: 2.2.0 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@storybook/addon-mdx-gfm@7.4.2': dependencies: @@ -49335,144 +49022,111 @@ snapshots: transitivePeerDependencies: - supports-color - '@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-measure@7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.4.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/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.4.2 '@storybook/types': 7.4.2 tiny-invariant: 1.3.1 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - '@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-outline@7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.4.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/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.4.2 '@storybook/types': 7.4.2 ts-dedent: 2.2.0 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - '@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-toolbars@7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.4.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/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - '@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/addon-viewport@7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.4.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/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) memoizerific: 1.11.3 prop-types: 15.8.1 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - '@storybook/addons@7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/addons@7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.4.2 '@storybook/types': 7.4.2 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/api@7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/api@7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.4.2 - '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) optionalDependencies: - 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.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.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) - '@storybook/global': 5.0.0 - '@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) - '@storybook/types': 7.4.2 - '@types/lodash': 4.14.192 - color-convert: 2.0.1 - dequal: 2.0.3 - lodash: 4.17.21 - markdown-to-jsx: 7.4.1(react@17.0.2) - memoizerific: 1.11.3 - polished: 4.2.2 - react: 17.0.2 - react-colorful: 5.6.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react-dom: 17.0.2(react@17.0.2) - telejson: 7.2.0 - tocbot: 4.21.1 - ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - encoding - - supports-color + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/blocks@7.4.2(@types/react-dom@17.0.20)(@types/react@17.0.62)(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@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 7.4.2 '@storybook/client-logger': 7.4.2 - '@storybook/components': 7.4.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) + '@storybook/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 7.4.2 '@storybook/csf': 0.1.7 '@storybook/docs-tools': 7.4.2(encoding@0.1.13) '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 7.4.2 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.4.2 '@types/lodash': 4.14.192 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 - markdown-to-jsx: 7.4.1(react@17.0.2) + markdown-to-jsx: 7.4.1(react@18.3.1) memoizerific: 1.11.3 polished: 4.2.2 - react: 17.0.2 - react-colorful: 5.6.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react-dom: 18.3.1(react@18.3.1) telejson: 7.2.0 tocbot: 4.21.1 ts-dedent: 2.2.0 @@ -49483,35 +49137,35 @@ snapshots: - encoding - supports-color - '@storybook/blocks@8.1.1(@types/react-dom@17.0.20)(@types/react@17.0.62)(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/blocks@8.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 8.1.1 '@storybook/client-logger': 8.1.1 - '@storybook/components': 8.1.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) + '@storybook/components': 8.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 8.1.1 '@storybook/csf': 0.1.7 '@storybook/docs-tools': 8.1.1(encoding@0.1.13)(prettier@3.2.5) '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/manager-api': 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/manager-api': 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 8.1.1 - '@storybook/theming': 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.1.1 '@types/lodash': 4.14.192 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 - markdown-to-jsx: 7.3.2(react@17.0.2) + markdown-to-jsx: 7.3.2(react@18.3.1) memoizerific: 1.11.3 polished: 4.2.2 - react-colorful: 5.6.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) telejson: 7.2.0 tocbot: 4.21.1 ts-dedent: 2.2.0 util-deprecate: 1.0.2 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' @@ -49589,25 +49243,25 @@ 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.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/builder-webpack5@7.4.2(@swc/helpers@0.5.2)(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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/addons': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 7.4.2 '@storybook/preview': 7.4.2 '@storybook/preview-api': 7.4.2 - '@storybook/router': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/router': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/store': 7.4.2 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@swc/core': 1.3.107(@swc/helpers@0.5.2) '@types/node': 16.11.7 '@types/semver': 7.3.13 @@ -49623,8 +49277,8 @@ snapshots: html-webpack-plugin: 5.5.3(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) path-browserify: 1.0.1 process: 0.11.10 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) semver: 7.6.2 style-loader: 3.3.2(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) swc-loader: 0.2.3(@swc/core@1.3.107(@swc/helpers@0.5.2))(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) @@ -49649,48 +49303,48 @@ 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.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/builder-webpack5@7.4.2(@swc/helpers@0.5.2)(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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) + '@babel/core': 7.23.2 + '@storybook/addons': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/manager-api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 7.4.2 '@storybook/preview': 7.4.2 '@storybook/preview-api': 7.4.2 - '@storybook/router': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/router': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/store': 7.4.2 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@swc/core': 1.3.107(@swc/helpers@0.5.2) '@types/node': 16.11.7 - '@types/semver': 7.5.8 - babel-loader: 9.1.3(@babel/core@7.24.4)(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))) + '@types/semver': 7.3.13 + babel-loader: 9.1.2(@babel/core@7.23.2)(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))) babel-plugin-named-exports-order: 0.0.2 browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 constants-browserify: 1.0.0 - css-loader: 6.8.1(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))) + css-loader: 6.7.3(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))) express: 4.19.2 fork-ts-checker-webpack-plugin: 8.0.0(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))) fs-extra: 11.2.0 html-webpack-plugin: 5.5.3(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))) path-browserify: 1.0.1 process: 0.11.10 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) semver: 7.6.2 style-loader: 3.3.2(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))) swc-loader: 0.2.3(@swc/core@1.3.107(@swc/helpers@0.5.2))(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))) terser-webpack-plugin: 5.3.9(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)(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))) ts-dedent: 2.2.0 - url: 0.11.3 + url: 0.11.0 util: 0.12.5 util-deprecate: 1.0.2 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)) @@ -49709,66 +49363,6 @@ snapshots: - uglify-js - webpack-cli - '@storybook/builder-webpack5@7.4.2(@swc/helpers@0.5.2)(@types/react-dom@17.0.20)(@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.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.20)(@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) - '@storybook/global': 5.0.0 - '@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 - '@storybook/preview': 7.4.2 - '@storybook/preview-api': 7.4.2 - '@storybook/router': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/store': 7.4.2 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@swc/core': 1.3.107(@swc/helpers@0.5.2) - '@types/node': 16.11.7 - '@types/semver': 7.5.8 - babel-loader: 9.1.3(@babel/core@7.24.4)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) - babel-plugin-named-exports-order: 0.0.2 - browser-assert: 1.2.1 - case-sensitive-paths-webpack-plugin: 2.4.0 - constants-browserify: 1.0.0 - css-loader: 6.8.1(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) - express: 4.19.2 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.9.5)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) - fs-extra: 11.2.0 - html-webpack-plugin: 5.5.3(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) - path-browserify: 1.0.1 - process: 0.11.10 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - semver: 7.6.2 - style-loader: 3.3.2(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) - swc-loader: 0.2.3(@swc/core@1.3.107(@swc/helpers@0.5.2))(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) - terser-webpack-plugin: 5.3.9(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) - ts-dedent: 2.2.0 - url: 0.11.3 - util: 0.12.5 - util-deprecate: 1.0.2 - webpack: 5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20) - webpack-dev-middleware: 6.1.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 - webpack-virtual-modules: 0.5.0 - optionalDependencies: - typescript: 4.9.5 - transitivePeerDependencies: - - '@swc/helpers' - - '@types/react' - - '@types/react-dom' - - encoding - - esbuild - - supports-color - - uglify-js - - webpack-cli - '@storybook/channels@7.4.2': dependencies: '@storybook/client-logger': 7.4.2 @@ -49853,7 +49447,7 @@ snapshots: - supports-color - utf-8-validate - '@storybook/cli@8.1.1(@babel/preset-env@7.24.5(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/cli@8.1.1(@babel/preset-env@7.24.5(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/core': 7.24.4 '@babel/types': 7.24.5 @@ -49861,7 +49455,7 @@ snapshots: '@storybook/codemod': 8.1.1 '@storybook/core-common': 8.1.1(encoding@0.1.13)(prettier@3.2.5) '@storybook/core-events': 8.1.1 - '@storybook/core-server': 8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/core-server': 8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/csf-tools': 8.1.1 '@storybook/node-logger': 8.1.1 '@storybook/telemetry': 8.1.1(encoding@0.1.13)(prettier@3.2.5) @@ -49965,73 +49559,55 @@ snapshots: transitivePeerDependencies: - supports-color - '@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/components@7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@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) + '@radix-ui/react-select': 1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 7.4.2 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.4.2 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - use-resize-observer: 9.1.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - '@storybook/components@7.4.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)': - dependencies: - '@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) - '@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) - '@storybook/client-logger': 7.4.2 - '@storybook/csf': 0.1.1 - '@storybook/global': 5.0.0 - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/types': 7.4.2 - memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - use-resize-observer: 9.1.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + use-resize-observer: 9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' - '@types/react-dom' - '@storybook/components@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)': + '@storybook/components@7.5.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@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) - '@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) + '@radix-ui/react-select': 1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 7.5.1 '@storybook/csf': 0.1.2 '@storybook/global': 5.0.0 - '@storybook/theming': 7.5.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 7.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.5.1 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - use-resize-observer: 9.1.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + use-resize-observer: 9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' - '@types/react-dom' - '@storybook/components@8.1.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)': + '@storybook/components@8.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@17.0.20)(@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-dialog': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1) '@storybook/client-logger': 8.1.1 '@storybook/csf': 0.1.7 '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/theming': 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.1.1 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' @@ -50180,7 +49756,7 @@ snapshots: - supports-color - utf-8-validate - '@storybook/core-server@8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/core-server@8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@aw-web-design/x-default-browser': 1.4.126 '@babel/core': 7.24.4 @@ -50195,7 +49771,7 @@ snapshots: '@storybook/docs-mdx': 3.1.0-next.0 '@storybook/global': 5.0.0 '@storybook/manager': 8.1.1 - '@storybook/manager-api': 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/manager-api': 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 8.1.1 '@storybook/preview-api': 8.1.1 '@storybook/telemetry': 8.1.1(encoding@0.1.13)(prettier@3.2.5) @@ -50339,10 +49915,10 @@ snapshots: '@storybook/global@5.0.0': {} - '@storybook/icons@1.2.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/icons@1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@storybook/instrumenter@7.4.2': dependencies: @@ -50352,56 +49928,56 @@ snapshots: '@storybook/global': 5.0.0 '@storybook/preview-api': 7.4.2 - '@storybook/manager-api@7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/manager-api@7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 7.4.2 '@storybook/client-logger': 7.4.2 '@storybook/core-events': 7.4.2 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 - '@storybook/router': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/theming': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/router': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.4.2 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) semver: 7.6.2 store2: 2.14.2 telejson: 7.2.0 ts-dedent: 2.2.0 - '@storybook/manager-api@7.5.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/manager-api@7.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 7.5.1 '@storybook/client-logger': 7.5.1 '@storybook/core-events': 7.5.1 '@storybook/csf': 0.1.1 '@storybook/global': 5.0.0 - '@storybook/router': 7.5.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/theming': 7.5.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/router': 7.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 7.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.5.1 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) semver: 7.6.2 store2: 2.14.2 telejson: 7.2.0 ts-dedent: 2.2.0 - '@storybook/manager-api@8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/manager-api@8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 8.1.1 '@storybook/client-logger': 8.1.1 '@storybook/core-events': 8.1.1 '@storybook/csf': 0.1.7 '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/router': 8.1.1 - '@storybook/theming': 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/theming': 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.1.1 dequal: 2.0.3 lodash: 4.17.21 @@ -50425,7 +50001,7 @@ snapshots: '@storybook/postinstall@7.4.2': {} - '@storybook/preset-create-react-app@7.4.2(@babel/core@7.22.11)(@types/webpack@4.41.34)(react-refresh@0.11.0)(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3))(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)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20))': + '@storybook/preset-create-react-app@7.4.2(@babel/core@7.22.11)(@types/webpack@4.41.34)(react-refresh@0.11.0)(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3))(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)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20))': dependencies: '@babel/core': 7.22.11 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(@types/webpack@4.41.34)(react-refresh@0.11.0)(type-fest@2.19.0)(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)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) @@ -50434,7 +50010,7 @@ snapshots: '@types/babel__core': 7.20.0 babel-plugin-react-docgen: 4.2.1 pnp-webpack-plugin: 1.7.0(typescript@4.9.5) - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3) + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3) semver: 7.5.4 transitivePeerDependencies: - '@types/webpack' @@ -50448,7 +50024,7 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@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/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@18.3.1(react@18.3.1))(react@18.3.1)(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: '@babel/preset-flow': 7.22.15(@babel/core@7.22.11) '@babel/preset-react': 7.22.15(@babel/core@7.22.11) @@ -50456,15 +50032,15 @@ snapshots: '@storybook/core-webpack': 7.4.2(encoding@0.1.13) '@storybook/docs-tools': 7.4.2(encoding@0.1.13) '@storybook/node-logger': 7.4.2 - '@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) + '@storybook/react': 7.4.2(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(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))) '@types/node': 16.11.7 '@types/semver': 7.5.8 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-react-docgen: 4.2.1 fs-extra: 11.2.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-refresh: 0.11.0 semver: 7.6.2 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)) @@ -50485,7 +50061,7 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@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/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@18.3.1(react@18.3.1))(react@18.3.1)(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: '@babel/preset-flow': 7.22.15(@babel/core@7.22.11) '@babel/preset-react': 7.22.15(@babel/core@7.22.11) @@ -50493,15 +50069,15 @@ snapshots: '@storybook/core-webpack': 7.4.2(encoding@0.1.13) '@storybook/docs-tools': 7.4.2(encoding@0.1.13) '@storybook/node-logger': 7.4.2 - '@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) + '@storybook/react': 7.4.2(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) '@types/node': 16.11.7 '@types/semver': 7.5.8 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-react-docgen: 4.2.1 fs-extra: 11.2.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-refresh: 0.11.0 semver: 7.6.2 webpack: 5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20) @@ -50522,7 +50098,7 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@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.15.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/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@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@4.15.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: '@babel/preset-flow': 7.22.15(@babel/core@7.22.11) '@babel/preset-react': 7.22.15(@babel/core@7.22.11) @@ -50530,15 +50106,15 @@ snapshots: '@storybook/core-webpack': 7.4.2(encoding@0.1.13) '@storybook/docs-tools': 7.4.2(encoding@0.1.13) '@storybook/node-logger': 7.4.2 - '@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) + '@storybook/react': 7.4.2(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@4.9.5)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) '@types/node': 16.11.7 '@types/semver': 7.5.8 babel-plugin-add-react-displayname: 0.0.5 babel-plugin-react-docgen: 4.2.1 fs-extra: 11.2.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-refresh: 0.11.0 semver: 7.6.2 webpack: 5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20) @@ -50659,29 +50235,29 @@ snapshots: transitivePeerDependencies: - supports-color - '@storybook/react-dom-shim@7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/react-dom-shim@7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/react-dom-shim@8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/react-dom-shim@8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/react-vite@8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(rollup@4.9.6)(typescript@4.9.5)(vite@4.5.2(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0))': + '@storybook/react-vite@8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.9.6)(typescript@4.9.5)(vite@4.5.2(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0))': dependencies: '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.1(typescript@4.9.5)(vite@4.5.2(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) '@rollup/pluginutils': 5.0.5(rollup@4.9.6) '@storybook/builder-vite': 8.1.1(encoding@0.1.13)(prettier@3.2.5)(typescript@4.9.5)(vite@4.5.2(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0)) '@storybook/node-logger': 8.1.1 - '@storybook/react': 8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5) + '@storybook/react': 8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@storybook/types': 8.1.1 find-up: 5.0.0 magic-string: 0.30.10 - react: 17.0.2 + react: 18.3.1 react-docgen: 7.0.3 - react-dom: 17.0.2(react@17.0.2) + react-dom: 18.3.1(react@18.3.1) resolve: 1.22.8 tsconfig-paths: 4.2.0 vite: 4.5.2(@types/node@18.16.9)(less@4.1.3)(lightningcss@1.23.0)(sass@1.64.1)(terser@5.22.0) @@ -50694,14 +50270,14 @@ 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.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)': + '@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@18.3.0)(@types/react@18.3.3)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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.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) + '@storybook/builder-webpack5': 7.4.2(@swc/helpers@0.5.2)(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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@18.3.1(react@18.3.1))(react@18.3.1)(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@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@types/node': 16.11.7 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: '@babel/core': 7.22.11 typescript: 4.9.5 @@ -50722,14 +50298,14 @@ 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.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)': + '@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@18.3.0)(@types/react@18.3.3)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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.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) + '@storybook/builder-webpack5': 7.4.2(@swc/helpers@0.5.2)(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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@18.3.1(react@18.3.1))(react@18.3.1)(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@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@types/node': 16.11.7 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: '@babel/core': 7.22.11 typescript: 4.9.5 @@ -50750,14 +50326,14 @@ 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.20)(@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.15.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@18.3.0)(@types/react@18.3.3)(@types/webpack@4.41.34)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@4.15.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.20)(@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.15.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) + '@storybook/builder-webpack5': 7.4.2(@swc/helpers@0.5.2)(@types/react-dom@18.3.0)(@types/react@18.3.3)(encoding@0.1.13)(esbuild@0.18.20)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(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@18.3.1(react@18.3.1))(react@18.3.1)(type-fest@2.19.0)(typescript@4.9.5)(webpack-dev-server@4.15.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@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5) '@types/node': 16.11.7 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: '@babel/core': 7.22.11 typescript: 4.9.5 @@ -50778,14 +50354,14 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@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)': + '@storybook/react@7.4.2(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)': dependencies: '@storybook/client-logger': 7.4.2 '@storybook/core-client': 7.4.2 '@storybook/docs-tools': 7.4.2(encoding@0.1.13) '@storybook/global': 5.0.0 '@storybook/preview-api': 7.4.2 - '@storybook/react-dom-shim': 7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/react-dom-shim': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.4.2 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 @@ -50797,9 +50373,9 @@ snapshots: html-tags: 3.3.1 lodash: 4.17.21 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-element-to-jsx-string: 15.0.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-element-to-jsx-string: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ts-dedent: 2.2.0 type-fest: 2.19.0 util-deprecate: 1.0.2 @@ -50809,13 +50385,13 @@ snapshots: - encoding - supports-color - '@storybook/react@8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)(typescript@4.9.5)': + '@storybook/react@8.1.1(encoding@0.1.13)(prettier@3.2.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@4.9.5)': dependencies: '@storybook/client-logger': 8.1.1 '@storybook/docs-tools': 8.1.1(encoding@0.1.13)(prettier@3.2.5) '@storybook/global': 5.0.0 '@storybook/preview-api': 8.1.1 - '@storybook/react-dom-shim': 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/react-dom-shim': 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.1.1 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 @@ -50827,9 +50403,9 @@ snapshots: html-tags: 3.3.1 lodash: 4.17.21 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-element-to-jsx-string: 15.0.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-element-to-jsx-string: 15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) semver: 7.6.2 ts-dedent: 2.2.0 type-fest: 2.19.0 @@ -50841,21 +50417,21 @@ snapshots: - prettier - supports-color - '@storybook/router@7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/router@7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.4.2 memoizerific: 1.11.3 qs: 6.11.2 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/router@7.5.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/router@7.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.5.1 memoizerific: 1.11.3 qs: 6.11.2 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@storybook/router@8.1.1': dependencies: @@ -50897,33 +50473,33 @@ snapshots: - prettier - supports-color - '@storybook/theming@7.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/theming@7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@17.0.2) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@storybook/client-logger': 7.4.2 '@storybook/global': 5.0.0 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/theming@7.5.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/theming@7.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@17.0.2) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@storybook/client-logger': 7.5.1 '@storybook/global': 5.0.0 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/theming@8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@storybook/theming@8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@17.0.2) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@storybook/client-logger': 8.1.1 '@storybook/global': 5.0.0 memoizerific: 1.11.3 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@storybook/types@7.4.2': dependencies: @@ -50952,12 +50528,12 @@ snapshots: '@types/express': 4.17.17 file-system-cache: 2.3.0 - '@stripe/react-stripe-js@2.5.0(@stripe/stripe-js@2.4.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@stripe/react-stripe-js@2.5.0(@stripe/stripe-js@2.4.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@stripe/stripe-js': 2.4.0 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@stripe/stripe-js@2.4.0': {} @@ -51149,28 +50725,28 @@ snapshots: '@tanstack/query-core@4.29.1': {} - '@tanstack/query-core@5.36.0': {} + '@tanstack/query-core@5.40.0': {} - '@tanstack/react-query-devtools@4.29.1(@tanstack/react-query@4.29.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@tanstack/react-query-devtools@4.29.1(@tanstack/react-query@4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@tanstack/match-sorter-utils': 8.8.4 - '@tanstack/react-query': 4.29.1(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) + '@tanstack/react-query': 4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) superjson: 1.12.2 - use-sync-external-store: 1.2.0(react@17.0.2) + use-sync-external-store: 1.2.0(react@18.3.1) - '@tanstack/react-query@4.29.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@tanstack/react-query@4.29.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@tanstack/query-core': 4.29.1 - react: 17.0.2 - use-sync-external-store: 1.2.0(react@17.0.2) + react: 18.3.1 + use-sync-external-store: 1.2.0(react@18.3.1) optionalDependencies: - react-dom: 17.0.2(react@17.0.2) + react-dom: 18.3.1(react@18.3.1) - '@tanstack/react-query@5.36.0(react@18.2.0)': + '@tanstack/react-query@5.40.0(react@18.2.0)': dependencies: - '@tanstack/query-core': 5.36.0 + '@tanstack/query-core': 5.40.0 react: 18.2.0 '@taskforcesh/bullmq-pro@5.1.14': @@ -51273,29 +50849,29 @@ 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.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@testing-library/react-hooks@8.0.1(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 - react-error-boundary: 3.1.4(react@17.0.2) + react: 18.3.1 + react-error-boundary: 3.1.4(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 - react-dom: 17.0.2(react@17.0.2) + '@types/react': 18.3.3 + react-dom: 18.3.1(react@18.3.1) - '@testing-library/react@11.2.7(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@testing-library/react@11.2.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.21.0 '@testing-library/dom': 7.31.2 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@testing-library/react@12.1.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2)': + '@testing-library/react@12.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.23.2 '@testing-library/dom': 8.20.1 '@types/react-dom': 17.0.20 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@testing-library/user-event@12.8.3(@testing-library/dom@9.3.0)': dependencies: @@ -51853,10 +51429,6 @@ snapshots: dependencies: '@types/lodash': 4.14.192 - '@types/lodash.mergewith@4.6.7': - dependencies: - '@types/lodash': 4.14.192 - '@types/lodash@4.14.192': {} '@types/long@4.0.2': @@ -52019,37 +51591,42 @@ snapshots: '@types/range-parser@1.2.4': {} - '@types/react-dom@17.0.19': + '@types/react-dom@17.0.20': dependencies: - '@types/react': 17.0.62 + '@types/react': 17.0.80 - '@types/react-dom@17.0.20': + '@types/react-dom@18.3.0': dependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 '@types/react-router-dom@5.3.3': dependencies: '@types/history': 4.7.11 - '@types/react': 17.0.62 + '@types/react': 18.3.3 '@types/react-router': 5.1.20 '@types/react-router@5.1.20': dependencies: '@types/history': 4.7.11 - '@types/react': 17.0.62 + '@types/react': 18.3.3 '@types/react-table@7.7.14': dependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 '@types/react-transition-group@4.4.10': dependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 + + '@types/react@17.0.80': + dependencies: + '@types/prop-types': 15.7.5 + '@types/scheduler': 0.16.8 + csstype: 3.1.2 - '@types/react@17.0.62': + '@types/react@18.3.3': dependencies: '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.3 csstype: 3.1.2 '@types/redis@2.8.32': @@ -52093,7 +51670,7 @@ snapshots: '@types/sarif@2.1.7': {} - '@types/scheduler@0.16.3': {} + '@types/scheduler@0.16.8': {} '@types/semver@7.3.13': {} @@ -53802,54 +53379,6 @@ snapshots: ansicolors@0.3.2: {} - antd@4.24.8(react-dom@17.0.2(react@17.0.2))(react@17.0.2): - dependencies: - '@ant-design/colors': 6.0.0 - '@ant-design/icons': 4.8.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@ant-design/react-slick': 0.29.2(react@17.0.2) - '@babel/runtime': 7.21.0 - '@ctrl/tinycolor': 3.6.0 - classnames: 2.3.2 - copy-to-clipboard: 3.3.3 - lodash: 4.17.21 - moment: 2.29.4 - rc-cascader: 3.7.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-checkbox: 2.3.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-collapse: 3.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-dialog: 9.0.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-drawer: 6.1.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-dropdown: 4.0.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-field-form: 1.27.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-image: 5.13.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-input: 0.1.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-input-number: 7.3.11(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-mentions: 1.13.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-menu: 9.8.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-notification: 4.6.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-pagination: 3.2.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-picker: 2.7.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-progress: 3.4.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-rate: 2.9.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-segmented: 2.1.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-select: 14.1.17(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-slider: 10.0.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-steps: 5.0.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-switch: 3.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-table: 7.26.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-tabs: 12.5.10(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-textarea: 0.4.7(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-tooltip: 5.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-tree: 5.7.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-tree-select: 5.5.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-trigger: 5.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-upload: 4.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) - scroll-into-view-if-needed: 2.2.31 - antd@4.24.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@ant-design/colors': 6.0.0 @@ -53898,6 +53427,54 @@ snapshots: react-dom: 18.2.0(react@18.2.0) scroll-into-view-if-needed: 2.2.31 + antd@4.24.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@ant-design/colors': 6.0.0 + '@ant-design/icons': 4.8.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@ant-design/react-slick': 0.29.2(react@18.3.1) + '@babel/runtime': 7.21.0 + '@ctrl/tinycolor': 3.6.0 + classnames: 2.3.2 + copy-to-clipboard: 3.3.3 + lodash: 4.17.21 + moment: 2.29.4 + rc-cascader: 3.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-checkbox: 2.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-collapse: 3.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-dialog: 9.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-drawer: 6.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-dropdown: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-field-form: 1.27.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-image: 5.13.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-input: 0.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-input-number: 7.3.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-mentions: 1.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-menu: 9.8.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-notification: 4.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-pagination: 3.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-picker: 2.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-progress: 3.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-rate: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-resize-observer: 1.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-segmented: 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-select: 14.1.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-slider: 10.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-steps: 5.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-switch: 3.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-table: 7.26.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-tabs: 12.5.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-textarea: 0.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-tooltip: 5.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-tree: 5.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-tree-select: 5.5.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-upload: 4.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + scroll-into-view-if-needed: 2.2.31 + any-observable@0.3.0(rxjs@6.6.7): optionalDependencies: rxjs: 6.6.7 @@ -54682,6 +54259,13 @@ snapshots: schema-utils: 2.7.1 webpack: 5.82.1(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)(webpack-cli@5.1.4) + babel-loader@9.1.2(@babel/core@7.23.2)(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))): + dependencies: + '@babel/core': 7.23.2 + find-cache-dir: 3.3.2 + schema-utils: 4.0.0 + 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)) + babel-loader@9.1.2(@babel/core@7.23.2)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)): dependencies: '@babel/core': 7.23.2 @@ -54696,20 +54280,6 @@ snapshots: schema-utils: 4.0.0 webpack: 5.88.2(@swc/core@1.3.107)(esbuild@0.18.17) - babel-loader@9.1.3(@babel/core@7.24.4)(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))): - dependencies: - '@babel/core': 7.24.4 - find-cache-dir: 4.0.0 - schema-utils: 4.0.0 - 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)) - - babel-loader@9.1.3(@babel/core@7.24.4)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)): - dependencies: - '@babel/core': 7.24.4 - find-cache-dir: 4.0.0 - schema-utils: 4.0.0 - webpack: 5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20) - babel-plugin-add-react-displayname@0.0.5: {} babel-plugin-const-enum@1.2.0(@babel/core@7.24.4): @@ -55628,35 +55198,35 @@ snapshots: pathval: 1.1.1 type-detect: 4.0.8 - ? chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2))(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(@emotion/react@11.10.6(@types/react@17.0.62)(react@17.0.2))(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + ? chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) : dependencies: - '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/layout': 2.3.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/menu': 2.2.1(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2))(react@17.0.2) - '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@1.12.1(@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))(react@17.0.2))(react@17.0.2) - '@chakra-ui/system': 1.12.1(@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))(react@17.0.2) - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@17.0.2) - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-select: 5.7.7(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/layout': 2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/menu': 2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0))(react@18.2.0) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-select: 5.7.7(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - '@types/react' - ? chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/icon@3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/layout@2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/menu@2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0))(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + ? chakra-react-select@4.7.6(@chakra-ui/form-control@2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/icon@3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/layout@2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/media-query@3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/menu@2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/spinner@2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1))(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) : dependencies: - '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/icon': 3.2.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/layout': 2.3.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/menu': 2.2.1(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0))(react@18.2.0) - '@chakra-ui/system': 2.6.2(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@17.0.62)(react@18.2.0))(@types/react@17.0.62)(react@18.2.0))(react@18.2.0) - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-select: 5.7.7(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@chakra-ui/form-control': 2.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/icon': 3.2.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/layout': 2.3.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/media-query': 3.3.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/menu': 2.2.1(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/spinner': 2.1.0(@chakra-ui/system@1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1))(react@18.3.1) + '@chakra-ui/system': 1.12.1(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@emotion/styled@11.10.6(@emotion/react@11.10.6(@types/react@18.3.3)(react@18.3.1))(@types/react@18.3.3)(react@18.3.1))(react@18.3.1) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-select: 5.7.7(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@types/react' @@ -56027,8 +55597,6 @@ snapshots: color-support@1.1.3: {} - color2k@2.0.3: {} - color@3.2.1: dependencies: color-convert: 1.9.3 @@ -56930,7 +56498,7 @@ snapshots: postcss: 8.4.31 postcss-selector-parser: 6.0.13 - css-loader@6.7.3(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)): + css-loader@6.7.3(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))): dependencies: icss-utils: 5.1.0(postcss@8.4.35) postcss: 8.4.35 @@ -56940,9 +56508,9 @@ snapshots: postcss-modules-values: 4.0.0(postcss@8.4.35) postcss-value-parser: 4.2.0 semver: 7.6.2 - webpack: 5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20) + 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)) - css-loader@6.7.3(webpack@5.78.0(@swc/core@1.3.107)): + css-loader@6.7.3(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)): dependencies: icss-utils: 5.1.0(postcss@8.4.35) postcss: 8.4.35 @@ -56952,31 +56520,19 @@ snapshots: postcss-modules-values: 4.0.0(postcss@8.4.35) postcss-value-parser: 4.2.0 semver: 7.6.2 - webpack: 5.78.0(@swc/core@1.3.107) - - css-loader@6.8.1(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))): - dependencies: - icss-utils: 5.1.0(postcss@8.4.35) - postcss: 8.4.35 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.35) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.35) - postcss-modules-scope: 3.0.0(postcss@8.4.35) - postcss-modules-values: 4.0.0(postcss@8.4.35) - postcss-value-parser: 4.2.0 - semver: 7.6.2 - 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)) + webpack: 5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20) - css-loader@6.8.1(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)): + css-loader@6.7.3(webpack@5.78.0(@swc/core@1.3.107)): dependencies: icss-utils: 5.1.0(postcss@8.4.35) postcss: 8.4.35 postcss-modules-extract-imports: 3.0.0(postcss@8.4.35) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.35) + postcss-modules-local-by-default: 4.0.0(postcss@8.4.35) postcss-modules-scope: 3.0.0(postcss@8.4.35) postcss-modules-values: 4.0.0(postcss@8.4.35) postcss-value-parser: 4.2.0 semver: 7.6.2 - webpack: 5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20) + webpack: 5.78.0(@swc/core@1.3.107) css-loader@6.8.1(webpack@5.88.2(@swc/core@1.3.107)(esbuild@0.18.17)): dependencies: @@ -59510,7 +59066,7 @@ snapshots: object-assign: 4.1.1 promise: 7.3.1 setimmediate: 1.0.5 - ua-parser-js: 1.0.37 + ua-parser-js: 1.0.38 transitivePeerDependencies: - encoding @@ -59974,7 +59530,7 @@ snapshots: dependencies: map-cache: 0.2.2 - framer-motion@11.1.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + framer-motion@11.2.9(@emotion/is-prop-valid@1.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: tslib: 2.6.2 optionalDependencies: @@ -59982,15 +59538,15 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - framer-motion@5.6.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + framer-motion@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: framesync: 6.0.1 hey-listen: 1.0.8 popmotion: 11.0.3 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-merge-refs: 1.1.0 - react-use-measure: 2.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + react-use-measure: 2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) style-value-types: 5.0.0 tslib: 2.6.2 optionalDependencies: @@ -60004,10 +59560,6 @@ snapshots: dependencies: tslib: 2.6.2 - framesync@6.1.2: - dependencies: - tslib: 2.4.0 - fresh@0.5.2: {} from2@2.3.0: @@ -64790,12 +64342,12 @@ snapshots: launchdarkly-eventsource@1.4.4: {} - launchdarkly-js-client-sdk@3.1.3: + launchdarkly-js-client-sdk@3.3.0: dependencies: escape-string-regexp: 4.0.0 - launchdarkly-js-sdk-common: 5.0.3 + launchdarkly-js-sdk-common: 5.2.0 - launchdarkly-js-sdk-common@5.0.3: + launchdarkly-js-sdk-common@5.2.0: dependencies: base64-js: 1.5.1 fast-deep-equal: 2.0.1 @@ -64811,13 +64363,13 @@ snapshots: tunnel: 0.0.6 uuid: 8.3.2 - launchdarkly-react-client-sdk@3.0.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + launchdarkly-react-client-sdk@3.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: hoist-non-react-statics: 3.3.2 - launchdarkly-js-client-sdk: 3.1.3 + launchdarkly-js-client-sdk: 3.3.0 lodash.camelcase: 4.3.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) lazy-ass@1.6.0: {} @@ -65082,9 +64634,9 @@ snapshots: - zen-observable - zenObservable - little-state-machine@4.8.0(react@17.0.2): + little-state-machine@4.8.0(react@18.3.1): dependencies: - react: 17.0.2 + react: 18.3.1 load-json-file@4.0.0: dependencies: @@ -65581,18 +65133,18 @@ snapshots: markdown-table@3.0.3: {} - markdown-to-jsx@7.3.2(react@17.0.2): - dependencies: - react: 17.0.2 - - markdown-to-jsx@7.4.1(react@17.0.2): + markdown-to-jsx@7.3.2(react@18.3.1): dependencies: - react: 17.0.2 + react: 18.3.1 markdown-to-jsx@7.4.1(react@18.2.0): dependencies: react: 18.2.0 + markdown-to-jsx@7.4.1(react@18.3.1): + dependencies: + react: 18.3.1 + markdownlint-cli@0.33.0: dependencies: commander: 9.4.1 @@ -66576,9 +66128,9 @@ snapshots: for-in: 1.0.2 is-extendable: 1.0.1 - mixpanel-browser@2.50.0: + mixpanel-browser@2.51.0: dependencies: - rrweb: 2.0.0-alpha.4 + rrweb: 2.0.0-alpha.13 mixpanel@0.17.0: dependencies: @@ -69345,9 +68897,9 @@ snapshots: printable-characters@1.0.42: {} - prism-react-renderer@1.3.5(react@17.0.2): + prism-react-renderer@1.3.5(react@18.3.1): dependencies: - react: 17.0.2 + react: 18.3.1 prismjs@1.27.0: {} @@ -69641,16 +69193,6 @@ snapshots: iconv-lite: 0.4.24 unpipe: 1.0.0 - rc-align@4.0.15(react-dom@17.0.2(react@17.0.2))(react@17.0.2): - dependencies: - '@babel/runtime': 7.23.2 - classnames: 2.3.2 - dom-align: 1.12.4 - rc-util: 5.29.3(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) - resize-observer-polyfill: 1.5.1 - rc-align@4.0.15(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@babel/runtime': 7.23.2 @@ -69661,16 +69203,15 @@ snapshots: react-dom: 18.2.0(react@18.2.0) resize-observer-polyfill: 1.5.1 - rc-cascader@3.7.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-align@4.0.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 - array-tree-filter: 2.1.0 classnames: 2.3.2 - rc-select: 14.1.17(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-tree: 5.7.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + dom-align: 1.12.4 + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + resize-observer-polyfill: 1.5.1 rc-cascader@3.7.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69683,12 +69224,16 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-checkbox@2.3.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-cascader@3.7.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 + array-tree-filter: 2.1.0 classnames: 2.3.2 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + rc-select: 14.1.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-tree: 5.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-checkbox@2.3.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69697,15 +69242,12 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-collapse@3.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-checkbox@2.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) - shallowequal: 1.1.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-collapse@3.4.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69717,15 +69259,15 @@ snapshots: react-dom: 18.2.0(react@18.2.0) shallowequal: 1.1.0 - rc-dialog@9.0.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-collapse@3.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 - '@rc-component/portal': 1.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) classnames: 2.3.2 - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + shallowequal: 1.1.0 rc-dialog@9.0.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69737,15 +69279,15 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-drawer@6.1.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-dialog@9.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 - '@rc-component/portal': 1.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@rc-component/portal': 1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.3.2 - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-drawer@6.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69757,14 +69299,15 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-dropdown@4.0.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-drawer@6.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 + '@rc-component/portal': 1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.3.2 - rc-trigger: 5.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-dropdown@4.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69775,13 +69318,14 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-field-form@1.27.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-dropdown@4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 - async-validator: 4.2.5 - rc-util: 5.29.3(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) + classnames: 2.3.2 + rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-field-form@1.27.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69791,16 +69335,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-image@5.13.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-field-form@1.27.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 - '@rc-component/portal': 1.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - classnames: 2.3.2 - rc-dialog: 9.0.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + async-validator: 4.2.5 + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-image@5.13.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69813,13 +69354,16 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-input-number@7.3.11(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-image@5.13.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 + '@rc-component/portal': 1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) classnames: 2.3.2 - rc-util: 5.29.3(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) + rc-dialog: 9.0.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-input-number@7.3.11(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69829,13 +69373,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-input@0.1.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-input-number@7.3.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.29.3(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) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-input@0.1.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69845,16 +69389,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-mentions@1.13.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-input@0.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-menu: 9.8.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-textarea: 0.4.7(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-trigger: 5.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-mentions@1.13.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69867,16 +69408,16 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-menu@9.8.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-mentions@1.13.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-overflow: 1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-trigger: 5.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-menu: 9.8.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-textarea: 0.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-menu@9.8.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69889,13 +69430,16 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-motion@2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-menu@9.8.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.29.3(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) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-overflow: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-motion@2.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69905,14 +69449,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-notification@4.6.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-motion@2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-notification@4.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69923,14 +69466,14 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-overflow@1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-notification@4.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-resize-observer: 1.3.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-overflow@1.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69941,12 +69484,14 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-pagination@3.2.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-overflow@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + rc-resize-observer: 1.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-pagination@3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69955,18 +69500,12 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-picker@2.7.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-pagination@3.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - date-fns: 2.29.3 - dayjs: 1.11.9 - moment: 2.29.4 - rc-trigger: 5.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) - shallowequal: 1.1.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-picker@2.7.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -69981,6 +69520,19 @@ snapshots: react-dom: 18.2.0(react@18.2.0) shallowequal: 1.1.0 + rc-picker@2.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@babel/runtime': 7.23.2 + classnames: 2.3.2 + date-fns: 2.29.3 + dayjs: 1.11.9 + moment: 2.29.4 + rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + shallowequal: 1.1.0 + rc-picker@2.7.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@babel/runtime': 7.23.2 @@ -69989,19 +69541,11 @@ snapshots: dayjs: 1.11.10 moment: 2.29.4 rc-trigger: 5.3.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - rc-util: 5.39.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + rc-util: 5.41.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) shallowequal: 1.1.0 - rc-progress@3.4.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2): - dependencies: - '@babel/runtime': 7.23.2 - classnames: 2.3.2 - rc-util: 5.29.3(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) - rc-progress@3.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@babel/runtime': 7.23.2 @@ -70010,13 +69554,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-rate@2.9.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-progress@3.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.29.3(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) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-rate@2.9.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70026,14 +69570,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-resize-observer@1.3.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-rate@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.29.3(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) - resize-observer-polyfill: 1.5.1 + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-resize-observer@1.3.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70044,14 +69587,14 @@ snapshots: react-dom: 18.2.0(react@18.2.0) resize-observer-polyfill: 1.5.1 - rc-segmented@2.1.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-resize-observer@1.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + resize-observer-polyfill: 1.5.1 rc-segmented@2.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70062,17 +69605,14 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-select@14.1.17(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-segmented@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-overflow: 1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-trigger: 5.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-virtual-list: 3.4.13(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) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-select@14.1.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70086,14 +69626,17 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-slider@10.0.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-select@14.1.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.29.3(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) - shallowequal: 1.1.0 + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-overflow: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-virtual-list: 3.4.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-slider@10.0.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70104,13 +69647,14 @@ snapshots: react-dom: 18.2.0(react@18.2.0) shallowequal: 1.1.0 - rc-steps@5.0.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-slider@10.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.29.3(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) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + shallowequal: 1.1.0 rc-steps@5.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70120,13 +69664,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-switch@3.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-steps@5.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.29.3(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) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-switch@3.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70136,15 +69680,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-table@7.26.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-switch@3.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-resize-observer: 1.3.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) - shallowequal: 1.1.0 + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-table@7.26.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70156,17 +69698,15 @@ snapshots: react-dom: 18.2.0(react@18.2.0) shallowequal: 1.1.0 - rc-tabs@12.5.10(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-table@7.26.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-dropdown: 4.0.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-menu: 9.8.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-resize-observer: 1.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + shallowequal: 1.1.0 rc-tabs@12.5.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70180,15 +69720,17 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-textarea@0.4.7(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-tabs@12.5.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-resize-observer: 1.3.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) - shallowequal: 1.1.0 + rc-dropdown: 4.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-menu: 9.8.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-resize-observer: 1.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-textarea@0.4.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70200,13 +69742,15 @@ snapshots: react-dom: 18.2.0(react@18.2.0) shallowequal: 1.1.0 - rc-tooltip@5.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-textarea@0.4.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-trigger: 5.3.4(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) + rc-resize-observer: 1.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + shallowequal: 1.1.0 rc-tooltip@5.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70216,15 +69760,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-tree-select@5.5.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-tooltip@5.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-select: 14.1.17(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-tree: 5.7.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-trigger: 5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-tree-select@5.5.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70236,15 +69778,15 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-tree@5.7.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-tree-select@5.5.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-virtual-list: 3.4.13(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) + rc-select: 14.1.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-tree: 5.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-tree@5.7.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70256,15 +69798,15 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-trigger@5.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-tree@5.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-align: 4.0.15(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-motion: 2.6.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-virtual-list: 3.4.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-trigger@5.3.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70276,13 +69818,15 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-upload@4.3.4(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-trigger@5.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.29.3(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) + rc-align: 4.0.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-motion: 2.6.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-upload@4.3.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70292,12 +69836,13 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - rc-util@5.29.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-upload@4.3.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-is: 16.13.1 + classnames: 2.3.2 + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) rc-util@5.29.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70306,21 +69851,19 @@ snapshots: react-dom: 18.2.0(react@18.2.0) react-is: 16.13.1 - rc-util@5.39.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + rc-util@5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-is: 18.2.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-is: 16.13.1 - rc-virtual-list@3.4.13(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + rc-util@5.41.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@babel/runtime': 7.23.2 - classnames: 2.3.2 - rc-resize-observer: 1.3.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - rc-util: 5.29.3(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: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-is: 18.2.0 rc-virtual-list@3.4.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -70331,6 +69874,15 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + rc-virtual-list@3.4.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@babel/runtime': 7.23.2 + classnames: 2.3.2 + rc-resize-observer: 1.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + rc-util: 5.29.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + rc@1.2.8: dependencies: deep-extend: 0.6.0 @@ -70338,15 +69890,15 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-ace@9.5.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-ace@9.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: ace-builds: 1.16.0 diff-match-patch: 1.0.5 lodash.get: 4.4.2 lodash.isequal: 4.5.0 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-app-polyfill@3.0.0: dependencies: @@ -70357,14 +69909,14 @@ snapshots: regenerator-runtime: 0.13.11 whatwg-fetch: 3.6.2 - react-app-rewired@2.2.1(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.4))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.4))(@swc/core@1.3.107)(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107)(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3)): + react-app-rewired@2.2.1(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.4))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.4))(@swc/core@1.3.107)(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107)(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3)): dependencies: - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.4))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.4))(@swc/core@1.3.107)(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107)(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3) + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.4))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.4))(@swc/core@1.3.107)(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107)(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3) semver: 5.7.2 - react-app-rewired@2.2.1(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3)): + react-app-rewired@2.2.1(react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3)): dependencies: - react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3) + react-scripts: 5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3) semver: 5.7.2 react-base16-styling@0.6.0: @@ -70374,53 +69926,53 @@ snapshots: lodash.flow: 3.5.0 pure-color: 1.3.0 - react-chartjs-2@4.3.1(chart.js@3.9.1)(react@17.0.2): + react-chartjs-2@4.3.1(chart.js@3.9.1)(react@18.3.1): dependencies: chart.js: 3.9.1 - react: 17.0.2 + react: 18.3.1 - react-clientside-effect@1.2.6(react@17.0.2): + react-clientside-effect@1.2.6(react@18.2.0): dependencies: '@babel/runtime': 7.23.2 - react: 17.0.2 + react: 18.2.0 - react-clientside-effect@1.2.6(react@18.2.0): + react-clientside-effect@1.2.6(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 - react: 18.2.0 + react: 18.3.1 - react-color@2.19.3(react@17.0.2): + react-color@2.19.3(react@18.3.1): dependencies: - '@icons/material': 0.2.4(react@17.0.2) + '@icons/material': 0.2.4(react@18.3.1) lodash: 4.17.21 lodash-es: 4.17.21 material-colors: 1.2.6 prop-types: 15.8.1 - react: 17.0.2 - reactcss: 1.2.3(react@17.0.2) + react: 18.3.1 + reactcss: 1.2.3(react@18.3.1) tinycolor2: 1.6.0 - react-colorful@5.6.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-colorful@5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-confetti@6.1.0(react@18.2.0): dependencies: react: 18.2.0 tween-functions: 1.2.0 - react-css-theme-switcher@0.3.0(react@17.0.2): + react-css-theme-switcher@0.3.0(react@18.3.1): dependencies: - react: 17.0.2 + react: 18.3.1 - react-custom-scrollbars@4.2.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-custom-scrollbars@4.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: dom-css: 2.1.0 prop-types: 15.8.1 raf: 3.4.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-dev-utils@12.0.1(eslint@8.57.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)): dependencies: @@ -70534,13 +70086,6 @@ snapshots: transitivePeerDependencies: - supports-color - react-dom@17.0.2(react@17.0.2): - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - react: 17.0.2 - scheduler: 0.20.2 - react-dom@18.2.0(react@18.2.0): dependencies: loose-envify: 1.4.0 @@ -70553,30 +70098,30 @@ snapshots: react: 18.3.1 scheduler: 0.23.2 - react-dropzone@14.2.3(react@17.0.2): + react-dropzone@14.2.3(react@18.3.1): dependencies: attr-accept: 2.2.2 file-selector: 0.6.0 prop-types: 15.8.1 - react: 17.0.2 + react: 18.3.1 react-editor-js@1.10.0(@editorjs/editorjs@2.26.5)(@editorjs/paragraph@2.9.0): dependencies: '@editorjs/editorjs': 2.26.5 '@editorjs/paragraph': 2.9.0 - react-element-to-jsx-string@15.0.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-element-to-jsx-string@15.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-is: 18.1.0 - react-error-boundary@3.1.4(react@17.0.2): + react-error-boundary@3.1.4(react@18.3.1): dependencies: '@babel/runtime': 7.21.0 - react: 17.0.2 + react: 18.3.1 react-error-overlay@6.0.11: {} @@ -70584,21 +70129,19 @@ snapshots: react-fast-compare@3.2.1: {} - react-fast-compare@3.2.2: {} - - react-floater@0.7.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-floater@0.7.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: deepmerge: 4.3.1 exenv: 1.2.2 is-lite: 0.8.2 popper.js: 1.16.1 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-proptype-conditional-require: 1.0.4 tree-changes: 0.9.3 - react-flow-renderer@10.3.17(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-flow-renderer@10.3.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.21.0 '@types/d3': 7.4.0 @@ -70607,71 +70150,71 @@ snapshots: d3-drag: 3.0.0 d3-selection: 3.0.0 d3-zoom: 3.0.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - zustand: 3.7.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + zustand: 3.7.2(react@18.3.1) - react-focus-lock@2.5.2(@types/react@17.0.62)(react@17.0.2): + react-focus-lock@2.5.2(@types/react@18.3.3)(react@18.2.0): dependencies: '@babel/runtime': 7.23.2 focus-lock: 0.9.2 prop-types: 15.8.1 - react: 17.0.2 - react-clientside-effect: 1.2.6(react@17.0.2) - use-callback-ref: 1.3.0(@types/react@17.0.62)(react@17.0.2) - use-sidecar: 1.1.2(@types/react@17.0.62)(react@17.0.2) + react: 18.2.0 + react-clientside-effect: 1.2.6(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.3.3)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react-focus-lock@2.5.2(@types/react@17.0.62)(react@18.2.0): + react-focus-lock@2.5.2(@types/react@18.3.3)(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 focus-lock: 0.9.2 prop-types: 15.8.1 - react: 18.2.0 - react-clientside-effect: 1.2.6(react@18.2.0) - use-callback-ref: 1.3.0(@types/react@17.0.62)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@17.0.62)(react@18.2.0) + react: 18.3.1 + react-clientside-effect: 1.2.6(react@18.3.1) + use-callback-ref: 1.3.0(@types/react@18.3.3)(react@18.3.1) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - react-frame-component@5.2.6(prop-types@15.8.1)(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-frame-component@5.2.6(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - react-helmet-async@1.3.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.21.0 invariant: 2.2.4 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-fast-compare: 3.2.1 shallowequal: 1.1.0 - react-hook-form@7.43.9(react@17.0.2): + react-hook-form@7.43.9(react@18.3.1): dependencies: - react: 17.0.2 + react: 18.3.1 - react-icons@5.0.1(react@17.0.2): + react-icons@5.0.1(react@18.3.1): dependencies: - react: 17.0.2 + react: 18.3.1 - react-infinite-scroll-component@6.1.0(react@17.0.2): + react-infinite-scroll-component@6.1.0(react@18.3.1): dependencies: - react: 17.0.2 + react: 18.3.1 throttle-debounce: 2.3.0 - react-infinite-scroller@1.2.6(react@17.0.2): + react-infinite-scroller@1.2.6(react@18.3.1): dependencies: prop-types: 15.8.1 - react: 17.0.2 + react: 18.3.1 - react-inspector@6.0.2(react@17.0.2): + react-inspector@6.0.2(react@18.3.1): dependencies: - react: 17.0.2 + react: 18.3.1 react-is@16.13.1: {} @@ -70681,15 +70224,15 @@ snapshots: react-is@18.2.0: {} - react-joyride@2.5.3(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-joyride@2.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: deepmerge: 4.3.1 exenv: 1.2.2 is-lite: 0.9.2 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-floater: 0.7.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-floater: 0.7.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-is: 16.13.1 scroll: 3.0.1 scrollparent: 2.0.1 @@ -70705,17 +70248,17 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-password-strength-bar@0.4.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-password-strength-bar@0.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) zxcvbn: 4.4.2 - react-popper@2.3.0(@popperjs/core@2.11.7)(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-popper@2.3.0(@popperjs/core@2.11.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@popperjs/core': 2.11.7 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-fast-compare: 3.2.1 warning: 4.0.3 @@ -70725,93 +70268,93 @@ snapshots: react-refresh@0.14.0: {} - react-remove-scroll-bar@2.3.4(@types/react@17.0.62)(react@17.0.2): + react-remove-scroll-bar@2.3.4(@types/react@18.3.3)(react@18.2.0): dependencies: - react: 17.0.2 - react-style-singleton: 2.2.1(@types/react@17.0.62)(react@17.0.2) + react: 18.2.0 + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.2.0) tslib: 2.6.2 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - react-remove-scroll-bar@2.3.4(@types/react@17.0.62)(react@18.2.0): + react-remove-scroll-bar@2.3.4(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@17.0.62)(react@18.2.0) + react: 18.3.1 + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) tslib: 2.6.2 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - react-remove-scroll-bar@2.3.6(@types/react@17.0.62)(react@17.0.2): + react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.2.0): dependencies: - react: 17.0.2 - react-style-singleton: 2.2.1(@types/react@17.0.62)(react@17.0.2) + react: 18.2.0 + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.2.0) tslib: 2.6.2 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - react-remove-scroll-bar@2.3.6(@types/react@17.0.62)(react@18.2.0): + react-remove-scroll-bar@2.3.6(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@17.0.62)(react@18.2.0) + react: 18.3.1 + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) tslib: 2.6.2 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - react-remove-scroll@2.4.1(@types/react@17.0.62)(react@17.0.2): + react-remove-scroll@2.4.1(@types/react@18.3.3)(react@18.2.0): dependencies: - react: 17.0.2 - react-remove-scroll-bar: 2.3.4(@types/react@17.0.62)(react@17.0.2) - react-style-singleton: 2.2.1(@types/react@17.0.62)(react@17.0.2) + react: 18.2.0 + react-remove-scroll-bar: 2.3.4(@types/react@18.3.3)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.2.0) tslib: 1.14.1 - use-callback-ref: 1.3.0(@types/react@17.0.62)(react@17.0.2) - use-sidecar: 1.1.2(@types/react@17.0.62)(react@17.0.2) + use-callback-ref: 1.3.0(@types/react@18.3.3)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.2.0) optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - react-remove-scroll@2.4.1(@types/react@17.0.62)(react@18.2.0): + react-remove-scroll@2.4.1(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@17.0.62)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@17.0.62)(react@18.2.0) + react: 18.3.1 + react-remove-scroll-bar: 2.3.4(@types/react@18.3.3)(react@18.3.1) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) tslib: 1.14.1 - use-callback-ref: 1.3.0(@types/react@17.0.62)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@17.0.62)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.3.3)(react@18.3.1) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - react-remove-scroll@2.5.5(@types/react@17.0.62)(react@17.0.2): + react-remove-scroll@2.5.10(@types/react@18.3.3)(react@18.2.0): dependencies: - react: 17.0.2 - react-remove-scroll-bar: 2.3.6(@types/react@17.0.62)(react@17.0.2) - react-style-singleton: 2.2.1(@types/react@17.0.62)(react@17.0.2) + react: 18.2.0 + react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.2.0) tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@17.0.62)(react@17.0.2) - use-sidecar: 1.1.2(@types/react@17.0.62)(react@17.0.2) + use-callback-ref: 1.3.0(@types/react@18.3.3)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.2.0) optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - react-remove-scroll@2.5.9(@types/react@17.0.62)(react@18.2.0): + react-remove-scroll@2.5.5(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 - react-remove-scroll-bar: 2.3.6(@types/react@17.0.62)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@17.0.62)(react@18.2.0) + react: 18.3.1 + react-remove-scroll-bar: 2.3.6(@types/react@18.3.3)(react@18.3.1) + react-style-singleton: 2.2.1(@types/react@18.3.3)(react@18.3.1) tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@17.0.62)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@17.0.62)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.3.3)(react@18.3.1) + use-sidecar: 1.1.2(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - react-router-dom@6.2.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-router-dom@6.2.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: history: 5.3.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-router: 6.2.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router: 6.2.2(react@18.3.1) - react-router@6.2.2(react@17.0.2): + react-router@6.2.2(react@18.3.1): dependencies: history: 5.3.0 - react: 17.0.2 + react: 18.3.1 react-scanner@1.1.0: dependencies: @@ -70827,7 +70370,7 @@ snapshots: transitivePeerDependencies: - supports-color - react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.4))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.4))(@swc/core@1.3.107)(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107)(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3): + react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.21.4))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.21.4))(@swc/core@1.3.107)(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107)(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3): dependencies: '@babel/core': 7.21.4 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(@types/webpack@4.41.34)(react-refresh@0.11.0)(type-fest@2.19.0)(webpack-dev-server@4.11.1(webpack@5.78.0(@swc/core@1.3.107)))(webpack-hot-middleware@2.25.3)(webpack@5.78.0(@swc/core@1.3.107)) @@ -70861,7 +70404,7 @@ snapshots: postcss-normalize: 10.0.1(browserslist@4.21.5)(postcss@8.4.31) postcss-preset-env: 7.8.3(postcss@8.4.31) prompts: 2.4.2 - react: 17.0.2 + react: 18.3.1 react-app-polyfill: 3.0.0 react-dev-utils: 12.0.1(eslint@8.57.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack@5.78.0(@swc/core@1.3.107)) react-refresh: 0.11.0 @@ -70913,7 +70456,7 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@17.0.2)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3): + react-scripts@5.0.1(@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.11))(@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.22.11))(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/babel__core@7.20.5)(@types/webpack@4.41.34)(esbuild@0.18.20)(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)(react@18.3.1)(sass@1.64.1)(ts-node@10.9.2(@swc/core@1.3.107(@swc/helpers@0.5.2))(@types/node@12.20.55)(typescript@4.9.5))(type-fest@2.19.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack-hot-middleware@2.25.3): dependencies: '@babel/core': 7.21.4 '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(@types/webpack@4.41.34)(react-refresh@0.11.0)(type-fest@2.19.0)(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)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) @@ -70947,7 +70490,7 @@ snapshots: postcss-normalize: 10.0.1(browserslist@4.21.5)(postcss@8.4.31) postcss-preset-env: 7.8.3(postcss@8.4.31) prompts: 2.4.2 - react: 17.0.2 + react: 18.3.1 react-app-polyfill: 3.0.0 react-dev-utils: 12.0.1(eslint@8.57.0)(typescript@4.9.5)(vue-template-compiler@2.7.14)(webpack@5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20)) react-refresh: 0.11.0 @@ -70999,150 +70542,141 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - react-select@5.7.7(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-select@5.7.7(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@babel/runtime': 7.23.2 '@emotion/cache': 11.11.0 - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@17.0.2) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.2.0) '@floating-ui/dom': 1.5.3 '@types/react-transition-group': 4.4.10 memoize-one: 6.0.0 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-transition-group: 4.4.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.62)(react@17.0.2) + react: 18.2.0 + 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) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react-select@5.7.7(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-select@5.7.7(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 '@emotion/cache': 11.11.0 - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) '@floating-ui/dom': 1.5.3 '@types/react-transition-group': 4.4.10 memoize-one: 6.0.0 prop-types: 15.8.1 - react: 18.2.0 - 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) - use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.62)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - react-select@5.8.0(@types/react@17.0.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-select@5.8.0(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@babel/runtime': 7.23.2 '@emotion/cache': 11.10.7 - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@17.0.2) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.2.0) '@floating-ui/dom': 1.5.3 '@types/react-transition-group': 4.4.10 memoize-one: 6.0.0 prop-types: 15.8.1 - 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) - use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.62)(react@17.0.2) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-transition-group: 4.4.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react-select@5.8.0(@types/react@17.0.62)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-select@5.8.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 '@emotion/cache': 11.10.7 - '@emotion/react': 11.10.6(@types/react@17.0.62)(react@18.2.0) + '@emotion/react': 11.10.6(@types/react@18.3.3)(react@18.3.1) '@floating-ui/dom': 1.5.3 '@types/react-transition-group': 4.4.10 memoize-one: 6.0.0 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-transition-group: 4.4.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.62)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-transition-group: 4.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - react-simple-animate@3.5.2(react-dom@17.0.2(react@17.0.2)): + react-simple-animate@3.5.2(react-dom@18.3.1(react@18.3.1)): dependencies: - react-dom: 17.0.2(react@17.0.2) + react-dom: 18.3.1(react@18.3.1) - react-style-singleton@2.2.1(@types/react@17.0.62)(react@17.0.2): + react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.2.0): dependencies: get-nonce: 1.0.1 invariant: 2.2.4 - react: 17.0.2 + react: 18.2.0 tslib: 2.6.2 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - react-style-singleton@2.2.1(@types/react@17.0.62)(react@18.2.0): + react-style-singleton@2.2.1(@types/react@18.3.3)(react@18.3.1): dependencies: get-nonce: 1.0.1 invariant: 2.2.4 - react: 18.2.0 + react: 18.3.1 tslib: 2.6.2 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - react-syntax-highlighter@15.5.0(react@17.0.2): + react-syntax-highlighter@15.5.0(react@18.3.1): dependencies: '@babel/runtime': 7.21.0 highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.29.0 - react: 17.0.2 + react: 18.3.1 refractor: 3.6.0 - react-table@7.8.0(react@17.0.2): + react-table@7.8.0(react@18.3.1): dependencies: - react: 17.0.2 + react: 18.3.1 - react-textarea-autosize@8.3.4(@types/react@17.0.62)(react@17.0.2): + react-textarea-autosize@8.3.4(@types/react@18.3.3)(react@18.2.0): 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.62)(react@17.0.2) + react: 18.2.0 + use-composed-ref: 1.3.0(react@18.2.0) + use-latest: 1.2.1(@types/react@18.3.3)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react-textarea-autosize@8.3.4(@types/react@17.0.62)(react@18.2.0): + react-textarea-autosize@8.3.4(@types/react@18.3.3)(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 - react: 18.2.0 - use-composed-ref: 1.3.0(react@18.2.0) - use-latest: 1.2.1(@types/react@17.0.62)(react@18.2.0) + react: 18.3.1 + use-composed-ref: 1.3.0(react@18.3.1) + use-latest: 1.2.1(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - react-textarea-autosize@8.4.1(@types/react@17.0.62)(react@17.0.2): + react-textarea-autosize@8.4.1(@types/react@18.3.3)(react@18.3.1): 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.62)(react@17.0.2) + react: 18.3.1 + use-composed-ref: 1.3.0(react@18.3.1) + use-latest: 1.2.1(@types/react@18.3.3)(react@18.3.1) transitivePeerDependencies: - '@types/react' - react-textarea-autosize@8.5.3(@types/react@17.0.62)(react@18.2.0): + react-textarea-autosize@8.5.3(@types/react@18.3.3)(react@18.2.0): dependencies: '@babel/runtime': 7.23.2 react: 18.2.0 use-composed-ref: 1.3.0(react@18.2.0) - use-latest: 1.2.1(@types/react@17.0.62)(react@18.2.0) + use-latest: 1.2.1(@types/react@18.3.3)(react@18.2.0) transitivePeerDependencies: - '@types/react' - react-transition-group@4.4.2(react-dom@17.0.2(react@17.0.2))(react@17.0.2): - dependencies: - '@babel/runtime': 7.23.2 - dom-helpers: 5.2.1 - loose-envify: 1.4.0 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-transition-group@4.4.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@babel/runtime': 7.23.2 @@ -71152,14 +70686,14 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-transition-group@4.4.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-transition-group@4.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react-transition-group@4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: @@ -71170,21 +70704,25 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-use-intercom@2.1.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + '@babel/runtime': 7.23.2 + dom-helpers: 5.2.1 + loose-envify: 1.4.0 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - react-use-measure@2.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + react-use-intercom@2.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - debounce: 1.2.1 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - react@17.0.2: + react-use-measure@2.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 + debounce: 1.2.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) react@18.2.0: dependencies: @@ -71194,19 +70732,19 @@ snapshots: dependencies: loose-envify: 1.4.0 - reactcss@1.2.3(react@17.0.2): + reactcss@1.2.3(react@18.3.1): dependencies: lodash: 4.17.21 - react: 17.0.2 + react: 18.3.1 - reactflow@11.11.3(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + reactflow@11.11.3(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@reactflow/background': 11.3.13(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@reactflow/controls': 11.2.13(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@reactflow/core': 11.11.3(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@reactflow/minimap': 11.7.13(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@reactflow/node-resizer': 2.2.13(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@reactflow/node-toolbar': 1.3.13(@types/react@17.0.62)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/background': 11.3.13(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/controls': 11.2.13(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/core': 11.11.3(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/minimap': 11.7.13(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/node-resizer': 2.2.13(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@reactflow/node-toolbar': 1.3.13(@types/react@18.3.3)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: @@ -71961,9 +71499,9 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.9.6 fsevents: 2.3.3 - rrdom@0.1.7: + rrdom@2.0.0-alpha.14: dependencies: - rrweb-snapshot: 2.0.0-alpha.4 + rrweb-snapshot: 2.0.0-alpha.14 rrule@2.7.2: dependencies: @@ -71971,20 +71509,18 @@ snapshots: rrweb-cssom@0.6.0: {} - rrweb-snapshot@2.0.0-alpha.13: {} - - rrweb-snapshot@2.0.0-alpha.4: {} + rrweb-snapshot@2.0.0-alpha.14: {} - rrweb@2.0.0-alpha.4: + rrweb@2.0.0-alpha.13: dependencies: - '@rrweb/types': 2.0.0-alpha.13 + '@rrweb/types': 2.0.0-alpha.14 '@types/css-font-loading-module': 0.0.7 '@xstate/fsm': 1.6.5 base64-arraybuffer: 1.0.2 fflate: 0.4.8 mitt: 3.0.1 - rrdom: 0.1.7 - rrweb-snapshot: 2.0.0-alpha.4 + rrdom: 2.0.0-alpha.14 + rrweb-snapshot: 2.0.0-alpha.14 run-async@2.4.1: {} @@ -72112,11 +71648,6 @@ snapshots: dependencies: xmlchars: 2.2.0 - scheduler@0.20.2: - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - scheduler@0.23.0: dependencies: loose-envify: 1.4.0 @@ -72871,31 +72402,31 @@ snapshots: store2@2.14.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): + storybook-dark-mode@3.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): 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.62)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/addons': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/api': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 7.4.2(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@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) + '@storybook/theming': 7.4.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) fast-deep-equal: 3.1.3 memoizerific: 1.11.3 optionalDependencies: - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' - storybook-dark-mode@4.0.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): + storybook-dark-mode@4.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@storybook/components': 8.1.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) + '@storybook/components': 8.1.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 8.1.1 '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/manager-api': 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) - '@storybook/theming': 8.1.1(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/manager-api': 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 8.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) fast-deep-equal: 3.1.3 memoizerific: 1.11.3 transitivePeerDependencies: @@ -72913,9 +72444,9 @@ snapshots: - supports-color - utf-8-validate - storybook@8.1.1(@babel/preset-env@7.24.5(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + storybook@8.1.1(@babel/preset-env@7.24.5(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@storybook/cli': 8.1.1(@babel/preset-env@7.24.5(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@17.0.2(react@17.0.2))(react@17.0.2) + '@storybook/cli': 8.1.1(@babel/preset-env@7.24.5(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - '@babel/preset-env' - bufferutil @@ -73634,7 +73165,7 @@ snapshots: jest-worker: 27.5.1 schema-utils: 3.1.2 serialize-javascript: 6.0.1 - terser: 5.16.9 + terser: 5.22.0 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)) optionalDependencies: '@swc/core': 1.3.107(@swc/helpers@0.5.2) @@ -73646,7 +73177,7 @@ snapshots: jest-worker: 27.5.1 schema-utils: 3.1.2 serialize-javascript: 6.0.1 - terser: 5.16.9 + terser: 5.22.0 webpack: 5.78.0(@swc/core@1.3.107(@swc/helpers@0.5.2))(esbuild@0.18.20) optionalDependencies: '@swc/core': 1.3.107(@swc/helpers@0.5.2) @@ -73670,7 +73201,7 @@ snapshots: jest-worker: 27.5.1 schema-utils: 3.1.2 serialize-javascript: 6.0.1 - terser: 5.16.9 + terser: 5.22.0 webpack: 5.88.2(@swc/core@1.3.107)(esbuild@0.18.17) optionalDependencies: '@swc/core': 1.3.107(@swc/helpers@0.5.2) @@ -73682,7 +73213,7 @@ snapshots: jest-worker: 27.5.1 schema-utils: 3.1.2 serialize-javascript: 6.0.1 - terser: 5.16.9 + terser: 5.22.0 webpack: 5.78.0(@swc/core@1.3.107) optionalDependencies: '@swc/core': 1.3.107(@swc/helpers@0.5.2) @@ -74609,8 +74140,6 @@ snapshots: tslib@2.3.1: {} - tslib@2.4.0: {} - tslib@2.5.0: {} tslib@2.6.1: {} @@ -74711,7 +74240,7 @@ snapshots: type-fest@2.19.0: {} - type-fest@4.18.2: {} + type-fest@4.18.3: {} type-is@1.6.18: dependencies: @@ -74781,7 +74310,7 @@ snapshots: ua-parser-js@0.7.35: {} - ua-parser-js@1.0.37: {} + ua-parser-js@1.0.38: {} uc.micro@1.0.6: {} @@ -75086,90 +74615,90 @@ snapshots: dependencies: fast-url-parser: 1.1.3 - use-callback-ref@1.3.0(@types/react@17.0.62)(react@17.0.2): + use-callback-ref@1.3.0(@types/react@18.3.3)(react@18.2.0): dependencies: - react: 17.0.2 + react: 18.2.0 tslib: 2.6.2 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - use-callback-ref@1.3.0(@types/react@17.0.62)(react@18.2.0): + use-callback-ref@1.3.0(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 tslib: 2.6.2 optionalDependencies: - '@types/react': 17.0.62 - - use-composed-ref@1.3.0(react@17.0.2): - dependencies: - react: 17.0.2 + '@types/react': 18.3.3 use-composed-ref@1.3.0(react@18.2.0): dependencies: react: 18.2.0 - use-deep-compare-effect@1.8.1(react@17.0.2): + use-composed-ref@1.3.0(react@18.3.1): + dependencies: + react: 18.3.1 + + use-deep-compare-effect@1.8.1(react@18.3.1): dependencies: '@babel/runtime': 7.23.2 dequal: 2.0.3 - react: 17.0.2 + react: 18.3.1 - use-isomorphic-layout-effect@1.1.2(@types/react@17.0.62)(react@17.0.2): + use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@18.2.0): dependencies: - react: 17.0.2 + react: 18.2.0 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - use-isomorphic-layout-effect@1.1.2(@types/react@17.0.62)(react@18.2.0): + use-isomorphic-layout-effect@1.1.2(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - use-latest@1.2.1(@types/react@17.0.62)(react@17.0.2): + use-latest@1.2.1(@types/react@18.3.3)(react@18.2.0): dependencies: - react: 17.0.2 - use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.62)(react@17.0.2) + react: 18.2.0 + use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.2.0) optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - use-latest@1.2.1(@types/react@17.0.62)(react@18.2.0): + use-latest@1.2.1(@types/react@18.3.3)(react@18.3.1): dependencies: - react: 18.2.0 - use-isomorphic-layout-effect: 1.1.2(@types/react@17.0.62)(react@18.2.0) + react: 18.3.1 + use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.3)(react@18.3.1) optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - use-resize-observer@9.1.0(react-dom@17.0.2(react@17.0.2))(react@17.0.2): + use-resize-observer@9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@juggle/resize-observer': 3.4.0 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - use-sidecar@1.1.2(@types/react@17.0.62)(react@17.0.2): + use-sidecar@1.1.2(@types/react@18.3.3)(react@18.2.0): dependencies: detect-node-es: 1.1.0 - react: 17.0.2 + react: 18.2.0 tslib: 2.6.2 optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 - use-sidecar@1.1.2(@types/react@17.0.62)(react@18.2.0): + use-sidecar@1.1.2(@types/react@18.3.3)(react@18.3.1): dependencies: detect-node-es: 1.1.0 - react: 18.2.0 + react: 18.3.1 tslib: 2.6.2 optionalDependencies: - '@types/react': 17.0.62 - - use-sync-external-store@1.2.0(react@17.0.2): - dependencies: - react: 17.0.2 + '@types/react': 18.3.3 use-sync-external-store@1.2.0(react@18.2.0): dependencies: react: 18.2.0 + use-sync-external-store@1.2.0(react@18.3.1): + dependencies: + react: 18.3.1 + use@3.1.1: {} user-home@2.0.0: @@ -76895,15 +76424,15 @@ snapshots: dependencies: tslib: 2.6.2 - zustand@3.7.2(react@17.0.2): + zustand@3.7.2(react@18.3.1): optionalDependencies: - react: 17.0.2 + react: 18.3.1 - zustand@4.5.2(@types/react@17.0.62)(immer@9.0.21)(react@18.2.0): + zustand@4.5.2(@types/react@18.3.3)(immer@9.0.21)(react@18.2.0): dependencies: use-sync-external-store: 1.2.0(react@18.2.0) optionalDependencies: - '@types/react': 17.0.62 + '@types/react': 18.3.3 immer: 9.0.21 react: 18.2.0