diff --git a/nx.json b/nx.json index 67ec3763c..235a0ac49 100644 --- a/nx.json +++ b/nx.json @@ -19,10 +19,6 @@ "inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"], "cache": true }, - "e2e": { - "inputs": ["default", "^production"], - "cache": true - }, "compose-build-image": { "inputs": ["default", "^production"], "cache": true @@ -30,6 +26,10 @@ "setup": { "inputs": ["{projectRoot}/.env", "{projectRoot}/.env.*"], "cache": true + }, + "@nx/eslint:lint": { + "inputs": ["default", "{workspaceRoot}/.eslintrc.json"], + "cache": true } }, "namedInputs": { @@ -53,5 +53,6 @@ "libsDir": "packages" }, "generators": {}, - "defaultProject": "core" + "defaultProject": "core", + "useInferencePlugins": false } diff --git a/package.json b/package.json index 32c787785..1c6b3b12d 100644 --- a/package.json +++ b/package.json @@ -13,16 +13,16 @@ "@babel/preset-react": "^7.24.1", "@graphql-codegen/cli": "^5.0.0", "@graphql-typed-document-node/core": "^3.2.0", - "@nx/devkit": "17.1.3", - "@nx/eslint": "17.1.3", - "@nx/eslint-plugin": "17.1.3", - "@nx/jest": "17.1.3", - "@nx/js": "17.1.3", - "@nx/node": "17.1.3", - "@nx/plugin": "17.1.3", - "@nx/react": "17.1.3", - "@nx/web": "17.1.3", - "@nx/webpack": "17.1.3", + "@nx/devkit": "19.0.1", + "@nx/eslint": "19.0.1", + "@nx/eslint-plugin": "19.0.1", + "@nx/jest": "19.0.1", + "@nx/js": "19.0.1", + "@nx/node": "19.0.1", + "@nx/plugin": "19.0.1", + "@nx/react": "19.0.1", + "@nx/web": "19.0.1", + "@nx/webpack": "19.0.1", "@sb/cli": "workspace:*", "@sb/core": "workspace:*", "@storybook/addon-actions": "^8.0.9", @@ -31,21 +31,21 @@ "@tailwindcss/typography": "^0.5.10", "@testing-library/dom": "^9.3.3", "@testing-library/jest-dom": "^6.4.2", - "@testing-library/react": "14.0.0", + "@testing-library/react": "15.0.6", "@testing-library/react-hooks": "^8.0.1", "@testing-library/user-event": "^14.5.1", "@trivago/prettier-plugin-sort-imports": "^4.3.0", "@types/gtag.js": "^0.0.14", "@types/jest": "^29.5.10", - "@types/node": "^18.18.14", + "@types/node": "18.19.32", "@types/ramda": "^0.28.25", - "@types/react": "^18.2.24", - "@types/react-dom": "^18.2.9", + "@types/react": "18.3.1", + "@types/react-dom": "18.3.0", "@types/react-router": "^5.1.20", "@types/react-router-dom": "5.3.3", "@types/react-test-renderer": "^18.0.7", - "@typescript-eslint/eslint-plugin": "6.13.1", - "@typescript-eslint/parser": "6.13.1", + "@typescript-eslint/eslint-plugin": "7.8.0", + "@typescript-eslint/parser": "7.8.0", "@typescript-eslint/scope-manager": "5.62.0", "@vitejs/plugin-react": "^4.2.0", "aws-cdk": "^2.111.0", @@ -53,7 +53,7 @@ "babel-jest": "29.7.0", "constructs": "^10.3.0", "esbuild": "0.19.8", - "eslint": "^8.54.0", + "eslint": "8.57.0", "eslint-config-prettier": "9.0.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-formatjs": "^4.11.3", @@ -69,8 +69,8 @@ "jest-matcher-utils": "^29.7.0", "jest-watch-typeahead": "^2.2.2", "lint-staged": "^14.0.1", - "nx": "17.1.3", - "nx-cloud": "16.5.2", + "nx": "19.0.1", + "nx-cloud": "18.0.1", "plop": "^4.0.0", "prettier": "^3.1.0", "prettier-plugin-tailwindcss": "^0.5.7", @@ -80,7 +80,7 @@ "ts-node": "10.9.1", "tsconfig-paths": "^4.2.0", "tslib": "^2.6.2", - "typescript": "5.2.2", + "typescript": "5.4.5", "vite": "^4.5.0", "vite-plugin-eslint": "^1.8.1", "vite-plugin-svgr": "^3.3.0", @@ -102,8 +102,8 @@ "@sentry/react": "^7.84.0", "@supercharge/strings": "^2.0.0", "ramda": "^0.28.0", - "react": "^18.2.0", - "react-dom": "^18.2.0", + "react": "18.3.1", + "react-dom": "18.3.1", "react-helmet-async": "^1.3.0", "react-hook-form": "^7.48.2", "react-intl": "^6.5.5", @@ -116,7 +116,7 @@ }, "pnpm": { "patchedDependencies": { - "nx@17.1.3": "patches/nx@17.1.3.patch" + "nx@19.0.1": "patches/nx@19.0.1.patch" } } } diff --git a/packages/webapp-libs/webapp-core/src/components/alert/__tests__/alert.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/alert/__tests__/alert.component.spec.tsx index 569df3294..e2d2b07de 100644 --- a/packages/webapp-libs/webapp-core/src/components/alert/__tests__/alert.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/alert/__tests__/alert.component.spec.tsx @@ -1,5 +1,4 @@ import { screen } from '@testing-library/react'; -import React from 'react'; import { Alert, AlertDescription, AlertTitle } from '../'; import { render } from '../../../tests/utils/rendering'; diff --git a/packages/webapp-libs/webapp-core/src/components/cards/__tests__/cards.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/cards/__tests__/cards.component.spec.tsx index 1170e90b0..0c52557f2 100644 --- a/packages/webapp-libs/webapp-core/src/components/cards/__tests__/cards.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/cards/__tests__/cards.component.spec.tsx @@ -1,10 +1,7 @@ -import { render , screen } from '@testing-library/react'; +import { render, screen } from '@testing-library/react'; -import React from 'react'; import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '../'; - - describe('Cards: Component', () => { const content = 'content'; const header = 'header'; diff --git a/packages/webapp-libs/webapp-core/src/components/dialog/__tests__/dialog.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/dialog/__tests__/dialog.component.spec.tsx index d4f1a1e46..3a85370e7 100644 --- a/packages/webapp-libs/webapp-core/src/components/dialog/__tests__/dialog.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/dialog/__tests__/dialog.component.spec.tsx @@ -1,5 +1,4 @@ import { fireEvent, screen } from '@testing-library/react'; -import React from 'react'; import { Dialog, DialogContent, DialogHeader } from '../'; import { render } from '../../../tests/utils/rendering'; diff --git a/packages/webapp-libs/webapp-core/src/components/forms/checkbox/__tests__/checkbox.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/forms/checkbox/__tests__/checkbox.component.spec.tsx index 8be8cb899..1658e258f 100644 --- a/packages/webapp-libs/webapp-core/src/components/forms/checkbox/__tests__/checkbox.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/forms/checkbox/__tests__/checkbox.component.spec.tsx @@ -1,6 +1,6 @@ import { screen } from '@testing-library/react'; import { userEvent } from '@testing-library/user-event'; -import React, { ReactNode } from 'react'; +import { ReactNode } from 'react'; import { render } from '../../../../tests/utils/rendering'; import { Checkbox } from '../checkbox.component'; @@ -19,7 +19,7 @@ describe('Checkbox: Component', () => { it('should be unchecked by default', async () => { render(); - expect(((await screen.findByRole('checkbox', { hidden: true })) as HTMLButtonElement).dataset.state).toEqual( + expect(((await screen.findByRole('checkbox', { hidden: true })) as HTMLButtonElement).dataset['state']).toEqual( 'unchecked' ); }); @@ -27,7 +27,7 @@ describe('Checkbox: Component', () => { it('should be checked after clicking', async () => { render(); await userEvent.click(await screen.findByText('Checkbox label')); - expect((screen.getByRole('checkbox', { hidden: true }) as HTMLButtonElement).dataset.state).toEqual('checked'); + expect((screen.getByRole('checkbox', { hidden: true }) as HTMLButtonElement).dataset['state']).toEqual('checked'); }); it('should render provided error message', async () => { diff --git a/packages/webapp-libs/webapp-core/src/components/forms/form/__tests__/form.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/forms/form/__tests__/form.component.spec.tsx index a0b0394e0..5c91b60d9 100644 --- a/packages/webapp-libs/webapp-core/src/components/forms/form/__tests__/form.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/forms/form/__tests__/form.component.spec.tsx @@ -1,5 +1,4 @@ import { screen } from '@testing-library/react'; -import React from 'react'; import { useForm } from 'react-hook-form'; import { Form, FormField, FormItem, FormLabel, FormMessage } from '../'; diff --git a/packages/webapp-libs/webapp-core/src/components/pageHeadline/__tests__/pageHeadline.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/pageHeadline/__tests__/pageHeadline.component.spec.tsx index ed1245fb6..1847e9e37 100644 --- a/packages/webapp-libs/webapp-core/src/components/pageHeadline/__tests__/pageHeadline.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/pageHeadline/__tests__/pageHeadline.component.spec.tsx @@ -1,5 +1,4 @@ import { screen } from '@testing-library/react'; -import React from 'react'; import { PageHeadline, PageHeadlineProps } from '../'; import { render } from '../../../tests/utils/rendering'; @@ -14,7 +13,7 @@ describe('PageHeadline', () => { it('Should render page headline with header', async () => { render(); - expect(await screen.getByTestId('testid').className).toContain('h-12'); + expect(screen.getByTestId('testid').className).toContain('h-12'); expect(screen.getByText(header)).toBeInTheDocument(); }); diff --git a/packages/webapp-libs/webapp-core/src/components/pageLayout/__tests__/pageLayout.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/pageLayout/__tests__/pageLayout.component.spec.tsx index 2a77b5059..c3a6e97f9 100644 --- a/packages/webapp-libs/webapp-core/src/components/pageLayout/__tests__/pageLayout.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/pageLayout/__tests__/pageLayout.component.spec.tsx @@ -1,5 +1,4 @@ import { screen } from '@testing-library/react'; -import React from 'react'; import { PageLayout } from '../'; import { render } from '../../../tests/utils/rendering'; @@ -8,6 +7,6 @@ describe('PageLayout', () => { it('Should render page layout', async () => { render(); - expect(await screen.getByTestId('testid').className).toContain('flex-1 space-y-8 px-8 lg:max-w-3xl'); + expect(screen.getByTestId('testid').className).toContain('flex-1 space-y-8 px-8 lg:max-w-3xl'); }); }); diff --git a/packages/webapp-libs/webapp-core/src/components/pagination/__tests__/pagination.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/pagination/__tests__/pagination.component.spec.tsx index c9c98565f..71e20db88 100644 --- a/packages/webapp-libs/webapp-core/src/components/pagination/__tests__/pagination.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/pagination/__tests__/pagination.component.spec.tsx @@ -1,5 +1,4 @@ import { screen } from '@testing-library/react'; -import React from 'react'; import { render } from '../../../tests/utils/rendering'; import { Pagination, PaginationProps } from '../pagination.component'; diff --git a/packages/webapp-libs/webapp-core/src/components/popover/__tests__/popover.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/popover/__tests__/popover.component.spec.tsx index cda695c2d..72c49d3c2 100644 --- a/packages/webapp-libs/webapp-core/src/components/popover/__tests__/popover.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/popover/__tests__/popover.component.spec.tsx @@ -1,7 +1,6 @@ import * as PopoverPrimitive from '@radix-ui/react-popover'; import { screen } from '@testing-library/react'; import { userEvent } from '@testing-library/user-event'; -import React from 'react'; import { Popover, PopoverContent, PopoverTrigger } from '../'; import { render } from '../../../tests/utils/rendering'; diff --git a/packages/webapp-libs/webapp-core/src/components/separator/__tests__/separator.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/separator/__tests__/separator.component.spec.tsx index 329b336e0..e0793561f 100644 --- a/packages/webapp-libs/webapp-core/src/components/separator/__tests__/separator.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/separator/__tests__/separator.component.spec.tsx @@ -1,5 +1,4 @@ import { screen } from '@testing-library/react'; -import React from 'react'; import { render } from '../../../tests/utils/rendering'; import { Separator } from '../separator.component'; diff --git a/packages/webapp-libs/webapp-core/src/components/skeleton/__tests__/skeleton.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/skeleton/__tests__/skeleton.component.spec.tsx index 591e2f155..6bd81f8be 100644 --- a/packages/webapp-libs/webapp-core/src/components/skeleton/__tests__/skeleton.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/skeleton/__tests__/skeleton.component.spec.tsx @@ -1,13 +1,12 @@ import { screen } from '@testing-library/react'; -import React from 'react'; -import { render } from '../../../tests/utils/rendering'; import { Skeleton } from '../'; +import { render } from '../../../tests/utils/rendering'; describe('Skeleton', () => { it('Should render rounded skeleton', async () => { render(); - expect(await screen.getByTestId('testid').className).toContain('h-12 w-12 rounded-full'); + expect(screen.getByTestId('testid').className).toContain('h-12 w-12 rounded-full'); }); }); diff --git a/packages/webapp-libs/webapp-core/src/components/table/__tests__/table.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/table/__tests__/table.component.spec.tsx index 0111799de..8157654ce 100644 --- a/packages/webapp-libs/webapp-core/src/components/table/__tests__/table.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/table/__tests__/table.component.spec.tsx @@ -1,5 +1,4 @@ import { screen } from '@testing-library/react'; -import React from 'react'; import { Table, TableBody, TableCaption, TableCell, TableHead, TableHeader, TableRow } from '../'; import { render } from '../../../tests/utils/rendering'; diff --git a/packages/webapp-libs/webapp-core/src/components/tabs/__tests__/tabs.component.spec.tsx b/packages/webapp-libs/webapp-core/src/components/tabs/__tests__/tabs.component.spec.tsx index 4ac98458b..672707c92 100644 --- a/packages/webapp-libs/webapp-core/src/components/tabs/__tests__/tabs.component.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/components/tabs/__tests__/tabs.component.spec.tsx @@ -1,7 +1,6 @@ import * as TabsPrimitive from '@radix-ui/react-tabs/dist'; import { screen } from '@testing-library/react'; import { userEvent } from '@testing-library/user-event'; -import React from 'react'; import { Tabs, TabsContent, TabsList, TabsTrigger } from '../'; import { render } from '../../../tests/utils/rendering'; diff --git a/packages/webapp-libs/webapp-core/src/hooks/useLocales/__tests__/useLocales.hook.spec.tsx b/packages/webapp-libs/webapp-core/src/hooks/useLocales/__tests__/useLocales.hook.spec.tsx index 072dbc669..7a467fd7a 100644 --- a/packages/webapp-libs/webapp-core/src/hooks/useLocales/__tests__/useLocales.hook.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/hooks/useLocales/__tests__/useLocales.hook.spec.tsx @@ -1,4 +1,4 @@ -import { renderHook } from '@testing-library/react-hooks'; +import { renderHook } from '@testing-library/react'; import { useLocales } from '../'; import { Locale } from '../../../config/i18n'; diff --git a/packages/webapp-libs/webapp-core/src/hooks/useMappedConnection/__tests__/useMappedConnection.hook.spec.ts b/packages/webapp-libs/webapp-core/src/hooks/useMappedConnection/__tests__/useMappedConnection.hook.spec.ts index d0d9b6365..30d9a0529 100644 --- a/packages/webapp-libs/webapp-core/src/hooks/useMappedConnection/__tests__/useMappedConnection.hook.spec.ts +++ b/packages/webapp-libs/webapp-core/src/hooks/useMappedConnection/__tests__/useMappedConnection.hook.spec.ts @@ -1,4 +1,4 @@ -import { renderHook } from '@testing-library/react-hooks'; +import { renderHook } from '@testing-library/react'; import { useMappedConnection } from '../useMappedConnection.hook'; diff --git a/packages/webapp-libs/webapp-core/src/hooks/useMediaQuery/__tests__/useMediaQuery.hook.spec.tsx b/packages/webapp-libs/webapp-core/src/hooks/useMediaQuery/__tests__/useMediaQuery.hook.spec.tsx index 6a6072801..5d73223d4 100644 --- a/packages/webapp-libs/webapp-core/src/hooks/useMediaQuery/__tests__/useMediaQuery.hook.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/hooks/useMediaQuery/__tests__/useMediaQuery.hook.spec.tsx @@ -1,4 +1,4 @@ -import { renderHook } from '@testing-library/react-hooks'; +import { renderHook } from '@testing-library/react'; import { ResponsiveThemeProvider } from '../../../providers'; import { media } from '../../../theme'; diff --git a/packages/webapp-libs/webapp-core/src/hooks/useOpenState/__tests__/useOpenState.hook.spec.ts b/packages/webapp-libs/webapp-core/src/hooks/useOpenState/__tests__/useOpenState.hook.spec.ts index d38dc9dd4..fa8444b6d 100644 --- a/packages/webapp-libs/webapp-core/src/hooks/useOpenState/__tests__/useOpenState.hook.spec.ts +++ b/packages/webapp-libs/webapp-core/src/hooks/useOpenState/__tests__/useOpenState.hook.spec.ts @@ -1,4 +1,4 @@ -import { act, renderHook } from '@testing-library/react-hooks'; +import { act, renderHook } from '@testing-library/react'; import { useOpenState } from '../useOpenState.hook'; diff --git a/packages/webapp-libs/webapp-core/src/hooks/useTheme/__tests__/useTheme.hook.spec.tsx b/packages/webapp-libs/webapp-core/src/hooks/useTheme/__tests__/useTheme.hook.spec.tsx index ab372d89f..c33332fe0 100644 --- a/packages/webapp-libs/webapp-core/src/hooks/useTheme/__tests__/useTheme.hook.spec.tsx +++ b/packages/webapp-libs/webapp-core/src/hooks/useTheme/__tests__/useTheme.hook.spec.tsx @@ -1,4 +1,4 @@ -import { renderHook } from '@testing-library/react-hooks'; +import { renderHook } from '@testing-library/react'; import { useTheme } from '../'; import { ThemeContext, Themes } from '../../../providers/themeProvider'; diff --git a/packages/webapp-libs/webapp-core/src/hooks/useWindowListener/__tests__/useWindowListener.hook.spec.ts b/packages/webapp-libs/webapp-core/src/hooks/useWindowListener/__tests__/useWindowListener.hook.spec.ts index 3d3b94f2d..4f26b2a28 100644 --- a/packages/webapp-libs/webapp-core/src/hooks/useWindowListener/__tests__/useWindowListener.hook.spec.ts +++ b/packages/webapp-libs/webapp-core/src/hooks/useWindowListener/__tests__/useWindowListener.hook.spec.ts @@ -1,6 +1,6 @@ import { empty } from 'ramda'; import throttle from 'lodash.throttle'; -import { renderHook } from '@testing-library/react-hooks'; +import { renderHook } from '@testing-library/react'; import { useWindowListener } from '../useWindowListener.hook'; import { UnknownObject } from '../../../utils/types'; diff --git a/packages/webapp-libs/webapp-core/tsconfig.json b/packages/webapp-libs/webapp-core/tsconfig.json index 8122543a9..08045a3b6 100644 --- a/packages/webapp-libs/webapp-core/tsconfig.json +++ b/packages/webapp-libs/webapp-core/tsconfig.json @@ -7,7 +7,9 @@ "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true + "types": ["@testing-library/jest-dom"], + "noFallthroughCasesInSwitch": true, + "jsx": "react-jsx" }, "files": [], "include": [], diff --git a/packages/webapp/package.json b/packages/webapp/package.json index f85719f13..38430643f 100644 --- a/packages/webapp/package.json +++ b/packages/webapp/package.json @@ -19,8 +19,8 @@ "intl": "^1.2.5", "lucide-react": "^0.279.0", "qrcode": "^1.5.3", - "react": "^18.2.0", - "react-dom": "^18.2.0" + "react": "18.3.1", + "react-dom": "18.3.1" }, "devDependencies": { "@esbuild-plugins/node-globals-polyfill": "^0.2.3", diff --git a/packages/webapp/plop/reactHook/templates/__tests__/hook.spec.hbs b/packages/webapp/plop/reactHook/templates/__tests__/hook.spec.hbs index c7901636c..59b2b0a82 100644 --- a/packages/webapp/plop/reactHook/templates/__tests__/hook.spec.hbs +++ b/packages/webapp/plop/reactHook/templates/__tests__/hook.spec.hbs @@ -1,4 +1,4 @@ -import { renderHook } from '@testing-library/react-hooks'; +import { renderHook } from '@testing-library/react'; import { {{ camelCase name }} } from '../{{ camelCase name }}.hook'; describe('{{ camelCase name }}: Hook', () => { diff --git a/packages/webapp/src/shared/hooks/useRouterScrollToTop/__tests__/useRouterScrollToTop.hook.spec.ts b/packages/webapp/src/shared/hooks/useRouterScrollToTop/__tests__/useRouterScrollToTop.hook.spec.ts index 182f1bc4a..7b2b64a2a 100644 --- a/packages/webapp/src/shared/hooks/useRouterScrollToTop/__tests__/useRouterScrollToTop.hook.spec.ts +++ b/packages/webapp/src/shared/hooks/useRouterScrollToTop/__tests__/useRouterScrollToTop.hook.spec.ts @@ -1,4 +1,4 @@ -import { renderHook } from '@testing-library/react-hooks'; +import { renderHook } from '@testing-library/react'; import { useLocation } from 'react-router-dom'; import { useRouterScrollToTop } from '../'; diff --git a/patches/nx@17.1.3.patch b/patches/nx@19.0.1.patch similarity index 72% rename from patches/nx@17.1.3.patch rename to patches/nx@19.0.1.patch index dee8f071f..2a129c105 100644 --- a/patches/nx@17.1.3.patch +++ b/patches/nx@19.0.1.patch @@ -1,8 +1,8 @@ diff --git a/src/tasks-runner/run-command.js b/src/tasks-runner/run-command.js -index cd830d3c34639a5d8a52c12b3975e8c309ba8f9b..8300356271db5e2a815d3b51443a5f6682858181 100644 +index 68db405163db9a779d85f376ec2e6af6f08ce084..8c91bd498dc03b20e0c1d56301ce89a1af957756 100644 --- a/src/tasks-runner/run-command.js +++ b/src/tasks-runner/run-command.js -@@ -114,7 +114,7 @@ function setEnvVarsBasedOnArgs(nxArgs, loadDotEnvFiles) { +@@ -112,7 +112,7 @@ function setEnvVarsBasedOnArgs(nxArgs, loadDotEnvFiles) { if (nxArgs.outputStyle == 'stream-without-prefixes') { process.env.NX_STREAM_OUTPUT = 'true'; } @@ -10,4 +10,4 @@ index cd830d3c34639a5d8a52c12b3975e8c309ba8f9b..8300356271db5e2a815d3b51443a5f66 + if (loadDotEnvFiles && !process.env.NX_LOAD_DOT_ENV_FILES) { process.env.NX_LOAD_DOT_ENV_FILES = 'true'; } - } \ No newline at end of file + } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 10414ab03..ce6502979 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,9 +5,9 @@ settings: excludeLinksFromLockfile: false patchedDependencies: - nx@17.1.3: - hash: gccie2giwxnrau2zf7la4up2fa - path: patches/nx@17.1.3.patch + nx@19.0.1: + hash: kp7dxlsgbdjha3gqw56znlzome + path: patches/nx@19.0.1.patch importers: @@ -48,10 +48,10 @@ importers: version: 1.2.10 '@iconify/react': specifier: ^4.1.1 - version: 4.1.1(react@18.2.0) + version: 4.1.1(react@18.3.1) '@sentry/react': specifier: ^7.84.0 - version: 7.84.0(react@18.2.0) + version: 7.84.0(react@18.3.1) '@supercharge/strings': specifier: ^2.0.0 version: 2.0.0 @@ -59,84 +59,84 @@ importers: specifier: ^0.28.0 version: 0.28.0 react: - specifier: ^18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-dom: - specifier: ^18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) react-helmet-async: specifier: ^1.3.0 - version: 1.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-hook-form: specifier: ^7.48.2 - version: 7.48.2(react@18.2.0) + version: 7.48.2(react@18.3.1) react-intl: specifier: ^6.5.5 - version: 6.5.5(react@18.2.0)(typescript@5.2.2) + version: 6.5.5(react@18.3.1)(typescript@5.4.5) react-loading-skeleton: specifier: ^3.3.1 - version: 3.3.1(react@18.2.0) + version: 3.3.1(react@18.3.1) react-markdown: specifier: ^8.0.7 - version: 8.0.7(@types/react@18.2.79)(react@18.2.0) + version: 8.0.7(@types/react@18.3.1)(react@18.3.1) react-router: specifier: ^6.16.0 - version: 6.16.0(react@18.2.0) + version: 6.16.0(react@18.3.1) react-router-dom: specifier: 6.16.0 - version: 6.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 6.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) regenerator-runtime: specifier: ^0.14.0 version: 0.14.0 styled-components: specifier: 6.1.8 - version: 6.1.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 6.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: '@apollo/client': specifier: ^3.8.8 - version: 3.8.8(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)) + version: 3.8.8(graphql-ws@5.16.0(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)) '@apollo/rover': specifier: ^0.19.1 version: 0.19.1 '@babel/preset-react': specifier: ^7.24.1 - version: 7.24.1(@babel/core@7.23.5) + version: 7.24.1(@babel/core@7.24.4) '@graphql-codegen/cli': specifier: ^5.0.0 - version: 5.0.0(@types/node@18.18.14)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.2.2) + version: 5.0.0(@types/node@18.19.32)(encoding@0.1.13)(enquirer@2.4.1)(graphql@16.8.1)(typescript@5.4.5) '@graphql-typed-document-node/core': specifier: ^3.2.0 version: 3.2.0(graphql@16.8.1) '@nx/devkit': - specifier: 17.1.3 - version: 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) + specifier: 19.0.1 + version: 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) '@nx/eslint': - specifier: 17.1.3 - version: 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) + specifier: 19.0.1 + version: 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) '@nx/eslint-plugin': - specifier: 17.1.3 - version: 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-config-prettier@9.0.0(eslint@8.54.0))(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) + specifier: 19.0.1 + version: 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) '@nx/jest': - specifier: 17.1.3 - version: 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) + specifier: 19.0.1 + version: 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) '@nx/js': - specifier: 17.1.3 - version: 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) + specifier: 19.0.1 + version: 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) '@nx/node': - specifier: 17.1.3 - version: 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) + specifier: 19.0.1 + version: 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) '@nx/plugin': - specifier: 17.1.3 - version: 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) + specifier: 19.0.1 + version: 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) '@nx/react': - specifier: 17.1.3 - version: 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)(webpack@5.89.0(esbuild@0.19.8)) + specifier: 19.0.1 + version: 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)) '@nx/web': - specifier: 17.1.3 - version: 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) + specifier: 19.0.1 + version: 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) '@nx/webpack': - specifier: 17.1.3 - version: 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(esbuild@0.19.8)(html-webpack-plugin@5.6.0(webpack@5.89.0(esbuild@0.19.8)))(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) + specifier: 19.0.1 + version: 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(esbuild@0.19.8)(html-webpack-plugin@5.6.0(webpack@5.91.0(esbuild@0.19.8)))(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) '@sb/cli': specifier: workspace:* version: link:packages/internal/cli @@ -148,28 +148,28 @@ importers: version: 8.0.9 '@storybook/react': specifier: ^8.0.9 - version: 8.0.9(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + version: 8.0.9(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) '@svgr/webpack': specifier: ^8.1.0 - version: 8.1.0(typescript@5.2.2) + version: 8.1.0(typescript@5.4.5) '@tailwindcss/typography': specifier: ^0.5.10 - version: 0.5.10(tailwindcss@3.3.5(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))) + version: 0.5.10(tailwindcss@3.3.5(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))) '@testing-library/dom': specifier: ^9.3.3 - version: 9.3.3 + version: 9.3.4 '@testing-library/jest-dom': specifier: ^6.4.2 - version: 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.10)(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))) + version: 6.4.5(@jest/globals@29.7.0)(@types/jest@29.5.10)(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))) '@testing-library/react': - specifier: 14.0.0 - version: 14.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: 15.0.6 + version: 15.0.6(@types/react@18.3.1)(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@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.0.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@testing-library/user-event': specifier: ^14.5.1 - version: 14.5.1(@testing-library/dom@9.3.3) + version: 14.5.2(@testing-library/dom@9.3.4) '@trivago/prettier-plugin-sort-imports': specifier: ^4.3.0 version: 4.3.0(prettier@3.1.0) @@ -180,17 +180,17 @@ importers: specifier: ^29.5.10 version: 29.5.10 '@types/node': - specifier: ^18.18.14 - version: 18.18.14 + specifier: 18.19.32 + version: 18.19.32 '@types/ramda': specifier: ^0.28.25 version: 0.28.25 '@types/react': - specifier: ^18.2.24 - version: 18.2.79 + specifier: 18.3.1 + version: 18.3.1 '@types/react-dom': - specifier: ^18.2.9 - version: 18.2.9 + specifier: 18.3.0 + version: 18.3.0 '@types/react-router': specifier: ^5.1.20 version: 5.1.20 @@ -201,17 +201,17 @@ importers: specifier: ^18.0.7 version: 18.0.7 '@typescript-eslint/eslint-plugin': - specifier: 6.13.1 - version: 6.13.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint@8.54.0)(typescript@5.2.2) + specifier: 7.8.0 + version: 7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/parser': - specifier: 6.13.1 - version: 6.13.1(eslint@8.54.0)(typescript@5.2.2) + specifier: 7.8.0 + version: 7.8.0(eslint@8.57.0)(typescript@5.4.5) '@typescript-eslint/scope-manager': specifier: 5.62.0 version: 5.62.0 '@vitejs/plugin-react': specifier: ^4.2.0 - version: 4.2.0(vite@4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)) + version: 4.2.0(vite@4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0)) aws-cdk: specifier: ^2.111.0 version: 2.111.0 @@ -220,7 +220,7 @@ importers: version: 2.111.0(constructs@10.3.0) babel-jest: specifier: 29.7.0 - version: 29.7.0(@babel/core@7.23.5) + version: 29.7.0(@babel/core@7.24.4) constructs: specifier: ^10.3.0 version: 10.3.0 @@ -228,32 +228,32 @@ importers: specifier: 0.19.8 version: 0.19.8 eslint: - specifier: ^8.54.0 - version: 8.54.0 + specifier: 8.57.0 + version: 8.57.0 eslint-config-prettier: specifier: 9.0.0 - version: 9.0.0(eslint@8.54.0) + version: 9.0.0(eslint@8.57.0) eslint-import-resolver-typescript: specifier: ^3.6.1 - version: 3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0) + version: 3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0) eslint-plugin-formatjs: specifier: ^4.11.3 - version: 4.11.3(eslint@8.54.0)(ts-jest@29.1.1(@babel/core@7.23.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.5))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)))(typescript@5.2.2)) + version: 4.11.3(eslint@8.57.0)(ts-jest@29.1.1(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)))(typescript@5.4.5)) eslint-plugin-import: specifier: 2.28.1 - version: 2.28.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0) + version: 2.28.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-jsx-a11y: specifier: ^6.8.0 - version: 6.8.0(eslint@8.54.0) + version: 6.8.0(eslint@8.57.0) eslint-plugin-react: specifier: 7.33.2 - version: 7.33.2(eslint@8.54.0) + version: 7.33.2(eslint@8.57.0) eslint-plugin-react-hooks: specifier: 4.6.0 - version: 4.6.0(eslint@8.54.0) + version: 4.6.0(eslint@8.57.0) eslint-plugin-testing-library: specifier: ^6.2.0 - version: 6.2.0(eslint@8.54.0)(typescript@5.2.2) + version: 6.2.2(eslint@8.57.0)(typescript@5.4.5) graphql: specifier: ^16.8.1 version: 16.8.1 @@ -262,7 +262,7 @@ importers: version: 8.0.3 jest: specifier: 29.7.0 - version: 29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + version: 29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) jest-environment-jsdom: specifier: 29.7.0 version: 29.7.0 @@ -271,16 +271,16 @@ importers: version: 29.7.0 jest-watch-typeahead: specifier: ^2.2.2 - version: 2.2.2(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))) + version: 2.2.2(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))) lint-staged: specifier: ^14.0.1 - version: 14.0.1(enquirer@2.3.6) + version: 14.0.1(enquirer@2.4.1) nx: - specifier: 17.1.3 - version: 17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa) + specifier: 19.0.1 + version: 19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome) nx-cloud: - specifier: 16.5.2 - version: 16.5.2 + specifier: 18.0.1 + version: 18.0.1 plop: specifier: ^4.0.0 version: 4.0.0 @@ -292,16 +292,16 @@ importers: version: 0.5.7(@trivago/prettier-plugin-sort-imports@4.3.0(prettier@3.1.0))(prettier@3.1.0) tailwindcss: specifier: ^3.3.5 - version: 3.3.5(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + version: 3.3.5(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) tailwindcss-animate: specifier: ^1.0.7 - version: 1.0.7(tailwindcss@3.3.5(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))) + version: 1.0.7(tailwindcss@3.3.5(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))) ts-jest: specifier: 29.1.1 - version: 29.1.1(@babel/core@7.23.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.5))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)))(typescript@5.2.2) + version: 29.1.1(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)))(typescript@5.4.5) ts-node: specifier: 10.9.1 - version: 10.9.1(@types/node@18.18.14)(typescript@5.2.2) + version: 10.9.1(@types/node@18.19.32)(typescript@5.4.5) tsconfig-paths: specifier: ^4.2.0 version: 4.2.0 @@ -309,20 +309,20 @@ importers: specifier: ^2.6.2 version: 2.6.2 typescript: - specifier: 5.2.2 - version: 5.2.2 + specifier: 5.4.5 + version: 5.4.5 vite: specifier: ^4.5.0 - version: 4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4) + version: 4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0) vite-plugin-eslint: specifier: ^1.8.1 - version: 1.8.1(eslint@8.54.0)(vite@4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)) + version: 1.8.1(eslint@8.57.0)(vite@4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0)) vite-plugin-svgr: specifier: ^3.3.0 - version: 3.3.0(rollup@3.29.2)(typescript@5.2.2)(vite@4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)) + version: 3.3.0(rollup@3.29.2)(typescript@5.4.5)(vite@4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0)) vite-tsconfig-paths: specifier: ^4.2.1 - version: 4.2.1(typescript@5.2.2)(vite@4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)) + version: 4.2.1(typescript@5.4.5)(vite@4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0)) packages/backend: devDependencies: @@ -346,10 +346,10 @@ importers: dependencies: contentful-cli: specifier: ^2.8.27 - version: 2.8.27(@babel/core@7.24.4)(encoding@0.1.13)(enquirer@2.3.6)(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0))(eslint-plugin-n@16.6.2(eslint@8.54.0))(eslint-plugin-promise@6.1.1(eslint@8.54.0)) + version: 2.8.27(@babel/core@7.24.5)(encoding@0.1.13)(enquirer@2.4.1)(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0))(eslint-plugin-n@17.6.0(eslint@8.57.0))(eslint-plugin-promise@6.1.1(eslint@8.57.0)) contentful-migration: specifier: ^4.17.4 - version: 4.17.4(enquirer@2.3.6) + version: 4.17.4(enquirer@2.4.1) dotenv: specifier: ^16.3.1 version: 16.3.1 @@ -371,13 +371,13 @@ importers: version: 3.38.0(encoding@0.1.13) serverless-esbuild: specifier: ^1.48.0 - version: 1.48.0(esbuild@0.20.2) + version: 1.48.0(esbuild@0.21.1) packages/infra/infra-shared: devDependencies: '@aws-cdk/aws-apigatewayv2-alpha': specifier: 2.66.0-alpha.0 - version: 2.66.0-alpha.0(aws-cdk-lib@2.138.0(constructs@10.3.0))(constructs@10.3.0) + version: 2.66.0-alpha.0(aws-cdk-lib@2.141.0(constructs@10.3.0))(constructs@10.3.0) '@sb/core': specifier: workspace:* version: link:../../internal/core @@ -386,7 +386,7 @@ importers: version: link:../infra-core cdk-ec2-key-pair: specifier: ^3.3.3 - version: 3.3.3(aws-cdk-lib@2.138.0(constructs@10.3.0))(constructs@10.3.0) + version: 3.3.3(aws-cdk-lib@2.141.0(constructs@10.3.0))(constructs@10.3.0) packages/internal/cli: dependencies: @@ -459,7 +459,7 @@ importers: version: 5.2.0(eslint@8.54.0) eslint-config-oclif-typescript: specifier: ^3.1.6 - version: 3.1.7(eslint@8.54.0)(typescript@5.2.2) + version: 3.1.7(eslint@8.54.0)(typescript@5.4.5) oclif: specifier: ^4.8.8 version: 4.10.4 @@ -483,13 +483,13 @@ importers: dependencies: '@docusaurus/core': specifier: ^3.2.1 - version: 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + version: 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/preset-classic': specifier: ^3.2.1 - version: 3.2.1(@algolia/client-search@4.23.3)(@types/react@18.2.79)(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0)(typescript@5.2.2) + version: 3.2.1(@algolia/client-search@4.23.3)(@types/react@18.3.1)(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.5) '@mdx-js/react': specifier: ^3.0.1 - version: 3.0.1(@types/react@18.2.79)(react@18.2.0) + version: 3.0.1(@types/react@18.3.1)(react@18.2.0) clsx: specifier: ^1.2.1 version: 1.2.1 @@ -529,13 +529,13 @@ importers: version: link:../../webapp-libs/webapp-core docusaurus-plugin-typedoc: specifier: ^0.22.0 - version: 0.22.0(typedoc-plugin-markdown@3.17.1(typedoc@0.25.13(typescript@5.2.2)))(typedoc@0.25.13(typescript@5.2.2)) + version: 0.22.0(typedoc-plugin-markdown@3.17.1(typedoc@0.25.13(typescript@5.4.5)))(typedoc@0.25.13(typescript@5.4.5)) typedoc: specifier: ^0.25.13 - version: 0.25.13(typescript@5.2.2) + version: 0.25.13(typescript@5.4.5) typedoc-plugin-markdown: specifier: ^3.17.1 - version: 3.17.1(typedoc@0.25.13(typescript@5.2.2)) + version: 3.17.1(typedoc@0.25.13(typescript@5.4.5)) webapp: specifier: '*' version: 0.0.2 @@ -554,7 +554,7 @@ importers: devDependencies: '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.5.11 - version: 0.5.11(react-refresh@0.14.0)(type-fest@4.8.2)(webpack-dev-server@4.15.2(webpack@5.91.0(esbuild@0.19.8)))(webpack@5.91.0(esbuild@0.19.8)) + version: 0.5.11(react-refresh@0.14.2)(type-fest@4.18.2)(webpack-dev-server@4.15.2(webpack@5.91.0(esbuild@0.19.8)))(webpack@5.91.0(esbuild@0.19.8)) '@sb/core': specifier: workspace:* version: link:../core @@ -569,7 +569,7 @@ importers: version: link:../tools babel-plugin-styled-components: specifier: ^2.1.4 - version: 2.1.4(@babel/core@7.24.4)(styled-components@6.1.8(react-dom@16.14.0(react@16.14.0))(react@16.14.0)) + version: 2.1.4(@babel/core@7.24.5)(styled-components@6.1.11(react-dom@16.14.0(react@16.14.0))(react@16.14.0)) packages/internal/tools: devDependencies: @@ -584,16 +584,16 @@ importers: version: 1.2.5 lucide-react: specifier: ^0.279.0 - version: 0.279.0(react@18.2.0) + version: 0.279.0(react@18.3.1) qrcode: specifier: ^1.5.3 version: 1.5.3 react: - specifier: ^18.2.0 - version: 18.2.0 + specifier: 18.3.1 + version: 18.3.1 react-dom: - specifier: ^18.2.0 - version: 18.2.0(react@18.2.0) + specifier: 18.3.1 + version: 18.3.1(react@18.3.1) devDependencies: '@esbuild-plugins/node-globals-polyfill': specifier: ^0.2.3 @@ -651,16 +651,16 @@ importers: version: link:../webapp-libs/webapp-notifications '@storybook/addon-essentials': specifier: ^8.0.9 - version: 8.0.9(@types/react@18.2.79)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.0.9(@types/react@18.3.1)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-measure': specifier: ^8.0.9 version: 8.0.9 '@storybook/addon-styling': specifier: ^1.3.7 - version: 1.3.7(@types/react-dom@18.2.9)(@types/react@18.2.79)(encoding@0.1.13)(less@4.2.0)(postcss@8.4.31)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.67.0)(typescript@5.2.2)(webpack@5.91.0(esbuild@0.20.2)) + version: 1.3.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(encoding@0.1.13)(less@4.2.0)(postcss@8.4.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.20.2)) '@storybook/cli': specifier: ^8.0.9 - version: 8.0.9(@babel/preset-env@7.24.4(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.0.9(@babel/preset-env@7.24.4(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-api': specifier: ^7.6.17 version: 7.6.17 @@ -669,13 +669,13 @@ importers: version: 8.0.9 '@storybook/react-vite': specifier: ^8.0.9 - version: 8.0.9(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@3.29.2)(typescript@5.2.2)(vite@4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)) + version: 8.0.9(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.17.2)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0)) '@types/qrcode': specifier: ^1.5.5 version: 1.5.5 '@vitejs/plugin-legacy': specifier: ^4.1.1 - version: 4.1.1(terser@5.30.4)(vite@4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)) + version: 4.1.1(terser@5.31.0)(vite@5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0)) autoprefixer: specifier: ^10.4.16 version: 10.4.16(postcss@8.4.31) @@ -696,16 +696,16 @@ importers: version: 2.1.2 rollup-plugin-polyfill-node: specifier: ^0.12.0 - version: 0.12.0(rollup@3.29.2) + version: 0.12.0(rollup@4.17.2) storybook: specifier: ^8.0.9 - version: 8.0.9(@babel/preset-env@7.24.4(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 8.0.9(@babel/preset-env@7.24.4(@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@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 4.0.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) storybook-react-router: specifier: ^1.0.8 - version: 1.0.8(@storybook/addon-actions@8.0.9)(react-dom@18.2.0(react@18.2.0))(react-router@6.23.0(react@18.2.0))(react@18.2.0) + version: 1.0.8(@storybook/addon-actions@8.0.10)(react-dom@18.3.1(react@18.3.1))(react-router@6.23.0(react@18.3.1))(react@18.3.1) stylelint: specifier: ^14.16.1 version: 14.16.1 @@ -726,7 +726,7 @@ importers: version: link:../webapp-core apollo-upload-client: specifier: ^17.0.0 - version: 17.0.0(@apollo/client@3.9.11(@types/react@18.2.79)(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)))(graphql@16.8.1) + version: 17.0.0(@apollo/client@3.10.3(@types/react@18.3.1)(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)))(graphql@16.8.1) axios: specifier: ^0.28.0 version: 0.28.1 @@ -751,7 +751,7 @@ importers: version: 4.0.1(encoding@0.1.13)(graphql@16.8.1) '@graphql-codegen/typescript-graphql-request': specifier: ^5.0.0 - version: 5.0.0(encoding@0.1.13)(graphql-request@6.1.0(encoding@0.1.13)(graphql@16.8.1))(graphql-tag@2.12.6(graphql@16.8.1))(graphql@16.8.1) + version: 5.0.0(encoding@0.1.13)(graphql-request@7.0.0(graphql@16.8.1))(graphql-tag@2.12.6(graphql@16.8.1))(graphql@16.8.1) '@graphql-codegen/typescript-operations': specifier: ^4.0.1 version: 4.0.1(encoding@0.1.13)(graphql@16.8.1) @@ -760,7 +760,7 @@ importers: version: 9.0.1(graphql@16.8.1) '@types/apollo-upload-client': specifier: ^17.0.5 - version: 17.0.5(graphql-ws@5.14.2(graphql@16.8.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)) + version: 17.0.5(graphql-ws@5.14.2(graphql@16.8.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)) fs-extra: specifier: ^11.2.0 version: 11.2.0 @@ -769,7 +769,7 @@ importers: version: 5.14.2(graphql@16.8.1) msw: specifier: ^1.3.2 - version: 1.3.2(encoding@0.1.13)(typescript@5.2.2) + version: 1.3.2(encoding@0.1.13)(typescript@5.4.5) subscriptions-transport-ws: specifier: ^0.11.0 version: 0.11.0(graphql@16.8.1) @@ -787,7 +787,7 @@ importers: version: 16.3.1 lucide-react: specifier: ^0.224.0 - version: 0.224.0(react@18.2.0) + version: 0.224.0(react@18.3.1) query-string: specifier: ^7.1.3 version: 7.1.3 @@ -800,34 +800,34 @@ importers: dependencies: '@radix-ui/react-avatar': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-checkbox': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-dialog': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-label': specifier: ^2.0.2 - version: 2.0.2(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-popover': specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-radio-group': specifier: ^1.1.3 - version: 1.1.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-separator': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-slot': specifier: ^1.0.2 - version: 1.0.2(@types/react@18.2.79)(react@18.2.0) + version: 1.0.2(@types/react@18.3.1)(react@18.3.1) '@radix-ui/react-tabs': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-toast': specifier: ^1.1.5 - version: 1.1.5(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) color: specifier: ^4.2.3 version: 4.2.3 @@ -839,7 +839,7 @@ importers: version: 4.1.1 react-dropzone: specifier: ^14.2.3 - version: 14.2.3(react@18.2.0) + version: 14.2.3(react@18.3.1) devDependencies: '@types/color': specifier: ^3.0.6 @@ -849,7 +849,7 @@ importers: version: 4.1.9 babel-jest: specifier: 28.1.3 - version: 28.1.3(@babel/core@7.23.5) + version: 28.1.3(@babel/core@7.24.4) class-variance-authority: specifier: ^0.6.1 version: 0.6.1 @@ -861,7 +861,7 @@ importers: version: 3.0.0(encoding@0.1.13) lucide-react: specifier: ^0.224.0 - version: 0.224.0(react@18.2.0) + version: 0.224.0(react@18.3.1) mockdate: specifier: ^3.0.5 version: 3.0.5 @@ -885,10 +885,10 @@ importers: version: link:../webapp-notifications lucide-react: specifier: ^0.224.0 - version: 0.224.0(react@18.2.0) + version: 0.224.0(react@18.3.1) react-click-away-listener: specifier: ^2.2.3 - version: 2.2.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) packages/webapp-libs/webapp-documents: dependencies: @@ -900,7 +900,7 @@ importers: version: link:../webapp-core lucide-react: specifier: ^0.224.0 - version: 0.224.0(react@18.2.0) + version: 0.224.0(react@18.3.1) packages/webapp-libs/webapp-emails: dependencies: @@ -919,10 +919,10 @@ importers: devDependencies: '@esbuild-plugins/node-globals-polyfill': specifier: ^0.2.3 - version: 0.2.3(esbuild@0.20.2) + version: 0.2.3(esbuild@0.21.1) '@esbuild-plugins/node-modules-polyfill': specifier: ^0.2.2 - version: 0.2.2(esbuild@0.20.2) + version: 0.2.2(esbuild@0.21.1) '@originjs/vite-plugin-commonjs': specifier: ^1.0.3 version: 1.0.3 @@ -934,10 +934,10 @@ importers: version: 0.28.1 rollup-plugin-peer-deps-external: specifier: ^2.2.4 - version: 2.2.4(rollup@3.29.2) + version: 2.2.4(rollup@4.17.2) rollup-plugin-polyfill-node: specifier: ^0.12.0 - version: 0.12.0(rollup@3.29.2) + version: 0.12.0(rollup@4.17.2) packages/webapp-libs/webapp-finances: dependencies: @@ -952,17 +952,17 @@ importers: version: link:../webapp-notifications '@stripe/react-stripe-js': specifier: ^1.16.5 - version: 1.16.5(@stripe/stripe-js@1.54.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 1.16.5(@stripe/stripe-js@1.54.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@stripe/stripe-js': specifier: ^1.54.2 version: 1.54.2 react-click-away-listener: specifier: ^2.2.3 - version: 2.2.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) devDependencies: lucide-react: specifier: ^0.224.0 - version: 0.224.0(react@18.2.0) + version: 0.224.0(react@18.3.1) packages/webapp-libs/webapp-generative-ai: dependencies: @@ -974,7 +974,7 @@ importers: version: link:../webapp-core typewriter-effect: specifier: ^2.21.0 - version: 2.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.21.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) packages/webapp-libs/webapp-notifications: dependencies: @@ -986,13 +986,13 @@ importers: version: link:../webapp-core lucide-react: specifier: ^0.224.0 - version: 0.224.0(react@18.2.0) + version: 0.224.0(react@18.3.1) react-click-away-listener: specifier: ^2.2.3 - version: 2.2.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-infinite-scroll-hook: specifier: ^4.1.1 - version: 4.1.1(react@18.2.0) + version: 4.1.1(react@18.3.1) packages/workers: dependencies: @@ -1023,7 +1023,7 @@ importers: version: 3.38.0(encoding@0.1.13) serverless-esbuild: specifier: ^1.48.0 - version: 1.48.0(esbuild@0.20.2) + version: 1.48.0(esbuild@0.21.1) serverless-localstack: specifier: ^1.1.2 version: 1.1.2 @@ -1040,9 +1040,6 @@ packages: resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} engines: {node: '>=0.10.0'} - '@adobe/css-tools@4.3.1': - resolution: {integrity: sha512-/62yikz7NLScCGAAST5SHdnjaDJQBDq0M2muyRTpf2VQhw6StBg2ALiu73zSJQ4fMVLA+0uBhBHAle7Wg+2kSg==} - '@adobe/css-tools@4.3.3': resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==} @@ -1126,10 +1123,10 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@apollo/client@3.8.8': - resolution: {integrity: sha512-omjd9ryGDkadZrKW6l5ktUAdS4SNaFOccYQ4ZST0HLW83y8kQaSZOCTNlpkoBUK8cv6qP8+AxOKwLm2ho8qQ+Q==} + '@apollo/client@3.10.3': + resolution: {integrity: sha512-4EIgZnFmRO1laWv3NCxlVIxcvimG63djuAXvyXhpQH3wkNMv9SykrasKRN08+z+cn/fVisBOLmkSRdyNyP9f4A==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: ^15.0.0 || ^16.0.0 graphql-ws: ^5.5.5 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -1144,10 +1141,10 @@ packages: subscriptions-transport-ws: optional: true - '@apollo/client@3.9.11': - resolution: {integrity: sha512-H7e9m7cRcFO93tokwzqrsbnfKorkpV24xU30hFH5u2g6B+c1DMo/ouyF/YrBPdrTzqxQCjTUmds/FLmJ7626GA==} + '@apollo/client@3.8.8': + resolution: {integrity: sha512-omjd9ryGDkadZrKW6l5ktUAdS4SNaFOccYQ4ZST0HLW83y8kQaSZOCTNlpkoBUK8cv6qP8+AxOKwLm2ho8qQ+Q==} peerDependencies: - graphql: ^15.0.0 || ^16.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 graphql-ws: ^5.5.5 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -1632,10 +1629,6 @@ packages: resolution: {integrity: sha512-Db25jK9sZdGa7PEQTdm60YauUVbeYGsSEMQOHGP6ifbXfCknqgkPgWV16DqAKJUsbII0xgkJ9LpppkmYal3K/g==} engines: {node: '>=16.0.0'} - '@babel/code-frame@7.22.13': - resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} - engines: {node: '>=6.9.0'} - '@babel/code-frame@7.23.5': resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} engines: {node: '>=6.9.0'} @@ -1664,6 +1657,10 @@ packages: resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==} engines: {node: '>=6.9.0'} + '@babel/core@7.24.5': + resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==} + engines: {node: '>=6.9.0'} + '@babel/eslint-parser@7.22.15': resolution: {integrity: sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} @@ -1687,6 +1684,10 @@ packages: resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==} engines: {node: '>=6.9.0'} + '@babel/generator@7.24.5': + resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.22.5': resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} @@ -1726,11 +1727,6 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - '@babel/helper-define-polyfill-provider@0.4.3': - resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - '@babel/helper-define-polyfill-provider@0.6.1': resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==} peerDependencies: @@ -1766,6 +1762,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-module-transforms@7.24.5': + resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.22.5': resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} @@ -1800,6 +1802,10 @@ packages: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} + '@babel/helper-simple-access@7.24.5': + resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} @@ -1808,6 +1814,10 @@ packages: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} + '@babel/helper-split-export-declaration@7.24.5': + resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==} + engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.22.5': resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} @@ -1824,6 +1834,10 @@ packages: resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.24.5': + resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.23.5': resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} engines: {node: '>=6.9.0'} @@ -1840,16 +1854,12 @@ packages: resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.22.20': - resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} - engines: {node: '>=6.9.0'} - - '@babel/highlight@7.23.4': - resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} + '@babel/helpers@7.24.5': + resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==} engines: {node: '>=6.9.0'} - '@babel/highlight@7.24.2': - resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} + '@babel/highlight@7.24.5': + resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==} engines: {node: '>=6.9.0'} '@babel/parser@7.22.16': @@ -1867,6 +1877,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.24.5': + resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4': resolution: {integrity: sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==} engines: {node: '>=6.9.0'} @@ -1879,12 +1894,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3': - resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1': resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==} engines: {node: '>=6.9.0'} @@ -1897,24 +1906,12 @@ packages: peerDependencies: '@babel/core': ^7.13.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3': - resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1': resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3': - resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1': resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==} engines: {node: '>=6.9.0'} @@ -2008,12 +2005,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-assertions@7.23.3': - resolution: {integrity: sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-assertions@7.24.1': resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==} engines: {node: '>=6.9.0'} @@ -2026,12 +2017,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-attributes@7.23.3': - resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-syntax-import-attributes@7.24.1': resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==} engines: {node: '>=6.9.0'} @@ -2132,12 +2117,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-arrow-functions@7.23.3': - resolution: {integrity: sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-arrow-functions@7.24.1': resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==} engines: {node: '>=6.9.0'} @@ -2150,12 +2129,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-generator-functions@7.23.4': - resolution: {integrity: sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-generator-functions@7.24.3': resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==} engines: {node: '>=6.9.0'} @@ -2168,12 +2141,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-to-generator@7.23.3': - resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-async-to-generator@7.24.1': resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==} engines: {node: '>=6.9.0'} @@ -2186,12 +2153,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoped-functions@7.23.3': - resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoped-functions@7.24.1': resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==} engines: {node: '>=6.9.0'} @@ -2204,12 +2165,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoping@7.23.4': - resolution: {integrity: sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-block-scoping@7.24.4': resolution: {integrity: sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==} engines: {node: '>=6.9.0'} @@ -2234,12 +2189,6 @@ packages: peerDependencies: '@babel/core': ^7.12.0 - '@babel/plugin-transform-class-static-block@7.23.4': - resolution: {integrity: sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - '@babel/plugin-transform-class-static-block@7.24.4': resolution: {integrity: sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==} engines: {node: '>=6.9.0'} @@ -2252,12 +2201,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-classes@7.23.5': - resolution: {integrity: sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-classes@7.24.1': resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==} engines: {node: '>=6.9.0'} @@ -2270,12 +2213,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-computed-properties@7.23.3': - resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-computed-properties@7.24.1': resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==} engines: {node: '>=6.9.0'} @@ -2288,12 +2225,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-destructuring@7.23.3': - resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-destructuring@7.24.1': resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==} engines: {node: '>=6.9.0'} @@ -2306,12 +2237,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-dotall-regex@7.23.3': - resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-dotall-regex@7.24.1': resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==} engines: {node: '>=6.9.0'} @@ -2324,12 +2249,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-duplicate-keys@7.23.3': - resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-duplicate-keys@7.24.1': resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==} engines: {node: '>=6.9.0'} @@ -2342,12 +2261,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-dynamic-import@7.23.4': - resolution: {integrity: sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-dynamic-import@7.24.1': resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==} engines: {node: '>=6.9.0'} @@ -2360,12 +2273,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-exponentiation-operator@7.23.3': - resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-exponentiation-operator@7.24.1': resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==} engines: {node: '>=6.9.0'} @@ -2378,12 +2285,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-export-namespace-from@7.23.4': - resolution: {integrity: sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-export-namespace-from@7.24.1': resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==} engines: {node: '>=6.9.0'} @@ -2408,12 +2309,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-for-of@7.23.3': - resolution: {integrity: sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-for-of@7.24.1': resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==} engines: {node: '>=6.9.0'} @@ -2426,12 +2321,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-function-name@7.23.3': - resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-function-name@7.24.1': resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==} engines: {node: '>=6.9.0'} @@ -2444,12 +2333,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-json-strings@7.23.4': - resolution: {integrity: sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-json-strings@7.24.1': resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==} engines: {node: '>=6.9.0'} @@ -2462,12 +2345,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-literals@7.23.3': - resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-literals@7.24.1': resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==} engines: {node: '>=6.9.0'} @@ -2480,12 +2357,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-logical-assignment-operators@7.23.4': - resolution: {integrity: sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-logical-assignment-operators@7.24.1': resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==} engines: {node: '>=6.9.0'} @@ -2498,12 +2369,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-member-expression-literals@7.23.3': - resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-member-expression-literals@7.24.1': resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==} engines: {node: '>=6.9.0'} @@ -2516,12 +2381,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-amd@7.23.3': - resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-amd@7.24.1': resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==} engines: {node: '>=6.9.0'} @@ -2534,12 +2393,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-commonjs@7.23.3': - resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-commonjs@7.24.1': resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==} engines: {node: '>=6.9.0'} @@ -2552,12 +2405,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-systemjs@7.23.3': - resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-systemjs@7.24.1': resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==} engines: {node: '>=6.9.0'} @@ -2570,12 +2417,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-umd@7.23.3': - resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-modules-umd@7.24.1': resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==} engines: {node: '>=6.9.0'} @@ -2594,12 +2435,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-new-target@7.23.3': - resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-new-target@7.24.1': resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==} engines: {node: '>=6.9.0'} @@ -2612,12 +2447,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-nullish-coalescing-operator@7.23.4': - resolution: {integrity: sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.1': resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==} engines: {node: '>=6.9.0'} @@ -2630,12 +2459,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-numeric-separator@7.23.4': - resolution: {integrity: sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-numeric-separator@7.24.1': resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==} engines: {node: '>=6.9.0'} @@ -2648,12 +2471,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-rest-spread@7.23.4': - resolution: {integrity: sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-rest-spread@7.24.1': resolution: {integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==} engines: {node: '>=6.9.0'} @@ -2666,12 +2483,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-super@7.23.3': - resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-object-super@7.24.1': resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==} engines: {node: '>=6.9.0'} @@ -2684,12 +2495,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-catch-binding@7.23.4': - resolution: {integrity: sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-optional-catch-binding@7.24.1': resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==} engines: {node: '>=6.9.0'} @@ -2738,12 +2543,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-private-methods@7.23.3': - resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-private-methods@7.24.1': resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==} engines: {node: '>=6.9.0'} @@ -2756,12 +2555,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-private-property-in-object@7.23.4': - resolution: {integrity: sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-private-property-in-object@7.24.1': resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==} engines: {node: '>=6.9.0'} @@ -2774,12 +2567,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-property-literals@7.23.3': - resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-property-literals@7.24.1': resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==} engines: {node: '>=6.9.0'} @@ -2840,12 +2627,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-regenerator@7.23.3': - resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-regenerator@7.24.1': resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==} engines: {node: '>=6.9.0'} @@ -2858,24 +2639,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-reserved-words@7.23.3': - resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-reserved-words@7.24.1': resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-runtime@7.22.15': - resolution: {integrity: sha512-tEVLhk8NRZSmwQ0DJtxxhTrCht1HVo8VaMzYT4w6lwyKBuHsgoioAUA7/6eT2fRfc5/23fuGdlwIxXhRVgWr4g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-runtime@7.24.3': resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==} engines: {node: '>=6.9.0'} @@ -2888,12 +2657,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-shorthand-properties@7.23.3': - resolution: {integrity: sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-shorthand-properties@7.24.1': resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==} engines: {node: '>=6.9.0'} @@ -2906,12 +2669,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-spread@7.23.3': - resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-spread@7.24.1': resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==} engines: {node: '>=6.9.0'} @@ -2924,12 +2681,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-sticky-regex@7.23.3': - resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-sticky-regex@7.24.1': resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==} engines: {node: '>=6.9.0'} @@ -2942,12 +2693,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-template-literals@7.23.3': - resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-template-literals@7.24.1': resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==} engines: {node: '>=6.9.0'} @@ -2960,12 +2705,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typeof-symbol@7.23.3': - resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typeof-symbol@7.24.1': resolution: {integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==} engines: {node: '>=6.9.0'} @@ -2978,12 +2717,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.23.5': - resolution: {integrity: sha512-2fMkXEJkrmwgu2Bsv1Saxgj30IXZdJ+84lQcKKI7sm719oXs0BBw2ZENKdJdR1PjWndgLCEBNXJOri0fk7RYQA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-typescript@7.24.4': resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==} engines: {node: '>=6.9.0'} @@ -2996,12 +2729,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-escapes@7.23.3': - resolution: {integrity: sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-escapes@7.24.1': resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==} engines: {node: '>=6.9.0'} @@ -3014,12 +2741,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-property-regex@7.23.3': - resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-property-regex@7.24.1': resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==} engines: {node: '>=6.9.0'} @@ -3032,12 +2753,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-regex@7.23.3': - resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/plugin-transform-unicode-regex@7.24.1': resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==} engines: {node: '>=6.9.0'} @@ -3050,12 +2765,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0 - '@babel/plugin-transform-unicode-sets-regex@7.23.3': - resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - '@babel/plugin-transform-unicode-sets-regex@7.24.1': resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==} engines: {node: '>=6.9.0'} @@ -3068,12 +2777,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/preset-env@7.23.5': - resolution: {integrity: sha512-0d/uxVD6tFGWXGDSfyMD1p2otoaKmu6+GD+NfAx0tMaH+dxORnp7T9TaVQ6mKyya7iBtCIVxHjWT7MuzzM9z+A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/preset-env@7.24.4': resolution: {integrity: sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==} engines: {node: '>=6.9.0'} @@ -3103,12 +2806,6 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@babel/preset-typescript@7.23.3': - resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - '@babel/preset-typescript@7.24.1': resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==} engines: {node: '>=6.9.0'} @@ -3140,6 +2837,10 @@ packages: resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==} engines: {node: '>=6.9.0'} + '@babel/runtime@7.24.5': + resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==} + engines: {node: '>=6.9.0'} + '@babel/template@7.22.15': resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} @@ -3164,6 +2865,10 @@ packages: resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==} engines: {node: '>=6.9.0'} + '@babel/traverse@7.24.5': + resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==} + engines: {node: '>=6.9.0'} + '@babel/types@7.17.0': resolution: {integrity: sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==} engines: {node: '>=6.9.0'} @@ -3180,6 +2885,10 @@ packages: resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} engines: {node: '>=6.9.0'} + '@babel/types@7.24.5': + resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==} + engines: {node: '>=6.9.0'} + '@base2/pretty-print-object@1.0.1': resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} @@ -3382,15 +3091,62 @@ packages: '@docusaurus/types': optional: true + '@dprint/darwin-arm64@0.45.1': + resolution: {integrity: sha512-pH0/uKLJ5SJPoHhOwLWFMhCmL0BY3FzWQbull8OGMK/FRkIPgOl2adZSovtUZpUMGWyDOzIWH1fW9X2DuMhnEg==} + cpu: [arm64] + os: [darwin] + + '@dprint/darwin-x64@0.45.1': + resolution: {integrity: sha512-YUj421LmBLDlxpIER3pORKfQmpmXD50n5mClHjpZrnl17WTiHtQ+jHvDJdJoxH2eS66W0mQyxLoGo5SfFfiM7A==} + cpu: [x64] + os: [darwin] + + '@dprint/formatter@0.3.0': + resolution: {integrity: sha512-N9fxCxbaBOrDkteSOzaCqwWjso5iAe+WJPsHC021JfHNj2ThInPNEF13ORDKta3llq5D1TlclODCvOvipH7bWQ==} + + '@dprint/linux-arm64-glibc@0.45.1': + resolution: {integrity: sha512-lJ7s/pOQWRJ0mstjZQnVyX2/3QRXZ9cpFHJDZ7e81Y8QSn/iqxTrnK0DPgxUrDG8hYKQmWQdQLU4sP5DKBz0Jg==} + cpu: [arm64] + os: [linux] + + '@dprint/linux-arm64-musl@0.45.1': + resolution: {integrity: sha512-un2awe1L1sAJLsCPSEUrE0/cgupdzbYFoyBOutyU1zHR9KQn47AtIDw+chvuinU4xleHDuEGyXGuJ6NE+Ky6vw==} + cpu: [arm64] + os: [linux] + + '@dprint/linux-x64-glibc@0.45.1': + resolution: {integrity: sha512-5Civht90S/g8zlyYB7n4oH78p+sLbNqeFCFuImJRK7uRxZwCRya7lji6RwlB6DQ7qngVqovTHj9RLOYfZzfVlg==} + cpu: [x64] + os: [linux] + + '@dprint/linux-x64-musl@0.45.1': + resolution: {integrity: sha512-p2/gjnHDd8GRCvtey5HZO4o/He6pSmY/zpcCuIXprFW9P0vNlEj3DFhz4FPpOKXM+csrsVWWs2E0T/xr5QZtVg==} + cpu: [x64] + os: [linux] + + '@dprint/typescript@0.90.5': + resolution: {integrity: sha512-/1aP6saonFvJyQN3l2is6eTOec3GnLGyW+opid/eDm8pnlhwzYl8A9p36pI6WO5jLl/a9Ghod+LWpvSOuXFGUw==} + + '@dprint/win32-x64@0.45.1': + resolution: {integrity: sha512-2l78XM7KsW46P2Yv6uPB3fE+y92EsBlrCxi+RVQ0pbznPFdMdkLyGgaCuh683zdld14jHlaADpIQ7YchGAEMAg==} + cpu: [x64] + os: [win32] + '@emotion/is-prop-valid@1.2.1': resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==} + '@emotion/is-prop-valid@1.2.2': + resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} + '@emotion/memoize@0.8.1': resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} '@emotion/unitless@0.8.0': resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==} + '@emotion/unitless@0.8.1': + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + '@emotion/use-insertion-effect-with-fallbacks@1.0.1': resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} peerDependencies: @@ -3412,6 +3168,12 @@ packages: cpu: [ppc64] os: [aix] + '@esbuild/aix-ppc64@0.21.1': + resolution: {integrity: sha512-O7yppwipkXvnEPjzkSXJRk2g4bS8sUx9p9oXHq9MU/U7lxUzZVsnFZMDTmeeX9bfQxrFcvOacl/ENgOh0WP9pA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + '@esbuild/android-arm64@0.18.20': resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} engines: {node: '>=12'} @@ -3430,6 +3192,12 @@ packages: cpu: [arm64] os: [android] + '@esbuild/android-arm64@0.21.1': + resolution: {integrity: sha512-jXhccq6es+onw7x8MxoFnm820mz7sGa9J14kLADclmiEUH4fyj+FjR6t0M93RgtlI/awHWhtF0Wgfhqgf9gDZA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + '@esbuild/android-arm@0.18.20': resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} engines: {node: '>=12'} @@ -3448,6 +3216,12 @@ packages: cpu: [arm] os: [android] + '@esbuild/android-arm@0.21.1': + resolution: {integrity: sha512-hh3jKWikdnTtHCglDAeVO3Oyh8MaH8xZUaWMiCCvJ9/c3NtPqZq+CACOlGTxhddypXhl+8B45SeceYBfB/e8Ow==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + '@esbuild/android-x64@0.18.20': resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} engines: {node: '>=12'} @@ -3466,6 +3240,12 @@ packages: cpu: [x64] os: [android] + '@esbuild/android-x64@0.21.1': + resolution: {integrity: sha512-NPObtlBh4jQHE01gJeucqEhdoD/4ya2owSIS8lZYS58aR0x7oZo9lB2lVFxgTANSa5MGCBeoQtr+yA9oKCGPvA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + '@esbuild/darwin-arm64@0.18.20': resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} engines: {node: '>=12'} @@ -3484,6 +3264,12 @@ packages: cpu: [arm64] os: [darwin] + '@esbuild/darwin-arm64@0.21.1': + resolution: {integrity: sha512-BLT7TDzqsVlQRmJfO/FirzKlzmDpBWwmCUlyggfzUwg1cAxVxeA4O6b1XkMInlxISdfPAOunV9zXjvh5x99Heg==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + '@esbuild/darwin-x64@0.18.20': resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} engines: {node: '>=12'} @@ -3502,6 +3288,12 @@ packages: cpu: [x64] os: [darwin] + '@esbuild/darwin-x64@0.21.1': + resolution: {integrity: sha512-D3h3wBQmeS/vp93O4B+SWsXB8HvRDwMyhTNhBd8yMbh5wN/2pPWRW5o/hM3EKgk9bdKd9594lMGoTCTiglQGRQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + '@esbuild/freebsd-arm64@0.18.20': resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} engines: {node: '>=12'} @@ -3520,6 +3312,12 @@ packages: cpu: [arm64] os: [freebsd] + '@esbuild/freebsd-arm64@0.21.1': + resolution: {integrity: sha512-/uVdqqpNKXIxT6TyS/oSK4XE4xWOqp6fh4B5tgAwozkyWdylcX+W4YF2v6SKsL4wCQ5h1bnaSNjWPXG/2hp8AQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + '@esbuild/freebsd-x64@0.18.20': resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} engines: {node: '>=12'} @@ -3538,6 +3336,12 @@ packages: cpu: [x64] os: [freebsd] + '@esbuild/freebsd-x64@0.21.1': + resolution: {integrity: sha512-paAkKN1n1jJitw+dAoR27TdCzxRl1FOEITx3h201R6NoXUojpMzgMLdkXVgCvaCSCqwYkeGLoe9UVNRDKSvQgw==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + '@esbuild/linux-arm64@0.18.20': resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} engines: {node: '>=12'} @@ -3556,6 +3360,12 @@ packages: cpu: [arm64] os: [linux] + '@esbuild/linux-arm64@0.21.1': + resolution: {integrity: sha512-G65d08YoH00TL7Xg4LaL3gLV21bpoAhQ+r31NUu013YB7KK0fyXIt05VbsJtpqh/6wWxoLJZOvQHYnodRrnbUQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + '@esbuild/linux-arm@0.18.20': resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} engines: {node: '>=12'} @@ -3574,6 +3384,12 @@ packages: cpu: [arm] os: [linux] + '@esbuild/linux-arm@0.21.1': + resolution: {integrity: sha512-tRHnxWJnvNnDpNVnsyDhr1DIQZUfCXlHSCDohbXFqmg9W4kKR7g8LmA3kzcwbuxbRMKeit8ladnCabU5f2traA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + '@esbuild/linux-ia32@0.18.20': resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} engines: {node: '>=12'} @@ -3592,6 +3408,12 @@ packages: cpu: [ia32] os: [linux] + '@esbuild/linux-ia32@0.21.1': + resolution: {integrity: sha512-tt/54LqNNAqCz++QhxoqB9+XqdsaZOtFD/srEhHYwBd3ZUOepmR1Eeot8bS+Q7BiEvy9vvKbtpHf+r6q8hF5UA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + '@esbuild/linux-loong64@0.14.54': resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==} engines: {node: '>=12'} @@ -3616,6 +3438,12 @@ packages: cpu: [loong64] os: [linux] + '@esbuild/linux-loong64@0.21.1': + resolution: {integrity: sha512-MhNalK6r0nZD0q8VzUBPwheHzXPr9wronqmZrewLfP7ui9Fv1tdPmg6e7A8lmg0ziQCziSDHxh3cyRt4YMhGnQ==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + '@esbuild/linux-mips64el@0.18.20': resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} engines: {node: '>=12'} @@ -3634,6 +3462,12 @@ packages: cpu: [mips64el] os: [linux] + '@esbuild/linux-mips64el@0.21.1': + resolution: {integrity: sha512-YCKVY7Zen5rwZV+nZczOhFmHaeIxR4Zn3jcmNH53LbgF6IKRwmrMywqDrg4SiSNApEefkAbPSIzN39FC8VsxPg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + '@esbuild/linux-ppc64@0.18.20': resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} engines: {node: '>=12'} @@ -3652,6 +3486,12 @@ packages: cpu: [ppc64] os: [linux] + '@esbuild/linux-ppc64@0.21.1': + resolution: {integrity: sha512-bw7bcQ+270IOzDV4mcsKAnDtAFqKO0jVv3IgRSd8iM0ac3L8amvCrujRVt1ajBTJcpDaFhIX+lCNRKteoDSLig==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + '@esbuild/linux-riscv64@0.18.20': resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} engines: {node: '>=12'} @@ -3670,6 +3510,12 @@ packages: cpu: [riscv64] os: [linux] + '@esbuild/linux-riscv64@0.21.1': + resolution: {integrity: sha512-ARmDRNkcOGOm1AqUBSwRVDfDeD9hGYRfkudP2QdoonBz1ucWVnfBPfy7H4JPI14eYtZruRSczJxyu7SRYDVOcg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + '@esbuild/linux-s390x@0.18.20': resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} engines: {node: '>=12'} @@ -3688,6 +3534,12 @@ packages: cpu: [s390x] os: [linux] + '@esbuild/linux-s390x@0.21.1': + resolution: {integrity: sha512-o73TcUNMuoTZlhwFdsgr8SfQtmMV58sbgq6gQq9G1xUiYnHMTmJbwq65RzMx89l0iya69lR4bxBgtWiiOyDQZA==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + '@esbuild/linux-x64@0.18.20': resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} engines: {node: '>=12'} @@ -3706,6 +3558,12 @@ packages: cpu: [x64] os: [linux] + '@esbuild/linux-x64@0.21.1': + resolution: {integrity: sha512-da4/1mBJwwgJkbj4fMH7SOXq2zapgTo0LKXX1VUZ0Dxr+e8N0WbS80nSZ5+zf3lvpf8qxrkZdqkOqFfm57gXwA==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + '@esbuild/netbsd-x64@0.18.20': resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} engines: {node: '>=12'} @@ -3724,6 +3582,12 @@ packages: cpu: [x64] os: [netbsd] + '@esbuild/netbsd-x64@0.21.1': + resolution: {integrity: sha512-CPWs0HTFe5woTJN5eKPvgraUoRHrCtzlYIAv9wBC+FAyagBSaf+UdZrjwYyTGnwPGkThV4OCI7XibZOnPvONVw==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + '@esbuild/openbsd-x64@0.18.20': resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} engines: {node: '>=12'} @@ -3742,6 +3606,12 @@ packages: cpu: [x64] os: [openbsd] + '@esbuild/openbsd-x64@0.21.1': + resolution: {integrity: sha512-xxhTm5QtzNLc24R0hEkcH+zCx/o49AsdFZ0Cy5zSd/5tOj4X2g3/2AJB625NoadUuc4A8B3TenLJoYdWYOYCew==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + '@esbuild/sunos-x64@0.18.20': resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} engines: {node: '>=12'} @@ -3760,6 +3630,12 @@ packages: cpu: [x64] os: [sunos] + '@esbuild/sunos-x64@0.21.1': + resolution: {integrity: sha512-CWibXszpWys1pYmbr9UiKAkX6x+Sxw8HWtw1dRESK1dLW5fFJ6rMDVw0o8MbadusvVQx1a8xuOxnHXT941Hp1A==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + '@esbuild/win32-arm64@0.18.20': resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} engines: {node: '>=12'} @@ -3778,6 +3654,12 @@ packages: cpu: [arm64] os: [win32] + '@esbuild/win32-arm64@0.21.1': + resolution: {integrity: sha512-jb5B4k+xkytGbGUS4T+Z89cQJ9DJ4lozGRSV+hhfmCPpfJ3880O31Q1srPCimm+V6UCbnigqD10EgDNgjvjerQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + '@esbuild/win32-ia32@0.18.20': resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} engines: {node: '>=12'} @@ -3796,6 +3678,12 @@ packages: cpu: [ia32] os: [win32] + '@esbuild/win32-ia32@0.21.1': + resolution: {integrity: sha512-PgyFvjJhXqHn1uxPhyN1wZ6dIomKjiLUQh1LjFvjiV1JmnkZ/oMPrfeEAZg5R/1ftz4LZWZr02kefNIQ5SKREQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + '@esbuild/win32-x64@0.18.20': resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} engines: {node: '>=12'} @@ -3814,6 +3702,12 @@ packages: cpu: [x64] os: [win32] + '@esbuild/win32-x64@0.21.1': + resolution: {integrity: sha512-W9NttRZQR5ehAiqHGDnvfDaGmQOm6Fi4vSlce8mjM75x//XKuVAByohlEX6N17yZnVXxQFuh4fDRunP8ca6bfA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + '@eslint-community/eslint-utils@4.4.0': resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3828,10 +3722,26 @@ packages: resolution: {integrity: sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint/eslintrc@2.1.4': + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/eslintrc@3.0.2': + resolution: {integrity: sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/js@8.54.0': resolution: {integrity: sha512-ut5V+D+fOoWPgGGNj83GGjnntO39xDy6DWxO0wb7Jp3DcMX0TfIqdzHF85VTQkerdyGmuuMD9AKAo5KiNlf/AQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint/js@8.57.0': + resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/js@9.2.0': + resolution: {integrity: sha512-ESiIudvhoYni+MdsI8oD7skpprZ89qKocwRM2KEvhhBJ9nl5MRh7BXU5GTod7Mdygq+AUl+QzId6iWJKR/wABA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@fal-works/esbuild-plugin-global-externals@2.1.2': resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} @@ -4210,6 +4120,14 @@ packages: resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} engines: {node: '>=10.10.0'} + '@humanwhocodes/config-array@0.11.14': + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} + engines: {node: '>=10.10.0'} + + '@humanwhocodes/config-array@0.13.0': + resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} + engines: {node: '>=10.10.0'} + '@humanwhocodes/module-importer@1.0.1': resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} @@ -4217,6 +4135,13 @@ packages: '@humanwhocodes/object-schema@2.0.1': resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} + '@humanwhocodes/object-schema@2.0.3': + resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} + + '@humanwhocodes/retry@0.2.4': + resolution: {integrity: sha512-Ttl/jHpxfS3st5sxwICYfk4pOH0WrLI1SpW283GgQL7sCWU7EHIOhX4b4fkIxr3tkfzwg8+FNojtzsIEE7Ecgg==} + engines: {node: '>=18.18'} + '@iconify-icons/ion@1.2.10': resolution: {integrity: sha512-ukeAC13er0rGUF4BOK5oS9GnuDpg2vuAuWonkGNyU17UGKciK1g/NgGy/WzeD//uTNlgyU0py39iKBF7WXUOYg==} @@ -4375,9 +4300,6 @@ packages: resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} engines: {node: '>=6.0.0'} - '@jridgewell/source-map@0.3.5': - resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} - '@jridgewell/source-map@0.3.6': resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==} @@ -4421,6 +4343,12 @@ packages: '@types/react': '>=16' react: '>=16' + '@molt/command@0.9.0': + resolution: {integrity: sha512-1JI8dAlpqlZoXyKWVQggX7geFNPxBpocHIXQCsnxDjKy+3WX4SGyZVJXuLlqRRrX7FmQCuuMAfx642ovXmPA9g==} + + '@molt/types@0.2.0': + resolution: {integrity: sha512-p6ChnEZDGjg9PYPec9BK6Yp5/DdSrYQvXTBAtgrnqX6N36cZy37ql1c8Tc5LclfIYBNG7EZp8NBcRTYJwyi84g==} + '@mswjs/cookies@0.2.2': resolution: {integrity: sha512-mlN83YSrcFgk7Dm1Mys40DLssI1KdJji2CMKN8eOlBqsTADYzj2+jWzsANsUTFbxDMWPD5e9bfA1RGqBpS3O1g==} engines: {node: '>=14'} @@ -4447,156 +4375,156 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - '@nrwl/devkit@17.1.3': - resolution: {integrity: sha512-8HfIY7P3yIYfQ/XKuHoq0GGLA9GpwWtBlI9kPQ0ygjuJ9BkpiGMtQvO6003zs7c6vpc2vNeG+Jmi72+EKvoN5A==} + '@nrwl/devkit@19.0.1': + resolution: {integrity: sha512-6mYYEAHI/OOEoVjMB50cho6YxtwdZmxhPywkEGSxvkSwqRcsMpKuIqgJ7bhFlWEW2+mH7Vpc+aaJ+olRwFgBXQ==} - '@nrwl/eslint-plugin-nx@17.1.3': - resolution: {integrity: sha512-UGtktnM3tfc9F+NROQi0NkowASu2QuiOE67H1B8DjOxkvNZRbFzbS6D+YyBvVGXBbcMWXlqM54Zv6/1dabqgbg==} + '@nrwl/eslint-plugin-nx@19.0.1': + resolution: {integrity: sha512-jPAf9JpODNjTg2f18MYIXXoJ0+J7XIEuol2qfatu4X0fO9WHRIuln61H8hdWFul93BBXZd+w5NBew8XKu4yyGQ==} - '@nrwl/jest@17.1.3': - resolution: {integrity: sha512-q5nbEbhvjOuNSEQMSpoUSBwR9Q3EFR92mNT2T0wbHcWVyfp1wPtJ8NAY/d2jJF+Ekm2hu3fJCfslFE3L3riZfg==} + '@nrwl/jest@19.0.1': + resolution: {integrity: sha512-TBiE9JJbndre1KO98j14RKUd6jzsB2zr/l3LP2w6+5SUmpdGEOGVYlJ91+gi/Xz3r0P75AJALMnmo/hfAYpyHg==} - '@nrwl/js@17.1.3': - resolution: {integrity: sha512-aUE6lK8+D37xNlRz7ZpFbUOwIU6Vb1aNVjXxaouFQ2kcirv2NdJVmUIpbK7zDE/pzC3YmdZADqG2UjpvSUAErw==} + '@nrwl/js@19.0.1': + resolution: {integrity: sha512-B1ePjLUL46tqPGDZ1kLjxNAEqjKxdyaoCVJqWFnk8cEdsJyGbrG3uy9BSA1FFNuWq/lc4tDkvzkRPw0UnPV1rA==} - '@nrwl/node@17.1.3': - resolution: {integrity: sha512-J/iIDuuLwM6NR0TIWEHXQmre9SdlkHbFtstae9nuTqATcZEBShBLYdR8I9piQT+QGMvwKIoWej5a3g21JBQhlg==} + '@nrwl/node@19.0.1': + resolution: {integrity: sha512-YPae7nllepiDUefcIzCF9bpE5BwyAPTmkrJAzkrwQPeLP+xbZFux2mvCKmfVrlUKE8Vnnl3MZ+ghcKFXaf6KAg==} - '@nrwl/nx-cloud@16.5.2': - resolution: {integrity: sha512-oHO5T1HRJsR9mbRd8eUqMBPCgqVZLSbAh3zJoPFmhEmjbM4YB9ePRpgYFT8dRNeZUOUd/8Yt7Pb6EVWOHvpD/w==} + '@nrwl/nx-cloud@18.0.1': + resolution: {integrity: sha512-uYVxoOXf0xlWJX8O5GBWajmIeL0PfIGvfqtvVNVnl7C6FiZRbmKEhXkWxEDekI6Jq+mI1G86o7d5YsIzq6e36A==} - '@nrwl/nx-plugin@17.1.3': - resolution: {integrity: sha512-0u8KDvbM68KLQCyPD04lvQ4DfYCFlGYaf+1EEM5H+t0rDI65K2fHT4Kbd51f8fOcpkwpYGslZTAcBtJg5/pkhA==} + '@nrwl/nx-plugin@19.0.1': + resolution: {integrity: sha512-xUPjCEGO7L8Ggu4osR6a8haUz/CvvU7VnuqNYWKOOwpuA/S0NJLOItVYgbw1dJr7/CCEHdjQ5H6RexAXJQK41g==} - '@nrwl/react@17.1.3': - resolution: {integrity: sha512-1VW5AZ1MV3/r31A/u3oVyOrs0vbaRFwH5ow7H7aLmJnGd+mKLEqQ3DbEYxLun3eAAiy8bF9SfDPxgh/cEXDfPw==} + '@nrwl/react@19.0.1': + resolution: {integrity: sha512-TnuBTsYD030r4QOfGZC0fRNFw0jNcf3zqlPQhNp3ZJmPzAjLDFMNYtf2nsQsmiG9V7H/7oj7/JtgBrgacOvKDw==} - '@nrwl/tao@17.1.3': - resolution: {integrity: sha512-9YpfEkUpVqOweqgQvMDcWApNx4jhCqBNH5IByZj302Enp3TLnQSvhuX5Dfr8hNQRQokIpEn6tW8SGTctTM5LXw==} + '@nrwl/tao@19.0.1': + resolution: {integrity: sha512-DrpZPLidBJy/oA8IVfLhXTzkxq9fT4Ua+gtmOl+VLsKJymnbcgOejX8u13eoy3hSaymKT9X+mcnmFr0LkqMS2A==} hasBin: true - '@nrwl/web@17.1.3': - resolution: {integrity: sha512-vhteqBanX/3JdwrT9F3+iMfRJ7xqcSgzWZcAOfL8DyL8UFQfN6mdAPW7S/HvwqLIsoa5vjRGq4uBo9TEqrDS/g==} + '@nrwl/web@19.0.1': + resolution: {integrity: sha512-AmwlzsgbTU1kGh2ASquGpswe21j0XyyBLm55fSXjNjUCz1TlTEBY4jlV/mxrrxqs5UJ5kY2vV0QwDam+hLfRxQ==} - '@nrwl/webpack@17.1.3': - resolution: {integrity: sha512-8iDLTIEbqJ8hxNPRadqBmH4+GatFC1dwd8QscKMQqmeNKn2toYzX4I0EGJ289gY4fdhF45wkVhWEyTfvAwI80Q==} + '@nrwl/webpack@19.0.1': + resolution: {integrity: sha512-qNRtOCz3jID2H5JZmDzmhCVNu6InBNZAwb8lzFWTt0+foJ71kft6jTJxauErAsEKIfIc4okren8X975me7W1WA==} - '@nrwl/workspace@17.1.3': - resolution: {integrity: sha512-V5nLZ58DIZLlJQASYHKo9mUcdm2FbzjJeoKwi0X3VXUvU1ftforFxNIQ7BqS0qjZJKKHjpgZ+cAH0xeVysS5kA==} + '@nrwl/workspace@19.0.1': + resolution: {integrity: sha512-lOfBYLdKmR3ouG7f/ZUmFGUqCcriJCcJqg3X4Z5SqHuhmwasUz23w70H0mq6O2DZuT2IqRwHPJKICuQNHT/Xfw==} - '@nx/devkit@17.1.3': - resolution: {integrity: sha512-1Is7ooovg3kdGJ5VdkePulRUDaMYLLULr+LwXgx7oHSW7AY2iCmhkoOE/vSR7DJ6rkey2gYx7eT1IoRoORiIaQ==} + '@nx/devkit@19.0.1': + resolution: {integrity: sha512-whEUgASqCiD94/ZGrSxkl7mLcIeYuQ5YbT79De+sIXWtBNFI2CqNHJX3/nOwrO/tO2Z88Wg6PM9PL6EiysYwjQ==} peerDependencies: - nx: '>= 16 <= 18' + nx: '>= 17 <= 20' - '@nx/eslint-plugin@17.1.3': - resolution: {integrity: sha512-SGBXiKiXifK/KZqoEvNAqIbKMYMN9f6HIZXX23dwaimGrOct+8vtQc3nJIB5QuPtBypfsVCxfoVcJVi0QaN1uw==} + '@nx/eslint-plugin@19.0.1': + resolution: {integrity: sha512-dbNdTkIoajpKADup3kj5LbWPWNLoZ0oltayZMb2MGorVpMrubrAXUHiDx+nmBGQ6DKCbn1eFFjI6qTIhVsH18w==} peerDependencies: - '@typescript-eslint/parser': ^6.9.1 + '@typescript-eslint/parser': ^6.13.2 || ^7.0.0 eslint-config-prettier: ^9.0.0 peerDependenciesMeta: eslint-config-prettier: optional: true - '@nx/eslint@17.1.3': - resolution: {integrity: sha512-AQZ67Q3JzLZxguCat7mhBfvxr4ztc97ogDj6jD40Sql8cb/eVYTf/0mszIxxPFsTNG3YBqP5Eb2saAKKxUrfMw==} + '@nx/eslint@19.0.1': + resolution: {integrity: sha512-KRxWqrDy5ilUOFcYrVa3fgi0f2kPC3oUDXo8NQ9+O8AHTGQjHWcMs8btvGXhpJq9mBkR0RC7zpfNsbitGzYgpA==} peerDependencies: - eslint: ^8.0.0 + js-yaml: 4.1.0 peerDependenciesMeta: - eslint: + js-yaml: optional: true - '@nx/jest@17.1.3': - resolution: {integrity: sha512-08amXLb5GHIIE8XzJRT/RhIzJzKp8mSjzT0ymciK6lDRYbzSBoHFS8KN9xqqmtWNYVZWPMq6ySoDYGi1abIR4Q==} + '@nx/jest@19.0.1': + resolution: {integrity: sha512-M9R3PKC2kkhXZt7/w+h6o/2eafg/n1Gqpp3uUt2/88tyK8ciqHtfWqtpqZP9VUuMznnluKQzdanHTAlzOI01lQ==} - '@nx/js@17.1.3': - resolution: {integrity: sha512-FCvIjTtuVYctRJw4S+Sp0ZCPeiwNxOR++CsLciWAogO81k3k6ajMIfjn0Xmwuq/FKWK8thtjkk9MfKjTDuxFkg==} + '@nx/js@19.0.1': + resolution: {integrity: sha512-pBDJj91l+RiCTnzA4bFcu++GY4XmbvvWrlh3jJtEL1lQhfAQWsDkGKdJMaViLsG3W38PvEwsoERxl0NDNgPC/A==} peerDependencies: verdaccio: ^5.0.4 peerDependenciesMeta: verdaccio: optional: true - '@nx/linter@17.1.3': - resolution: {integrity: sha512-KAeZ+kMxahQ67B2DFlikOPKILErdxRtpC3RbcHd9Oi+x0M7pGlmbBdnyP23CQplMsvYqzhTziF/W8CllYAKmCg==} + '@nx/linter@19.0.1': + resolution: {integrity: sha512-4zfRhEAuJ8yd0JAQg+v69y79MxHOWkPG0/bjCDmkSRyg57JOQTCI/0VV5o3UFrb/nZ1Fi7gzFSkaACqenK6kwg==} - '@nx/node@17.1.3': - resolution: {integrity: sha512-3L937cSGuo92oCfgV+NcYpz53nTcFpqcHnt0UXO1x1VbFst5l0qM689xwPbHWoM2VCUkcCGMIwBvWOiZ+EJdLA==} + '@nx/node@19.0.1': + resolution: {integrity: sha512-KIJhSEQEoKE02jY6fJDtKq/GbzwleIVUlDMxshm1ovMsQLkA4RI1ZZZ66kjMi5l3roJ7/tvMgMRvqAIaF+76sQ==} - '@nx/nx-darwin-arm64@17.1.3': - resolution: {integrity: sha512-f4qLa0y3C4uuhYKgq+MU892WaQvtvmHqrEhHINUOxYXNiLy2sgyJPW0mOZvzXtC4dPaUmiVaFP5RMVzc8Lxhtg==} + '@nx/nx-darwin-arm64@19.0.1': + resolution: {integrity: sha512-LYjrQ5lDKlXV/QHlubTp0of9JjcjrZ1heafu8jn+ieabGAnZ4Aow1amg/hjF5yKYDYJbCR9DhOMv9JJ1tkPa1w==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@nx/nx-darwin-x64@17.1.3': - resolution: {integrity: sha512-kh76ZjqkLeQUIAfTa9G/DFFf+e1sZ5ipDzk7zFGhZ2k68PoQoFdsFOO3C513JmuEdavspts6Hkifsqh61TaE+A==} + '@nx/nx-darwin-x64@19.0.1': + resolution: {integrity: sha512-i7IqDRiGhU9NkOrhBMudLXcYsQv9mkPUOU8BECWk5qaeXK5LLXkroNVK5fsvOPaDtQci58VoeXQeZHxOl5Om/w==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@nx/nx-freebsd-x64@17.1.3': - resolution: {integrity: sha512-CRuVL5ZSLb+Gc8vwMUUe9Pl/1Z26YtXMKTahBMQh2dac63vzLgzqIV4c66aduUl1x2M0kGYBSIIRG9z0/BgWeg==} + '@nx/nx-freebsd-x64@19.0.1': + resolution: {integrity: sha512-2zaDWAyJXu+hkMhzoC/I/HTFISVoTwP76YTdaJG8JIfF7Ns/AZXZMzAtPNjL/I5Pgq/7brn6CpUExSYINxORrQ==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] - '@nx/nx-linux-arm-gnueabihf@17.1.3': - resolution: {integrity: sha512-KDBmd5tSrg93g/oij/eGW4yeVNVK3DBIM4VYAS2vtkIgVOGoqcQ+SEIeMK3nMUJP9jGyblt3QNj5ZsJBtScwQw==} + '@nx/nx-linux-arm-gnueabihf@19.0.1': + resolution: {integrity: sha512-gZXphCxoaRIpAS+ZzjJgtCrRjDdbBoeOvaDRpmhKyUyAk9Z7Sgh9F+FyaT3TkV2ZVZJipzO5xcLIFCkTDS6CCQ==} engines: {node: '>= 10'} cpu: [arm] os: [linux] - '@nx/nx-linux-arm64-gnu@17.1.3': - resolution: {integrity: sha512-W2tNL/7sIwoQKLmuy68Usd6TZzIZvxZt4UE30kDwGc2RSap6RCHAvDbzSxtW+L4+deC9UxX0Tty0VuW+J8FjSg==} + '@nx/nx-linux-arm64-gnu@19.0.1': + resolution: {integrity: sha512-W4o+V1S2N/0pLiyIavt/pcei9vOzScpGmd35UoDwtEKXIAifeJZbA6LtsTTmP/8o43TNYL3HALBcLnECt0m0iA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@nx/nx-linux-arm64-musl@17.1.3': - resolution: {integrity: sha512-Oto3gkLd7yweuVUCsSHwm4JkAIbcxpPJP0ycRHI/PRHPMIOPiMX8r651QM1amMyKAbJtAe047nyb9Sh1X0FA4A==} + '@nx/nx-linux-arm64-musl@19.0.1': + resolution: {integrity: sha512-sm/bqAQXVjT9cF4oKIN+lmC0LIP4W1QDBJb4ZSoWqVcww+4fsPb3M95Egv5QbzHZOjEeRdIXRdLnWt1CRpP1eA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@nx/nx-linux-x64-gnu@17.1.3': - resolution: {integrity: sha512-pJS994sa5PBPFak93RydTB9KdEmiVb3rgiSB7PDBegphERbzHEB77B7G8M5TZ62dGlMdplIEKmdhY5XNqeAf9A==} + '@nx/nx-linux-x64-gnu@19.0.1': + resolution: {integrity: sha512-P+J2PaU2oNy5l8JSkt3DaqCa/psvL+gqKufofHoWNmRkXZM5zzJI1yVyagoKviG3vB4K2vBp6KyEFSmjBw2y9Q==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@nx/nx-linux-x64-musl@17.1.3': - resolution: {integrity: sha512-4Hcx5Fg/88jV+bcTr6P0dM4unXNvKgrGJe3oK9/sgEhiW6pD2UAFjv16CCSRcWhDUAzUDqcwnD2fgg+vnAJG6g==} + '@nx/nx-linux-x64-musl@19.0.1': + resolution: {integrity: sha512-rIqsHeK4dZM8nd7IzwgS5yYgtYbSQkExVlY4kkEn1p5RgJ5N2jiZR4FrGQr6KYNBWyfOjjv5hKUlfqTb5xfNew==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@nx/nx-win32-arm64-msvc@17.1.3': - resolution: {integrity: sha512-dUasEuskmDxUL36XA0GZqSb9233suE4wKhxrMobyFBzHUZ2tq/unzOpPjYfqDBie4QIvF8tEpAjQsLds8LWgbw==} + '@nx/nx-win32-arm64-msvc@19.0.1': + resolution: {integrity: sha512-eOeYLYIuI386y/3OOUOLjDI+WU5IdfcOcN27Dt26poRjsiBoi4a19B0Kmu2l7DGwOHTPIv0ktkcCloSGyB2ycg==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@nx/nx-win32-x64-msvc@17.1.3': - resolution: {integrity: sha512-eTuTpBHFvA5NFJh/iosmqCL4JOAjDrwXLSMgfKrZKjiApHMG1T/5Hb+PrsNpt+WnGp94ur7c4Dtx4xD5vlpAEw==} + '@nx/nx-win32-x64-msvc@19.0.1': + resolution: {integrity: sha512-6N5P9an5QDnHyXS0Ai/yP2kG7ESlzwiZdFdPnF5azJ520OdVRpj8wklACqq5usbxg1SufusBs5RI5HA5/mzXSw==} engines: {node: '>= 10'} cpu: [x64] os: [win32] - '@nx/plugin@17.1.3': - resolution: {integrity: sha512-bKasTKh+yJ9AyxIppmeVIUvs46Jya1rFxhXUCaQujgEeCbhZ2GM3deBXQL7vBDlcQjsZ1AKy2KcmasBA/kapcQ==} + '@nx/plugin@19.0.1': + resolution: {integrity: sha512-FLm/Hv1Pv36kJ1a8SLHhvZv7RywL7HL4IJkv35Wj2TLh1U28VrUTTjNgY2POxovsojQh54ljm2mHowQeLw6G9Q==} - '@nx/react@17.1.3': - resolution: {integrity: sha512-ORdIzUWZw97AKZQs9aX9mNetiP4a0TWdPgDKfLBHDHxq+Vn/Z0caW/Ivt4mhPY9NJsq7lR0O35ZSBRt1IleCJg==} + '@nx/react@19.0.1': + resolution: {integrity: sha512-Y7FdTrO/Cjdhxv59727AvHE3zkFNccfEOHjFWO2PHP9Q7e4bUXlzjL/BiPiVQNG2/vs5c6LWKHhz3CSE+HFerA==} - '@nx/web@17.1.3': - resolution: {integrity: sha512-l8gXxRZKGsYJEIwYITgLjBdjlliETLK5hvs0hyHY26tuVY6mDy8zdGPfhJae1CpO4NL/hpqmGc99HLRQ1WCrAA==} + '@nx/web@19.0.1': + resolution: {integrity: sha512-j9jNygKDyjzN3Tq5DWEGCYAptjf35g2z7TGPOH37kGyCMg3dM36LRPFctWtpwsea/yML09bL+tj+yRBcFRgRVg==} - '@nx/webpack@17.1.3': - resolution: {integrity: sha512-dbDG+tPflrW5M2WS+SuAzHX2lSrxyQGPPCIXWXexBrlXzU/Yyy3fvJqQKeRiRV+EILjNiQXKI2A1pzGUcnuW7g==} + '@nx/webpack@19.0.1': + resolution: {integrity: sha512-m1J5z0ut/XKX+kA5ICUw5Aix5YMGLVTXshWQdYmz79jpCWQ7OoPHjXXmEeXHLS9o1vsRO8S8o2C2yz+rc+7mYA==} - '@nx/workspace@17.1.3': - resolution: {integrity: sha512-Je9nml9NJZJ0Ga70njK4N8KNSP7MnlxiVlosMzBAWDGrgnW+A403nae9pstEC2uGKpce2T7jBqFewAy+3U6JbA==} + '@nx/workspace@19.0.1': + resolution: {integrity: sha512-w3FH+0ioyS97lIQqnzuXWIcJHF651igrB3hLw3c/qR82AbFYoakb73PFgdpr2fGf/Xf0kdKRROT2cvp/am2tog==} '@oclif/color@1.0.13': resolution: {integrity: sha512-/2WZxKCNjeHlQogCs1VBtJWlPXjwWke/9gMrwsVsrUt00g2V6LUBvwgwrxhrXepjOmq4IZ5QeNbpDMEOUlx/JA==} @@ -5432,6 +5360,86 @@ packages: rollup: optional: true + '@rollup/rollup-android-arm-eabi@4.17.2': + resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.17.2': + resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.17.2': + resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.17.2': + resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-linux-arm-gnueabihf@4.17.2': + resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.17.2': + resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.17.2': + resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.17.2': + resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': + resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.17.2': + resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.17.2': + resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.17.2': + resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.17.2': + resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.17.2': + resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.17.2': + resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.17.2': + resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==} + cpu: [x64] + os: [win32] + '@samverschueren/stream-to-observable@0.3.1': resolution: {integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==} engines: {node: '>=6'} @@ -5902,6 +5910,9 @@ packages: resolution: {integrity: sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA==} engines: {node: '>=14.0.0'} + '@storybook/addon-actions@8.0.10': + resolution: {integrity: sha512-IEuc30UAFl7Ws0GwaY/whjBnGaViVEVjmPc+MXUym2wwwJbnCbI+BKJxPoYi/I7QJb5aUNToAE6pl2pDda2g3Q==} + '@storybook/addon-actions@8.0.9': resolution: {integrity: sha512-+I3VTvlKdj8puHeS2tyaOVv9syDiNLneVZbTfqN+UDOK2i42NwvZr8PVwjTzMlEj9eePJdCZgiipz55xwts5bw==} @@ -6038,6 +6049,9 @@ packages: '@storybook/core-events@7.6.18': resolution: {integrity: sha512-K4jrHedFRfokvkIfKfNtQTcguPzeWF3oiuyXQR4gv4bnMCndCoiSRKfCE5zesgGmfml/Krt2zb4nNz/UPLbDeA==} + '@storybook/core-events@8.0.10': + resolution: {integrity: sha512-TuHPS6p5ZNr4vp4butLb4R98aFx0NRYCI/7VPhJEUH5rPiqNzE3PZd8DC8rnVxavsJ+jO1/y+egNKXRYkEcoPQ==} + '@storybook/core-events@8.0.9': resolution: {integrity: sha512-DxSUx7wG9Qe3OFUBnv3OrYq48J8UWNo2DUR5/JecJCtp3n++L4fAEW3J0IF5FfxpQDMQSp1yTNjZ2PaWCMd2ag==} @@ -6338,12 +6352,16 @@ packages: peerDependencies: tailwindcss: '>=3.0.0 || insiders' - '@testing-library/dom@9.3.3': - resolution: {integrity: sha512-fB0R+fa3AUqbLHWyxXa2kGVtf1Fe1ZZFr0Zp6AIbIAzXb2mKbEXl+PCQNUOaq5lbTab5tfctfXRNsWXxa2f7Aw==} + '@testing-library/dom@10.1.0': + resolution: {integrity: sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==} + engines: {node: '>=18'} + + '@testing-library/dom@9.3.4': + resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} engines: {node: '>=14'} - '@testing-library/jest-dom@6.4.2': - resolution: {integrity: sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==} + '@testing-library/jest-dom@6.4.5': + resolution: {integrity: sha512-AguB9yvTXmCnySBP1lWjfNNUwpbElsaQ567lt2VdGqAdHtpieLgjmcVyv1q7PMIvLbgpDdkWV5Ydv3FEejyp2A==} engines: {node: '>=14', npm: '>=6', yarn: '>=1'} peerDependencies: '@jest/globals': '>= 28' @@ -6379,15 +6397,19 @@ packages: react-test-renderer: optional: true - '@testing-library/react@14.0.0': - resolution: {integrity: sha512-S04gSNJbYE30TlIMLTzv6QCTzt9AqIF5y6s6SzVFILNcNvbV/jU96GeiTPillGQo+Ny64M/5PV7klNYYgv5Dfg==} - engines: {node: '>=14'} + '@testing-library/react@15.0.6': + resolution: {integrity: sha512-UlbazRtEpQClFOiYp+1BapMT+xyqWMnE+hh9tn5DQ6gmlE7AIZWcGpzZukmDZuFk3By01oiqOf8lRedLS4k6xQ==} + engines: {node: '>=18'} peerDependencies: + '@types/react': ^18.0.0 react: ^18.0.0 react-dom: ^18.0.0 + peerDependenciesMeta: + '@types/react': + optional: true - '@testing-library/user-event@14.5.1': - resolution: {integrity: sha512-UCcUKrUYGj7ClomOo2SpNVvx4/fkd/2BbIHDCle8A0ax+P3bU7yJwDBDrS6ZwdTMARWTGODX1hEsCcO+7beJjg==} + '@testing-library/user-event@14.5.2': + resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} engines: {node: '>=12', npm: '>=6'} peerDependencies: '@testing-library/dom': '>=7.21.4' @@ -6430,8 +6452,8 @@ packages: '@types/apollo-upload-client@17.0.5': resolution: {integrity: sha512-rPKHaE4QNd06LNtBgz6hfntVO+pOQMS2yTcynrzBPg9+a/nbtJ2gus5KgzRp2rqfzmnKEc/sRGjLen/9Ot0Z2A==} - '@types/aria-query@5.0.1': - resolution: {integrity: sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==} + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} '@types/babel__core@7.20.2': resolution: {integrity: sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==} @@ -6454,9 +6476,6 @@ packages: '@types/body-parser@1.19.5': resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} - '@types/bonjour@3.5.11': - resolution: {integrity: sha512-isGhjmBtLIxdHBDl2xGwUzEM8AOyOvWsADWq7rqirdi/ZQoHnLWErHvsThcEzTX8juDRiZtzp2Qkv5bgNh6mAg==} - '@types/bonjour@3.5.13': resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} @@ -6475,9 +6494,6 @@ packages: '@types/color@3.0.6': resolution: {integrity: sha512-NMiNcZFRUAiUUCCf7zkAelY8eV3aKqfbzyFQlXpPIEeoNDbsEHGpb854V3gzTsGKYj830I5zPuOwU/TP5/cW6A==} - '@types/connect-history-api-fallback@1.5.1': - resolution: {integrity: sha512-iaQslNbARe8fctL5Lk+DsmgWOM83lM+7FzP0eQUJs1jd3kBE8NWqBTIT2S8SqQOJjxvt2eyIjpOuYeRXq2AdMw==} - '@types/connect-history-api-fallback@1.5.4': resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} @@ -6538,9 +6554,6 @@ packages: '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - '@types/express-serve-static-core@4.17.36': - resolution: {integrity: sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==} - '@types/express-serve-static-core@4.17.41': resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==} @@ -6667,9 +6680,6 @@ packages: '@types/mdx@2.0.13': resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} - '@types/mime@1.3.2': - resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==} - '@types/mime@1.3.5': resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} @@ -6703,15 +6713,15 @@ packages: '@types/node@17.0.45': resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} - '@types/node@18.18.14': - resolution: {integrity: sha512-iSOeNeXYNYNLLOMDSVPvIFojclvMZ/HDY2dU17kUlcsOsSQETbWIslJbYLZgA+ox8g2XQwSHKTkght1a5X26lQ==} - - '@types/node@18.19.31': - resolution: {integrity: sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA==} + '@types/node@18.19.32': + resolution: {integrity: sha512-2bkg93YBSDKk8DLmmHnmj/Rwr18TLx7/n+I23BigFwgexUJoMHZOd8X1OFxuF/W3NN0S2W2E5sVabI5CPinNvA==} '@types/node@20.10.1': resolution: {integrity: sha512-T2qwhjWwGH81vUEx4EXmBKsTJRXFXNZTL4v0gi01+zyBmCwzE6TyHszqX01m+QHTEq+EZNo13NeJIdEqf+Myrg==} + '@types/node@20.12.11': + resolution: {integrity: sha512-vDg9PZ/zi+Nqp6boSOT7plNuthRugEKixDv5sFTIpkE89MmNtEArAShI4mxuX2+UrLEe9pxC1vm2cjm9YlWbJw==} + '@types/node@20.12.7': resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==} @@ -6748,14 +6758,11 @@ packages: '@types/ramda@0.28.25': resolution: {integrity: sha512-HrQNqQAGcITpn9HAJFamDxm7iZeeXiP/95pN5OMbNniDjzCCeOHbBKNGmUy8NRi0fhYS+/cXeo91MFC+06gbow==} - '@types/range-parser@1.2.4': - resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} - '@types/range-parser@1.2.7': resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - '@types/react-dom@18.2.9': - resolution: {integrity: sha512-6nNhVzZ9joQ6F7lozrASuQKC0Kf6ArYMU+DqA2ZrUbB+d+9lC6ZLn1GxiEBI1edmAwvTULtuJ6uPZpv3XudwUg==} + '@types/react-dom@18.3.0': + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} '@types/react-router-config@5.0.11': resolution: {integrity: sha512-WmSAg7WgqW7m4x8Mt4N6ZyKz0BubSj/2tVUMsAHp+Yd2AMwcSbeFq9WympT19p5heCFmF97R9eD5uUR/t4HEqw==} @@ -6769,8 +6776,8 @@ packages: '@types/react-test-renderer@18.0.7': resolution: {integrity: sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==} - '@types/react@18.2.79': - resolution: {integrity: sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w==} + '@types/react@18.3.1': + resolution: {integrity: sha512-V0kuGBX3+prX+DQ/7r2qsv1NsdfnCLnTgnRJ1pYnxykBhGMz+qj+box5lq7XsO5mtZsBqpjwwTu/7wszPfMBcw==} '@types/resolve@1.20.6': resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} @@ -6787,24 +6794,12 @@ packages: '@types/sax@1.2.7': resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} - '@types/semver@7.5.2': - resolution: {integrity: sha512-7aqorHYgdNO4DM36stTiGO3DvKoex9TQRwsJU6vMaFGyqpBA1MNZkz+PG3gaNUPpTAOYhT1WR7M1JyA3fbS9Cw==} - - '@types/semver@7.5.6': - resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} - '@types/semver@7.5.8': resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} - '@types/send@0.17.1': - resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==} - '@types/send@0.17.4': resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} - '@types/serve-index@1.9.1': - resolution: {integrity: sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==} - '@types/serve-index@1.9.4': resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} @@ -6820,9 +6815,6 @@ packages: '@types/shimmer@1.0.2': resolution: {integrity: sha512-dKkr1bTxbEsFlh2ARpKzcaAmsYixqt9UyCdoEZk8rHyE4iQYcDCyvSjDSf7JUWJHlJiTtbIoQjxKh6ViywqDAg==} - '@types/sockjs@0.3.33': - resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} - '@types/sockjs@0.3.36': resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} @@ -6832,6 +6824,9 @@ packages: '@types/stylis@4.2.0': resolution: {integrity: sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==} + '@types/stylis@4.2.5': + resolution: {integrity: sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==} + '@types/through@0.0.31': resolution: {integrity: sha512-LpKpmb7FGevYgXnBXYs6HWnmiFyVG07Pt1cnbgM1IhEacITTiUaBXXvOR3Y50ksaJWGSfhbEvQFivQEFGCC55w==} @@ -6865,8 +6860,8 @@ packages: '@types/yargs@17.0.24': resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==} - '@typescript-eslint/eslint-plugin@6.13.1': - resolution: {integrity: sha512-5bQDGkXaxD46bPvQt08BUz9YSaO4S0fB1LB5JHQuXTfkGPI3+UUeS387C/e9jRie5GqT8u5kFTrMvAjtX4O5kA==} + '@typescript-eslint/eslint-plugin@6.21.0': + resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha @@ -6876,19 +6871,19 @@ packages: typescript: optional: true - '@typescript-eslint/eslint-plugin@6.21.0': - resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} - engines: {node: ^16.0.0 || >=18.0.0} + '@typescript-eslint/eslint-plugin@7.8.0': + resolution: {integrity: sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: - '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha - eslint: ^7.0.0 || ^8.0.0 + '@typescript-eslint/parser': ^7.0.0 + eslint: ^8.56.0 typescript: '*' peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/parser@6.13.1': - resolution: {integrity: sha512-fs2XOhWCzRhqMmQf0eicLa/CWSaYss2feXsy7xBD/pLyWke/jCIVc2s1ikEAtSW7ina1HNhv7kONoEfVNEcdDQ==} + '@typescript-eslint/parser@6.21.0': + resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -6897,11 +6892,11 @@ packages: typescript: optional: true - '@typescript-eslint/parser@6.21.0': - resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} - engines: {node: ^16.0.0 || >=18.0.0} + '@typescript-eslint/parser@7.8.0': + resolution: {integrity: sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + eslint: ^8.56.0 typescript: '*' peerDependenciesMeta: typescript: @@ -6915,26 +6910,16 @@ packages: resolution: {integrity: sha512-BW0kJ7ceiKi56GbT2KKzZzN+nDxzQK2DS6x0PiSMPjciPgd/JRQGMibyaN2cPt2cAvuoH0oNvn2fwonHI+4QUQ==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/scope-manager@6.13.2': - resolution: {integrity: sha512-CXQA0xo7z6x13FeDYCgBkjWzNqzBn8RXaE3QVQVIUm74fWJLkJkaHmHdKStrxQllGh6Q4eUGyNpMe0b1hMkXFA==} - engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/scope-manager@6.21.0': resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/type-utils@6.13.1': - resolution: {integrity: sha512-A2qPlgpxx2v//3meMqQyB1qqTg1h1dJvzca7TugM3Yc2USDY+fsRBiojAEo92HO7f5hW5mjAUF6qobOPzlBCBQ==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/scope-manager@7.8.0': + resolution: {integrity: sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==} + engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/type-utils@6.13.2': - resolution: {integrity: sha512-Qr6ssS1GFongzH2qfnWKkAQmMUyZSyOr0W54nZNU1MDfo+U4Mv3XveeLZzadc/yq8iYhQZHYT+eoXJqnACM1tw==} + '@typescript-eslint/type-utils@6.21.0': + resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -6943,11 +6928,11 @@ packages: typescript: optional: true - '@typescript-eslint/type-utils@6.21.0': - resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} - engines: {node: ^16.0.0 || >=18.0.0} + '@typescript-eslint/type-utils@7.8.0': + resolution: {integrity: sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: - eslint: ^7.0.0 || ^8.0.0 + eslint: ^8.56.0 typescript: '*' peerDependenciesMeta: typescript: @@ -6961,14 +6946,14 @@ packages: resolution: {integrity: sha512-gjeEskSmiEKKFIbnhDXUyiqVma1gRCQNbVZ1C8q7Zjcxh3WZMbzWVfGE9rHfWd1msQtPS0BVD9Jz9jded44eKg==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/types@6.13.2': - resolution: {integrity: sha512-7sxbQ+EMRubQc3wTfTsycgYpSujyVbI1xw+3UMRUcrhSy+pN09y/lWzeKDbvhoqcRbHdc+APLs/PWYi/cisLPg==} - engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/types@6.21.0': resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} engines: {node: ^16.0.0 || >=18.0.0} + '@typescript-eslint/types@7.8.0': + resolution: {integrity: sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==} + engines: {node: ^18.18.0 || >=20.0.0} + '@typescript-eslint/typescript-estree@5.62.0': resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -6987,8 +6972,8 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@6.13.2': - resolution: {integrity: sha512-SuD8YLQv6WHnOEtKv8D6HZUzOub855cfPnPMKvdM/Bh1plv1f7Q/0iFUDLKKlxHcEstQnaUU4QZskgQq74t+3w==} + '@typescript-eslint/typescript-estree@6.21.0': + resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' @@ -6996,9 +6981,9 @@ packages: typescript: optional: true - '@typescript-eslint/typescript-estree@6.21.0': - resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} - engines: {node: ^16.0.0 || >=18.0.0} + '@typescript-eslint/typescript-estree@7.8.0': + resolution: {integrity: sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==} + engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -7017,18 +7002,18 @@ packages: peerDependencies: eslint: ^7.0.0 || ^8.0.0 - '@typescript-eslint/utils@6.13.2': - resolution: {integrity: sha512-b9Ptq4eAZUym4idijCRzl61oPCwwREcfDI8xGk751Vhzig5fFZR9CyzDz4Sp/nxSLBYxUPyh4QdIDqWykFhNmQ==} - engines: {node: ^16.0.0 || >=18.0.0} - peerDependencies: - eslint: ^7.0.0 || ^8.0.0 - '@typescript-eslint/utils@6.21.0': resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 + '@typescript-eslint/utils@7.8.0': + resolution: {integrity: sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==} + engines: {node: ^18.18.0 || >=20.0.0} + peerDependencies: + eslint: ^8.56.0 + '@typescript-eslint/visitor-keys@5.62.0': resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7037,14 +7022,14 @@ packages: resolution: {integrity: sha512-NDhQUy2tg6XGNBGDRm1XybOHSia8mcXmlbKWoQP+nm1BIIMxa55shyJfZkHpEBN62KNPLrocSM2PdPcaLgDKMQ==} engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/visitor-keys@6.13.2': - resolution: {integrity: sha512-OGznFs0eAQXJsp+xSd6k/O1UbFi/K/L7WjqeRoFE7vadjAF9y0uppXhYNQNEqygjou782maGClOoZwPqF0Drlw==} - engines: {node: ^16.0.0 || >=18.0.0} - '@typescript-eslint/visitor-keys@6.21.0': resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} engines: {node: ^16.0.0 || >=18.0.0} + '@typescript-eslint/visitor-keys@7.8.0': + resolution: {integrity: sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==} + engines: {node: ^18.18.0 || >=20.0.0} + '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} @@ -7061,9 +7046,6 @@ packages: peerDependencies: vite: ^4.2.0 || ^5.0.0 - '@webassemblyjs/ast@1.11.6': - resolution: {integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==} - '@webassemblyjs/ast@1.12.1': resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} @@ -7073,9 +7055,6 @@ packages: '@webassemblyjs/helper-api-error@1.11.6': resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - '@webassemblyjs/helper-buffer@1.11.6': - resolution: {integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==} - '@webassemblyjs/helper-buffer@1.12.1': resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} @@ -7085,9 +7064,6 @@ packages: '@webassemblyjs/helper-wasm-bytecode@1.11.6': resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - '@webassemblyjs/helper-wasm-section@1.11.6': - resolution: {integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==} - '@webassemblyjs/helper-wasm-section@1.12.1': resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} @@ -7100,33 +7076,18 @@ packages: '@webassemblyjs/utf8@1.11.6': resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - '@webassemblyjs/wasm-edit@1.11.6': - resolution: {integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==} - '@webassemblyjs/wasm-edit@1.12.1': resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} - '@webassemblyjs/wasm-gen@1.11.6': - resolution: {integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==} - '@webassemblyjs/wasm-gen@1.12.1': resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} - '@webassemblyjs/wasm-opt@1.11.6': - resolution: {integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==} - '@webassemblyjs/wasm-opt@1.12.1': resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} - '@webassemblyjs/wasm-parser@1.11.6': - resolution: {integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==} - '@webassemblyjs/wasm-parser@1.12.1': resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} - '@webassemblyjs/wast-printer@1.11.6': - resolution: {integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==} - '@webassemblyjs/wast-printer@1.12.1': resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} @@ -7262,11 +7223,6 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - acorn@8.11.2: - resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==} - engines: {node: '>=0.4.0'} - hasBin: true - acorn@8.11.3: resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} engines: {node: '>=0.4.0'} @@ -7328,6 +7284,9 @@ packages: ajv@8.12.0: resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} + alge@0.8.1: + resolution: {integrity: sha512-kiV9nTt+XIauAXsowVygDxMZLplZxDWt0W8plE/nB32/V2ziM/P/TxDbSVK7FYIUt2Xo16h3/htDh199LNPCKQ==} + algoliasearch-helper@3.17.0: resolution: {integrity: sha512-R5422OiQjvjlK3VdpNQ/Qk7KsTIGeM5ACm8civGifOVWdRRV/3SgXuKmeNxe94Dz6fwj/IgpVmXbHutU4mHubg==} peerDependencies: @@ -7498,9 +7457,6 @@ packages: array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} - array-flatten@2.1.2: - resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} - array-includes@3.1.7: resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} engines: {node: '>= 0.4'} @@ -7645,8 +7601,8 @@ packages: - table - yaml - aws-cdk-lib@2.138.0: - resolution: {integrity: sha512-BdLOd6Fkl/7PH8RahRbhYQf3zRFCxVtOdkKOAZHHqtaNkmTyfkUGMXyzyQ4rIHvR8EOy1C1x5CAufqoZuJM0gA==} + aws-cdk-lib@2.141.0: + resolution: {integrity: sha512-xda56Lfwpdqg9MssnFdXrAKTmeeNjfrfFCaWwqGqToG6cfGY2W+6wyyoObX60/MeZGhhs3Lhdb/K94ulLJ4X/A==} engines: {node: '>= 14.15.0'} peerDependencies: constructs: ^10.0.0 @@ -7759,11 +7715,6 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs2@0.4.6: - resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs3@0.10.4: resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} peerDependencies: @@ -7774,21 +7725,11 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs3@0.8.6: - resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-regenerator@0.5.2: resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-regenerator@0.5.3: - resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-regenerator@0.6.1: resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==} peerDependencies: @@ -7912,9 +7853,6 @@ packages: resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} - bonjour-service@1.1.1: - resolution: {integrity: sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==} - bonjour-service@1.2.1: resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} @@ -7983,11 +7921,6 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true - browserslist@4.22.2: - resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - browserslist@4.23.0: resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} @@ -8128,9 +8061,6 @@ packages: caniuse-lite@1.0.30001538: resolution: {integrity: sha512-HWJnhnID+0YMtGlzcp3T9drmBJUVDchPJ08tpUGFLs9CYlwWPH2uLgpHn8fND5pCgXVtnGS3H4QR9XLMHVNkHw==} - caniuse-lite@1.0.30001566: - resolution: {integrity: sha512-ggIhCsTxmITBAMmK8yZjEhCO5/47jKXPu6Dha/wuCS4JePVL+3uiDEBuhu2aIoT+bqTOR8L76Ip1ARL9xYsEJA==} - caniuse-lite@1.0.30001610: resolution: {integrity: sha512-QFutAY4NgaelojVMjY63o6XlZyORPaLfyMnsl3HgnWdJUcX6K0oaJymHjH8PT5Gk7sTm8rvC/c5COUQKXqmOMA==} @@ -8803,12 +8733,6 @@ packages: webpack: optional: true - css-loader@6.8.1: - resolution: {integrity: sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 - css-minimizer-webpack-plugin@4.2.2: resolution: {integrity: sha512-s3Of/4jKfw1Hj9CxEO1E5oXhQAxlayuHO2y/ML+C6I9sQ7FdzfEV6QgMLN3vI+qFsjJGIAFLKtQK7t8BOXAIyA==} engines: {node: '>= 14.15.0'} @@ -9059,8 +8983,9 @@ packages: babel-plugin-macros: optional: true - deep-equal@2.2.2: - resolution: {integrity: sha512-xjVyBf0w5vH0I42jdAZzOKVldmPgSulmiyPRywoyq7HXC9qdgo17kxJE+rdnif5Tz6+pIrpJI8dCpMNLIGkUiA==} + deep-equal@2.2.3: + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} @@ -9225,9 +9150,6 @@ packages: dlv@1.1.3: resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} - dns-equal@1.0.0: - resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} - dns-packet@5.6.1: resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} engines: {node: '>=6'} @@ -9309,6 +9231,10 @@ packages: resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} engines: {node: '>=12'} + dprint@0.45.1: + resolution: {integrity: sha512-OYefcDgxd6jSdig/Cfkw1vdvyiOIRruCPnqGBbXpc95buDt9kvwL+Lic1OHc+SaQSsQub0BUZMd5+TNgy8Sh3A==} + hasBin: true + dset@3.1.2: resolution: {integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==} engines: {node: '>=4'} @@ -9343,17 +9269,9 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - ejs@3.1.9: - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} - engines: {node: '>=0.10.0'} - hasBin: true - electron-to-chromium@1.4.523: resolution: {integrity: sha512-9AreocSUWnzNtvLcbpng6N+GkXnCcBR80IQkxRC9Dfdyg4gaWNUPBujAHUpKkiUkoSoR9UlhA4zD/IgBklmhzg==} - electron-to-chromium@1.4.603: - resolution: {integrity: sha512-Dvo5OGjnl7AZTU632dFJtWj0uJK835eeOVQIuRcmBmsFsTNn3cL05FqOyHAfGQDIoHfLhyJ1Tya3PJ0ceMz54g==} - electron-to-chromium@1.4.738: resolution: {integrity: sha512-lwKft2CLFztD+vEIpesrOtCrko/TFnEJlHFdRhazU7Y/jx5qc4cqsocfVrBg4So4gGe9lvxnbLIoev47WMpg+A==} @@ -9414,10 +9332,18 @@ packages: resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==} engines: {node: '>=10.13.0'} + enhanced-resolve@5.16.1: + resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==} + engines: {node: '>=10.13.0'} + enquirer@2.3.6: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} + enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} + entities@2.2.0: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} @@ -9472,9 +9398,6 @@ packages: es-module-lexer@0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} - es-module-lexer@1.4.1: - resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==} - es-module-lexer@1.5.0: resolution: {integrity: sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==} @@ -9663,6 +9586,11 @@ packages: engines: {node: '>=12'} hasBin: true + esbuild@0.21.1: + resolution: {integrity: sha512-GPqx+FX7mdqulCeQ4TsGZQ3djBJkx5k7zBGtqt9ycVlWNg8llJ4RO9n2vciu8BN2zAEs6lPbPl0asZsAh7oWzg==} + engines: {node: '>=12'} + hasBin: true + escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} @@ -9835,11 +9763,11 @@ packages: peerDependencies: eslint: '>=7.0.0' - eslint-plugin-n@16.6.2: - resolution: {integrity: sha512-6TyDmZ1HXoFQXnhCTUjVFULReoBPOAjpuiKELMkeP40yffI/1ZRO+d9ug/VC6fqISo2WkuIBk3cvuRPALaWlOQ==} - engines: {node: '>=16.0.0'} + eslint-plugin-n@17.6.0: + resolution: {integrity: sha512-Y73o88ROwbCtVCCmZjYlYcPYkOG7mIzxxVK1XFRSa2epbKWtAPsmYpAD0pqxg/ZwlcWxMDceQPKHYQi4VIHz7w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: '>=7.0.0' + eslint: '>=8.23.0' eslint-plugin-perfectionist@2.10.0: resolution: {integrity: sha512-P+tdrkHeMWBc55+DZsoDOAftV1WCsEoHaKm6JC7zajFus/syfT4vUPBFb3atGFSuyaVnGQGHlcKpP9X3Q0gH/w==} @@ -9877,8 +9805,8 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - eslint-plugin-testing-library@6.2.0: - resolution: {integrity: sha512-+LCYJU81WF2yQ+Xu4A135CgK8IszcFcyMF4sWkbiu6Oj+Nel0TrkZq/HvDw0/1WuO3dhDQsZA/OpEMGd0NfcUw==} + eslint-plugin-testing-library@6.2.2: + resolution: {integrity: sha512-1E94YOTUDnOjSLyvOwmbVDzQi/WkKm3WVrMXu6SmBr6DN95xTGZmI6HJ/eOkSXh/DlheRsxaPsJvZByDBhWLVQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 @@ -9897,6 +9825,10 @@ packages: resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-scope@8.0.1: + resolution: {integrity: sha512-pL8XjgP4ZOmmwfFE8mEhSxA7ZY4C+LWyqjQ3o4yWkkmD0qcMT9kkW3zWHOczhWcjTSgqycYAgwSlXvZltv65og==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-utils@2.1.0: resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} engines: {node: '>=6'} @@ -9919,14 +9851,32 @@ packages: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-visitor-keys@4.0.0: + resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint@8.54.0: resolution: {integrity: sha512-NY0DfAkM8BIZDVl6PgSa1ttZbx3xHgJzSNJKYcQglem6CppHyMhRIQkBVSSMaSRnLhig3jsDbEzOjwCVt4AmmA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true + eslint@8.57.0: + resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + + eslint@9.2.0: + resolution: {integrity: sha512-0n/I88vZpCOzO+PQpt0lbsqmn9AsnsJAQseIqhZFI8ibQT0U1AkEKRxA3EVMos0BoHSXDQvCXY25TUjB5tr8Og==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + esniff@1.1.0: resolution: {integrity: sha512-vmHXOeOt7FJLsqofvFk4WB3ejvcHizCd8toXXwADmYfd02p2QwHRgkUbhYDX54y08nqk818CUTWipgZGlyN07g==} + espree@10.0.1: + resolution: {integrity: sha512-MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + espree@9.6.1: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -10200,6 +10150,10 @@ packages: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + file-loader@6.2.0: resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} engines: {node: '>= 10.13.0'} @@ -10315,6 +10269,10 @@ packages: resolution: {integrity: sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==} engines: {node: '>=12.0.0'} + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + flat@5.0.2: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} hasBin: true @@ -10322,6 +10280,9 @@ packages: flatted@3.2.9: resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + flatted@3.3.1: + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + flow-parser@0.235.1: resolution: {integrity: sha512-s04193L4JE+ntEcQXbD6jxRRlyj9QXcgEl2W6xSjH4l9x4b0eHoCHfbYHjqf9LdZFUiM5LhgpiqsvLj/AyOyYQ==} engines: {node: '>=0.4.0'} @@ -10534,8 +10495,8 @@ packages: get-tsconfig@4.7.0: resolution: {integrity: sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==} - get-tsconfig@4.7.3: - resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==} + get-tsconfig@4.7.5: + resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==} giget@1.2.3: resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} @@ -10572,9 +10533,6 @@ packages: engines: {node: '>=16 || 14 >=14.17'} hasBin: true - glob@7.1.4: - resolution: {integrity: sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==} - glob@7.1.6: resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} @@ -10609,6 +10567,14 @@ packages: resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} engines: {node: '>=8'} + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@15.2.0: + resolution: {integrity: sha512-FQ5YwCHZM3nCmtb5FzEWwdUc9K5d3V/w9mzcz8iGD1gC/aOTHc6PouYu0kkKipNJqHAT7m51sqzQjEjIP+cK0A==} + engines: {node: '>=18'} + globalthis@1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} @@ -10673,6 +10639,12 @@ packages: peerDependencies: graphql: 14 - 16 + graphql-request@7.0.0: + resolution: {integrity: sha512-KJ7+YFvxSqSUFHsnBGZtT6lCuyieiaBaKKDor+G2dghKA68//WsmHKKiugoc9CW0oH8l3NYuCdXAAiUSaDkTcw==} + hasBin: true + peerDependencies: + graphql: 14 - 16 + graphql-tag@2.12.6: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} @@ -10685,6 +10657,12 @@ packages: peerDependencies: graphql: '>=0.11 <=16' + graphql-ws@5.16.0: + resolution: {integrity: sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==} + engines: {node: '>=10'} + peerDependencies: + graphql: '>=0.11 <=16' + graphql@16.8.1: resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} @@ -11042,10 +11020,6 @@ packages: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} engines: {node: '>= 4'} - ignore@5.3.0: - resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} - engines: {node: '>= 4'} - ignore@5.3.1: resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} engines: {node: '>= 4'} @@ -11073,6 +11047,9 @@ packages: immutable@4.3.4: resolution: {integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==} + immutable@4.3.5: + resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==} + import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} @@ -11980,9 +11957,6 @@ packages: resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==} engines: {node: '>=14.16'} - launch-editor@2.6.0: - resolution: {integrity: sha512-JpDCcQnyAAzZZaZ7vEiSqL690w7dAEyLao+KC96zBplnYbJS7TYNjvM3M7y3dGz+v7aIsJk3hllWuc0kWAjyRQ==} - launch-editor@2.6.1: resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==} @@ -12204,6 +12178,9 @@ packages: lodash.isinteger@4.0.4: resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} + lodash.ismatch@4.4.0: + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + lodash.isnumber@3.0.3: resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} @@ -12222,6 +12199,9 @@ packages: lodash.once@4.1.1: resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + lodash.snakecase@4.1.1: + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + lodash.sortby@4.7.0: resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} @@ -12810,9 +12790,6 @@ packages: minimalistic-crypto-utils@1.0.1: resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} - minimatch@3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} - minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -13165,15 +13142,15 @@ packages: nwsapi@2.2.7: resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} - nx-cloud@16.5.2: - resolution: {integrity: sha512-1t1Ii9gojl8r/8hFGaZ/ZyYR0Cb0hzvXLCsaFuvg+EJEFdvua3P4cfNya/0bdRrm+7Eb/ITUOskbvYq4TSlyGg==} + nx-cloud@18.0.1: + resolution: {integrity: sha512-nxJfz0ZmW+DKSr8evmVVm6t1XcLn9WHR5I8kiE2BFNkLVwC+nx+MimjJ53opfHOepMqQiGJAdstZ5Ks630bJgg==} hasBin: true - nx@17.1.3: - resolution: {integrity: sha512-6LYoTt01nS1d/dvvYtRs+pEAMQmUVsd2fr/a8+X1cDjWrb8wsf1O3DwlBTqKOXOazpS3eOr0Ukc9N1svbu7uXA==} + nx@19.0.1: + resolution: {integrity: sha512-zhXlXv9fbkTOJe4tlwwWw1dLCbSszvLJQmktUW8JS7ezuT1bWMYgdqIMZNRPpgQkU5ryC+ahs4yTBDk07kdWRw==} hasBin: true peerDependencies: - '@swc-node/register': ^1.6.7 + '@swc-node/register': ^1.8.0 '@swc/core': ^1.3.85 peerDependenciesMeta: '@swc-node/register': @@ -13326,6 +13303,10 @@ packages: resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} engines: {node: '>= 0.8.0'} + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + ora@5.3.0: resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==} engines: {node: '>=10'} @@ -13891,36 +13872,18 @@ packages: peerDependencies: postcss: ^8.2.15 - postcss-modules-extract-imports@3.0.0: - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - postcss-modules-extract-imports@3.1.0: resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 - postcss-modules-local-by-default@4.0.3: - resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - postcss-modules-local-by-default@4.0.5: resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 - postcss-modules-scope@3.0.0: - resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} - engines: {node: ^10 || ^12 || >= 14} - peerDependencies: - postcss: ^8.1.0 - postcss-modules-scope@3.2.0: resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==} engines: {node: ^10 || ^12 || >= 14} @@ -14163,10 +14126,6 @@ packages: resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} engines: {node: ^10 || ^12 || >=14} - postcss@8.4.32: - resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==} - engines: {node: ^10 || ^12 || >=14} - postcss@8.4.38: resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} engines: {node: ^10 || ^12 || >=14} @@ -14388,10 +14347,6 @@ packages: resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} engines: {node: '>=0.6'} - qs@6.11.2: - resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} - engines: {node: '>=0.6'} - qs@6.12.1: resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} engines: {node: '>=0.6'} @@ -14505,6 +14460,11 @@ packages: peerDependencies: react: ^18.2.0 + react-dom@18.3.1: + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + peerDependencies: + react: ^18.3.1 + react-dropzone@14.2.3: resolution: {integrity: sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==} engines: {node: '>= 10.13'} @@ -14607,6 +14567,10 @@ packages: resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} engines: {node: '>=0.10.0'} + react-refresh@0.14.2: + resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + engines: {node: '>=0.10.0'} + react-remove-scroll-bar@2.3.4: resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} @@ -14680,6 +14644,10 @@ packages: resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} + react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} + engines: {node: '>=0.10.0'} + read-cache@1.0.0: resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} @@ -14718,6 +14686,10 @@ packages: reading-time@1.5.0: resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==} + readline-sync@1.4.10: + resolution: {integrity: sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==} + engines: {node: '>= 0.8.0'} + recast@0.23.4: resolution: {integrity: sha512-qtEDqIZGVcSZCHniWwZWbRy79Dc6Wp3kT/UmDA2RJKBPg7+7k51aQBZirHmUGn5uvHf2rg8DkjizrN26k61ATw==} engines: {node: '>= 4'} @@ -14806,8 +14778,8 @@ packages: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true - rehackt@0.0.6: - resolution: {integrity: sha512-l3WEzkt4ntlEc/IB3/mF6SRgNHA6zfQR7BlGOgBTOmx7IJJXojDASav+NsgXHFjHn+6RmwqsGPFgZpabWpeOdw==} + rehackt@0.1.0: + resolution: {integrity: sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==} peerDependencies: '@types/react': '*' react: '*' @@ -14864,6 +14836,9 @@ packages: remark-stringify@11.0.0: resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + remeda@1.61.0: + resolution: {integrity: sha512-caKfSz9rDeSKBQQnlJnVW3mbVdFgxgGWQKq1XlFokqjf+hQD5gxutLGTTY2A/x24UxVyJe9gH5fAkFI63ULw4A==} + remedial@1.0.8: resolution: {integrity: sha512-/62tYiOe6DzS5BqVsNpH/nkGlX45C/Sp6V+NtiN6JQNS1Viay7cWkazmRkrQrdFj2eshDe96SIQNIoMxqhzBOg==} @@ -15035,6 +15010,11 @@ packages: engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true + rollup@4.17.2: + resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + rtl-detect@1.1.2: resolution: {integrity: sha512-PGMBq03+TTG/p/cRB7HCLKJ1MgDIi07+QU1faSjiYRfmY5UsAttV9Hs08jDAHVwcOwmVLcSJkpwyfXszVjWfIQ==} @@ -15133,6 +15113,11 @@ packages: engines: {node: '>=14.0.0'} hasBin: true + sass@1.77.0: + resolution: {integrity: sha512-eGj4HNfXqBWtSnvItNkn7B6icqH14i3CiCGbzMKs3BAPTq62pp9NBYsBgyN4cA+qssqo9r26lW4JSvlaUUWbgw==} + engines: {node: '>=14.0.0'} + hasBin: true + sax@1.2.1: resolution: {integrity: sha512-8I2a3LovHTOpm7NV5yOyO8IHqgVsfK4+UuySrXU8YXkSRX7k6hCV9b3HrkKCr3nMpgj+0bmocaJJWpvp1oc7ZA==} @@ -15152,6 +15137,9 @@ packages: scheduler@0.23.0: resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + scheduler@0.23.2: + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + schema-utils@2.7.0: resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} engines: {node: '>= 8.9.0'} @@ -15184,10 +15172,6 @@ packages: select-hose@2.0.0: resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} - selfsigned@2.1.1: - resolution: {integrity: sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==} - engines: {node: '>=10'} - selfsigned@2.4.1: resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} engines: {node: '>=10'} @@ -15208,11 +15192,6 @@ packages: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true - semver@7.5.3: - resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} - engines: {node: '>=10'} - hasBin: true - semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} engines: {node: '>=10'} @@ -15223,6 +15202,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.6.2: + resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} + engines: {node: '>=10'} + hasBin: true + send@0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} engines: {node: '>= 0.8.0'} @@ -15230,9 +15214,6 @@ packages: sentence-case@3.0.4: resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==} - serialize-javascript@6.0.1: - resolution: {integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==} - serialize-javascript@6.0.2: resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} @@ -15614,6 +15595,10 @@ packages: resolution: {integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==} engines: {node: '>=12.20'} + string-length@6.0.0: + resolution: {integrity: sha512-1U361pxZHEQ+FeSjzqRpV+cu2vTzYeWeafXFLykiFlv4Vc0n3njgU8HrMbyik5uwm77naWMuVG8fhEF+Ovb1Kg==} + engines: {node: '>=16'} + string-range@1.2.2: resolution: {integrity: sha512-tYft6IFi8SjplJpxCUxyqisD3b+R2CSkomrtJYCkvuf1KuCAWgz7YXt4O0jip7efpfCemwHEzTEAO8EuOYgh3w==} @@ -15748,12 +15733,6 @@ packages: resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==} engines: {node: '>=10'} - style-loader@3.3.3: - resolution: {integrity: sha512-53BiGLXAcll9maCYtZi2RCQZKa8NQQai5C4horqKyRmHj9H7QmcUyucrH+4KW/gBQbXM2AsB0axoEcFZPlfPcw==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^5.0.0 - style-loader@3.3.4: resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} engines: {node: '>= 12.13.0'} @@ -15772,6 +15751,13 @@ packages: style-to-object@1.0.6: resolution: {integrity: sha512-khxq+Qm3xEyZfKd/y9L3oIWQimxuc4STrQKtQn8aSDRHb8mFgpukgX1hdzfrMEW6JCjyJ8p89x+IUMVnCBI1PA==} + styled-components@6.1.11: + resolution: {integrity: sha512-Ui0jXPzbp1phYij90h12ksljKGqF8ncGx+pjrNPsSPhbUUjWT2tD1FwGo2LF6USCnbrsIhNngDfodhxbegfEOA==} + engines: {node: '>= 16'} + peerDependencies: + react: '>= 16.8.0' + react-dom: '>= 16.8.0' + styled-components@6.1.8: resolution: {integrity: sha512-PQ6Dn+QxlWyEGCKDS71NGsXoVLKfE1c3vApkvDYS5KAK+V8fNWGhbSUEo9Gg2iaID2tjLXegEW3bZDUGpofRWw==} engines: {node: '>= 16'} @@ -15820,6 +15806,9 @@ packages: stylis@4.3.1: resolution: {integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==} + stylis@4.3.2: + resolution: {integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==} + stylus-loader@7.1.3: resolution: {integrity: sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==} engines: {node: '>= 14.15.0'} @@ -15831,6 +15820,10 @@ packages: resolution: {integrity: sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==} hasBin: true + stylus@0.63.0: + resolution: {integrity: sha512-OMlgrTCPzE/ibtRMoeLVhOY0RcNuNWh0rhAVqeKnk/QwcuUKQbnqhZ1kg2vzD8VU/6h3FoPTq4RJPHgLBvX6Bw==} + hasBin: true + subscriptions-transport-ws@0.11.0: resolution: {integrity: sha512-8D4C6DIH5tGiAIpp5I0wD/xRlNiZAPGHygzCe7VzyzUoxHtawzjNAY9SUTXU05/EY2NMY9/9GF0ycizkXr1CWQ==} deprecated: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md @@ -15947,10 +15940,6 @@ packages: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} engines: {node: '>=6'} - tar@6.1.11: - resolution: {integrity: sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==} - engines: {node: '>= 10'} - tar@6.2.0: resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} engines: {node: '>=10'} @@ -15990,27 +15979,6 @@ packages: uglify-js: optional: true - terser-webpack-plugin@5.3.9: - resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' - webpack: ^5.1.0 - peerDependenciesMeta: - '@swc/core': - optional: true - esbuild: - optional: true - uglify-js: - optional: true - - terser@5.25.0: - resolution: {integrity: sha512-we0I9SIsfvNUMP77zC9HG+MylwYYsGFSBG8qm+13oud2Yh+O104y614FRbyjpxys16jZwot72Fpi827YvGzuqg==} - engines: {node: '>=10'} - hasBin: true - terser@5.30.3: resolution: {integrity: sha512-STdUgOUx8rLbMGO9IOwHLpCqolkDITFFQSMYYwKE1N2lY6MVSaeoi10z/EhWxRc6ybqoVmKSkhKYH/XUpl7vSA==} engines: {node: '>=10'} @@ -16021,6 +15989,11 @@ packages: engines: {node: '>=10'} hasBin: true + terser@5.31.0: + resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==} + engines: {node: '>=10'} + hasBin: true + test-exclude@6.0.0: resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} engines: {node: '>=8'} @@ -16152,6 +16125,12 @@ packages: peerDependencies: typescript: '>=4.2.0' + ts-api-utils@1.3.0: + resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} + engines: {node: '>=16'} + peerDependencies: + typescript: '>=4.2.0' + ts-dedent@2.2.0: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} @@ -16211,6 +16190,9 @@ packages: ts-toolbelt@6.15.5: resolution: {integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==} + ts-toolbelt@9.6.0: + resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==} + tsconfck@2.1.2: resolution: {integrity: sha512-ghqN1b0puy3MhhviwO2kGF8SeMDNhEbnKxjK7h6+fvY9JAxqvXi8y5NAHSQv687OVboS2uZIByzGd45/YxrRHg==} engines: {node: ^14.13.1 || ^16 || >=18} @@ -16314,6 +16296,10 @@ packages: resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} engines: {node: '>=14.16'} + type-fest@4.18.2: + resolution: {integrity: sha512-+suCYpfJLAe4OXS6+PPXjW3urOS4IoP9waSiLuXfLgqZODKw/aWwASvzqE886wA0kQgGy0mIWyhd87VpqIy6Xg==} + engines: {node: '>=16'} + type-fest@4.8.2: resolution: {integrity: sha512-mcvrCjixA5166hSrUoJgGb9gBQN4loMYyj9zxuMs/66ibHNEFd5JXMw37YVDx58L4/QID9jIzdTBB4mDwDJ6KQ==} engines: {node: '>=16'} @@ -16367,8 +16353,8 @@ packages: peerDependencies: typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x - typescript@5.2.2: - resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} + typescript@5.4.5: + resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} engines: {node: '>=14.17'} hasBin: true @@ -16642,9 +16628,6 @@ packages: v8-compile-cache-lib@3.0.1: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} - v8-compile-cache@2.3.0: - resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} - v8-compile-cache@2.4.0: resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} @@ -16743,6 +16726,34 @@ packages: terser: optional: true + vite@5.2.11: + resolution: {integrity: sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + vscode-oniguruma@1.7.0: resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==} @@ -16756,10 +16767,6 @@ packages: walker@1.0.8: resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} - watchpack@2.4.0: - resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} - engines: {node: '>=10.13.0'} - watchpack@2.4.1: resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} engines: {node: '>=10.13.0'} @@ -16802,31 +16809,12 @@ packages: engines: {node: '>= 10.13.0'} hasBin: true - webpack-dev-middleware@5.3.3: - resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} - engines: {node: '>= 12.13.0'} - peerDependencies: - webpack: ^4.0.0 || ^5.0.0 - webpack-dev-middleware@5.3.4: resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 - webpack-dev-server@4.15.1: - resolution: {integrity: sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==} - engines: {node: '>= 12.13.0'} - hasBin: true - peerDependencies: - webpack: ^4.37.0 || ^5.0.0 - webpack-cli: '*' - peerDependenciesMeta: - webpack: - optional: true - webpack-cli: - optional: true - webpack-dev-server@4.15.2: resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} engines: {node: '>= 12.13.0'} @@ -16865,16 +16853,6 @@ packages: webpack-virtual-modules@0.6.1: resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} - webpack@5.89.0: - resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} - engines: {node: '>=10.13.0'} - hasBin: true - peerDependencies: - webpack-cli: '*' - peerDependenciesMeta: - webpack-cli: - optional: true - webpack@5.91.0: resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==} engines: {node: '>=10.13.0'} @@ -17184,6 +17162,9 @@ packages: resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==} engines: {node: '>= 10'} + zod@3.23.8: + resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} @@ -17196,8 +17177,6 @@ snapshots: '@aashutoshrathi/word-wrap@1.2.6': {} - '@adobe/css-tools@4.3.1': {} - '@adobe/css-tools@4.3.3': {} '@algolia/autocomplete-core@1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.13.0)': @@ -17318,16 +17297,18 @@ snapshots: '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 - '@apollo/client@3.8.8(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(subscriptions-transport-ws@0.11.0(graphql@16.8.1))': + '@apollo/client@3.10.3(@types/react@18.3.1)(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.8.1))': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - '@wry/equality': 0.5.6 + '@wry/caches': 1.0.1 + '@wry/equality': 0.5.7 '@wry/trie': 0.5.0 graphql: 16.8.1 graphql-tag: 2.12.6(graphql@16.8.1) hoist-non-react-statics: 3.3.2 optimism: 0.18.0 prop-types: 15.8.1 + rehackt: 0.1.0(@types/react@18.3.1)(react@18.3.1) response-iterator: 0.2.6 symbol-observable: 4.0.0 ts-invariant: 0.10.3 @@ -17335,22 +17316,22 @@ snapshots: zen-observable-ts: 1.2.5 optionalDependencies: graphql-ws: 5.14.2(graphql@16.8.1) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) subscriptions-transport-ws: 0.11.0(graphql@16.8.1) + transitivePeerDependencies: + - '@types/react' - '@apollo/client@3.9.11(@types/react@18.2.79)(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(subscriptions-transport-ws@0.11.0(graphql@16.8.1))': + '@apollo/client@3.8.8(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.8.1))': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) - '@wry/caches': 1.0.1 - '@wry/equality': 0.5.7 + '@wry/equality': 0.5.6 '@wry/trie': 0.5.0 graphql: 16.8.1 graphql-tag: 2.12.6(graphql@16.8.1) hoist-non-react-statics: 3.3.2 optimism: 0.18.0 prop-types: 15.8.1 - rehackt: 0.0.6(@types/react@18.2.79)(react@18.2.0) response-iterator: 0.2.6 symbol-observable: 4.0.0 ts-invariant: 0.10.3 @@ -17358,11 +17339,30 @@ snapshots: zen-observable-ts: 1.2.5 optionalDependencies: graphql-ws: 5.14.2(graphql@16.8.1) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + subscriptions-transport-ws: 0.11.0(graphql@16.8.1) + + '@apollo/client@3.8.8(graphql-ws@5.16.0(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.8.1))': + dependencies: + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + '@wry/equality': 0.5.6 + '@wry/trie': 0.5.0 + graphql: 16.8.1 + graphql-tag: 2.12.6(graphql@16.8.1) + hoist-non-react-statics: 3.3.2 + optimism: 0.18.0 + prop-types: 15.8.1 + response-iterator: 0.2.6 + symbol-observable: 4.0.0 + ts-invariant: 0.10.3 + tslib: 2.6.2 + zen-observable-ts: 1.2.5 + optionalDependencies: + graphql-ws: 5.16.0(graphql@16.8.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) subscriptions-transport-ws: 0.11.0(graphql@16.8.1) - transitivePeerDependencies: - - '@types/react' '@apollo/rover@0.19.1': dependencies: @@ -17380,7 +17380,7 @@ snapshots: '@babel/core': 7.24.4 '@babel/generator': 7.24.4 '@babel/parser': 7.24.4 - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 '@babel/traverse': 7.24.1 '@babel/types': 7.24.0 babel-preset-fbjs: 3.4.0(@babel/core@7.24.4) @@ -17419,9 +17419,9 @@ snapshots: '@aws-cdk/asset-node-proxy-agent-v6@2.0.3': {} - '@aws-cdk/aws-apigatewayv2-alpha@2.66.0-alpha.0(aws-cdk-lib@2.138.0(constructs@10.3.0))(constructs@10.3.0)': + '@aws-cdk/aws-apigatewayv2-alpha@2.66.0-alpha.0(aws-cdk-lib@2.141.0(constructs@10.3.0))(constructs@10.3.0)': dependencies: - aws-cdk-lib: 2.138.0(constructs@10.3.0) + aws-cdk-lib: 2.141.0(constructs@10.3.0) constructs: 10.3.0 '@aws-crypto/crc32@3.0.0': @@ -19075,19 +19075,14 @@ snapshots: '@smithy/types': 2.12.0 tslib: 2.6.2 - '@babel/code-frame@7.22.13': - dependencies: - '@babel/highlight': 7.22.20 - chalk: 2.4.2 - '@babel/code-frame@7.23.5': dependencies: - '@babel/highlight': 7.23.4 + '@babel/highlight': 7.24.5 chalk: 2.4.2 '@babel/code-frame@7.24.2': dependencies: - '@babel/highlight': 7.24.2 + '@babel/highlight': 7.24.5 picocolors: 1.0.0 '@babel/compat-data@7.23.5': {} @@ -19097,7 +19092,7 @@ snapshots: '@babel/core@7.22.20': dependencies: '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.2 '@babel/generator': 7.22.15 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.20) @@ -19117,7 +19112,7 @@ snapshots: '@babel/core@7.23.5': dependencies: '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.2 '@babel/generator': 7.24.4 '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) @@ -19154,11 +19149,31 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/eslint-parser@7.22.15(@babel/core@7.24.4)(eslint@8.54.0)': + '@babel/core@7.24.5': dependencies: - '@babel/core': 7.24.4 + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5) + '@babel/helpers': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + convert-source-map: 2.0.0 + debug: 4.3.4(supports-color@8.1.1) + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/eslint-parser@7.22.15(@babel/core@7.24.5)(eslint@8.57.0)': + dependencies: + '@babel/core': 7.24.5 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 8.54.0 + eslint: 8.57.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 @@ -19189,6 +19204,13 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 + '@babel/generator@7.24.5': + dependencies: + '@babel/types': 7.24.5 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 2.5.2 + '@babel/helper-annotate-as-pure@7.22.5': dependencies: '@babel/types': 7.24.0 @@ -19226,19 +19248,6 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.23.5(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -19272,13 +19281,6 @@ snapshots: regexpu-core: 5.3.2 semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19289,29 +19291,7 @@ snapshots: '@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 - debug: 4.3.4(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 - debug: 4.3.4(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-compilation-targets': 7.23.6 '@babel/helper-plugin-utils': 7.24.0 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 @@ -19354,7 +19334,7 @@ snapshots: '@babel/helper-member-expression-to-functions@7.23.0': dependencies: - '@babel/types': 7.23.5 + '@babel/types': 7.24.0 '@babel/helper-module-imports@7.22.15': dependencies: @@ -19371,7 +19351,7 @@ snapshots: '@babel/helper-module-imports': 7.24.3 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5)': dependencies: @@ -19380,7 +19360,7 @@ snapshots: '@babel/helper-module-imports': 7.24.3 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)': dependencies: @@ -19389,7 +19369,16 @@ snapshots: '@babel/helper-module-imports': 7.24.3 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 + + '@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5)': + dependencies: + '@babel/core': 7.24.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-simple-access': 7.24.5 + '@babel/helper-split-export-declaration': 7.24.5 + '@babel/helper-validator-identifier': 7.24.5 '@babel/helper-optimise-call-expression@7.22.5': dependencies: @@ -19406,13 +19395,6 @@ snapshots: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19427,13 +19409,6 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -19452,6 +19427,10 @@ snapshots: dependencies: '@babel/types': 7.24.0 + '@babel/helper-simple-access@7.24.5': + dependencies: + '@babel/types': 7.24.5 + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': dependencies: '@babel/types': 7.23.5 @@ -19460,6 +19439,10 @@ snapshots: dependencies: '@babel/types': 7.24.0 + '@babel/helper-split-export-declaration@7.24.5': + dependencies: + '@babel/types': 7.24.5 + '@babel/helper-string-parser@7.22.5': {} '@babel/helper-string-parser@7.23.4': {} @@ -19468,6 +19451,8 @@ snapshots: '@babel/helper-validator-identifier@7.22.20': {} + '@babel/helper-validator-identifier@7.24.5': {} + '@babel/helper-validator-option@7.23.5': {} '@babel/helper-wrap-function@7.22.20': @@ -19478,8 +19463,8 @@ snapshots: '@babel/helpers@7.23.5': dependencies: - '@babel/template': 7.22.15 - '@babel/traverse': 7.23.5 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.1 '@babel/types': 7.24.0 transitivePeerDependencies: - supports-color @@ -19492,21 +19477,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/highlight@7.22.20': + '@babel/helpers@7.24.5': dependencies: - '@babel/helper-validator-identifier': 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - - '@babel/highlight@7.23.4': - dependencies: - '@babel/helper-validator-identifier': 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.5 + '@babel/types': 7.24.5 + transitivePeerDependencies: + - supports-color - '@babel/highlight@7.24.2': + '@babel/highlight@7.24.5': dependencies: - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.0.0 @@ -19523,6 +19504,10 @@ snapshots: dependencies: '@babel/types': 7.24.0 + '@babel/parser@7.24.5': + dependencies: + '@babel/types': 7.24.5 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.4(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -19540,11 +19525,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -19562,13 +19542,6 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.22.20) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -19583,12 +19556,6 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.4) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -19607,14 +19574,14 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-proposal-decorators@7.22.15(@babel/core@7.23.5)': + '@babel/plugin-proposal-decorators@7.22.15(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) + '@babel/core': 7.24.4 + '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4) '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.5) + '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.24.4) '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.4)': dependencies: @@ -19629,10 +19596,6 @@ snapshots: dependencies: '@babel/core': 7.22.20 - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19642,19 +19605,14 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.5)': + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.20)': @@ -19662,11 +19620,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19677,31 +19630,21 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.5)': + '@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.4 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19712,11 +19655,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19747,11 +19685,6 @@ snapshots: '@babel/core': 7.23.5 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -19767,11 +19700,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -19787,11 +19715,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19802,19 +19725,14 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.24.4)': + '@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.24.5)': dependencies: - '@babel/core': 7.24.4 + '@babel/core': 7.24.5 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.22.20)': @@ -19822,11 +19740,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19837,11 +19750,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19852,11 +19760,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19867,11 +19770,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19882,11 +19780,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19897,11 +19790,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19912,11 +19800,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19927,11 +19810,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19942,11 +19820,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19957,10 +19830,10 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.5)': + '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.24.4)': dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.4 + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4)': dependencies: @@ -19973,12 +19846,6 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -19990,11 +19857,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20013,14 +19875,6 @@ snapshots: '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.22.20) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.20) - '@babel/plugin-transform-async-generator-functions@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) - '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20044,13 +19898,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.22.20) - '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.5) - '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20070,11 +19917,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20090,11 +19932,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-block-scoping@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20111,12 +19948,6 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20136,13 +19967,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.20) - '@babel/plugin-transform-class-static-block@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-transform-class-static-block@7.24.4(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20170,19 +19994,6 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - '@babel/plugin-transform-classes@7.23.5(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 - '@babel/plugin-transform-classes@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20213,12 +20024,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/template': 7.22.15 - '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/template': 7.22.15 - '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20236,11 +20041,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20257,12 +20057,6 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20280,11 +20074,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20301,12 +20090,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.20) - '@babel/plugin-transform-dynamic-import@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20325,12 +20108,6 @@ snapshots: '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20349,12 +20126,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.20) - '@babel/plugin-transform-export-namespace-from@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20384,11 +20155,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20408,13 +20174,6 @@ snapshots: '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20435,12 +20194,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.20) - '@babel/plugin-transform-json-strings@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20458,11 +20211,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-literals@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20479,12 +20227,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.20) - '@babel/plugin-transform-logical-assignment-operators@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20502,11 +20244,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20523,12 +20260,6 @@ snapshots: '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20548,13 +20279,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-simple-access': 7.22.5 - '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-simple-access': 7.22.5 - '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20575,15 +20299,7 @@ snapshots: '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-identifier': 7.22.20 - - '@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.22.20)': dependencies: @@ -20591,7 +20307,7 @@ snapshots: '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.4)': dependencies: @@ -20599,7 +20315,7 @@ snapshots: '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4) '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 '@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.20)': dependencies: @@ -20607,12 +20323,6 @@ snapshots: '@babel/helper-module-transforms': 7.23.3(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20631,12 +20341,6 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -20648,11 +20352,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20669,12 +20368,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.20) - '@babel/plugin-transform-nullish-coalescing-operator@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20693,12 +20386,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.20) - '@babel/plugin-transform-numeric-separator@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20720,15 +20407,6 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.20) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.22.20) - '@babel/plugin-transform-object-rest-spread@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20751,12 +20429,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-replace-supers': 7.22.20(@babel/core@7.22.20) - '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) - '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20775,12 +20447,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.20) - '@babel/plugin-transform-optional-catch-binding@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20807,13 +20473,6 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.20) - '@babel/plugin-transform-optional-chaining@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20838,11 +20497,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20859,12 +20513,6 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20885,14 +20533,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.20) - '@babel/plugin-transform-private-property-in-object@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20914,11 +20554,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -20944,11 +20579,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -20959,11 +20589,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.22.20) - '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -20988,15 +20613,6 @@ snapshots: '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.22.20) '@babel/types': 7.24.0 - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.23.5) - '@babel/types': 7.24.0 - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -21012,12 +20628,6 @@ snapshots: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -21030,12 +20640,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 regenerator-transform: 0.15.2 - '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - regenerator-transform: 0.15.2 - '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21053,11 +20657,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21068,18 +20667,6 @@ snapshots: '@babel/core': 7.24.4 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-runtime@7.22.15(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.5) - babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.23.5) - babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.5) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -21097,11 +20684,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21118,12 +20700,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-spread@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21141,11 +20717,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21161,11 +20732,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21181,11 +20747,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21204,14 +20765,6 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.20) - '@babel/plugin-transform-typescript@7.23.5(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.23.5(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -21225,11 +20778,6 @@ snapshots: '@babel/core': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21246,12 +20794,6 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21270,12 +20812,6 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21294,12 +20830,6 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.22.20) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.5) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.22.20)': dependencies: '@babel/core': 7.22.20 @@ -21398,92 +20928,6 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/preset-env@7.23.5(@babel/core@7.23.5)': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-compilation-targets': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.5) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.5) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.5) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-async-generator-functions': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-block-scoping': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-class-static-block': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-classes': 7.23.5(@babel/core@7.23.5) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-dynamic-import': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-export-namespace-from': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-json-strings': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-logical-assignment-operators': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.5) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-numeric-separator': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-object-rest-spread': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-optional-catch-binding': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-optional-chaining': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-private-property-in-object': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.5) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.5) - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.5) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.5) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.5) - core-js-compat: 3.33.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - '@babel/preset-env@7.24.4(@babel/core@7.22.20)': dependencies: '@babel/compat-data': 7.24.4 @@ -21672,13 +21116,6 @@ snapshots: '@babel/types': 7.23.5 esutils: 2.0.3 - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/types': 7.23.5 - esutils: 2.0.3 - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -21696,16 +21133,6 @@ snapshots: '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.20) '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.22.20) - '@babel/preset-react@7.24.1(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.23.5) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.5) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.5) - '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.23.5) - '@babel/preset-react@7.24.1(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -21725,15 +21152,6 @@ snapshots: '@babel/plugin-transform-modules-commonjs': 7.22.15(@babel/core@7.22.20) '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.22.20) - '@babel/preset-typescript@7.23.3(@babel/core@7.23.5)': - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.23.5) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5) - '@babel/preset-typescript@7.24.1(@babel/core@7.24.4)': dependencies: '@babel/core': 7.24.4 @@ -21768,6 +21186,10 @@ snapshots: regenerator-runtime: 0.14.0 '@babel/runtime@7.24.4': + dependencies: + regenerator-runtime: 0.14.0 + + '@babel/runtime@7.24.5': dependencies: regenerator-runtime: 0.14.1 @@ -21785,7 +21207,7 @@ snapshots: '@babel/traverse@7.22.20': dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.2 '@babel/generator': 7.23.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 @@ -21800,7 +21222,7 @@ snapshots: '@babel/traverse@7.23.2': dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.2 '@babel/generator': 7.23.5 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 @@ -21815,13 +21237,13 @@ snapshots: '@babel/traverse@7.23.5': dependencies: - '@babel/code-frame': 7.23.5 - '@babel/generator': 7.23.5 + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.4 '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.23.5 + '@babel/parser': 7.24.4 '@babel/types': 7.24.0 debug: 4.3.4(supports-color@8.1.1) globals: 11.12.0 @@ -21843,6 +21265,21 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/traverse@7.24.5': + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/generator': 7.24.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.24.5 + '@babel/parser': 7.24.5 + '@babel/types': 7.24.5 + debug: 4.3.4(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + '@babel/types@7.17.0': dependencies: '@babel/helper-validator-identifier': 7.22.20 @@ -21857,13 +21294,19 @@ snapshots: '@babel/types@7.23.5': dependencies: '@babel/helper-string-parser': 7.23.4 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 to-fast-properties: 2.0.0 '@babel/types@7.24.0': dependencies: '@babel/helper-string-parser': 7.24.1 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 + to-fast-properties: 2.0.0 + + '@babel/types@7.24.5': + dependencies: + '@babel/helper-string-parser': 7.24.1 + '@babel/helper-validator-identifier': 7.24.5 to-fast-properties: 2.0.0 '@base2/pretty-print-object@1.0.1': {} @@ -21893,21 +21336,21 @@ snapshots: '@docsearch/css@3.6.0': {} - '@docsearch/react@3.6.0(@algolia/client-search@4.23.3)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0)': + '@docsearch/react@3.6.0(@algolia/client-search@4.23.3)(@types/react@18.3.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0)': dependencies: '@algolia/autocomplete-core': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3)(search-insights@2.13.0) '@algolia/autocomplete-preset-algolia': 1.9.3(@algolia/client-search@4.23.3)(algoliasearch@4.23.3) '@docsearch/css': 3.6.0 algoliasearch: 4.23.3 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) search-insights: 2.13.0 transitivePeerDependencies: - '@algolia/client-search' - '@docusaurus/core@3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/core@3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: '@babel/core': 7.24.4 '@babel/generator': 7.24.4 @@ -21957,10 +21400,10 @@ snapshots: mini-css-extract-plugin: 2.9.0(webpack@5.91.0(esbuild@0.19.8)) p-map: 4.0.0 postcss: 8.4.38 - postcss-loader: 7.3.4(postcss@8.4.38)(typescript@5.2.2)(webpack@5.91.0(esbuild@0.19.8)) + postcss-loader: 7.3.4(postcss@8.4.38)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)) prompts: 2.4.2 react: 18.2.0 - react-dev-utils: 12.0.1(eslint@8.54.0)(typescript@5.2.2)(webpack@5.91.0(esbuild@0.19.8)) + react-dev-utils: 12.0.1(eslint@9.2.0)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)) react-dom: 18.2.0(react@18.2.0) react-helmet-async: 1.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-loadable: '@docusaurus/react-loadable@5.5.2(react@18.2.0)' @@ -22053,7 +21496,7 @@ snapshots: '@docusaurus/react-loadable': 5.5.2(react@18.2.0) '@docusaurus/types': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@types/history': 4.7.11 - '@types/react': 18.2.79 + '@types/react': 18.3.1 '@types/react-router-config': 5.0.11 '@types/react-router-dom': 5.3.3 react: 18.2.0 @@ -22067,9 +21510,9 @@ snapshots: - uglify-js - webpack-cli - '@docusaurus/plugin-content-blog@3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/plugin-content-blog@3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/logger': 3.2.1 '@docusaurus/mdx-loader': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/types': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -22106,9 +21549,9 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-content-docs@3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/plugin-content-docs@3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/logger': 3.2.1 '@docusaurus/mdx-loader': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/module-type-aliases': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -22144,9 +21587,9 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-content-pages@3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/plugin-content-pages@3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/mdx-loader': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/types': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/utils': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) @@ -22174,9 +21617,9 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-debug@3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/plugin-debug@3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/types': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/utils': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) fs-extra: 11.2.0 @@ -22202,9 +21645,9 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-google-analytics@3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/plugin-google-analytics@3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/types': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/utils-validation': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) react: 18.2.0 @@ -22228,9 +21671,9 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-google-gtag@3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/plugin-google-gtag@3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/types': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/utils-validation': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) '@types/gtag.js': 0.0.12 @@ -22255,9 +21698,9 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-google-tag-manager@3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/plugin-google-tag-manager@3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/types': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/utils-validation': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) react: 18.2.0 @@ -22281,9 +21724,9 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/plugin-sitemap@3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/plugin-sitemap@3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/logger': 3.2.1 '@docusaurus/types': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/utils': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) @@ -22312,20 +21755,20 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/preset-classic@3.2.1(@algolia/client-search@4.23.3)(@types/react@18.2.79)(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0)(typescript@5.2.2)': - dependencies: - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-content-blog': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-content-docs': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-content-pages': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-debug': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-google-analytics': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-google-gtag': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-google-tag-manager': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-sitemap': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/theme-classic': 3.2.1(@types/react@18.2.79)(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/theme-common': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/theme-search-algolia': 3.2.1(@algolia/client-search@4.23.3)(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.2.79)(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0)(typescript@5.2.2) + '@docusaurus/preset-classic@3.2.1(@algolia/client-search@4.23.3)(@types/react@18.3.1)(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.5)': + dependencies: + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-content-blog': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-content-docs': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-content-pages': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-debug': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-google-analytics': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-google-gtag': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-google-tag-manager': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-sitemap': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/theme-classic': 3.2.1(@types/react@18.3.1)(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/theme-common': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/theme-search-algolia': 3.2.1(@algolia/client-search@4.23.3)(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.3.1)(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.5) '@docusaurus/types': 3.2.1(esbuild@0.19.8)(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) @@ -22352,25 +21795,25 @@ snapshots: '@docusaurus/react-loadable@5.5.2(react@18.2.0)': dependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 prop-types: 15.8.1 react: 18.2.0 - '@docusaurus/theme-classic@3.2.1(@types/react@18.2.79)(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/theme-classic@3.2.1(@types/react@18.3.1)(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/mdx-loader': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/module-type-aliases': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@docusaurus/plugin-content-blog': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-content-docs': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-content-pages': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/theme-common': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/plugin-content-blog': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-content-docs': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-content-pages': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/theme-common': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/theme-translations': 3.2.1 '@docusaurus/types': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/utils': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) '@docusaurus/utils-common': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)) '@docusaurus/utils-validation': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) - '@mdx-js/react': 3.0.1(@types/react@18.2.79)(react@18.2.0) + '@mdx-js/react': 3.0.1(@types/react@18.3.1)(react@18.2.0) clsx: 2.1.0 copy-text-to-clipboard: 3.2.0 infima: 0.2.0-alpha.43 @@ -22404,17 +21847,17 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/theme-common@3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@docusaurus/theme-common@3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5)': dependencies: '@docusaurus/mdx-loader': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@docusaurus/module-type-aliases': 3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@docusaurus/plugin-content-blog': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-content-docs': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/plugin-content-pages': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/plugin-content-blog': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-content-docs': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/plugin-content-pages': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/utils': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) '@docusaurus/utils-common': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)) '@types/history': 4.7.11 - '@types/react': 18.2.79 + '@types/react': 18.3.1 '@types/react-router-config': 5.0.11 clsx: 2.1.0 parse-numeric-range: 1.3.0 @@ -22442,13 +21885,13 @@ snapshots: - vue-template-compiler - webpack-cli - '@docusaurus/theme-search-algolia@3.2.1(@algolia/client-search@4.23.3)(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.2.79)(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0)(typescript@5.2.2)': + '@docusaurus/theme-search-algolia@3.2.1(@algolia/client-search@4.23.3)(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@types/react@18.3.1)(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0)(typescript@5.4.5)': dependencies: - '@docsearch/react': 3.6.0(@algolia/client-search@4.23.3)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0) - '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docsearch/react': 3.6.0(@algolia/client-search@4.23.3)(@types/react@18.3.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(search-insights@2.13.0) + '@docusaurus/core': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/logger': 3.2.1 - '@docusaurus/plugin-content-docs': 3.2.1(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@docusaurus/theme-common': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@8.54.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@docusaurus/plugin-content-docs': 3.2.1(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) + '@docusaurus/theme-common': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8)(eslint@9.2.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.5) '@docusaurus/theme-translations': 3.2.1 '@docusaurus/utils': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) '@docusaurus/utils-validation': 3.2.1(@docusaurus/types@3.2.1(esbuild@0.19.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(esbuild@0.19.8) @@ -22493,7 +21936,7 @@ snapshots: dependencies: '@mdx-js/mdx': 3.0.1 '@types/history': 4.7.11 - '@types/react': 18.2.79 + '@types/react': 18.3.1 commander: 5.1.0 joi: 17.12.3 react: 18.2.0 @@ -22561,31 +22004,75 @@ snapshots: - uglify-js - webpack-cli + '@dprint/darwin-arm64@0.45.1': + optional: true + + '@dprint/darwin-x64@0.45.1': + optional: true + + '@dprint/formatter@0.3.0': {} + + '@dprint/linux-arm64-glibc@0.45.1': + optional: true + + '@dprint/linux-arm64-musl@0.45.1': + optional: true + + '@dprint/linux-x64-glibc@0.45.1': + optional: true + + '@dprint/linux-x64-musl@0.45.1': + optional: true + + '@dprint/typescript@0.90.5': {} + + '@dprint/win32-x64@0.45.1': + optional: true + '@emotion/is-prop-valid@1.2.1': dependencies: '@emotion/memoize': 0.8.1 + '@emotion/is-prop-valid@1.2.2': + dependencies: + '@emotion/memoize': 0.8.1 + '@emotion/memoize@0.8.1': {} '@emotion/unitless@0.8.0': {} - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)': + '@emotion/unitless@0.8.1': {} + + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': dependencies: - react: 18.2.0 + react: 18.3.1 '@esbuild-plugins/node-globals-polyfill@0.2.3(esbuild@0.20.2)': dependencies: esbuild: 0.20.2 + '@esbuild-plugins/node-globals-polyfill@0.2.3(esbuild@0.21.1)': + dependencies: + esbuild: 0.21.1 + '@esbuild-plugins/node-modules-polyfill@0.2.2(esbuild@0.20.2)': dependencies: esbuild: 0.20.2 escape-string-regexp: 4.0.0 rollup-plugin-node-polyfills: 0.2.1 + '@esbuild-plugins/node-modules-polyfill@0.2.2(esbuild@0.21.1)': + dependencies: + esbuild: 0.21.1 + escape-string-regexp: 4.0.0 + rollup-plugin-node-polyfills: 0.2.1 + '@esbuild/aix-ppc64@0.20.2': optional: true + '@esbuild/aix-ppc64@0.21.1': + optional: true + '@esbuild/android-arm64@0.18.20': optional: true @@ -22595,6 +22082,9 @@ snapshots: '@esbuild/android-arm64@0.20.2': optional: true + '@esbuild/android-arm64@0.21.1': + optional: true + '@esbuild/android-arm@0.18.20': optional: true @@ -22604,6 +22094,9 @@ snapshots: '@esbuild/android-arm@0.20.2': optional: true + '@esbuild/android-arm@0.21.1': + optional: true + '@esbuild/android-x64@0.18.20': optional: true @@ -22613,6 +22106,9 @@ snapshots: '@esbuild/android-x64@0.20.2': optional: true + '@esbuild/android-x64@0.21.1': + optional: true + '@esbuild/darwin-arm64@0.18.20': optional: true @@ -22622,6 +22118,9 @@ snapshots: '@esbuild/darwin-arm64@0.20.2': optional: true + '@esbuild/darwin-arm64@0.21.1': + optional: true + '@esbuild/darwin-x64@0.18.20': optional: true @@ -22631,6 +22130,9 @@ snapshots: '@esbuild/darwin-x64@0.20.2': optional: true + '@esbuild/darwin-x64@0.21.1': + optional: true + '@esbuild/freebsd-arm64@0.18.20': optional: true @@ -22640,6 +22142,9 @@ snapshots: '@esbuild/freebsd-arm64@0.20.2': optional: true + '@esbuild/freebsd-arm64@0.21.1': + optional: true + '@esbuild/freebsd-x64@0.18.20': optional: true @@ -22649,6 +22154,9 @@ snapshots: '@esbuild/freebsd-x64@0.20.2': optional: true + '@esbuild/freebsd-x64@0.21.1': + optional: true + '@esbuild/linux-arm64@0.18.20': optional: true @@ -22658,6 +22166,9 @@ snapshots: '@esbuild/linux-arm64@0.20.2': optional: true + '@esbuild/linux-arm64@0.21.1': + optional: true + '@esbuild/linux-arm@0.18.20': optional: true @@ -22667,6 +22178,9 @@ snapshots: '@esbuild/linux-arm@0.20.2': optional: true + '@esbuild/linux-arm@0.21.1': + optional: true + '@esbuild/linux-ia32@0.18.20': optional: true @@ -22676,6 +22190,9 @@ snapshots: '@esbuild/linux-ia32@0.20.2': optional: true + '@esbuild/linux-ia32@0.21.1': + optional: true + '@esbuild/linux-loong64@0.14.54': optional: true @@ -22688,6 +22205,9 @@ snapshots: '@esbuild/linux-loong64@0.20.2': optional: true + '@esbuild/linux-loong64@0.21.1': + optional: true + '@esbuild/linux-mips64el@0.18.20': optional: true @@ -22697,6 +22217,9 @@ snapshots: '@esbuild/linux-mips64el@0.20.2': optional: true + '@esbuild/linux-mips64el@0.21.1': + optional: true + '@esbuild/linux-ppc64@0.18.20': optional: true @@ -22706,6 +22229,9 @@ snapshots: '@esbuild/linux-ppc64@0.20.2': optional: true + '@esbuild/linux-ppc64@0.21.1': + optional: true + '@esbuild/linux-riscv64@0.18.20': optional: true @@ -22715,6 +22241,9 @@ snapshots: '@esbuild/linux-riscv64@0.20.2': optional: true + '@esbuild/linux-riscv64@0.21.1': + optional: true + '@esbuild/linux-s390x@0.18.20': optional: true @@ -22724,6 +22253,9 @@ snapshots: '@esbuild/linux-s390x@0.20.2': optional: true + '@esbuild/linux-s390x@0.21.1': + optional: true + '@esbuild/linux-x64@0.18.20': optional: true @@ -22733,6 +22265,9 @@ snapshots: '@esbuild/linux-x64@0.20.2': optional: true + '@esbuild/linux-x64@0.21.1': + optional: true + '@esbuild/netbsd-x64@0.18.20': optional: true @@ -22742,6 +22277,9 @@ snapshots: '@esbuild/netbsd-x64@0.20.2': optional: true + '@esbuild/netbsd-x64@0.21.1': + optional: true + '@esbuild/openbsd-x64@0.18.20': optional: true @@ -22751,6 +22289,9 @@ snapshots: '@esbuild/openbsd-x64@0.20.2': optional: true + '@esbuild/openbsd-x64@0.21.1': + optional: true + '@esbuild/sunos-x64@0.18.20': optional: true @@ -22760,6 +22301,9 @@ snapshots: '@esbuild/sunos-x64@0.20.2': optional: true + '@esbuild/sunos-x64@0.21.1': + optional: true + '@esbuild/win32-arm64@0.18.20': optional: true @@ -22769,6 +22313,9 @@ snapshots: '@esbuild/win32-arm64@0.20.2': optional: true + '@esbuild/win32-arm64@0.21.1': + optional: true + '@esbuild/win32-ia32@0.18.20': optional: true @@ -22778,6 +22325,9 @@ snapshots: '@esbuild/win32-ia32@0.20.2': optional: true + '@esbuild/win32-ia32@0.21.1': + optional: true + '@esbuild/win32-x64@0.18.20': optional: true @@ -22787,11 +22337,25 @@ snapshots: '@esbuild/win32-x64@0.20.2': optional: true + '@esbuild/win32-x64@0.21.1': + optional: true + '@eslint-community/eslint-utils@4.4.0(eslint@8.54.0)': dependencies: eslint: 8.54.0 eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': + dependencies: + eslint: 8.57.0 + eslint-visitor-keys: 3.4.3 + + '@eslint-community/eslint-utils@4.4.0(eslint@9.2.0)': + dependencies: + eslint: 9.2.0 + eslint-visitor-keys: 3.4.3 + optional: true + '@eslint-community/regexpp@4.10.0': {} '@eslint/eslintrc@2.1.3': @@ -22808,8 +22372,42 @@ snapshots: transitivePeerDependencies: - supports-color + '@eslint/eslintrc@2.1.4': + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/eslintrc@3.0.2': + dependencies: + ajv: 6.12.6 + debug: 4.3.4(supports-color@8.1.1) + espree: 10.0.1 + globals: 14.0.0 + ignore: 5.3.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + optional: true + '@eslint/js@8.54.0': {} + '@eslint/js@8.57.0': {} + + '@eslint/js@9.2.0': + optional: true + '@fal-works/esbuild-plugin-global-externals@2.1.2': {} '@floating-ui/core@1.5.0': @@ -22830,17 +22428,17 @@ snapshots: '@floating-ui/core': 1.6.0 '@floating-ui/utils': 0.2.1 - '@floating-ui/react-dom@2.0.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@floating-ui/react-dom@2.0.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@floating-ui/dom': 1.5.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@floating-ui/react-dom@2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@floating-ui/react-dom@2.0.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@floating-ui/dom': 1.6.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@floating-ui/utils@0.1.4': {} @@ -22896,7 +22494,7 @@ snapshots: '@formatjs/intl-localematcher': 0.5.2 tslib: 2.6.2 - '@formatjs/intl@2.9.9(typescript@5.2.2)': + '@formatjs/intl@2.9.9(typescript@5.4.5)': dependencies: '@formatjs/ecma402-abstract': 1.18.0 '@formatjs/fast-memoize': 2.2.0 @@ -22906,9 +22504,9 @@ snapshots: intl-messageformat: 10.5.8 tslib: 2.6.2 optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 - '@formatjs/ts-transformer@3.13.9(ts-jest@29.1.1(@babel/core@7.23.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.5))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)))(typescript@5.2.2))': + '@formatjs/ts-transformer@3.13.9(ts-jest@29.1.1(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)))(typescript@5.4.5))': dependencies: '@formatjs/icu-messageformat-parser': 2.7.3 '@types/json-stable-stringify': 1.0.36 @@ -22916,9 +22514,9 @@ snapshots: chalk: 4.1.2 json-stable-stringify: 1.1.0 tslib: 2.6.2 - typescript: 5.2.2 + typescript: 5.4.5 optionalDependencies: - ts-jest: 29.1.1(@babel/core@7.23.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.5))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)))(typescript@5.2.2) + ts-jest: 29.1.1(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)))(typescript@5.4.5) '@graphql-codegen/add@3.2.3(graphql@16.8.1)': dependencies: @@ -22932,7 +22530,7 @@ snapshots: graphql: 16.8.1 tslib: 2.5.3 - '@graphql-codegen/cli@5.0.0(@types/node@18.18.14)(encoding@0.1.13)(enquirer@2.3.6)(graphql@16.8.1)(typescript@5.2.2)': + '@graphql-codegen/cli@5.0.0(@types/node@18.19.32)(encoding@0.1.13)(enquirer@2.4.1)(graphql@16.8.1)(typescript@5.4.5)': dependencies: '@babel/generator': 7.22.15 '@babel/template': 7.22.15 @@ -22942,25 +22540,25 @@ snapshots: '@graphql-tools/apollo-engine-loader': 8.0.0(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/code-file-loader': 8.0.2(graphql@16.8.1) '@graphql-tools/git-loader': 8.0.2(graphql@16.8.1) - '@graphql-tools/github-loader': 8.0.0(@types/node@18.18.14)(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/github-loader': 8.0.0(@types/node@18.19.32)(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/load': 8.0.0(graphql@16.8.1) - '@graphql-tools/prisma-loader': 8.0.1(@types/node@18.18.14)(encoding@0.1.13)(graphql@16.8.1) - '@graphql-tools/url-loader': 8.0.0(@types/node@18.18.14)(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/prisma-loader': 8.0.1(@types/node@18.19.32)(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/url-loader': 8.0.0(@types/node@18.19.32)(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/utils': 10.0.6(graphql@16.8.1) '@whatwg-node/fetch': 0.8.8 chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.2.2) + cosmiconfig: 8.3.6(typescript@5.4.5) debounce: 1.2.1 detect-indent: 6.1.0 graphql: 16.8.1 - graphql-config: 5.0.2(@types/node@18.18.14)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.2.2) + graphql-config: 5.0.2(@types/node@18.19.32)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5) inquirer: 8.2.6 is-glob: 4.0.3 jiti: 1.20.0 json-to-pretty-yaml: 1.2.2 - listr2: 4.0.5(enquirer@2.3.6) + listr2: 4.0.5(enquirer@2.4.1) log-symbols: 4.1.0 micromatch: 4.0.5 shell-quote: 1.8.1 @@ -23079,13 +22677,13 @@ snapshots: - encoding - supports-color - '@graphql-codegen/typescript-graphql-request@5.0.0(encoding@0.1.13)(graphql-request@6.1.0(encoding@0.1.13)(graphql@16.8.1))(graphql-tag@2.12.6(graphql@16.8.1))(graphql@16.8.1)': + '@graphql-codegen/typescript-graphql-request@5.0.0(encoding@0.1.13)(graphql-request@7.0.0(graphql@16.8.1))(graphql-tag@2.12.6(graphql@16.8.1))(graphql@16.8.1)': dependencies: '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.8.1) '@graphql-codegen/visitor-plugin-common': 2.13.1(encoding@0.1.13)(graphql@16.8.1) auto-bind: 4.0.0 graphql: 16.8.1 - graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1) + graphql-request: 7.0.0(graphql@16.8.1) graphql-tag: 2.12.6(graphql@16.8.1) tslib: 2.4.1 transitivePeerDependencies: @@ -23193,7 +22791,7 @@ snapshots: dependencies: graphql: 16.8.1 lodash.sortby: 4.7.0 - tslib: 2.5.3 + tslib: 2.6.2 '@graphql-tools/executor-graphql-ws@1.1.0(graphql@16.8.1)': dependencies: @@ -23208,14 +22806,14 @@ snapshots: - bufferutil - utf-8-validate - '@graphql-tools/executor-http@1.0.2(@types/node@18.18.14)(graphql@16.8.1)': + '@graphql-tools/executor-http@1.0.2(@types/node@18.19.32)(graphql@16.8.1)': dependencies: '@graphql-tools/utils': 10.0.6(graphql@16.8.1) '@repeaterjs/repeater': 3.0.4 '@whatwg-node/fetch': 0.9.13 extract-files: 11.0.0 graphql: 16.8.1 - meros: 1.3.0(@types/node@18.18.14) + meros: 1.3.0(@types/node@18.19.32) tslib: 2.6.2 value-or-promise: 1.0.12 transitivePeerDependencies: @@ -23254,10 +22852,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@graphql-tools/github-loader@8.0.0(@types/node@18.18.14)(encoding@0.1.13)(graphql@16.8.1)': + '@graphql-tools/github-loader@8.0.0(@types/node@18.19.32)(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) - '@graphql-tools/executor-http': 1.0.2(@types/node@18.18.14)(graphql@16.8.1) + '@graphql-tools/executor-http': 1.0.2(@types/node@18.19.32)(graphql@16.8.1) '@graphql-tools/graphql-tag-pluck': 8.0.2(graphql@16.8.1) '@graphql-tools/utils': 10.0.6(graphql@16.8.1) '@whatwg-node/fetch': 0.9.13 @@ -23323,16 +22921,16 @@ snapshots: '@graphql-tools/optimize@1.4.0(graphql@16.8.1)': dependencies: graphql: 16.8.1 - tslib: 2.4.1 + tslib: 2.6.2 '@graphql-tools/optimize@2.0.0(graphql@16.8.1)': dependencies: graphql: 16.8.1 - tslib: 2.5.3 + tslib: 2.6.2 - '@graphql-tools/prisma-loader@8.0.1(@types/node@18.18.14)(encoding@0.1.13)(graphql@16.8.1)': + '@graphql-tools/prisma-loader@8.0.1(@types/node@18.19.32)(encoding@0.1.13)(graphql@16.8.1)': dependencies: - '@graphql-tools/url-loader': 8.0.0(@types/node@18.18.14)(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/url-loader': 8.0.0(@types/node@18.19.32)(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/utils': 10.0.6(graphql@16.8.1) '@types/js-yaml': 4.0.6 '@types/json-stable-stringify': 1.0.34 @@ -23363,7 +22961,7 @@ snapshots: '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/utils': 9.2.1(graphql@16.8.1) graphql: 16.8.1 - tslib: 2.4.1 + tslib: 2.6.2 transitivePeerDependencies: - encoding - supports-color @@ -23373,7 +22971,7 @@ snapshots: '@ardatan/relay-compiler': 12.0.0(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/utils': 10.0.6(graphql@16.8.1) graphql: 16.8.1 - tslib: 2.5.3 + tslib: 2.6.2 transitivePeerDependencies: - encoding - supports-color @@ -23386,12 +22984,12 @@ snapshots: tslib: 2.6.2 value-or-promise: 1.0.12 - '@graphql-tools/url-loader@8.0.0(@types/node@18.18.14)(encoding@0.1.13)(graphql@16.8.1)': + '@graphql-tools/url-loader@8.0.0(@types/node@18.19.32)(encoding@0.1.13)(graphql@16.8.1)': dependencies: '@ardatan/sync-fetch': 0.0.1(encoding@0.1.13) '@graphql-tools/delegate': 10.0.3(graphql@16.8.1) '@graphql-tools/executor-graphql-ws': 1.1.0(graphql@16.8.1) - '@graphql-tools/executor-http': 1.0.2(@types/node@18.18.14)(graphql@16.8.1) + '@graphql-tools/executor-http': 1.0.2(@types/node@18.19.32)(graphql@16.8.1) '@graphql-tools/executor-legacy-ws': 1.0.3(graphql@16.8.1) '@graphql-tools/utils': 10.0.6(graphql@16.8.1) '@graphql-tools/wrap': 10.0.1(graphql@16.8.1) @@ -23421,18 +23019,18 @@ snapshots: '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) dset: 3.1.2 graphql: 16.8.1 - tslib: 2.5.3 + tslib: 2.6.2 '@graphql-tools/utils@8.13.1(graphql@16.8.1)': dependencies: graphql: 16.8.1 - tslib: 2.4.1 + tslib: 2.6.2 '@graphql-tools/utils@9.2.1(graphql@16.8.1)': dependencies: '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) graphql: 16.8.1 - tslib: 2.4.1 + tslib: 2.6.2 '@graphql-tools/wrap@10.0.1(graphql@16.8.1)': dependencies: @@ -23450,7 +23048,7 @@ snapshots: '@grpc/grpc-js@1.9.3': dependencies: '@grpc/proto-loader': 0.7.10 - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@grpc/proto-loader@0.7.10': dependencies: @@ -23475,18 +23073,40 @@ snapshots: transitivePeerDependencies: - supports-color + '@humanwhocodes/config-array@0.11.14': + dependencies: + '@humanwhocodes/object-schema': 2.0.3 + debug: 4.3.4(supports-color@8.1.1) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@humanwhocodes/config-array@0.13.0': + dependencies: + '@humanwhocodes/object-schema': 2.0.3 + debug: 4.3.4(supports-color@8.1.1) + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + optional: true + '@humanwhocodes/module-importer@1.0.1': {} '@humanwhocodes/object-schema@2.0.1': {} + '@humanwhocodes/object-schema@2.0.3': {} + + '@humanwhocodes/retry@0.2.4': + optional: true + '@iconify-icons/ion@1.2.10': dependencies: '@iconify/types': 2.0.0 - '@iconify/react@4.1.1(react@18.2.0)': + '@iconify/react@4.1.1(react@18.3.1)': dependencies: '@iconify/types': 2.0.0 - react: 18.2.0 + react: 18.3.1 '@iconify/types@2.0.0': {} @@ -23550,27 +23170,27 @@ snapshots: '@jest/console@29.7.0': dependencies: '@jest/types': 29.6.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@29.7.0(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))': + '@jest/core@29.7.0(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))': dependencies: '@jest/console': 29.7.0 '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.8.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + jest-config: 29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -23595,7 +23215,7 @@ snapshots: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 jest-mock: 29.7.0 '@jest/expect-utils@29.7.0': @@ -23613,7 +23233,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 18.18.14 + '@types/node': 18.19.32 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -23634,8 +23254,8 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.20 - '@types/node': 18.18.14 + '@jridgewell/trace-mapping': 0.3.25 + '@types/node': 18.19.32 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -23666,7 +23286,7 @@ snapshots: '@jest/source-map@29.6.3': dependencies: - '@jridgewell/trace-mapping': 0.3.20 + '@jridgewell/trace-mapping': 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 @@ -23729,7 +23349,7 @@ snapshots: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/yargs': 17.0.24 chalk: 4.1.2 @@ -23738,19 +23358,19 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/yargs': 17.0.24 chalk: 4.1.2 - '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.2.2)(vite@4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4))': + '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0))': dependencies: glob: 7.2.3 glob-promise: 4.2.2(glob@7.2.3) magic-string: 0.27.0 - react-docgen-typescript: 2.2.2(typescript@5.2.2) - vite: 4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4) + react-docgen-typescript: 2.2.2(typescript@5.4.5) + vite: 5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 '@jridgewell/gen-mapping@0.3.3': dependencies: @@ -23772,11 +23392,6 @@ snapshots: '@jridgewell/set-array@1.2.1': {} - '@jridgewell/source-map@0.3.5': - dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 - '@jridgewell/source-map@0.3.6': dependencies: '@jridgewell/gen-mapping': 0.3.5 @@ -23846,12 +23461,36 @@ snapshots: transitivePeerDependencies: - supports-color - '@mdx-js/react@3.0.1(@types/react@18.2.79)(react@18.2.0)': + '@mdx-js/react@3.0.1(@types/react@18.3.1)(react@18.2.0)': dependencies: '@types/mdx': 2.0.13 - '@types/react': 18.2.79 + '@types/react': 18.3.1 react: 18.2.0 + '@mdx-js/react@3.0.1(@types/react@18.3.1)(react@18.3.1)': + dependencies: + '@types/mdx': 2.0.13 + '@types/react': 18.3.1 + react: 18.3.1 + + '@molt/command@0.9.0': + dependencies: + '@molt/types': 0.2.0 + alge: 0.8.1 + chalk: 5.3.0 + lodash.camelcase: 4.3.0 + lodash.snakecase: 4.1.1 + readline-sync: 1.4.10 + string-length: 6.0.0 + strip-ansi: 7.1.0 + ts-toolbelt: 9.6.0 + type-fest: 4.18.2 + zod: 3.23.8 + + '@molt/types@0.2.0': + dependencies: + ts-toolbelt: 9.6.0 + '@mswjs/cookies@0.2.2': dependencies: '@types/set-cookie-parser': 2.4.3 @@ -23892,15 +23531,15 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 - '@nrwl/devkit@17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))': + '@nrwl/devkit@19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))': dependencies: - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) transitivePeerDependencies: - nx - '@nrwl/eslint-plugin-nx@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-config-prettier@9.0.0(eslint@8.54.0))(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)': + '@nrwl/eslint-plugin-nx@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)': dependencies: - '@nx/eslint-plugin': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-config-prettier@9.0.0(eslint@8.54.0))(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) + '@nx/eslint-plugin': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -23916,9 +23555,9 @@ snapshots: - typescript - verdaccio - '@nrwl/jest@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2)': + '@nrwl/jest@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5)': dependencies: - '@nx/jest': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) + '@nx/jest': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -23934,9 +23573,9 @@ snapshots: - typescript - verdaccio - '@nrwl/js@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)': + '@nrwl/js@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)': dependencies: - '@nx/js': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) + '@nx/js': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -23949,9 +23588,9 @@ snapshots: - typescript - verdaccio - '@nrwl/node@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2)': + '@nrwl/node@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5)': dependencies: - '@nx/node': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) + '@nx/node': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -23960,7 +23599,7 @@ snapshots: - '@types/node' - babel-plugin-macros - debug - - eslint + - js-yaml - node-notifier - nx - supports-color @@ -23968,15 +23607,15 @@ snapshots: - typescript - verdaccio - '@nrwl/nx-cloud@16.5.2': + '@nrwl/nx-cloud@18.0.1': dependencies: - nx-cloud: 16.5.2 + nx-cloud: 18.0.1 transitivePeerDependencies: - debug - '@nrwl/nx-plugin@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2)': + '@nrwl/nx-plugin@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5)': dependencies: - '@nx/plugin': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) + '@nx/plugin': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -23985,7 +23624,7 @@ snapshots: - '@types/node' - babel-plugin-macros - debug - - eslint + - js-yaml - node-notifier - nx - supports-color @@ -23993,9 +23632,9 @@ snapshots: - typescript - verdaccio - '@nrwl/react@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)(webpack@5.89.0(esbuild@0.19.8))': + '@nrwl/react@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8))': dependencies: - '@nx/react': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)(webpack@5.89.0(esbuild@0.19.8)) + '@nx/react': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24003,25 +23642,25 @@ snapshots: - '@swc/wasm' - '@types/node' - debug - - eslint + - js-yaml - nx - supports-color - typescript - verdaccio - webpack - '@nrwl/tao@17.1.3': + '@nrwl/tao@19.0.1': dependencies: - nx: 17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa) + nx: 19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome) tslib: 2.6.2 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - '@nrwl/web@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)': + '@nrwl/web@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)': dependencies: - '@nx/web': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) + '@nx/web': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24034,12 +23673,13 @@ snapshots: - typescript - verdaccio - '@nrwl/webpack@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(esbuild@0.19.8)(html-webpack-plugin@5.6.0(webpack@5.89.0(esbuild@0.19.8)))(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)': + '@nrwl/webpack@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(esbuild@0.19.8)(html-webpack-plugin@5.6.0(webpack@5.91.0(esbuild@0.19.8)))(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)': dependencies: - '@nx/webpack': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(esbuild@0.19.8)(html-webpack-plugin@5.6.0(webpack@5.89.0(esbuild@0.19.8)))(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) + '@nx/webpack': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(esbuild@0.19.8)(html-webpack-plugin@5.6.0(webpack@5.91.0(esbuild@0.19.8)))(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' + - '@rspack/core' - '@swc-node/register' - '@swc/core' - '@swc/css' @@ -24064,40 +23704,42 @@ snapshots: - vue-template-compiler - webpack-cli - '@nrwl/workspace@17.1.3': + '@nrwl/workspace@19.0.1': dependencies: - '@nx/workspace': 17.1.3 + '@nx/workspace': 19.0.1 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug - '@nx/devkit@17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))': + '@nx/devkit@19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))': dependencies: - '@nrwl/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - ejs: 3.1.9 + '@nrwl/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + ejs: 3.1.10 enquirer: 2.3.6 - ignore: 5.3.0 - nx: 17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa) - semver: 7.5.3 + ignore: 5.3.1 + minimatch: 9.0.3 + nx: 19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome) + semver: 7.6.0 tmp: 0.2.1 tslib: 2.6.2 + yargs-parser: 21.1.1 - '@nx/eslint-plugin@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-config-prettier@9.0.0(eslint@8.54.0))(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)': + '@nx/eslint-plugin@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)': dependencies: - '@nrwl/eslint-plugin-nx': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-config-prettier@9.0.0(eslint@8.54.0))(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/js': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - '@typescript-eslint/parser': 6.13.1(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/type-utils': 6.13.2(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.13.1(eslint@8.54.0)(typescript@5.2.2) + '@nrwl/eslint-plugin-nx': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-config-prettier@9.0.0(eslint@8.57.0))(eslint@8.57.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/js': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) + '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/type-utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5) chalk: 4.1.2 confusing-browser-globals: 1.0.11 jsonc-eslint-parser: 2.4.0 - semver: 7.5.3 + semver: 7.6.0 tslib: 2.6.2 optionalDependencies: - eslint-config-prettier: 9.0.0(eslint@8.54.0) + eslint-config-prettier: 9.0.0(eslint@8.57.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24111,15 +23753,16 @@ snapshots: - typescript - verdaccio - '@nx/eslint@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))': + '@nx/eslint@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))': dependencies: - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/js': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - '@nx/linter': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/js': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) + '@nx/linter': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + eslint: 8.57.0 tslib: 2.6.2 - typescript: 5.2.2 + typescript: 5.4.5 optionalDependencies: - eslint: 8.54.0 + js-yaml: 4.1.0 transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24131,21 +23774,23 @@ snapshots: - supports-color - verdaccio - '@nx/jest@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2)': + '@nx/jest@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5)': dependencies: '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 - '@nrwl/jest': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/js': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) + '@nrwl/jest': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/js': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.5) chalk: 4.1.2 identity-obj-proxy: 3.0.0 - jest-config: 29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + jest-config: 29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) jest-resolve: 29.7.0 jest-util: 29.7.0 + minimatch: 9.0.3 resolve.exports: 1.1.0 tslib: 2.6.2 + yargs-parser: 21.1.1 transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24161,36 +23806,35 @@ snapshots: - typescript - verdaccio - '@nx/js@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)': + '@nx/js@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)': dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-proposal-decorators': 7.22.15(@babel/core@7.23.5) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.5) - '@babel/plugin-transform-runtime': 7.22.15(@babel/core@7.23.5) - '@babel/preset-env': 7.23.5(@babel/core@7.23.5) - '@babel/preset-typescript': 7.23.3(@babel/core@7.23.5) - '@babel/runtime': 7.23.5 - '@nrwl/js': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/workspace': 17.1.3 - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) - babel-plugin-const-enum: 1.2.0(@babel/core@7.23.5) + '@babel/core': 7.24.4 + '@babel/plugin-proposal-decorators': 7.22.15(@babel/core@7.24.4) + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.4) + '@babel/preset-env': 7.24.4(@babel/core@7.24.4) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.4) + '@babel/runtime': 7.24.4 + '@nrwl/js': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/workspace': 19.0.1 + babel-plugin-const-enum: 1.2.0(@babel/core@7.24.4) babel-plugin-macros: 2.8.0 - babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.23.5)(@babel/traverse@7.24.1) + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.24.4)(@babel/traverse@7.24.5) chalk: 4.1.2 columnify: 1.6.0 detect-port: 1.5.1 fast-glob: 3.2.7 fs-extra: 11.2.0 - ignore: 5.3.0 + ignore: 5.3.1 js-tokens: 4.0.0 - minimatch: 3.0.5 + minimatch: 9.0.3 npm-package-arg: 11.0.1 npm-run-path: 4.0.1 ora: 5.3.0 - semver: 7.5.3 + semver: 7.6.0 source-map-support: 0.5.19 - ts-node: 10.9.1(@types/node@18.18.14)(typescript@5.2.2) + ts-node: 10.9.1(@types/node@18.19.32)(typescript@5.4.5) tsconfig-paths: 4.2.0 tslib: 2.6.2 transitivePeerDependencies: @@ -24204,9 +23848,9 @@ snapshots: - supports-color - typescript - '@nx/linter@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))': + '@nx/linter@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))': dependencies: - '@nx/eslint': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) + '@nx/eslint': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -24214,18 +23858,18 @@ snapshots: - '@swc/wasm' - '@types/node' - debug - - eslint + - js-yaml - nx - supports-color - verdaccio - '@nx/node@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2)': + '@nx/node@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5)': dependencies: - '@nrwl/node': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/eslint': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/jest': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) - '@nx/js': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) + '@nrwl/node': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/eslint': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/jest': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) + '@nx/js': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) tslib: 2.6.2 transitivePeerDependencies: - '@babel/traverse' @@ -24235,7 +23879,7 @@ snapshots: - '@types/node' - babel-plugin-macros - debug - - eslint + - js-yaml - node-notifier - nx - supports-color @@ -24243,44 +23887,43 @@ snapshots: - typescript - verdaccio - '@nx/nx-darwin-arm64@17.1.3': + '@nx/nx-darwin-arm64@19.0.1': optional: true - '@nx/nx-darwin-x64@17.1.3': + '@nx/nx-darwin-x64@19.0.1': optional: true - '@nx/nx-freebsd-x64@17.1.3': + '@nx/nx-freebsd-x64@19.0.1': optional: true - '@nx/nx-linux-arm-gnueabihf@17.1.3': + '@nx/nx-linux-arm-gnueabihf@19.0.1': optional: true - '@nx/nx-linux-arm64-gnu@17.1.3': + '@nx/nx-linux-arm64-gnu@19.0.1': optional: true - '@nx/nx-linux-arm64-musl@17.1.3': + '@nx/nx-linux-arm64-musl@19.0.1': optional: true - '@nx/nx-linux-x64-gnu@17.1.3': + '@nx/nx-linux-x64-gnu@19.0.1': optional: true - '@nx/nx-linux-x64-musl@17.1.3': + '@nx/nx-linux-x64-musl@19.0.1': optional: true - '@nx/nx-win32-arm64-msvc@17.1.3': + '@nx/nx-win32-arm64-msvc@19.0.1': optional: true - '@nx/nx-win32-x64-msvc@17.1.3': + '@nx/nx-win32-x64-msvc@19.0.1': optional: true - '@nx/plugin@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2)': + '@nx/plugin@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5)': dependencies: - '@nrwl/nx-plugin': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/eslint': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/jest': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))(typescript@5.2.2) - '@nx/js': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) + '@nrwl/nx-plugin': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/eslint': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/jest': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))(typescript@5.4.5) + '@nx/js': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) fs-extra: 11.2.0 tslib: 2.6.2 transitivePeerDependencies: @@ -24291,7 +23934,7 @@ snapshots: - '@types/node' - babel-plugin-macros - debug - - eslint + - js-yaml - node-notifier - nx - supports-color @@ -24299,18 +23942,18 @@ snapshots: - typescript - verdaccio - '@nx/react@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)(webpack@5.89.0(esbuild@0.19.8))': + '@nx/react@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8))': dependencies: - '@nrwl/react': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)(webpack@5.89.0(esbuild@0.19.8)) - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/eslint': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(eslint@8.54.0)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/js': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - '@nx/web': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) - '@svgr/webpack': 8.1.0(typescript@5.2.2) + '@nrwl/react': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)) + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/eslint': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(js-yaml@4.1.0)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/js': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) + '@nx/web': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.4.5) + '@svgr/webpack': 8.1.0(typescript@5.4.5) chalk: 4.1.2 - file-loader: 6.2.0(webpack@5.89.0(esbuild@0.19.8)) - minimatch: 3.0.5 + file-loader: 6.2.0(webpack@5.91.0(esbuild@0.19.8)) + minimatch: 9.0.3 tslib: 2.6.2 transitivePeerDependencies: - '@babel/traverse' @@ -24319,18 +23962,18 @@ snapshots: - '@swc/wasm' - '@types/node' - debug - - eslint + - js-yaml - nx - supports-color - typescript - verdaccio - webpack - '@nx/web@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)': + '@nx/web@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)': dependencies: - '@nrwl/web': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/js': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) + '@nrwl/web': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/js': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) chalk: 4.1.2 detect-port: 1.5.1 http-server: 14.1.1 @@ -24347,47 +23990,49 @@ snapshots: - typescript - verdaccio - '@nx/webpack@17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(esbuild@0.19.8)(html-webpack-plugin@5.6.0(webpack@5.89.0(esbuild@0.19.8)))(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2)': + '@nx/webpack@19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(esbuild@0.19.8)(html-webpack-plugin@5.6.0(webpack@5.91.0(esbuild@0.19.8)))(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5)': dependencies: - '@babel/core': 7.23.5 - '@nrwl/webpack': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(esbuild@0.19.8)(html-webpack-plugin@5.6.0(webpack@5.89.0(esbuild@0.19.8)))(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) - '@nx/js': 17.1.3(@babel/traverse@7.24.1)(@types/node@18.18.14)(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa))(typescript@5.2.2) - autoprefixer: 10.4.16(postcss@8.4.32) - babel-loader: 9.1.3(@babel/core@7.23.5)(webpack@5.89.0(esbuild@0.19.8)) - browserslist: 4.22.2 + '@babel/core': 7.24.4 + '@nrwl/webpack': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(esbuild@0.19.8)(html-webpack-plugin@5.6.0(webpack@5.91.0(esbuild@0.19.8)))(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) + '@nx/js': 19.0.1(@babel/traverse@7.24.5)(@types/node@18.19.32)(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome))(typescript@5.4.5) + ajv: 8.12.0 + autoprefixer: 10.4.19(postcss@8.4.38) + babel-loader: 9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.19.8)) + browserslist: 4.23.0 chalk: 4.1.2 - copy-webpack-plugin: 10.2.4(webpack@5.89.0(esbuild@0.19.8)) - css-loader: 6.8.1(webpack@5.89.0(esbuild@0.19.8)) - css-minimizer-webpack-plugin: 5.0.1(esbuild@0.19.8)(webpack@5.89.0(esbuild@0.19.8)) - fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.2.2)(webpack@5.89.0(esbuild@0.19.8)) + copy-webpack-plugin: 10.2.4(webpack@5.91.0(esbuild@0.19.8)) + css-loader: 6.11.0(webpack@5.91.0(esbuild@0.19.8)) + css-minimizer-webpack-plugin: 5.0.1(esbuild@0.19.8)(webpack@5.91.0(esbuild@0.19.8)) + fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)) less: 4.1.3 - less-loader: 11.1.0(less@4.1.3)(webpack@5.89.0(esbuild@0.19.8)) - license-webpack-plugin: 4.0.2(webpack@5.89.0(esbuild@0.19.8)) + less-loader: 11.1.0(less@4.1.3)(webpack@5.91.0(esbuild@0.19.8)) + license-webpack-plugin: 4.0.2(webpack@5.91.0(esbuild@0.19.8)) loader-utils: 2.0.4 - mini-css-extract-plugin: 2.4.7(webpack@5.89.0(esbuild@0.19.8)) + mini-css-extract-plugin: 2.4.7(webpack@5.91.0(esbuild@0.19.8)) parse5: 4.0.0 - postcss: 8.4.32 - postcss-import: 14.1.0(postcss@8.4.32) - postcss-loader: 6.2.1(postcss@8.4.32)(webpack@5.89.0(esbuild@0.19.8)) + postcss: 8.4.38 + postcss-import: 14.1.0(postcss@8.4.38) + postcss-loader: 6.2.1(postcss@8.4.38)(webpack@5.91.0(esbuild@0.19.8)) rxjs: 7.8.1 sass: 1.67.0 - sass-loader: 12.6.0(sass@1.67.0)(webpack@5.89.0(esbuild@0.19.8)) - source-map-loader: 3.0.2(webpack@5.89.0(esbuild@0.19.8)) - style-loader: 3.3.3(webpack@5.89.0(esbuild@0.19.8)) + sass-loader: 12.6.0(sass@1.67.0)(webpack@5.91.0(esbuild@0.19.8)) + source-map-loader: 3.0.2(webpack@5.91.0(esbuild@0.19.8)) + style-loader: 3.3.4(webpack@5.91.0(esbuild@0.19.8)) stylus: 0.59.0 - stylus-loader: 7.1.3(stylus@0.59.0)(webpack@5.89.0(esbuild@0.19.8)) - terser-webpack-plugin: 5.3.9(esbuild@0.19.8)(webpack@5.89.0(esbuild@0.19.8)) - ts-loader: 9.4.4(typescript@5.2.2)(webpack@5.89.0(esbuild@0.19.8)) + stylus-loader: 7.1.3(stylus@0.59.0)(webpack@5.91.0(esbuild@0.19.8)) + terser-webpack-plugin: 5.3.10(esbuild@0.19.8)(webpack@5.91.0(esbuild@0.19.8)) + ts-loader: 9.4.4(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)) tsconfig-paths-webpack-plugin: 4.0.0 tslib: 2.6.2 - webpack: 5.89.0(esbuild@0.19.8) - webpack-dev-server: 4.15.1(webpack@5.89.0(esbuild@0.19.8)) + webpack: 5.91.0(esbuild@0.19.8) + webpack-dev-server: 4.15.2(webpack@5.91.0(esbuild@0.19.8)) webpack-node-externals: 3.0.0 - webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.89.0(esbuild@0.19.8)))(webpack@5.89.0(esbuild@0.19.8)) + webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.91.0(esbuild@0.19.8)))(webpack@5.91.0(esbuild@0.19.8)) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' + - '@rspack/core' - '@swc-node/register' - '@swc/core' - '@swc/css' @@ -24412,13 +24057,13 @@ snapshots: - vue-template-compiler - webpack-cli - '@nx/workspace@17.1.3': + '@nx/workspace@19.0.1': dependencies: - '@nrwl/workspace': 17.1.3 - '@nx/devkit': 17.1.3(nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa)) + '@nrwl/workspace': 19.0.1 + '@nx/devkit': 19.0.1(nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome)) chalk: 4.1.2 enquirer: 2.3.6 - nx: 17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa) + nx: 19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome) tslib: 2.6.2 yargs-parser: 21.1.1 transitivePeerDependencies: @@ -24595,7 +24240,7 @@ snapshots: '@types/shimmer': 1.0.2 import-in-the-middle: 1.4.2 require-in-the-middle: 7.2.0 - semver: 7.5.4 + semver: 7.6.2 shimmer: 1.2.1 transitivePeerDependencies: - supports-color @@ -24725,7 +24370,7 @@ snapshots: '@opentelemetry/propagator-b3': 1.17.0(@opentelemetry/api@1.7.0) '@opentelemetry/propagator-jaeger': 1.17.0(@opentelemetry/api@1.7.0) '@opentelemetry/sdk-trace-base': 1.17.0(@opentelemetry/api@1.7.0) - semver: 7.5.4 + semver: 7.6.2 '@opentelemetry/sdk-trace-node@1.18.1(@opentelemetry/api@1.7.0)': dependencies: @@ -24763,15 +24408,15 @@ snapshots: tslib: 2.6.2 webcrypto-core: 1.7.7 - '@phenomnomnominal/tsquery@5.0.1(typescript@5.2.2)': + '@phenomnomnominal/tsquery@5.0.1(typescript@5.4.5)': dependencies: esquery: 1.5.0 - typescript: 5.2.2 + typescript: 5.4.5 '@pkgjs/parseargs@0.11.0': optional: true - '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(type-fest@4.8.2)(webpack-dev-server@4.15.2(webpack@5.91.0(esbuild@0.19.8)))(webpack@5.91.0(esbuild@0.19.8))': + '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.2)(type-fest@4.18.2)(webpack-dev-server@4.15.2(webpack@5.91.0(esbuild@0.19.8)))(webpack@5.91.0(esbuild@0.19.8))': dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 @@ -24780,12 +24425,12 @@ snapshots: find-up: 5.0.0 html-entities: 2.4.0 loader-utils: 2.0.4 - react-refresh: 0.14.0 + react-refresh: 0.14.2 schema-utils: 3.3.0 source-map: 0.7.4 webpack: 5.91.0(esbuild@0.19.8) optionalDependencies: - type-fest: 4.8.2 + type-fest: 4.18.2 webpack-dev-server: 4.15.2(webpack@5.91.0(esbuild@0.19.8)) '@pnpm/config.env-replace@1.1.0': {} @@ -24827,522 +24472,522 @@ snapshots: '@radix-ui/number@1.0.1': dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 '@radix-ui/primitive@1.0.1': dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.24.5 - '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(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) + '@babel/runtime': 7.24.5 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.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) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-avatar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.22.15 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/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.1)(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.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.22.15 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/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.1)(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.1)(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.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 - - '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-collection@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/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.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - react: 18.2.0 + '@babel/runtime': 7.24.5 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-context@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-context@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - react: 18.2.0 + '@babel/runtime': 7.24.5 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dialog@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.22.15 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(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.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) aria-hidden: 1.2.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-direction@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-direction@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - react: 18.2.0 + '@babel/runtime': 7.24.5 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/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.1)(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.1)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/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.1)(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.1)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - react: 18.2.0 + '@babel/runtime': 7.24.5 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.4 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@babel/runtime': 7.24.5 + '@radix-ui/react-compose-refs': 1.0.1(@types/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.1)(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.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@babel/runtime': 7.24.5 + '@radix-ui/react-compose-refs': 1.0.1(@types/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.1)(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.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-id@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-id@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 + '@babel/runtime': 7.24.5 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-label@2.0.2(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-label@2.0.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.22.15 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(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) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.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) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-popover@1.0.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.22.15 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(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.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) aria-hidden: 1.2.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 - - '@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.24.4 - '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-popper@1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.24.5 + '@floating-ui/react-dom': 2.0.8(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.1)(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.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/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.1)(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.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) '@radix-ui/rect': 1.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 - - '@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.23.5 - '@floating-ui/react-dom': 2.0.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 + + '@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + dependencies: + '@babel/runtime': 7.24.5 + '@floating-ui/react-dom': 2.0.4(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.1)(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.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/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.1)(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.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) '@radix-ui/rect': 1.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-portal@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.4 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(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) + '@babel/runtime': 7.24.5 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.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) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(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) + '@babel/runtime': 7.24.5 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.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) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@babel/runtime': 7.24.5 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@babel/runtime': 7.24.5 + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-radio-group@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.22.15 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/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.1)(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.1)(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.1)(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.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/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.1)(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.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-select@1.2.2(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-select@1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(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.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) aria-hidden: 1.2.4 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-remove-scroll: 2.5.5(@types/react@18.3.1)(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-separator@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.22.15 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(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) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.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) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-slot@1.0.2(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-slot@1.0.2(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.22.15 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 + '@babel/runtime': 7.24.5 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-tabs@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.22.15 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-id': 1.0.1(@types/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.1)(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.1)(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.1)(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.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-toast@1.1.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.22.15 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(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) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(react@18.3.1) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(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.1)(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.1)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.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) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/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.1)(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.1)(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.1)(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.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(react@18.3.1) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.79)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(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) + '@radix-ui/react-context': 1.0.1(@types/react@18.3.1)(react@18.3.1) + '@radix-ui/react-direction': 1.0.1(@types/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.1)(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.1)(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.1)(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.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) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - react: 18.2.0 + '@babel/runtime': 7.24.5 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 + '@babel/runtime': 7.24.5 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 + '@babel/runtime': 7.24.5 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - react: 18.2.0 + '@babel/runtime': 7.24.5 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-previous@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - react: 18.2.0 + '@babel/runtime': 7.24.5 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-rect@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.24.5 '@radix-ui/rect': 1.0.1 - react: 18.2.0 + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-use-size@1.0.1(@types/react@18.2.79)(react@18.2.0)': + '@radix-ui/react-use-size@1.0.1(@types/react@18.3.1)(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.79)(react@18.2.0) - react: 18.2.0 + '@babel/runtime': 7.24.5 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.1)(react@18.3.1) + react: 18.3.1 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.23.5 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.9)(@types/react@18.2.79)(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) + '@babel/runtime': 7.24.5 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.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) optionalDependencies: - '@types/react': 18.2.79 - '@types/react-dom': 18.2.9 + '@types/react': 18.3.1 + '@types/react-dom': 18.3.0 '@radix-ui/rect@1.0.1': dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.24.5 '@remix-run/router@1.16.0': {} @@ -25350,13 +24995,13 @@ snapshots: '@repeaterjs/repeater@3.0.4': {} - '@rollup/plugin-inject@5.0.3(rollup@3.29.2)': + '@rollup/plugin-inject@5.0.3(rollup@4.17.2)': dependencies: - '@rollup/pluginutils': 5.0.4(rollup@3.29.2) + '@rollup/pluginutils': 5.0.4(rollup@4.17.2) estree-walker: 2.0.2 magic-string: 0.27.0 optionalDependencies: - rollup: 3.29.2 + rollup: 4.17.2 '@rollup/pluginutils@4.2.1': dependencies: @@ -25371,13 +25016,69 @@ snapshots: optionalDependencies: rollup: 3.29.2 - '@rollup/pluginutils@5.1.0(rollup@3.29.2)': + '@rollup/pluginutils@5.0.4(rollup@4.17.2)': + dependencies: + '@types/estree': 1.0.1 + estree-walker: 2.0.2 + picomatch: 2.3.1 + optionalDependencies: + rollup: 4.17.2 + + '@rollup/pluginutils@5.1.0(rollup@4.17.2)': dependencies: '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: - rollup: 3.29.2 + rollup: 4.17.2 + + '@rollup/rollup-android-arm-eabi@4.17.2': + optional: true + + '@rollup/rollup-android-arm64@4.17.2': + optional: true + + '@rollup/rollup-darwin-arm64@4.17.2': + optional: true + + '@rollup/rollup-darwin-x64@4.17.2': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.17.2': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.17.2': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.17.2': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.17.2': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.17.2': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.17.2': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.17.2': + optional: true + + '@rollup/rollup-linux-x64-musl@4.17.2': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.17.2': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.17.2': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.17.2': + optional: true '@samverschueren/stream-to-observable@0.3.1(rxjs@6.6.7)': dependencies: @@ -25406,13 +25107,13 @@ snapshots: '@sentry/types': 7.84.0 '@sentry/utils': 7.84.0 - '@sentry/react@7.84.0(react@18.2.0)': + '@sentry/react@7.84.0(react@18.3.1)': dependencies: '@sentry/browser': 7.84.0 '@sentry/types': 7.84.0 '@sentry/utils': 7.84.0 hoist-non-react-statics: 3.3.2 - react: 18.2.0 + react: 18.3.1 '@sentry/replay@7.84.0': dependencies: @@ -26174,6 +25875,15 @@ snapshots: '@smithy/types': 2.12.0 tslib: 2.6.2 + '@storybook/addon-actions@8.0.10': + dependencies: + '@storybook/core-events': 8.0.10 + '@storybook/global': 5.0.0 + '@types/uuid': 9.0.8 + dequal: 2.0.3 + polished: 4.3.1 + uuid: 9.0.1 + '@storybook/addon-actions@8.0.9': dependencies: '@storybook/core-events': 8.0.9 @@ -26189,9 +25899,9 @@ snapshots: memoizerific: 1.11.3 ts-dedent: 2.2.0 - '@storybook/addon-controls@8.0.9(@types/react@18.2.79)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/addon-controls@8.0.9(@types/react@18.3.1)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@storybook/blocks': 8.0.9(@types/react@18.2.79)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/blocks': 8.0.9(@types/react@18.3.1)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) lodash: 4.17.21 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -26204,22 +25914,22 @@ snapshots: '@storybook/addon-docs@8.0.9(encoding@0.1.13)': dependencies: '@babel/core': 7.24.4 - '@mdx-js/react': 3.0.1(@types/react@18.2.79)(react@18.2.0) - '@storybook/blocks': 8.0.9(@types/react@18.2.79)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mdx-js/react': 3.0.1(@types/react@18.3.1)(react@18.3.1) + '@storybook/blocks': 8.0.9(@types/react@18.3.1)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 8.0.9 - '@storybook/components': 8.0.9(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/components': 8.0.9(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/csf-plugin': 8.0.9 '@storybook/csf-tools': 8.0.9 '@storybook/global': 5.0.0 '@storybook/node-logger': 8.0.9 '@storybook/preview-api': 8.0.9 - '@storybook/react-dom-shim': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/react-dom-shim': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.0.9 - '@types/react': 18.2.79 + '@types/react': 18.3.1 fs-extra: 11.2.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + 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 @@ -26227,11 +25937,11 @@ snapshots: - encoding - supports-color - '@storybook/addon-essentials@8.0.9(@types/react@18.2.79)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/addon-essentials@8.0.9(@types/react@18.3.1)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/addon-actions': 8.0.9 '@storybook/addon-backgrounds': 8.0.9 - '@storybook/addon-controls': 8.0.9(@types/react@18.2.79)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addon-controls': 8.0.9(@types/react@18.3.1)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/addon-docs': 8.0.9(encoding@0.1.13) '@storybook/addon-highlight': 8.0.9 '@storybook/addon-measure': 8.0.9 @@ -26239,7 +25949,7 @@ snapshots: '@storybook/addon-toolbars': 8.0.9 '@storybook/addon-viewport': 8.0.9 '@storybook/core-common': 8.0.9(encoding@0.1.13) - '@storybook/manager-api': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/manager-api': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 8.0.9 '@storybook/preview-api': 8.0.9 ts-dedent: 2.2.0 @@ -26264,31 +25974,31 @@ snapshots: '@storybook/global': 5.0.0 ts-dedent: 2.2.0 - '@storybook/addon-styling@1.3.7(@types/react-dom@18.2.9)(@types/react@18.2.79)(encoding@0.1.13)(less@4.2.0)(postcss@8.4.31)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(sass@1.67.0)(typescript@5.2.2)(webpack@5.91.0(esbuild@0.20.2))': + '@storybook/addon-styling@1.3.7(@types/react-dom@18.3.0)(@types/react@18.3.1)(encoding@0.1.13)(less@4.2.0)(postcss@8.4.31)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.20.2))': dependencies: '@babel/template': 7.24.0 '@babel/types': 7.24.0 - '@storybook/api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/components': 7.6.18(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/api': 7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/components': 7.6.18(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-common': 7.6.18(encoding@0.1.13) '@storybook/core-events': 7.6.18 - '@storybook/manager-api': 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/manager-api': 7.6.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 7.6.18 '@storybook/preview-api': 7.6.18 - '@storybook/theming': 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 7.6.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.6.18 css-loader: 6.11.0(webpack@5.91.0(esbuild@0.20.2)) less-loader: 11.1.4(less@4.2.0)(webpack@5.91.0(esbuild@0.20.2)) - postcss-loader: 7.3.4(postcss@8.4.31)(typescript@5.2.2)(webpack@5.91.0(esbuild@0.20.2)) + postcss-loader: 7.3.4(postcss@8.4.31)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.20.2)) prettier: 2.8.8 resolve-url-loader: 5.0.0 - sass-loader: 13.3.3(sass@1.67.0)(webpack@5.91.0(esbuild@0.20.2)) + sass-loader: 13.3.3(sass@1.77.0)(webpack@5.91.0(esbuild@0.20.2)) style-loader: 3.3.4(webpack@5.91.0(esbuild@0.20.2)) optionalDependencies: less: 4.2.0 postcss: 8.4.31 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) webpack: 5.91.0(esbuild@0.20.2) transitivePeerDependencies: - '@rspack/core' @@ -26308,43 +26018,43 @@ snapshots: dependencies: memoizerific: 1.11.3 - '@storybook/api@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/api@7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/client-logger': 7.6.17 - '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/manager-api': 7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - react - react-dom - '@storybook/blocks@8.0.9(@types/react@18.2.79)(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/blocks@8.0.9(@types/react@18.3.1)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 8.0.9 '@storybook/client-logger': 8.0.9 - '@storybook/components': 8.0.9(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/components': 8.0.9(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 8.0.9 '@storybook/csf': 0.1.4 '@storybook/docs-tools': 8.0.9(encoding@0.1.13) '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/manager-api': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/manager-api': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/preview-api': 8.0.9 - '@storybook/theming': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.0.9 '@types/lodash': 4.17.0 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 - markdown-to-jsx: 7.3.2(react@18.2.0) + markdown-to-jsx: 7.3.2(react@18.3.1) memoizerific: 1.11.3 polished: 4.3.1 - react-colorful: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react-colorful: 5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1) telejson: 7.2.0 tocbot: 4.27.4 ts-dedent: 2.2.0 util-deprecate: 1.0.2 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: - '@types/react' - encoding @@ -26370,7 +26080,7 @@ snapshots: - encoding - supports-color - '@storybook/builder-vite@8.0.9(encoding@0.1.13)(typescript@5.2.2)(vite@4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4))': + '@storybook/builder-vite@8.0.9(encoding@0.1.13)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0))': dependencies: '@storybook/channels': 8.0.9 '@storybook/client-logger': 8.0.9 @@ -26389,9 +26099,9 @@ snapshots: fs-extra: 11.2.0 magic-string: 0.30.10 ts-dedent: 2.2.0 - vite: 4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4) + vite: 5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - encoding - supports-color @@ -26422,7 +26132,7 @@ snapshots: telejson: 7.2.0 tiny-invariant: 1.3.3 - '@storybook/cli@8.0.9(@babel/preset-env@7.24.4(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/cli@8.0.9(@babel/preset-env@7.24.4(@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.0 @@ -26430,7 +26140,7 @@ snapshots: '@storybook/codemod': 8.0.9 '@storybook/core-common': 8.0.9(encoding@0.1.13) '@storybook/core-events': 8.0.9 - '@storybook/core-server': 8.0.9(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/core-server': 8.0.9(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/csf-tools': 8.0.9 '@storybook/node-logger': 8.0.9 '@storybook/telemetry': 8.0.9(encoding@0.1.13) @@ -26506,36 +26216,36 @@ snapshots: transitivePeerDependencies: - supports-color - '@storybook/components@7.6.18(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/components@7.6.18(@types/react-dom@18.3.0)(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.9)(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-select': 1.2.2(@types/react-dom@18.3.0)(@types/react@18.3.1)(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.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/client-logger': 7.6.18 '@storybook/csf': 0.1.4 '@storybook/global': 5.0.0 - '@storybook/theming': 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 7.6.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.6.18 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + 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.0.9(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/components@8.0.9(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.79)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.3.1)(react@18.3.1) '@storybook/client-logger': 8.0.9 '@storybook/csf': 0.1.4 '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.0.9 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) util-deprecate: 1.0.2 transitivePeerDependencies: - '@types/react' @@ -26546,7 +26256,7 @@ snapshots: '@storybook/node-logger': 7.6.18 '@storybook/types': 7.6.18 '@types/find-cache-dir': 3.2.1 - '@types/node': 18.19.31 + '@types/node': 18.19.32 '@types/node-fetch': 2.6.11 '@types/pretty-hrtime': 1.0.3 chalk: 4.1.2 @@ -26594,7 +26304,7 @@ snapshots: pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 resolve-from: 5.0.0 - semver: 7.6.0 + semver: 7.6.2 tempy: 1.0.1 tiny-invariant: 1.3.3 ts-dedent: 2.2.0 @@ -26611,11 +26321,15 @@ snapshots: dependencies: ts-dedent: 2.2.0 + '@storybook/core-events@8.0.10': + dependencies: + ts-dedent: 2.2.0 + '@storybook/core-events@8.0.9': dependencies: ts-dedent: 2.2.0 - '@storybook/core-server@8.0.9(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/core-server@8.0.9(encoding@0.1.13)(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 @@ -26629,13 +26343,13 @@ snapshots: '@storybook/docs-mdx': 3.0.0 '@storybook/global': 5.0.0 '@storybook/manager': 8.0.9 - '@storybook/manager-api': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/manager-api': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/node-logger': 8.0.9 '@storybook/preview-api': 8.0.9 '@storybook/telemetry': 8.0.9(encoding@0.1.13) '@storybook/types': 8.0.9 '@types/detect-port': 1.3.5 - '@types/node': 18.19.31 + '@types/node': 18.19.32 '@types/pretty-hrtime': 1.0.3 '@types/semver': 7.5.8 better-opn: 3.0.2 @@ -26711,12 +26425,12 @@ snapshots: '@storybook/global@5.0.0': {} - '@storybook/icons@1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/icons@1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/manager-api@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/manager-api@7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 7.6.17 '@storybook/client-logger': 7.6.17 @@ -26724,7 +26438,7 @@ snapshots: '@storybook/csf': 0.1.4 '@storybook/global': 5.0.0 '@storybook/router': 7.6.17 - '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.6.17 dequal: 2.0.3 lodash: 4.17.21 @@ -26736,7 +26450,7 @@ snapshots: - react - react-dom - '@storybook/manager-api@7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/manager-api@7.6.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 7.6.18 '@storybook/client-logger': 7.6.18 @@ -26744,7 +26458,7 @@ snapshots: '@storybook/csf': 0.1.4 '@storybook/global': 5.0.0 '@storybook/router': 7.6.18 - '@storybook/theming': 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 7.6.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 7.6.18 dequal: 2.0.3 lodash: 4.17.21 @@ -26756,16 +26470,16 @@ snapshots: - react - react-dom - '@storybook/manager-api@8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/manager-api@8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@storybook/channels': 8.0.9 '@storybook/client-logger': 8.0.9 '@storybook/core-events': 8.0.9 '@storybook/csf': 0.1.4 '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/router': 8.0.9 - '@storybook/theming': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.0.9 dequal: 2.0.3 lodash: 4.17.21 @@ -26836,26 +26550,26 @@ snapshots: '@storybook/preview@8.0.9': {} - '@storybook/react-dom-shim@8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/react-dom-shim@8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/react-vite@8.0.9(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@3.29.2)(typescript@5.2.2)(vite@4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4))': + '@storybook/react-vite@8.0.9(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.17.2)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0))': dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.2.2)(vite@4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)) - '@rollup/pluginutils': 5.1.0(rollup@3.29.2) - '@storybook/builder-vite': 8.0.9(encoding@0.1.13)(typescript@5.2.2)(vite@4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)) + '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0)) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) + '@storybook/builder-vite': 8.0.9(encoding@0.1.13)(typescript@5.4.5)(vite@5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0)) '@storybook/node-logger': 8.0.9 - '@storybook/react': 8.0.9(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) + '@storybook/react': 8.0.9(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5) find-up: 5.0.0 magic-string: 0.30.10 - react: 18.2.0 + react: 18.3.1 react-docgen: 7.0.3 - react-dom: 18.2.0(react@18.2.0) + react-dom: 18.3.1(react@18.3.1) resolve: 1.22.8 tsconfig-paths: 4.2.0 - vite: 4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4) + vite: 5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0) transitivePeerDependencies: - '@preact/preset-vite' - encoding @@ -26864,17 +26578,17 @@ snapshots: - typescript - vite-plugin-glimmerx - '@storybook/react@8.0.9(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2)': + '@storybook/react@8.0.9(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)': dependencies: '@storybook/client-logger': 8.0.9 '@storybook/docs-tools': 8.0.9(encoding@0.1.13) '@storybook/global': 5.0.0 '@storybook/preview-api': 8.0.9 - '@storybook/react-dom-shim': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/react-dom-shim': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/types': 8.0.9 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 - '@types/node': 18.18.14 + '@types/node': 18.19.32 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 @@ -26882,15 +26596,15 @@ snapshots: html-tags: 3.3.1 lodash: 4.17.21 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-element-to-jsx-string: 15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + 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.0 ts-dedent: 2.2.0 type-fest: 2.19.0 util-deprecate: 1.0.2 optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - encoding - supports-color @@ -26927,33 +26641,33 @@ snapshots: - encoding - supports-color - '@storybook/theming@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/theming@7.6.17(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@storybook/client-logger': 7.6.17 '@storybook/global': 5.0.0 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/theming@7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/theming@7.6.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@storybook/client-logger': 7.6.18 '@storybook/global': 5.0.0 memoizerific: 1.11.3 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@storybook/theming@8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@storybook/theming@8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) '@storybook/client-logger': 8.0.9 '@storybook/global': 5.0.0 memoizerific: 1.11.3 optionalDependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@storybook/types@7.6.17': dependencies: @@ -26975,12 +26689,12 @@ snapshots: '@types/express': 4.17.21 file-system-cache: 2.3.0 - '@stripe/react-stripe-js@1.16.5(@stripe/stripe-js@1.54.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@stripe/react-stripe-js@1.16.5(@stripe/stripe-js@1.54.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@stripe/stripe-js': 1.54.2 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) '@stripe/stripe-js@1.54.2': {} @@ -27086,12 +26800,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@svgr/core@8.1.0(typescript@5.2.2)': + '@svgr/core@8.1.0(typescript@5.4.5)': dependencies: '@babel/core': 7.22.20 '@svgr/babel-preset': 8.1.0(@babel/core@7.22.20) camelcase: 6.3.0 - cosmiconfig: 8.3.6(typescript@5.2.2) + cosmiconfig: 8.3.6(typescript@5.4.5) snake-case: 3.0.4 transitivePeerDependencies: - supports-color @@ -27117,11 +26831,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.2.2))': + '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.4.5))': dependencies: '@babel/core': 7.22.20 '@svgr/babel-preset': 8.1.0(@babel/core@7.22.20) - '@svgr/core': 8.1.0(typescript@5.2.2) + '@svgr/core': 8.1.0(typescript@5.4.5) '@svgr/hast-util-to-babel-ast': 8.0.0 svg-parser: 2.0.4 transitivePeerDependencies: @@ -27134,10 +26848,10 @@ snapshots: deepmerge: 4.3.1 svgo: 2.8.0 - '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.2.2))(typescript@5.2.2)': + '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.4.5))(typescript@5.4.5)': dependencies: - '@svgr/core': 8.1.0(typescript@5.2.2) - cosmiconfig: 8.3.6(typescript@5.2.2) + '@svgr/core': 8.1.0(typescript@5.4.5) + cosmiconfig: 8.3.6(typescript@5.4.5) deepmerge: 4.3.1 svgo: 3.0.2 transitivePeerDependencies: @@ -27156,16 +26870,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@svgr/webpack@8.1.0(typescript@5.2.2)': + '@svgr/webpack@8.1.0(typescript@5.4.5)': dependencies: '@babel/core': 7.22.20 '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.22.20) '@babel/preset-env': 7.22.20(@babel/core@7.22.20) '@babel/preset-react': 7.24.1(@babel/core@7.22.20) '@babel/preset-typescript': 7.22.15(@babel/core@7.22.20) - '@svgr/core': 8.1.0(typescript@5.2.2) - '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.2.2)) - '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.2.2))(typescript@5.2.2) + '@svgr/core': 8.1.0(typescript@5.4.5) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5)) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5))(typescript@5.4.5) transitivePeerDependencies: - supports-color - typescript @@ -27178,29 +26892,40 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - '@tailwindcss/typography@0.5.10(tailwindcss@3.3.5(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)))': + '@tailwindcss/typography@0.5.10(tailwindcss@3.3.5(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)))': dependencies: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.3.5(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + tailwindcss: 3.3.5(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) - '@testing-library/dom@9.3.3': + '@testing-library/dom@10.1.0': dependencies: - '@babel/code-frame': 7.22.13 - '@babel/runtime': 7.22.15 - '@types/aria-query': 5.0.1 + '@babel/code-frame': 7.24.2 + '@babel/runtime': 7.24.5 + '@types/aria-query': 5.0.4 + aria-query: 5.3.0 + chalk: 4.1.2 + dom-accessibility-api: 0.5.16 + lz-string: 1.5.0 + pretty-format: 27.5.1 + + '@testing-library/dom@9.3.4': + dependencies: + '@babel/code-frame': 7.24.2 + '@babel/runtime': 7.24.5 + '@types/aria-query': 5.0.4 aria-query: 5.1.3 chalk: 4.1.2 dom-accessibility-api: 0.5.16 lz-string: 1.5.0 pretty-format: 27.5.1 - '@testing-library/jest-dom@6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.10)(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)))': + '@testing-library/jest-dom@6.4.5(@jest/globals@29.7.0)(@types/jest@29.5.10)(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)))': dependencies: '@adobe/css-tools': 4.3.3 - '@babel/runtime': 7.22.15 + '@babel/runtime': 7.24.5 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 @@ -27210,28 +26935,30 @@ snapshots: optionalDependencies: '@jest/globals': 29.7.0 '@types/jest': 29.5.10 - jest: 29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + jest: 29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) - '@testing-library/react-hooks@8.0.1(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@testing-library/react-hooks@8.0.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.22.15 - react: 18.2.0 - react-error-boundary: 3.1.4(react@18.2.0) + '@babel/runtime': 7.24.5 + react: 18.3.1 + react-error-boundary: 3.1.4(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 - react-dom: 18.2.0(react@18.2.0) + '@types/react': 18.3.1 + react-dom: 18.3.1(react@18.3.1) - '@testing-library/react@14.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@testing-library/react@15.0.6(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@babel/runtime': 7.22.15 - '@testing-library/dom': 9.3.3 - '@types/react-dom': 18.2.9 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + '@babel/runtime': 7.24.5 + '@testing-library/dom': 10.1.0 + '@types/react-dom': 18.3.0 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + optionalDependencies: + '@types/react': 18.3.1 - '@testing-library/user-event@14.5.1(@testing-library/dom@9.3.3)': + '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)': dependencies: - '@testing-library/dom': 9.3.3 + '@testing-library/dom': 9.3.4 '@tokenizer/token@0.3.0': {} @@ -27263,9 +26990,9 @@ snapshots: dependencies: '@types/estree': 1.0.5 - '@types/apollo-upload-client@17.0.5(graphql-ws@5.14.2(graphql@16.8.1))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(subscriptions-transport-ws@0.11.0(graphql@16.8.1))': + '@types/apollo-upload-client@17.0.5(graphql-ws@5.14.2(graphql@16.8.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.8.1))': dependencies: - '@apollo/client': 3.8.8(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)) + '@apollo/client': 3.8.8(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)) '@types/extract-files': 8.1.1 graphql: 16.8.1 transitivePeerDependencies: @@ -27274,7 +27001,7 @@ snapshots: - react-dom - subscriptions-transport-ws - '@types/aria-query@5.0.1': {} + '@types/aria-query@5.0.4': {} '@types/babel__core@7.20.2': dependencies: @@ -27312,26 +27039,22 @@ snapshots: '@types/body-parser@1.19.5': dependencies: '@types/connect': 3.4.38 - '@types/node': 18.18.14 - - '@types/bonjour@3.5.11': - dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/bonjour@3.5.13': dependencies: - '@types/node': 20.12.7 + '@types/node': 18.19.32 '@types/cacheable-request@6.0.3': dependencies: '@types/http-cache-semantics': 4.0.2 '@types/keyv': 3.1.4 - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/responselike': 1.0.0 '@types/cli-progress@3.11.5': dependencies: - '@types/node': 18.19.31 + '@types/node': 18.19.32 '@types/color-convert@2.0.1': dependencies: @@ -27343,25 +27066,20 @@ snapshots: dependencies: '@types/color-convert': 2.0.1 - '@types/connect-history-api-fallback@1.5.1': - dependencies: - '@types/express-serve-static-core': 4.17.36 - '@types/node': 18.18.14 - '@types/connect-history-api-fallback@1.5.4': dependencies: '@types/express-serve-static-core': 4.19.0 - '@types/node': 20.12.7 + '@types/node': 18.19.32 '@types/connect@3.4.38': dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/cookie@0.4.1': {} '@types/cross-spawn@6.0.6': dependencies: - '@types/node': 20.12.7 + '@types/node': 18.19.32 '@types/debug@4.1.12': dependencies: @@ -27410,23 +27128,16 @@ snapshots: '@types/estree@1.0.5': {} - '@types/express-serve-static-core@4.17.36': - dependencies: - '@types/node': 18.18.14 - '@types/qs': 6.9.10 - '@types/range-parser': 1.2.4 - '@types/send': 0.17.1 - '@types/express-serve-static-core@4.17.41': dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/qs': 6.9.10 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 '@types/express-serve-static-core@4.19.0': dependencies: - '@types/node': 20.12.7 + '@types/node': 18.19.32 '@types/qs': 6.9.15 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -27447,11 +27158,11 @@ snapshots: '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.12.7 + '@types/node': 18.19.32 '@types/graceful-fs@4.1.6': dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/gtag.js@0.0.12': {} @@ -27469,7 +27180,7 @@ snapshots: '@types/hoist-non-react-statics@3.3.2': dependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 hoist-non-react-statics: 3.3.2 '@types/html-minifier-terser@6.1.0': {} @@ -27482,7 +27193,7 @@ snapshots: '@types/http-proxy@1.17.12': dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/inquirer@9.0.3': dependencies: @@ -27510,7 +27221,7 @@ snapshots: '@types/jsdom@20.0.1': dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/tough-cookie': 4.0.3 parse5: 7.1.2 @@ -27528,12 +27239,12 @@ snapshots: '@types/keyv@3.1.4': dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/liftoff@4.0.1': dependencies: '@types/fined': 1.1.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/lodash.throttle@4.1.9': dependencies: @@ -27555,8 +27266,6 @@ snapshots: '@types/mdx@2.0.13': {} - '@types/mime@1.3.2': {} - '@types/mime@1.3.5': {} '@types/mime@3.0.4': {} @@ -27571,16 +27280,16 @@ snapshots: '@types/mute-stream@0.0.4': dependencies: - '@types/node': 18.19.31 + '@types/node': 18.19.32 '@types/node-fetch@2.6.11': dependencies: - '@types/node': 18.19.31 + '@types/node': 18.19.32 form-data: 4.0.0 '@types/node-forge@1.3.11': dependencies: - '@types/node': 20.12.7 + '@types/node': 18.19.32 '@types/node-persist@3.1.7': dependencies: @@ -27588,17 +27297,18 @@ snapshots: '@types/node@17.0.45': {} - '@types/node@18.18.14': + '@types/node@18.19.32': dependencies: undici-types: 5.26.5 - '@types/node@18.19.31': + '@types/node@20.10.1': dependencies: undici-types: 5.26.5 - '@types/node@20.10.1': + '@types/node@20.12.11': dependencies: undici-types: 5.26.5 + optional: true '@types/node@20.12.7': dependencies: @@ -27620,7 +27330,7 @@ snapshots: '@types/qrcode@1.5.5': dependencies: - '@types/node': 20.10.1 + '@types/node': 18.19.32 '@types/qs@6.9.10': {} @@ -27630,36 +27340,34 @@ snapshots: dependencies: ts-toolbelt: 6.15.5 - '@types/range-parser@1.2.4': {} - '@types/range-parser@1.2.7': {} - '@types/react-dom@18.2.9': + '@types/react-dom@18.3.0': dependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 '@types/react-router-config@5.0.11': dependencies: '@types/history': 4.7.11 - '@types/react': 18.2.79 + '@types/react': 18.3.1 '@types/react-router': 5.1.20 '@types/react-router-dom@5.3.3': dependencies: '@types/history': 4.7.11 - '@types/react': 18.2.79 + '@types/react': 18.3.1 '@types/react-router': 5.1.20 '@types/react-router@5.1.20': dependencies: '@types/history': 4.7.11 - '@types/react': 18.2.79 + '@types/react': 18.3.1 '@types/react-test-renderer@18.0.7': dependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - '@types/react@18.2.79': + '@types/react@18.3.1': dependencies: '@types/prop-types': 15.7.12 csstype: 3.1.3 @@ -27668,38 +27376,25 @@ snapshots: '@types/responselike@1.0.0': dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/retry@0.12.0': {} '@types/rollup-plugin-peer-deps-external@2.2.4': dependencies: - '@types/node': 20.10.1 + '@types/node': 18.19.32 rollup: 0.63.5 '@types/sax@1.2.7': dependencies: - '@types/node': 17.0.45 - - '@types/semver@7.5.2': {} - - '@types/semver@7.5.6': {} + '@types/node': 18.19.32 '@types/semver@7.5.8': {} - '@types/send@0.17.1': - dependencies: - '@types/mime': 1.3.2 - '@types/node': 18.18.14 - '@types/send@0.17.4': dependencies: '@types/mime': 1.3.5 - '@types/node': 18.18.14 - - '@types/serve-index@1.9.1': - dependencies: - '@types/express': 4.17.21 + '@types/node': 18.19.32 '@types/serve-index@1.9.4': dependencies: @@ -27709,35 +27404,33 @@ snapshots: dependencies: '@types/http-errors': 2.0.4 '@types/mime': 3.0.4 - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/serve-static@1.15.7': dependencies: '@types/http-errors': 2.0.4 - '@types/node': 20.12.7 + '@types/node': 18.19.32 '@types/send': 0.17.4 '@types/set-cookie-parser@2.4.3': dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/shimmer@1.0.2': {} - '@types/sockjs@0.3.33': - dependencies: - '@types/node': 18.18.14 - '@types/sockjs@0.3.36': dependencies: - '@types/node': 20.12.7 + '@types/node': 18.19.32 '@types/stack-utils@2.0.1': {} '@types/stylis@4.2.0': {} + '@types/stylis@4.2.5': {} + '@types/through@0.0.31': dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/tough-cookie@4.0.3': {} @@ -27753,11 +27446,11 @@ snapshots: '@types/ws@8.5.10': dependencies: - '@types/node': 20.12.7 + '@types/node': 18.19.32 '@types/ws@8.5.5': dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 '@types/yargs-parser@21.0.0': {} @@ -27765,69 +27458,69 @@ snapshots: dependencies: '@types/yargs-parser': 21.0.0 - '@typescript-eslint/eslint-plugin@6.13.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint@8.54.0)(typescript@5.4.5)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.13.1(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/scope-manager': 6.13.1 - '@typescript-eslint/type-utils': 6.13.1(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.13.1(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.13.1 + '@typescript-eslint/parser': 6.21.0(eslint@8.54.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/type-utils': 6.21.0(eslint@8.54.0)(typescript@5.4.5) + '@typescript-eslint/utils': 6.21.0(eslint@8.54.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4(supports-color@8.1.1) eslint: 8.54.0 graphemer: 1.4.0 - ignore: 5.3.0 + ignore: 5.3.1 natural-compare: 1.4.0 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.2.2) + semver: 7.6.2 + ts-api-utils: 1.0.3(typescript@5.4.5) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint@8.57.0)(typescript@5.4.5)': dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.21.0(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.21.0(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.21.0 + '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/type-utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) - eslint: 8.54.0 + eslint: 8.57.0 graphemer: 1.4.0 ignore: 5.3.1 natural-compare: 1.4.0 semver: 7.6.0 - ts-api-utils: 1.0.3(typescript@5.2.2) + ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/scope-manager': 6.13.1 - '@typescript-eslint/types': 6.13.1 - '@typescript-eslint/typescript-estree': 6.13.1(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.13.1 + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4(supports-color@8.1.1) eslint: 8.54.0 optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.21.0 + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) - eslint: 8.54.0 + eslint: 8.57.0 optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - supports-color @@ -27841,49 +27534,37 @@ snapshots: '@typescript-eslint/types': 6.13.1 '@typescript-eslint/visitor-keys': 6.13.1 - '@typescript-eslint/scope-manager@6.13.2': - dependencies: - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/visitor-keys': 6.13.2 - '@typescript-eslint/scope-manager@6.21.0': dependencies: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 - '@typescript-eslint/type-utils@6.13.1(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/scope-manager@7.8.0': dependencies: - '@typescript-eslint/typescript-estree': 6.13.1(typescript@5.2.2) - '@typescript-eslint/utils': 6.13.1(eslint@8.54.0)(typescript@5.2.2) - debug: 4.3.4(supports-color@8.1.1) - eslint: 8.54.0 - ts-api-utils: 1.0.3(typescript@5.2.2) - optionalDependencies: - typescript: 5.2.2 - transitivePeerDependencies: - - supports-color + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/visitor-keys': 7.8.0 - '@typescript-eslint/type-utils@6.13.2(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/type-utils@6.21.0(eslint@8.54.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.2.2) - '@typescript-eslint/utils': 6.13.2(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) + '@typescript-eslint/utils': 6.21.0(eslint@8.54.0)(typescript@5.4.5) debug: 4.3.4(supports-color@8.1.1) eslint: 8.54.0 - ts-api-utils: 1.0.3(typescript@5.2.2) + ts-api-utils: 1.0.3(typescript@5.4.5) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@6.21.0(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/type-utils@7.8.0(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.2.2) - '@typescript-eslint/utils': 6.21.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) + '@typescript-eslint/utils': 7.8.0(eslint@8.57.0)(typescript@5.4.5) debug: 4.3.4(supports-color@8.1.1) - eslint: 8.54.0 - ts-api-utils: 1.0.3(typescript@5.2.2) + eslint: 8.57.0 + ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - supports-color @@ -27891,119 +27572,120 @@ snapshots: '@typescript-eslint/types@6.13.1': {} - '@typescript-eslint/types@6.13.2': {} - '@typescript-eslint/types@6.21.0': {} - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2)': + '@typescript-eslint/types@7.8.0': {} + + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5)': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 - tsutils: 3.21.0(typescript@5.2.2) + semver: 7.6.2 + tsutils: 3.21.0(typescript@5.4.5) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@6.13.1(typescript@5.2.2)': + '@typescript-eslint/typescript-estree@6.13.1(typescript@5.4.5)': dependencies: '@typescript-eslint/types': 6.13.1 '@typescript-eslint/visitor-keys': 6.13.1 debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.2.2) + semver: 7.6.2 + ts-api-utils: 1.0.3(typescript@5.4.5) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@6.13.2(typescript@5.2.2)': + '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.5)': dependencies: - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/visitor-keys': 6.13.2 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.2.2) + minimatch: 9.0.3 + semver: 7.6.2 + ts-api-utils: 1.0.3(typescript@5.4.5) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@6.21.0(typescript@5.2.2)': + '@typescript-eslint/typescript-estree@7.8.0(typescript@5.4.5)': dependencies: - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/visitor-keys': 6.21.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/visitor-keys': 7.8.0 debug: 4.3.4(supports-color@8.1.1) globby: 11.1.0 is-glob: 4.0.3 - minimatch: 9.0.3 + minimatch: 9.0.4 semver: 7.6.0 - ts-api-utils: 1.0.3(typescript@5.2.2) + ts-api-utils: 1.3.0(typescript@5.4.5) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@5.62.0(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.54.0) - '@types/json-schema': 7.0.13 - '@types/semver': 7.5.2 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) - eslint: 8.54.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) + eslint: 8.57.0 eslint-scope: 5.1.1 - semver: 7.5.4 + semver: 7.6.2 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@6.13.1(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/utils@6.13.1(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.54.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@types/json-schema': 7.0.15 - '@types/semver': 7.5.6 + '@types/semver': 7.5.8 '@typescript-eslint/scope-manager': 6.13.1 '@typescript-eslint/types': 6.13.1 - '@typescript-eslint/typescript-estree': 6.13.1(typescript@5.2.2) - eslint: 8.54.0 - semver: 7.5.4 + '@typescript-eslint/typescript-estree': 6.13.1(typescript@5.4.5) + eslint: 8.57.0 + semver: 7.6.2 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@6.13.2(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/utils@6.21.0(eslint@8.54.0)(typescript@5.4.5)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.54.0) '@types/json-schema': 7.0.15 - '@types/semver': 7.5.6 - '@typescript-eslint/scope-manager': 6.13.2 - '@typescript-eslint/types': 6.13.2 - '@typescript-eslint/typescript-estree': 6.13.2(typescript@5.2.2) + '@types/semver': 7.5.8 + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) eslint: 8.54.0 - semver: 7.5.4 + semver: 7.6.2 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/utils@6.21.0(eslint@8.54.0)(typescript@5.2.2)': + '@typescript-eslint/utils@7.8.0(eslint@8.57.0)(typescript@5.4.5)': dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.54.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.2.2) - eslint: 8.54.0 + '@typescript-eslint/scope-manager': 7.8.0 + '@typescript-eslint/types': 7.8.0 + '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5) + eslint: 8.57.0 semver: 7.6.0 transitivePeerDependencies: - supports-color @@ -28019,19 +27701,19 @@ snapshots: '@typescript-eslint/types': 6.13.1 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@6.13.2': + '@typescript-eslint/visitor-keys@6.21.0': dependencies: - '@typescript-eslint/types': 6.13.2 + '@typescript-eslint/types': 6.21.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@6.21.0': + '@typescript-eslint/visitor-keys@7.8.0': dependencies: - '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/types': 7.8.0 eslint-visitor-keys: 3.4.3 '@ungap/structured-clone@1.2.0': {} - '@vitejs/plugin-legacy@4.1.1(terser@5.30.4)(vite@4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4))': + '@vitejs/plugin-legacy@4.1.1(terser@5.31.0)(vite@5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0))': dependencies: '@babel/core': 7.22.20 '@babel/preset-env': 7.22.20(@babel/core@7.22.20) @@ -28040,27 +27722,22 @@ snapshots: magic-string: 0.30.3 regenerator-runtime: 0.13.11 systemjs: 6.14.2 - terser: 5.30.4 - vite: 4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4) + terser: 5.31.0 + vite: 5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0) transitivePeerDependencies: - supports-color - '@vitejs/plugin-react@4.2.0(vite@4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4))': + '@vitejs/plugin-react@4.2.0(vite@4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0))': dependencies: '@babel/core': 7.23.5 '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.5) '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.5) '@types/babel__core': 7.20.5 react-refresh: 0.14.0 - vite: 4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4) + vite: 4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0) transitivePeerDependencies: - supports-color - '@webassemblyjs/ast@1.11.6': - dependencies: - '@webassemblyjs/helper-numbers': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ast@1.12.1': dependencies: '@webassemblyjs/helper-numbers': 1.11.6 @@ -28070,8 +27747,6 @@ snapshots: '@webassemblyjs/helper-api-error@1.11.6': {} - '@webassemblyjs/helper-buffer@1.11.6': {} - '@webassemblyjs/helper-buffer@1.12.1': {} '@webassemblyjs/helper-numbers@1.11.6': @@ -28082,13 +27757,6 @@ snapshots: '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} - '@webassemblyjs/helper-wasm-section@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/helper-wasm-section@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -28106,17 +27774,6 @@ snapshots: '@webassemblyjs/utf8@1.11.6': {} - '@webassemblyjs/wasm-edit@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/helper-wasm-section': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-opt': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - '@webassemblyjs/wast-printer': 1.11.6 - '@webassemblyjs/wasm-edit@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -28128,14 +27785,6 @@ snapshots: '@webassemblyjs/wasm-parser': 1.12.1 '@webassemblyjs/wast-printer': 1.12.1 - '@webassemblyjs/wasm-gen@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wasm-gen@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -28144,13 +27793,6 @@ snapshots: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wasm-opt@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-buffer': 1.11.6 - '@webassemblyjs/wasm-gen': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - '@webassemblyjs/wasm-opt@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -28158,15 +27800,6 @@ snapshots: '@webassemblyjs/wasm-gen': 1.12.1 '@webassemblyjs/wasm-parser': 1.12.1 - '@webassemblyjs/wasm-parser@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wasm-parser@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -28176,11 +27809,6 @@ snapshots: '@webassemblyjs/leb128': 1.11.6 '@webassemblyjs/utf8': 1.11.6 - '@webassemblyjs/wast-printer@1.11.6': - dependencies: - '@webassemblyjs/ast': 1.11.6 - '@xtuc/long': 4.2.2 - '@webassemblyjs/wast-printer@1.12.1': dependencies: '@webassemblyjs/ast': 1.12.1 @@ -28295,13 +27923,9 @@ snapshots: acorn-globals@7.0.1: dependencies: - acorn: 8.10.0 + acorn: 8.11.3 acorn-walk: 8.2.0 - acorn-import-assertions@1.9.0(acorn@8.11.2): - dependencies: - acorn: 8.11.2 - acorn-import-assertions@1.9.0(acorn@8.11.3): dependencies: acorn: 8.11.3 @@ -28328,8 +27952,6 @@ snapshots: acorn@8.10.0: {} - acorn@8.11.2: {} - acorn@8.11.3: {} address@1.2.2: {} @@ -28394,6 +28016,13 @@ snapshots: require-from-string: 2.0.2 uri-js: 4.4.1 + alge@0.8.1: + dependencies: + lodash.ismatch: 4.4.0 + remeda: 1.61.0 + ts-toolbelt: 9.6.0 + zod: 3.23.8 + algoliasearch-helper@3.17.0(algoliasearch@4.23.3): dependencies: '@algolia/events': 4.0.1 @@ -28482,9 +28111,9 @@ snapshots: normalize-path: 3.0.0 picomatch: 2.3.1 - apollo-upload-client@17.0.0(@apollo/client@3.9.11(@types/react@18.2.79)(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)))(graphql@16.8.1): + apollo-upload-client@17.0.0(@apollo/client@3.10.3(@types/react@18.3.1)(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)))(graphql@16.8.1): dependencies: - '@apollo/client': 3.9.11(@types/react@18.2.79)(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)) + '@apollo/client': 3.10.3(@types/react@18.3.1)(graphql-ws@5.14.2(graphql@16.8.1))(graphql@16.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(subscriptions-transport-ws@0.11.0(graphql@16.8.1)) extract-files: 11.0.0 graphql: 16.8.1 @@ -28550,7 +28179,7 @@ snapshots: aria-query@5.1.3: dependencies: - deep-equal: 2.2.2 + deep-equal: 2.2.3 aria-query@5.3.0: dependencies: @@ -28565,8 +28194,6 @@ snapshots: array-flatten@1.1.1: {} - array-flatten@2.1.2: {} - array-includes@3.1.7: dependencies: call-bind: 1.0.2 @@ -28614,10 +28241,10 @@ snapshots: arraybuffer.prototype.slice@1.0.2: dependencies: array-buffer-byte-length: 1.0.0 - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.22.3 - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 is-array-buffer: 3.0.2 is-shared-array-buffer: 1.0.2 @@ -28705,16 +28332,6 @@ snapshots: postcss: 8.4.31 postcss-value-parser: 4.2.0 - autoprefixer@10.4.16(postcss@8.4.32): - dependencies: - browserslist: 4.21.10 - caniuse-lite: 1.0.30001538 - fraction.js: 4.3.6 - normalize-range: 0.1.2 - picocolors: 1.0.0 - postcss: 8.4.32 - postcss-value-parser: 4.2.0 - autoprefixer@10.4.19(postcss@8.4.38): dependencies: browserslist: 4.23.0 @@ -28734,7 +28351,7 @@ snapshots: '@aws-cdk/asset-node-proxy-agent-v6': 2.0.1 constructs: 10.3.0 - aws-cdk-lib@2.138.0(constructs@10.3.0): + aws-cdk-lib@2.141.0(constructs@10.3.0): dependencies: '@aws-cdk/asset-awscli-v1': 2.2.202 '@aws-cdk/asset-kubectl-v20': 2.1.2 @@ -28817,39 +28434,32 @@ snapshots: dependencies: '@babel/core': 7.24.4 - babel-jest@28.1.3(@babel/core@7.23.5): + babel-jest@28.1.3(@babel/core@7.24.4): dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.24.4 '@jest/transform': 28.1.3 '@types/babel__core': 7.20.2 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 28.1.3(@babel/core@7.23.5) + babel-preset-jest: 28.1.3(@babel/core@7.24.4) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - babel-jest@29.7.0(@babel/core@7.23.5): + babel-jest@29.7.0(@babel/core@7.24.4): dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.24.4 '@jest/transform': 29.7.0 '@types/babel__core': 7.20.2 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.6.3(@babel/core@7.23.5) + babel-preset-jest: 29.6.3(@babel/core@7.24.4) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 transitivePeerDependencies: - supports-color - babel-loader@9.1.3(@babel/core@7.23.5)(webpack@5.89.0(esbuild@0.19.8)): - dependencies: - '@babel/core': 7.23.5 - find-cache-dir: 4.0.0 - schema-utils: 4.2.0 - webpack: 5.89.0(esbuild@0.19.8) - babel-loader@9.1.3(@babel/core@7.24.4)(webpack@5.91.0(esbuild@0.19.8)): dependencies: '@babel/core': 7.24.4 @@ -28857,12 +28467,12 @@ snapshots: schema-utils: 4.2.0 webpack: 5.91.0(esbuild@0.19.8) - babel-plugin-const-enum@1.2.0(@babel/core@7.23.5): + babel-plugin-const-enum@1.2.0(@babel/core@7.24.4): dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5) - '@babel/traverse': 7.23.5 + '@babel/core': 7.24.4 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4) + '@babel/traverse': 7.24.1 transitivePeerDependencies: - supports-color @@ -28896,7 +28506,7 @@ snapshots: babel-plugin-macros@2.8.0: dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.24.4 cosmiconfig: 6.0.0 resolve: 1.22.8 @@ -28927,24 +28537,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.23.5): - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.5) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.5): - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.22.20): dependencies: '@babel/core': 7.22.20 @@ -28969,22 +28561,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.23.5): - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.5) - core-js-compat: 3.33.3 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.5): - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) - core-js-compat: 3.33.3 - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.22.20): dependencies: '@babel/core': 7.22.20 @@ -28992,20 +28568,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.23.5): - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.5) - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.5): - dependencies: - '@babel/core': 7.23.5 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.5) - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.22.20): dependencies: '@babel/core': 7.22.20 @@ -29020,41 +28582,41 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-styled-components@2.1.4(@babel/core@7.24.4)(styled-components@6.1.8(react-dom@16.14.0(react@16.14.0))(react@16.14.0)): + babel-plugin-styled-components@2.1.4(@babel/core@7.24.5)(styled-components@6.1.11(react-dom@16.14.0(react@16.14.0))(react@16.14.0)): dependencies: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-module-imports': 7.22.15 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.24.4) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.24.5) lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 6.1.8(react-dom@16.14.0(react@16.14.0))(react@16.14.0) + styled-components: 6.1.11(react-dom@16.14.0(react@16.14.0))(react@16.14.0) transitivePeerDependencies: - '@babel/core' babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {} - babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.23.5)(@babel/traverse@7.24.1): + babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.24.4)(@babel/traverse@7.24.5): dependencies: - '@babel/core': 7.23.5 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.24.4 + '@babel/helper-plugin-utils': 7.24.0 optionalDependencies: - '@babel/traverse': 7.24.1 + '@babel/traverse': 7.24.5 - babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.5): + babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.4): dependencies: - '@babel/core': 7.23.5 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.5) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5) + '@babel/core': 7.24.4 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.4) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.4) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.4) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.4) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.4) babel-preset-fbjs@3.4.0(@babel/core@7.24.4): dependencies: @@ -29087,17 +28649,17 @@ snapshots: '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.4) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 - babel-preset-jest@28.1.3(@babel/core@7.23.5): + babel-preset-jest@28.1.3(@babel/core@7.24.4): dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.24.4 babel-plugin-jest-hoist: 28.1.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4) - babel-preset-jest@29.6.3(@babel/core@7.23.5): + babel-preset-jest@29.6.3(@babel/core@7.24.4): dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.24.4 babel-plugin-jest-hoist: 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4) backo2@1.0.2: {} @@ -29201,13 +28763,6 @@ snapshots: transitivePeerDependencies: - supports-color - bonjour-service@1.1.1: - dependencies: - array-flatten: 2.1.2 - dns-equal: 1.0.0 - fast-deep-equal: 3.1.3 - multicast-dns: 7.2.5 - bonjour-service@1.2.1: dependencies: fast-deep-equal: 3.1.3 @@ -29328,13 +28883,6 @@ snapshots: node-releases: 2.0.13 update-browserslist-db: 1.0.11(browserslist@4.21.10) - browserslist@4.22.2: - dependencies: - caniuse-lite: 1.0.30001566 - electron-to-chromium: 1.4.603 - node-releases: 2.0.14 - update-browserslist-db: 1.0.13(browserslist@4.22.2) - browserslist@4.23.0: dependencies: caniuse-lite: 1.0.30001610 @@ -29398,7 +28946,7 @@ snapshots: builtins@5.0.1: dependencies: - semver: 7.6.0 + semver: 7.6.2 busboy@1.6.0: dependencies: @@ -29483,15 +29031,13 @@ snapshots: caniuse-api@3.0.0: dependencies: - browserslist: 4.22.2 - caniuse-lite: 1.0.30001566 + browserslist: 4.23.0 + caniuse-lite: 1.0.30001610 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 caniuse-lite@1.0.30001538: {} - caniuse-lite@1.0.30001566: {} - caniuse-lite@1.0.30001610: {} capital-case@1.0.4: @@ -29507,9 +29053,9 @@ snapshots: ccount@2.0.1: {} - cdk-ec2-key-pair@3.3.3(aws-cdk-lib@2.138.0(constructs@10.3.0))(constructs@10.3.0): + cdk-ec2-key-pair@3.3.3(aws-cdk-lib@2.141.0(constructs@10.3.0))(constructs@10.3.0): dependencies: - aws-cdk-lib: 2.138.0(constructs@10.3.0) + aws-cdk-lib: 2.141.0(constructs@10.3.0) constructs: 10.3.0 chalk@1.1.1: @@ -30035,7 +29581,7 @@ snapshots: transitivePeerDependencies: - supports-color - contentful-cli@2.8.27(@babel/core@7.24.4)(encoding@0.1.13)(enquirer@2.3.6)(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0))(eslint-plugin-n@16.6.2(eslint@8.54.0))(eslint-plugin-promise@6.1.1(eslint@8.54.0)): + contentful-cli@2.8.27(@babel/core@7.24.5)(encoding@0.1.13)(enquirer@2.4.1)(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0))(eslint-plugin-n@17.6.0(eslint@8.57.0))(eslint-plugin-promise@6.1.1(eslint@8.57.0)): dependencies: '@contentful/app-action-utils': 1.3.0 ast-types: 0.14.2 @@ -30049,9 +29595,9 @@ snapshots: command-exists: 1.2.9 contentful-collection: 0.0.4 contentful-export: 7.19.78(encoding@0.1.13) - contentful-import: 9.0.19(@babel/core@7.24.4)(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0))(eslint-plugin-n@16.6.2(eslint@8.54.0))(eslint-plugin-promise@6.1.1(eslint@8.54.0)) + contentful-import: 9.0.19(@babel/core@7.24.5)(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0))(eslint-plugin-n@17.6.0(eslint@8.57.0))(eslint-plugin-promise@6.1.1(eslint@8.57.0)) contentful-management: 10.46.1 - contentful-migration: 4.17.4(enquirer@2.3.6) + contentful-migration: 4.17.4(enquirer@2.4.1) emojic: 1.1.17 execa: 5.1.1 figlet: 1.6.0 @@ -30073,7 +29619,7 @@ snapshots: tar: 6.2.0 to-ast: 1.0.0 tree-kill: 1.2.2 - typescript: 5.2.2 + typescript: 5.4.5 wrap-ansi: 7.0.0 yargs: 13.3.2 transitivePeerDependencies: @@ -30115,17 +29661,17 @@ snapshots: - zen-observable - zenObservable - contentful-import@9.0.19(@babel/core@7.24.4)(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0))(eslint-plugin-n@16.6.2(eslint@8.54.0))(eslint-plugin-promise@6.1.1(eslint@8.54.0)): + contentful-import@9.0.19(@babel/core@7.24.5)(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0))(eslint-plugin-n@17.6.0(eslint@8.57.0))(eslint-plugin-promise@6.1.1(eslint@8.57.0)): dependencies: - '@babel/eslint-parser': 7.22.15(@babel/core@7.24.4)(eslint@8.54.0) + '@babel/eslint-parser': 7.22.15(@babel/core@7.24.5)(eslint@8.57.0) '@discoveryjs/json-ext': 0.5.7 bluebird: 3.7.2 cli-table3: 0.6.3 contentful-batch-libs: 9.5.0 contentful-management: 10.46.1 date-fns: 2.30.0 - eslint: 8.54.0 - eslint-config-standard: 17.1.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0))(eslint-plugin-n@16.6.2(eslint@8.54.0))(eslint-plugin-promise@6.1.1(eslint@8.54.0))(eslint@8.54.0) + eslint: 8.57.0 + eslint-config-standard: 17.1.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0))(eslint-plugin-n@17.6.0(eslint@8.57.0))(eslint-plugin-promise@6.1.1(eslint@8.57.0))(eslint@8.57.0) joi: 17.10.2 listr: 0.14.3 listr-update-renderer: 0.5.0(listr@0.14.3) @@ -30167,7 +29713,7 @@ snapshots: transitivePeerDependencies: - debug - contentful-migration@4.17.4(enquirer@2.3.6): + contentful-migration@4.17.4(enquirer@2.4.1): dependencies: '@hapi/hoek': 10.0.1 axios: 1.6.2 @@ -30181,7 +29727,7 @@ snapshots: inquirer: 8.2.6 joi: 17.10.2 kind-of: 6.0.3 - listr2: 3.14.0(enquirer@2.3.6) + listr2: 3.14.0(enquirer@2.4.1) lodash: 4.17.21 p-throttle: 4.1.1 uuid: 9.0.1 @@ -30247,15 +29793,15 @@ snapshots: copy-text-to-clipboard@3.2.0: {} - copy-webpack-plugin@10.2.4(webpack@5.89.0(esbuild@0.19.8)): + copy-webpack-plugin@10.2.4(webpack@5.91.0(esbuild@0.19.8)): dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 globby: 12.2.0 normalize-path: 3.0.0 schema-utils: 4.2.0 - serialize-javascript: 6.0.1 - webpack: 5.89.0(esbuild@0.19.8) + serialize-javascript: 6.0.2 + webpack: 5.91.0(esbuild@0.19.8) copy-webpack-plugin@11.0.0(webpack@5.91.0(esbuild@0.19.8)): dependencies: @@ -30269,11 +29815,11 @@ snapshots: core-js-compat@3.32.2: dependencies: - browserslist: 4.22.2 + browserslist: 4.23.0 core-js-compat@3.33.3: dependencies: - browserslist: 4.22.2 + browserslist: 4.23.0 core-js-compat@3.37.0: dependencies: @@ -30307,14 +29853,14 @@ snapshots: path-type: 4.0.0 yaml: 1.10.2 - cosmiconfig@8.3.6(typescript@5.2.2): + cosmiconfig@8.3.6(typescript@5.4.5): dependencies: import-fresh: 3.3.0 js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 crc-32@1.2.2: {} @@ -30345,13 +29891,13 @@ snapshots: safe-buffer: 5.2.1 sha.js: 2.4.11 - create-jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)): + create-jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)): dependencies: '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + jest-config: 29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -30408,10 +29954,6 @@ snapshots: css-color-keywords@1.0.0: {} - css-declaration-sorter@6.4.1(postcss@8.4.32): - dependencies: - postcss: 8.4.32 - css-declaration-sorter@6.4.1(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -30444,18 +29986,6 @@ snapshots: optionalDependencies: webpack: 5.91.0(esbuild@0.20.2) - css-loader@6.8.1(webpack@5.89.0(esbuild@0.19.8)): - dependencies: - icss-utils: 5.1.0(postcss@8.4.32) - postcss: 8.4.32 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.32) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.32) - postcss-modules-scope: 3.0.0(postcss@8.4.32) - postcss-modules-values: 4.0.0(postcss@8.4.32) - postcss-value-parser: 4.2.0 - semver: 7.5.4 - webpack: 5.89.0(esbuild@0.19.8) - css-minimizer-webpack-plugin@4.2.2(clean-css@5.3.3)(esbuild@0.19.8)(webpack@5.91.0(esbuild@0.19.8)): dependencies: cssnano: 5.1.15(postcss@8.4.38) @@ -30469,15 +29999,15 @@ snapshots: clean-css: 5.3.3 esbuild: 0.19.8 - css-minimizer-webpack-plugin@5.0.1(esbuild@0.19.8)(webpack@5.89.0(esbuild@0.19.8)): + css-minimizer-webpack-plugin@5.0.1(esbuild@0.19.8)(webpack@5.91.0(esbuild@0.19.8)): dependencies: - '@jridgewell/trace-mapping': 0.3.20 - cssnano: 6.0.1(postcss@8.4.32) + '@jridgewell/trace-mapping': 0.3.25 + cssnano: 6.0.1(postcss@8.4.38) jest-worker: 29.7.0 - postcss: 8.4.32 + postcss: 8.4.38 schema-utils: 4.2.0 - serialize-javascript: 6.0.1 - webpack: 5.89.0(esbuild@0.19.8) + serialize-javascript: 6.0.2 + webpack: 5.91.0(esbuild@0.19.8) optionalDependencies: esbuild: 0.19.8 @@ -30567,46 +30097,46 @@ snapshots: postcss-svgo: 5.1.0(postcss@8.4.38) postcss-unique-selectors: 5.1.1(postcss@8.4.38) - cssnano-preset-default@6.0.1(postcss@8.4.32): - dependencies: - css-declaration-sorter: 6.4.1(postcss@8.4.32) - cssnano-utils: 4.0.0(postcss@8.4.32) - postcss: 8.4.32 - postcss-calc: 9.0.1(postcss@8.4.32) - postcss-colormin: 6.0.0(postcss@8.4.32) - postcss-convert-values: 6.0.0(postcss@8.4.32) - postcss-discard-comments: 6.0.0(postcss@8.4.32) - postcss-discard-duplicates: 6.0.0(postcss@8.4.32) - postcss-discard-empty: 6.0.0(postcss@8.4.32) - postcss-discard-overridden: 6.0.0(postcss@8.4.32) - postcss-merge-longhand: 6.0.0(postcss@8.4.32) - postcss-merge-rules: 6.0.1(postcss@8.4.32) - postcss-minify-font-values: 6.0.0(postcss@8.4.32) - postcss-minify-gradients: 6.0.0(postcss@8.4.32) - postcss-minify-params: 6.0.0(postcss@8.4.32) - postcss-minify-selectors: 6.0.0(postcss@8.4.32) - postcss-normalize-charset: 6.0.0(postcss@8.4.32) - postcss-normalize-display-values: 6.0.0(postcss@8.4.32) - postcss-normalize-positions: 6.0.0(postcss@8.4.32) - postcss-normalize-repeat-style: 6.0.0(postcss@8.4.32) - postcss-normalize-string: 6.0.0(postcss@8.4.32) - postcss-normalize-timing-functions: 6.0.0(postcss@8.4.32) - postcss-normalize-unicode: 6.0.0(postcss@8.4.32) - postcss-normalize-url: 6.0.0(postcss@8.4.32) - postcss-normalize-whitespace: 6.0.0(postcss@8.4.32) - postcss-ordered-values: 6.0.0(postcss@8.4.32) - postcss-reduce-initial: 6.0.0(postcss@8.4.32) - postcss-reduce-transforms: 6.0.0(postcss@8.4.32) - postcss-svgo: 6.0.0(postcss@8.4.32) - postcss-unique-selectors: 6.0.0(postcss@8.4.32) + cssnano-preset-default@6.0.1(postcss@8.4.38): + dependencies: + css-declaration-sorter: 6.4.1(postcss@8.4.38) + cssnano-utils: 4.0.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-calc: 9.0.1(postcss@8.4.38) + postcss-colormin: 6.0.0(postcss@8.4.38) + postcss-convert-values: 6.0.0(postcss@8.4.38) + postcss-discard-comments: 6.0.0(postcss@8.4.38) + postcss-discard-duplicates: 6.0.0(postcss@8.4.38) + postcss-discard-empty: 6.0.0(postcss@8.4.38) + postcss-discard-overridden: 6.0.0(postcss@8.4.38) + postcss-merge-longhand: 6.0.0(postcss@8.4.38) + postcss-merge-rules: 6.0.1(postcss@8.4.38) + postcss-minify-font-values: 6.0.0(postcss@8.4.38) + postcss-minify-gradients: 6.0.0(postcss@8.4.38) + postcss-minify-params: 6.0.0(postcss@8.4.38) + postcss-minify-selectors: 6.0.0(postcss@8.4.38) + postcss-normalize-charset: 6.0.0(postcss@8.4.38) + postcss-normalize-display-values: 6.0.0(postcss@8.4.38) + postcss-normalize-positions: 6.0.0(postcss@8.4.38) + postcss-normalize-repeat-style: 6.0.0(postcss@8.4.38) + postcss-normalize-string: 6.0.0(postcss@8.4.38) + postcss-normalize-timing-functions: 6.0.0(postcss@8.4.38) + postcss-normalize-unicode: 6.0.0(postcss@8.4.38) + postcss-normalize-url: 6.0.0(postcss@8.4.38) + postcss-normalize-whitespace: 6.0.0(postcss@8.4.38) + postcss-ordered-values: 6.0.0(postcss@8.4.38) + postcss-reduce-initial: 6.0.0(postcss@8.4.38) + postcss-reduce-transforms: 6.0.0(postcss@8.4.38) + postcss-svgo: 6.0.0(postcss@8.4.38) + postcss-unique-selectors: 6.0.0(postcss@8.4.38) cssnano-utils@3.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 - cssnano-utils@4.0.0(postcss@8.4.32): + cssnano-utils@4.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 cssnano@5.1.15(postcss@8.4.38): dependencies: @@ -30615,11 +30145,11 @@ snapshots: postcss: 8.4.38 yaml: 1.10.2 - cssnano@6.0.1(postcss@8.4.32): + cssnano@6.0.1(postcss@8.4.38): dependencies: - cssnano-preset-default: 6.0.1(postcss@8.4.32) + cssnano-preset-default: 6.0.1(postcss@8.4.38) lilconfig: 2.1.0 - postcss: 8.4.32 + postcss: 8.4.38 csso@4.2.0: dependencies: @@ -30660,7 +30190,7 @@ snapshots: date-fns@2.30.0: dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.24.5 dayjs@1.11.10: {} @@ -30739,7 +30269,7 @@ snapshots: dedent@1.5.1: {} - deep-equal@2.2.2: + deep-equal@2.2.3: dependencies: array-buffer-byte-length: 1.0.0 call-bind: 1.0.7 @@ -30753,7 +30283,7 @@ snapshots: isarray: 2.0.5 object-is: 1.1.5 object-keys: 1.1.1 - object.assign: 4.1.4 + object.assign: 4.1.5 regexp.prototype.flags: 1.5.1 side-channel: 1.0.6 which-boxed-primitive: 1.0.2 @@ -30893,7 +30423,7 @@ snapshots: didyoumean2@5.0.0: dependencies: - '@babel/runtime': 7.23.5 + '@babel/runtime': 7.24.5 fastest-levenshtein: 1.0.16 lodash.deburr: 4.1.0 @@ -30919,8 +30449,6 @@ snapshots: dlv@1.1.3: {} - dns-equal@1.0.0: {} - dns-packet@5.6.1: dependencies: '@leichtgewicht/ip-codec': 2.0.4 @@ -30933,10 +30461,10 @@ snapshots: dependencies: esutils: 2.0.3 - docusaurus-plugin-typedoc@0.22.0(typedoc-plugin-markdown@3.17.1(typedoc@0.25.13(typescript@5.2.2)))(typedoc@0.25.13(typescript@5.2.2)): + docusaurus-plugin-typedoc@0.22.0(typedoc-plugin-markdown@3.17.1(typedoc@0.25.13(typescript@5.4.5)))(typedoc@0.25.13(typescript@5.4.5)): dependencies: - typedoc: 0.25.13(typescript@5.2.2) - typedoc-plugin-markdown: 3.17.1(typedoc@0.25.13(typescript@5.2.2)) + typedoc: 0.25.13(typescript@5.4.5) + typedoc-plugin-markdown: 3.17.1(typedoc@0.25.13(typescript@5.4.5)) dom-accessibility-api@0.5.16: {} @@ -31005,6 +30533,16 @@ snapshots: dotenv@16.4.5: {} + dprint@0.45.1: + optionalDependencies: + '@dprint/darwin-arm64': 0.45.1 + '@dprint/darwin-x64': 0.45.1 + '@dprint/linux-arm64-glibc': 0.45.1 + '@dprint/linux-arm64-musl': 0.45.1 + '@dprint/linux-x64-glibc': 0.45.1 + '@dprint/linux-x64-musl': 0.45.1 + '@dprint/win32-x64': 0.45.1 + dset@3.1.2: {} dset@3.1.3: {} @@ -31039,14 +30577,8 @@ snapshots: dependencies: jake: 10.8.7 - ejs@3.1.9: - dependencies: - jake: 10.8.7 - electron-to-chromium@1.4.523: {} - electron-to-chromium@1.4.603: {} - electron-to-chromium@1.4.738: {} elegant-spinner@1.0.1: {} @@ -31107,10 +30639,21 @@ snapshots: graceful-fs: 4.2.11 tapable: 2.2.1 + enhanced-resolve@5.16.1: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + enquirer@2.3.6: dependencies: ansi-colors: 4.1.3 + enquirer@2.4.1: + dependencies: + ansi-colors: 4.1.3 + strip-ansi: 6.0.1 + optional: true + entities@2.2.0: {} entities@4.5.0: {} @@ -31259,8 +30802,6 @@ snapshots: es-module-lexer@0.9.3: {} - es-module-lexer@1.4.1: {} - es-module-lexer@1.5.0: {} es-set-tostringtag@2.0.2: @@ -31496,6 +31037,32 @@ snapshots: '@esbuild/win32-ia32': 0.20.2 '@esbuild/win32-x64': 0.20.2 + esbuild@0.21.1: + optionalDependencies: + '@esbuild/aix-ppc64': 0.21.1 + '@esbuild/android-arm': 0.21.1 + '@esbuild/android-arm64': 0.21.1 + '@esbuild/android-x64': 0.21.1 + '@esbuild/darwin-arm64': 0.21.1 + '@esbuild/darwin-x64': 0.21.1 + '@esbuild/freebsd-arm64': 0.21.1 + '@esbuild/freebsd-x64': 0.21.1 + '@esbuild/linux-arm': 0.21.1 + '@esbuild/linux-arm64': 0.21.1 + '@esbuild/linux-ia32': 0.21.1 + '@esbuild/linux-loong64': 0.21.1 + '@esbuild/linux-mips64el': 0.21.1 + '@esbuild/linux-ppc64': 0.21.1 + '@esbuild/linux-riscv64': 0.21.1 + '@esbuild/linux-s390x': 0.21.1 + '@esbuild/linux-x64': 0.21.1 + '@esbuild/netbsd-x64': 0.21.1 + '@esbuild/openbsd-x64': 0.21.1 + '@esbuild/sunos-x64': 0.21.1 + '@esbuild/win32-arm64': 0.21.1 + '@esbuild/win32-ia32': 0.21.1 + '@esbuild/win32-x64': 0.21.1 + escalade@3.1.1: {} escalade@3.1.2: {} @@ -31531,21 +31098,21 @@ snapshots: optionalDependencies: source-map: 0.6.1 - eslint-compat-utils@0.5.0(eslint@8.54.0): + eslint-compat-utils@0.5.0(eslint@8.57.0): dependencies: - eslint: 8.54.0 - semver: 7.6.0 + eslint: 8.57.0 + semver: 7.6.2 - eslint-config-oclif-typescript@3.1.7(eslint@8.54.0)(typescript@5.2.2): + eslint-config-oclif-typescript@3.1.7(eslint@8.54.0)(typescript@5.4.5): dependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/parser': 6.21.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint@8.54.0)(typescript@5.4.5) + '@typescript-eslint/parser': 6.21.0(eslint@8.54.0)(typescript@5.4.5) eslint-config-xo-space: 0.35.0(eslint@8.54.0) - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.29.1)(eslint@8.54.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.54.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.54.0) eslint-plugin-mocha: 10.4.3(eslint@8.54.0) eslint-plugin-n: 15.7.0(eslint@8.54.0) - eslint-plugin-perfectionist: 2.10.0(eslint@8.54.0)(typescript@5.2.2) + eslint-plugin-perfectionist: 2.10.0(eslint@8.54.0)(typescript@5.4.5) transitivePeerDependencies: - astro-eslint-parser - eslint @@ -31566,16 +31133,16 @@ snapshots: transitivePeerDependencies: - eslint - eslint-config-prettier@9.0.0(eslint@8.54.0): + eslint-config-prettier@9.0.0(eslint@8.57.0): dependencies: - eslint: 8.54.0 + eslint: 8.57.0 - eslint-config-standard@17.1.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0))(eslint-plugin-n@16.6.2(eslint@8.54.0))(eslint-plugin-promise@6.1.1(eslint@8.54.0))(eslint@8.54.0): + eslint-config-standard@17.1.0(eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0))(eslint-plugin-n@17.6.0(eslint@8.57.0))(eslint-plugin-promise@6.1.1(eslint@8.57.0))(eslint@8.57.0): dependencies: - eslint: 8.54.0 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0) - eslint-plugin-n: 16.6.2(eslint@8.54.0) - eslint-plugin-promise: 6.1.1(eslint@8.54.0) + eslint: 8.57.0 + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0) + eslint-plugin-n: 17.6.0(eslint@8.57.0) + eslint-plugin-promise: 6.1.1(eslint@8.57.0) eslint-config-xo-space@0.35.0(eslint@8.54.0): dependencies: @@ -31595,14 +31162,14 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0): + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.54.0): dependencies: debug: 4.3.4(supports-color@8.1.1) enhanced-resolve: 5.15.0 eslint: 8.54.0 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0) - eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0) - fast-glob: 3.3.1 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.54.0))(eslint@8.54.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.54.0) + fast-glob: 3.3.2 get-tsconfig: 4.7.0 is-core-module: 2.13.0 is-glob: 4.0.3 @@ -31612,16 +31179,16 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.29.1)(eslint@8.54.0): + eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0): dependencies: debug: 4.3.4(supports-color@8.1.1) - enhanced-resolve: 5.16.0 - eslint: 8.54.0 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.29.1)(eslint@8.54.0))(eslint@8.54.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0) - fast-glob: 3.3.2 - get-tsconfig: 4.7.3 - is-core-module: 2.13.1 + enhanced-resolve: 5.15.0 + eslint: 8.57.0 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0) + eslint-plugin-import: 2.28.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + fast-glob: 3.3.1 + get-tsconfig: 4.7.0 + is-core-module: 2.13.0 is-glob: 4.0.3 transitivePeerDependencies: - '@typescript-eslint/parser' @@ -31629,45 +31196,45 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-module-utils@2.8.0(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0): + eslint-module-utils@2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.54.0))(eslint@8.54.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 6.13.1(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/parser': 6.21.0(eslint@8.54.0)(typescript@5.4.5) eslint: 8.54.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-plugin-import@2.29.1)(eslint@8.54.0) transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0): + eslint-module-utils@2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.54.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/parser': 6.21.0(eslint@8.54.0)(typescript@5.4.5) eslint: 8.54.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0) transitivePeerDependencies: - supports-color - eslint-module-utils@2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.29.1)(eslint@8.54.0))(eslint@8.54.0): + eslint-module-utils@2.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.54.0)(typescript@5.2.2) - eslint: 8.54.0 + '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5) + eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.29.1)(eslint@8.54.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0) transitivePeerDependencies: - supports-color - eslint-plugin-es-x@7.6.0(eslint@8.54.0): + eslint-plugin-es-x@7.6.0(eslint@8.57.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.54.0) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) '@eslint-community/regexpp': 4.10.0 - eslint: 8.54.0 - eslint-compat-utils: 0.5.0(eslint@8.54.0) + eslint: 8.57.0 + eslint-compat-utils: 0.5.0(eslint@8.57.0) eslint-plugin-es@4.1.0(eslint@8.54.0): dependencies: @@ -31675,25 +31242,25 @@ snapshots: eslint-utils: 2.1.0 regexpp: 3.2.0 - eslint-plugin-formatjs@4.11.3(eslint@8.54.0)(ts-jest@29.1.1(@babel/core@7.23.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.5))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)))(typescript@5.2.2)): + eslint-plugin-formatjs@4.11.3(eslint@8.57.0)(ts-jest@29.1.1(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)))(typescript@5.4.5)): dependencies: '@formatjs/icu-messageformat-parser': 2.7.3 - '@formatjs/ts-transformer': 3.13.9(ts-jest@29.1.1(@babel/core@7.23.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.5))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)))(typescript@5.2.2)) + '@formatjs/ts-transformer': 3.13.9(ts-jest@29.1.1(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)))(typescript@5.4.5)) '@types/eslint': 8.44.2 '@types/picomatch': 2.3.0 - '@typescript-eslint/utils': 6.13.1(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/utils': 6.13.1(eslint@8.57.0)(typescript@5.4.5) emoji-regex: 10.2.1 - eslint: 8.54.0 + eslint: 8.57.0 magic-string: 0.30.3 picomatch: 2.3.1 tslib: 2.6.2 - typescript: 5.2.2 + typescript: 5.4.5 unicode-emoji-utils: 1.1.2 transitivePeerDependencies: - supports-color - ts-jest - eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1)(eslint@8.54.0): + eslint-plugin-import@2.28.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): dependencies: array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 @@ -31701,9 +31268,9 @@ snapshots: array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.54.0 + eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0) has: 1.0.3 is-core-module: 2.13.0 is-glob: 4.0.3 @@ -31714,13 +31281,13 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.14.2 optionalDependencies: - '@typescript-eslint/parser': 6.13.1(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.54.0): dependencies: array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 @@ -31730,7 +31297,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.54.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.54.0) hasown: 2.0.2 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -31741,13 +31308,13 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 6.13.1(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/parser': 6.21.0(eslint@8.54.0)(typescript@5.4.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0): + eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0): dependencies: array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 @@ -31755,9 +31322,9 @@ snapshots: array.prototype.flatmap: 1.3.2 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.54.0 + eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.21.0(eslint@8.54.0)(typescript@5.2.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.13.1(eslint@8.54.0)(typescript@5.2.2))(eslint-plugin-import@2.28.1)(eslint@8.54.0))(eslint@8.54.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.8.0(eslint@8.57.0)(typescript@5.4.5))(eslint-plugin-import@2.28.1)(eslint@8.57.0))(eslint@8.57.0) hasown: 2.0.2 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -31768,13 +31335,13 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/parser': 7.8.0(eslint@8.57.0)(typescript@5.4.5) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack - supports-color - eslint-plugin-jsx-a11y@6.8.0(eslint@8.54.0): + eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0): dependencies: '@babel/runtime': 7.23.5 aria-query: 5.3.0 @@ -31786,7 +31353,7 @@ snapshots: damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 es-iterator-helpers: 1.0.15 - eslint: 8.54.0 + eslint: 8.57.0 hasown: 2.0.0 jsx-ast-utils: 3.3.5 language-tags: 1.0.9 @@ -31811,26 +31378,23 @@ snapshots: is-core-module: 2.13.1 minimatch: 3.1.2 resolve: 1.22.8 - semver: 7.6.0 + semver: 7.6.2 - eslint-plugin-n@16.6.2(eslint@8.54.0): + eslint-plugin-n@17.6.0(eslint@8.57.0): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.54.0) - builtins: 5.0.1 - eslint: 8.54.0 - eslint-plugin-es-x: 7.6.0(eslint@8.54.0) - get-tsconfig: 4.7.3 - globals: 13.24.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + enhanced-resolve: 5.16.1 + eslint: 8.57.0 + eslint-plugin-es-x: 7.6.0(eslint@8.57.0) + get-tsconfig: 4.7.5 + globals: 15.2.0 ignore: 5.3.1 - is-builtin-module: 3.2.1 - is-core-module: 2.13.1 - minimatch: 3.1.2 - resolve: 1.22.8 - semver: 7.6.0 + minimatch: 9.0.4 + semver: 7.6.2 - eslint-plugin-perfectionist@2.10.0(eslint@8.54.0)(typescript@5.2.2): + eslint-plugin-perfectionist@2.10.0(eslint@8.54.0)(typescript@5.4.5): dependencies: - '@typescript-eslint/utils': 6.13.2(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/utils': 6.21.0(eslint@8.54.0)(typescript@5.4.5) eslint: 8.54.0 minimatch: 9.0.4 natural-compare-lite: 1.4.0 @@ -31838,22 +31402,22 @@ snapshots: - supports-color - typescript - eslint-plugin-promise@6.1.1(eslint@8.54.0): + eslint-plugin-promise@6.1.1(eslint@8.57.0): dependencies: - eslint: 8.54.0 + eslint: 8.57.0 - eslint-plugin-react-hooks@4.6.0(eslint@8.54.0): + eslint-plugin-react-hooks@4.6.0(eslint@8.57.0): dependencies: - eslint: 8.54.0 + eslint: 8.57.0 - eslint-plugin-react@7.33.2(eslint@8.54.0): + eslint-plugin-react@7.33.2(eslint@8.57.0): dependencies: array-includes: 3.1.7 array.prototype.flatmap: 1.3.2 array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 es-iterator-helpers: 1.0.15 - eslint: 8.54.0 + eslint: 8.57.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.5 minimatch: 3.1.2 @@ -31866,17 +31430,17 @@ snapshots: semver: 6.3.1 string.prototype.matchall: 4.0.10 - eslint-plugin-testing-library@6.2.0(eslint@8.54.0)(typescript@5.2.2): + eslint-plugin-testing-library@6.2.2(eslint@8.57.0)(typescript@5.4.5): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.54.0)(typescript@5.2.2) - eslint: 8.54.0 + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.5) + eslint: 8.57.0 transitivePeerDependencies: - supports-color - typescript eslint-plugin-unicorn@48.0.1(eslint@8.54.0): dependencies: - '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-validator-identifier': 7.24.5 '@eslint-community/eslint-utils': 4.4.0(eslint@8.54.0) ci-info: 3.9.0 clean-regexp: 1.0.0 @@ -31890,7 +31454,7 @@ snapshots: read-pkg-up: 7.0.1 regexp-tree: 0.1.27 regjsparser: 0.10.0 - semver: 7.6.0 + semver: 7.6.2 strip-indent: 3.0.0 eslint-scope@5.1.1: @@ -31903,6 +31467,12 @@ snapshots: esrecurse: 4.3.0 estraverse: 5.3.0 + eslint-scope@8.0.1: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + optional: true + eslint-utils@2.1.0: dependencies: eslint-visitor-keys: 1.3.0 @@ -31918,6 +31488,9 @@ snapshots: eslint-visitor-keys@3.4.3: {} + eslint-visitor-keys@4.0.0: + optional: true + eslint@8.54.0: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.54.0) @@ -31961,11 +31534,101 @@ snapshots: transitivePeerDependencies: - supports-color + eslint@8.57.0: + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@eslint-community/regexpp': 4.10.0 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.57.0 + '@humanwhocodes/config-array': 0.11.14 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.24.0 + graphemer: 1.4.0 + ignore: 5.3.1 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + + eslint@9.2.0: + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0) + '@eslint-community/regexpp': 4.10.0 + '@eslint/eslintrc': 3.0.2 + '@eslint/js': 9.2.0 + '@humanwhocodes/config-array': 0.13.0 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.2.4 + '@nodelib/fs.walk': 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4(supports-color@8.1.1) + escape-string-regexp: 4.0.0 + eslint-scope: 8.0.1 + eslint-visitor-keys: 4.0.0 + espree: 10.0.1 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.1 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + optional: true + esniff@1.1.0: dependencies: d: 1.0.1 es5-ext: 0.10.62 + espree@10.0.1: + dependencies: + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) + eslint-visitor-keys: 4.0.0 + optional: true + espree@9.6.1: dependencies: acorn: 8.10.0 @@ -32039,7 +31702,7 @@ snapshots: eval@0.1.8: dependencies: - '@types/node': 20.12.7 + '@types/node': 18.19.32 require-like: 0.1.2 event-emitter@0.3.5: @@ -32305,11 +31968,10 @@ snapshots: dependencies: flat-cache: 3.1.0 - file-loader@6.2.0(webpack@5.89.0(esbuild@0.19.8)): + file-entry-cache@8.0.0: dependencies: - loader-utils: 2.0.4 - schema-utils: 3.3.0 - webpack: 5.89.0(esbuild@0.19.8) + flat-cache: 4.0.1 + optional: true file-loader@6.2.0(webpack@5.91.0(esbuild@0.19.8)): dependencies: @@ -32442,10 +32104,19 @@ snapshots: keyv: 4.5.4 rimraf: 3.0.2 + flat-cache@4.0.1: + dependencies: + flatted: 3.3.1 + keyv: 4.5.4 + optional: true + flat@5.0.2: {} flatted@3.2.9: {} + flatted@3.3.1: + optional: true + flow-parser@0.235.1: {} follow-redirects@1.15.3: {} @@ -32467,7 +32138,7 @@ snapshots: cross-spawn: 7.0.3 signal-exit: 4.1.0 - fork-ts-checker-webpack-plugin@6.5.3(eslint@8.54.0)(typescript@5.2.2)(webpack@5.91.0(esbuild@0.19.8)): + fork-ts-checker-webpack-plugin@6.5.3(eslint@9.2.0)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)): dependencies: '@babel/code-frame': 7.24.2 '@types/json-schema': 7.0.15 @@ -32480,18 +32151,18 @@ snapshots: memfs: 3.5.3 minimatch: 3.1.2 schema-utils: 2.7.0 - semver: 7.6.0 + semver: 7.6.2 tapable: 1.1.3 - typescript: 5.2.2 + typescript: 5.4.5 webpack: 5.91.0(esbuild@0.19.8) optionalDependencies: - eslint: 8.54.0 + eslint: 9.2.0 - fork-ts-checker-webpack-plugin@7.2.13(typescript@5.2.2)(webpack@5.89.0(esbuild@0.19.8)): + fork-ts-checker-webpack-plugin@7.2.13(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)): dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.2 chalk: 4.1.2 - chokidar: 3.5.3 + chokidar: 3.6.0 cosmiconfig: 7.1.0 deepmerge: 4.3.1 fs-extra: 10.1.0 @@ -32499,10 +32170,10 @@ snapshots: minimatch: 3.1.2 node-abort-controller: 3.1.1 schema-utils: 3.3.0 - semver: 7.5.4 + semver: 7.6.0 tapable: 2.2.1 - typescript: 5.2.2 - webpack: 5.89.0(esbuild@0.19.8) + typescript: 5.4.5 + webpack: 5.91.0(esbuild@0.19.8) form-data-encoder@2.1.4: {} @@ -32592,7 +32263,7 @@ snapshots: function.prototype.name@1.1.6: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.22.3 functions-have-names: 1.2.3 @@ -32656,14 +32327,14 @@ snapshots: get-symbol-description@1.0.0: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 get-tsconfig@4.7.0: dependencies: resolve-pkg-maps: 1.0.0 - get-tsconfig@4.7.3: + get-tsconfig@4.7.5: dependencies: resolve-pkg-maps: 1.0.0 @@ -32707,15 +32378,6 @@ snapshots: minipass: 7.0.4 path-scurry: 1.10.2 - glob@7.1.4: - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - glob@7.1.6: dependencies: fs.realpath: 1.0.0 @@ -32768,6 +32430,11 @@ snapshots: dependencies: type-fest: 0.20.2 + globals@14.0.0: + optional: true + + globals@15.2.0: {} + globalthis@1.0.3: dependencies: define-properties: 1.2.1 @@ -32858,15 +32525,15 @@ snapshots: dependencies: lodash: 4.17.21 - graphql-config@5.0.2(@types/node@18.18.14)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.2.2): + graphql-config@5.0.2(@types/node@18.19.32)(encoding@0.1.13)(graphql@16.8.1)(typescript@5.4.5): dependencies: '@graphql-tools/graphql-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/json-file-loader': 8.0.0(graphql@16.8.1) '@graphql-tools/load': 8.0.0(graphql@16.8.1) '@graphql-tools/merge': 9.0.1(graphql@16.8.1) - '@graphql-tools/url-loader': 8.0.0(@types/node@18.18.14)(encoding@0.1.13)(graphql@16.8.1) + '@graphql-tools/url-loader': 8.0.0(@types/node@18.19.32)(encoding@0.1.13)(graphql@16.8.1) '@graphql-tools/utils': 10.0.6(graphql@16.8.1) - cosmiconfig: 8.3.6(typescript@5.2.2) + cosmiconfig: 8.3.6(typescript@5.4.5) graphql: 16.8.1 jiti: 1.20.0 minimatch: 4.2.3 @@ -32887,6 +32554,16 @@ snapshots: transitivePeerDependencies: - encoding + graphql-request@7.0.0(graphql@16.8.1): + dependencies: + '@dprint/formatter': 0.3.0 + '@dprint/typescript': 0.90.5 + '@graphql-typed-document-node/core': 3.2.0(graphql@16.8.1) + '@molt/command': 0.9.0 + dprint: 0.45.1 + graphql: 16.8.1 + zod: 3.23.8 + graphql-tag@2.12.6(graphql@16.8.1): dependencies: graphql: 16.8.1 @@ -32896,6 +32573,11 @@ snapshots: dependencies: graphql: 16.8.1 + graphql-ws@5.16.0(graphql@16.8.1): + dependencies: + graphql: 16.8.1 + optional: true + graphql@16.8.1: {} gray-matter@4.0.3: @@ -33121,7 +32803,7 @@ snapshots: history@4.10.1: dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 loose-envify: 1.4.0 resolve-pathname: 3.0.0 tiny-invariant: 1.3.3 @@ -33195,17 +32877,6 @@ snapshots: html-void-elements@3.0.0: {} - html-webpack-plugin@5.6.0(webpack@5.89.0(esbuild@0.19.8)): - dependencies: - '@types/html-minifier-terser': 6.1.0 - html-minifier-terser: 6.1.0 - lodash: 4.17.21 - pretty-error: 4.0.0 - tapable: 2.2.1 - optionalDependencies: - webpack: 5.89.0(esbuild@0.19.8) - optional: true - html-webpack-plugin@5.6.0(webpack@5.91.0(esbuild@0.19.8)): dependencies: '@types/html-minifier-terser': 6.1.0 @@ -33374,10 +33045,6 @@ snapshots: dependencies: safer-buffer: 2.1.2 - icss-utils@5.1.0(postcss@8.4.32): - dependencies: - postcss: 8.4.32 - icss-utils@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -33394,8 +33061,6 @@ snapshots: ignore@5.2.4: {} - ignore@5.3.0: {} - ignore@5.3.1: {} image-size@0.5.5: @@ -33413,6 +33078,9 @@ snapshots: immutable@4.3.4: {} + immutable@4.3.5: + optional: true + import-fresh@3.3.0: dependencies: parent-module: 1.0.1 @@ -33671,7 +33339,7 @@ snapshots: is-finalizationregistry@1.0.2: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 is-fullwidth-code-point@1.0.0: dependencies: @@ -33708,7 +33376,7 @@ snapshots: is-lower-case@2.0.2: dependencies: - tslib: 2.5.3 + tslib: 2.6.2 is-map@2.0.2: {} @@ -33820,13 +33488,13 @@ snapshots: is-upper-case@2.0.2: dependencies: - tslib: 2.5.3 + tslib: 2.6.2 is-weakmap@2.0.1: {} is-weakref@1.0.2: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 is-weakset@2.0.2: dependencies: @@ -33882,7 +33550,7 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.24.4 '@babel/parser': 7.23.5 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 @@ -33892,11 +33560,11 @@ snapshots: istanbul-lib-instrument@6.0.0: dependencies: - '@babel/core': 7.23.5 - '@babel/parser': 7.23.5 + '@babel/core': 7.24.4 + '@babel/parser': 7.24.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 - semver: 7.5.4 + semver: 7.6.2 transitivePeerDependencies: - supports-color @@ -33966,7 +33634,7 @@ snapshots: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1 @@ -33986,16 +33654,16 @@ snapshots: - babel-plugin-macros - supports-color - jest-cli@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)): + jest-cli@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + '@jest/core': 29.7.0(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + create-jest: 29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + jest-config: 29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -34005,14 +33673,14 @@ snapshots: - supports-color - ts-node - jest-config@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)): + jest-config@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)): dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.24.4 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.23.5) + babel-jest: 29.7.0(@babel/core@7.24.4) chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 deepmerge: 4.3.1 glob: 7.2.3 graceful-fs: 4.2.11 @@ -34030,8 +33698,8 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 18.18.14 - ts-node: 10.9.1(@types/node@18.18.14)(typescript@5.2.2) + '@types/node': 18.19.32 + ts-node: 10.9.1(@types/node@18.19.32)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -34061,7 +33729,7 @@ snapshots: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 '@types/jsdom': 20.0.1 - '@types/node': 18.18.14 + '@types/node': 18.19.32 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -34075,7 +33743,7 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -34085,7 +33753,7 @@ snapshots: dependencies: '@jest/types': 28.1.3 '@types/graceful-fs': 4.1.6 - '@types/node': 18.18.14 + '@types/node': 18.19.32 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -34101,7 +33769,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.6 - '@types/node': 18.18.14 + '@types/node': 18.19.32 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -34127,7 +33795,7 @@ snapshots: jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.2 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.1 chalk: 4.1.2 @@ -34140,7 +33808,7 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.10.1 + '@types/node': 18.19.32 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): @@ -34177,7 +33845,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -34205,7 +33873,7 @@ snapshots: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -34225,15 +33893,15 @@ snapshots: jest-snapshot@29.7.0: dependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.24.4 '@babel/generator': 7.23.5 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.23.5) - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.5) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4) + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.24.4) '@babel/types': 7.24.0 '@jest/expect-utils': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5) + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.4) chalk: 4.1.2 expect: 29.7.0 graceful-fs: 4.2.11 @@ -34244,14 +33912,14 @@ snapshots: jest-util: 29.7.0 natural-compare: 1.4.0 pretty-format: 29.7.0 - semver: 7.5.4 + semver: 7.6.2 transitivePeerDependencies: - supports-color jest-util@28.1.3: dependencies: '@jest/types': 28.1.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -34260,7 +33928,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.11 @@ -34275,11 +33943,11 @@ snapshots: leven: 3.1.0 pretty-format: 29.7.0 - jest-watch-typeahead@2.2.2(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))): + jest-watch-typeahead@2.2.2(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))): dependencies: ansi-escapes: 6.2.0 chalk: 5.3.0 - jest: 29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + jest: 29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) jest-regex-util: 29.6.3 jest-watcher: 29.7.0 slash: 5.1.0 @@ -34290,7 +33958,7 @@ snapshots: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 18.18.14 + '@types/node': 18.19.32 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -34299,29 +33967,29 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@28.1.3: dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 - jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)): + jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + '@jest/core': 29.7.0(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + jest-cli: 29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -34529,7 +34197,7 @@ snapshots: lodash.isstring: 4.0.1 lodash.once: 4.1.1 ms: 2.1.3 - semver: 7.5.4 + semver: 7.6.2 jsx-ast-utils@3.3.5: dependencies: @@ -34598,11 +34266,6 @@ snapshots: dependencies: package-json: 8.1.1 - launch-editor@2.6.0: - dependencies: - picocolors: 1.0.0 - shell-quote: 1.8.1 - launch-editor@2.6.1: dependencies: picocolors: 1.0.0 @@ -34618,11 +34281,11 @@ snapshots: dependencies: readable-stream: 2.3.8 - less-loader@11.1.0(less@4.1.3)(webpack@5.89.0(esbuild@0.19.8)): + less-loader@11.1.0(less@4.1.3)(webpack@5.91.0(esbuild@0.19.8)): dependencies: klona: 2.0.6 less: 4.1.3 - webpack: 5.89.0(esbuild@0.19.8) + webpack: 5.91.0(esbuild@0.19.8) less-loader@11.1.4(less@4.2.0)(webpack@5.91.0(esbuild@0.20.2)): dependencies: @@ -34727,11 +34390,11 @@ snapshots: prelude-ls: 1.2.1 type-check: 0.4.0 - license-webpack-plugin@4.0.2(webpack@5.89.0(esbuild@0.19.8)): + license-webpack-plugin@4.0.2(webpack@5.91.0(esbuild@0.19.8)): dependencies: webpack-sources: 3.2.3 optionalDependencies: - webpack: 5.89.0(esbuild@0.19.8) + webpack: 5.91.0(esbuild@0.19.8) lie@3.3.0: dependencies: @@ -34754,14 +34417,14 @@ snapshots: lines-and-columns@2.0.3: {} - lint-staged@14.0.1(enquirer@2.3.6): + lint-staged@14.0.1(enquirer@2.4.1): dependencies: chalk: 5.3.0 commander: 11.0.0 debug: 4.3.4(supports-color@8.1.1) execa: 7.2.0 lilconfig: 2.1.0 - listr2: 6.6.1(enquirer@2.3.6) + listr2: 6.6.1(enquirer@2.4.1) micromatch: 4.0.5 pidtree: 0.6.0 string-argv: 0.3.2 @@ -34798,7 +34461,7 @@ snapshots: date-fns: 2.30.0 figures: 2.0.0 - listr2@3.14.0(enquirer@2.3.6): + listr2@3.14.0(enquirer@2.4.1): dependencies: cli-truncate: 2.1.0 colorette: 2.0.20 @@ -34809,9 +34472,9 @@ snapshots: through: 2.3.8 wrap-ansi: 7.0.0 optionalDependencies: - enquirer: 2.3.6 + enquirer: 2.4.1 - listr2@4.0.5(enquirer@2.3.6): + listr2@4.0.5(enquirer@2.4.1): dependencies: cli-truncate: 2.1.0 colorette: 2.0.20 @@ -34822,9 +34485,9 @@ snapshots: through: 2.3.8 wrap-ansi: 7.0.0 optionalDependencies: - enquirer: 2.3.6 + enquirer: 2.4.1 - listr2@6.6.1(enquirer@2.3.6): + listr2@6.6.1(enquirer@2.4.1): dependencies: cli-truncate: 3.1.0 colorette: 2.0.20 @@ -34833,7 +34496,7 @@ snapshots: rfdc: 1.3.0 wrap-ansi: 8.1.0 optionalDependencies: - enquirer: 2.3.6 + enquirer: 2.4.1 listr@0.14.3: dependencies: @@ -34903,6 +34566,8 @@ snapshots: lodash.isinteger@4.0.4: {} + lodash.ismatch@4.4.0: {} + lodash.isnumber@3.0.3: {} lodash.isplainobject@4.0.6: {} @@ -34915,6 +34580,8 @@ snapshots: lodash.once@4.1.1: {} + lodash.snakecase@4.1.1: {} + lodash.sortby@4.7.0: {} lodash.startcase@4.4.0: {} @@ -35009,7 +34676,7 @@ snapshots: lower-case-first@2.0.2: dependencies: - tslib: 2.5.3 + tslib: 2.6.2 lower-case@2.0.2: dependencies: @@ -35037,13 +34704,13 @@ snapshots: ltgt@2.2.1: {} - lucide-react@0.224.0(react@18.2.0): + lucide-react@0.224.0(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 - lucide-react@0.279.0(react@18.2.0): + lucide-react@0.279.0(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 lunr@2.3.9: {} @@ -35080,7 +34747,7 @@ snapshots: make-dir@4.0.0: dependencies: - semver: 7.5.4 + semver: 7.6.2 make-error@1.3.6: {} @@ -35104,9 +34771,9 @@ snapshots: markdown-table@3.0.3: {} - markdown-to-jsx@7.3.2(react@18.2.0): + markdown-to-jsx@7.3.2(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 marked@4.3.0: {} @@ -35395,9 +35062,9 @@ snapshots: merge2@1.4.1: {} - meros@1.3.0(@types/node@18.18.14): + meros@1.3.0(@types/node@18.19.32): optionalDependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 methods@1.1.2: {} @@ -35855,10 +35522,10 @@ snapshots: min-indent@1.0.1: {} - mini-css-extract-plugin@2.4.7(webpack@5.89.0(esbuild@0.19.8)): + mini-css-extract-plugin@2.4.7(webpack@5.91.0(esbuild@0.19.8)): dependencies: schema-utils: 4.2.0 - webpack: 5.89.0(esbuild@0.19.8) + webpack: 5.91.0(esbuild@0.19.8) mini-css-extract-plugin@2.9.0(webpack@5.91.0(esbuild@0.19.8)): dependencies: @@ -35870,10 +35537,6 @@ snapshots: minimalistic-crypto-utils@1.0.1: {} - minimatch@3.0.5: - dependencies: - brace-expansion: 1.1.11 - minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 @@ -35941,7 +35604,7 @@ snapshots: ms@2.1.3: {} - msw@1.3.2(encoding@0.1.13)(typescript@5.2.2): + msw@1.3.2(encoding@0.1.13)(typescript@5.4.5): dependencies: '@mswjs/cookies': 0.2.2 '@mswjs/interceptors': 0.17.10 @@ -35963,7 +35626,7 @@ snapshots: type-fest: 2.19.0 yargs: 17.7.2 optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - encoding - supports-color @@ -36011,7 +35674,7 @@ snapshots: needle@3.3.1: dependencies: iconv-lite: 0.6.3 - sax: 1.2.4 + sax: 1.3.0 optional: true negotiator@0.6.3: {} @@ -36108,7 +35771,7 @@ snapshots: dependencies: hosted-git-info: 7.0.1 proc-log: 3.0.0 - semver: 7.5.4 + semver: 7.6.0 validate-npm-package-name: 5.0.0 npm-package-arg@11.0.2: @@ -36156,9 +35819,9 @@ snapshots: nwsapi@2.2.7: {} - nx-cloud@16.5.2: + nx-cloud@18.0.1: dependencies: - '@nrwl/nx-cloud': 16.5.2 + '@nrwl/nx-cloud': 18.0.1 axios: 1.1.3 chalk: 4.1.2 dotenv: 10.0.0 @@ -36166,14 +35829,14 @@ snapshots: node-machine-id: 1.1.12 open: 8.4.2 strip-json-comments: 3.1.1 - tar: 6.1.11 + tar: 6.2.1 yargs-parser: 21.1.1 transitivePeerDependencies: - debug - nx@17.1.3(patch_hash=gccie2giwxnrau2zf7la4up2fa): + nx@19.0.1(patch_hash=kp7dxlsgbdjha3gqw56znlzome): dependencies: - '@nrwl/tao': 17.1.3 + '@nrwl/tao': 19.0.1 '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.46 '@zkochan/js-yaml': 0.0.6 @@ -36188,37 +35851,36 @@ snapshots: figures: 3.2.0 flat: 5.0.2 fs-extra: 11.2.0 - glob: 7.1.4 - ignore: 5.3.0 + ignore: 5.3.1 jest-diff: 29.7.0 js-yaml: 4.1.0 jsonc-parser: 3.2.0 lines-and-columns: 2.0.3 - minimatch: 3.0.5 + minimatch: 9.0.3 node-machine-id: 1.1.12 npm-run-path: 4.0.1 open: 8.4.2 - semver: 7.5.3 + ora: 5.3.0 + semver: 7.6.0 string-width: 4.2.3 strong-log-transformer: 2.1.0 tar-stream: 2.2.0 tmp: 0.2.1 tsconfig-paths: 4.2.0 tslib: 2.6.2 - v8-compile-cache: 2.3.0 yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@nx/nx-darwin-arm64': 17.1.3 - '@nx/nx-darwin-x64': 17.1.3 - '@nx/nx-freebsd-x64': 17.1.3 - '@nx/nx-linux-arm-gnueabihf': 17.1.3 - '@nx/nx-linux-arm64-gnu': 17.1.3 - '@nx/nx-linux-arm64-musl': 17.1.3 - '@nx/nx-linux-x64-gnu': 17.1.3 - '@nx/nx-linux-x64-musl': 17.1.3 - '@nx/nx-win32-arm64-msvc': 17.1.3 - '@nx/nx-win32-x64-msvc': 17.1.3 + '@nx/nx-darwin-arm64': 19.0.1 + '@nx/nx-darwin-x64': 19.0.1 + '@nx/nx-freebsd-x64': 19.0.1 + '@nx/nx-linux-arm-gnueabihf': 19.0.1 + '@nx/nx-linux-arm64-gnu': 19.0.1 + '@nx/nx-linux-arm64-musl': 19.0.1 + '@nx/nx-linux-x64-gnu': 19.0.1 + '@nx/nx-linux-x64-musl': 19.0.1 + '@nx/nx-win32-arm64-msvc': 19.0.1 + '@nx/nx-win32-x64-msvc': 19.0.1 transitivePeerDependencies: - debug @@ -36414,12 +36076,22 @@ snapshots: prelude-ls: 1.2.1 type-check: 0.4.0 + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + optional: true + ora@5.3.0: dependencies: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.9.1 + cli-spinners: 2.9.2 is-interactive: 1.0.0 log-symbols: 4.1.0 strip-ansi: 6.0.1 @@ -36526,7 +36198,7 @@ snapshots: got: 12.6.1 registry-auth-token: 5.0.2 registry-url: 6.0.1 - semver: 7.6.0 + semver: 7.6.2 pako@0.2.9: {} @@ -36535,7 +36207,7 @@ snapshots: param-case@3.0.4: dependencies: dot-case: 3.0.4 - tslib: 2.5.3 + tslib: 2.6.2 parent-module@1.0.1: dependencies: @@ -36574,7 +36246,7 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.24.2 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -36779,10 +36451,10 @@ snapshots: postcss-selector-parser: 6.0.16 postcss-value-parser: 4.2.0 - postcss-calc@9.0.1(postcss@8.4.32): + postcss-calc@9.0.1(postcss@8.4.38): dependencies: - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 postcss-value-parser: 4.2.0 postcss-colormin@5.3.1(postcss@8.4.38): @@ -36793,12 +36465,12 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-colormin@6.0.0(postcss@8.4.32): + postcss-colormin@6.0.0(postcss@8.4.38): dependencies: - browserslist: 4.22.2 + browserslist: 4.23.0 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-convert-values@5.1.3(postcss@8.4.38): @@ -36807,52 +36479,52 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-convert-values@6.0.0(postcss@8.4.32): + postcss-convert-values@6.0.0(postcss@8.4.38): dependencies: - browserslist: 4.22.2 - postcss: 8.4.32 + browserslist: 4.23.0 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-discard-comments@5.1.2(postcss@8.4.38): dependencies: postcss: 8.4.38 - postcss-discard-comments@6.0.0(postcss@8.4.32): + postcss-discard-comments@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-discard-duplicates@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 - postcss-discard-duplicates@6.0.0(postcss@8.4.32): + postcss-discard-duplicates@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-discard-empty@5.1.1(postcss@8.4.38): dependencies: postcss: 8.4.38 - postcss-discard-empty@6.0.0(postcss@8.4.32): + postcss-discard-empty@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-discard-overridden@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 - postcss-discard-overridden@6.0.0(postcss@8.4.32): + postcss-discard-overridden@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-discard-unused@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-selector-parser: 6.0.16 - postcss-import@14.1.0(postcss@8.4.32): + postcss-import@14.1.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 read-cache: 1.0.0 resolve: 1.22.8 @@ -36869,25 +36541,25 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.4.31 - postcss-load-config@4.0.1(postcss@8.4.31)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)): + postcss-load-config@4.0.1(postcss@8.4.31)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)): dependencies: lilconfig: 2.1.0 yaml: 2.3.4 optionalDependencies: postcss: 8.4.31 - ts-node: 10.9.1(@types/node@18.18.14)(typescript@5.2.2) + ts-node: 10.9.1(@types/node@18.19.32)(typescript@5.4.5) - postcss-loader@6.2.1(postcss@8.4.32)(webpack@5.89.0(esbuild@0.19.8)): + postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.91.0(esbuild@0.19.8)): dependencies: cosmiconfig: 7.1.0 klona: 2.0.6 - postcss: 8.4.32 - semver: 7.5.4 - webpack: 5.89.0(esbuild@0.19.8) + postcss: 8.4.38 + semver: 7.6.0 + webpack: 5.91.0(esbuild@0.19.8) - postcss-loader@7.3.4(postcss@8.4.31)(typescript@5.2.2)(webpack@5.91.0(esbuild@0.20.2)): + postcss-loader@7.3.4(postcss@8.4.31)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.20.2)): dependencies: - cosmiconfig: 8.3.6(typescript@5.2.2) + cosmiconfig: 8.3.6(typescript@5.4.5) jiti: 1.21.0 postcss: 8.4.31 semver: 7.6.0 @@ -36895,9 +36567,9 @@ snapshots: transitivePeerDependencies: - typescript - postcss-loader@7.3.4(postcss@8.4.38)(typescript@5.2.2)(webpack@5.91.0(esbuild@0.19.8)): + postcss-loader@7.3.4(postcss@8.4.38)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)): dependencies: - cosmiconfig: 8.3.6(typescript@5.2.2) + cosmiconfig: 8.3.6(typescript@5.4.5) jiti: 1.21.0 postcss: 8.4.38 semver: 7.6.0 @@ -36919,11 +36591,11 @@ snapshots: postcss-value-parser: 4.2.0 stylehacks: 5.1.1(postcss@8.4.38) - postcss-merge-longhand@6.0.0(postcss@8.4.32): + postcss-merge-longhand@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 - stylehacks: 6.0.0(postcss@8.4.32) + stylehacks: 6.0.0(postcss@8.4.38) postcss-merge-rules@5.1.4(postcss@8.4.38): dependencies: @@ -36933,22 +36605,22 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.0.16 - postcss-merge-rules@6.0.1(postcss@8.4.32): + postcss-merge-rules@6.0.1(postcss@8.4.38): dependencies: - browserslist: 4.22.2 + browserslist: 4.23.0 caniuse-api: 3.0.0 - cssnano-utils: 4.0.0(postcss@8.4.32) - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + cssnano-utils: 4.0.0(postcss@8.4.38) + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 postcss-minify-font-values@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-minify-font-values@6.0.0(postcss@8.4.32): + postcss-minify-font-values@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-minify-gradients@5.1.1(postcss@8.4.38): @@ -36958,11 +36630,11 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-minify-gradients@6.0.0(postcss@8.4.32): + postcss-minify-gradients@6.0.0(postcss@8.4.38): dependencies: colord: 2.9.3 - cssnano-utils: 4.0.0(postcss@8.4.32) - postcss: 8.4.32 + cssnano-utils: 4.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-minify-params@5.1.4(postcss@8.4.38): @@ -36972,11 +36644,11 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-minify-params@6.0.0(postcss@8.4.32): + postcss-minify-params@6.0.0(postcss@8.4.38): dependencies: - browserslist: 4.22.2 - cssnano-utils: 4.0.0(postcss@8.4.32) - postcss: 8.4.32 + browserslist: 4.23.0 + cssnano-utils: 4.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-minify-selectors@5.2.1(postcss@8.4.38): @@ -36984,26 +36656,15 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.0.16 - postcss-minify-selectors@6.0.0(postcss@8.4.32): - dependencies: - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 - - postcss-modules-extract-imports@3.0.0(postcss@8.4.32): + postcss-minify-selectors@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 postcss-modules-extract-imports@3.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 - postcss-modules-local-by-default@4.0.3(postcss@8.4.32): - dependencies: - icss-utils: 5.1.0(postcss@8.4.32) - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 - postcss-value-parser: 4.2.0 - postcss-modules-local-by-default@4.0.5(postcss@8.4.38): dependencies: icss-utils: 5.1.0(postcss@8.4.38) @@ -37011,21 +36672,11 @@ snapshots: postcss-selector-parser: 6.0.16 postcss-value-parser: 4.2.0 - postcss-modules-scope@3.0.0(postcss@8.4.32): - dependencies: - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 - postcss-modules-scope@3.2.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-selector-parser: 6.0.16 - postcss-modules-values@4.0.0(postcss@8.4.32): - dependencies: - icss-utils: 5.1.0(postcss@8.4.32) - postcss: 8.4.32 - postcss-modules-values@4.0.0(postcss@8.4.38): dependencies: icss-utils: 5.1.0(postcss@8.4.38) @@ -37040,18 +36691,18 @@ snapshots: dependencies: postcss: 8.4.38 - postcss-normalize-charset@6.0.0(postcss@8.4.32): + postcss-normalize-charset@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-normalize-display-values@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-display-values@6.0.0(postcss@8.4.32): + postcss-normalize-display-values@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-normalize-positions@5.1.1(postcss@8.4.38): @@ -37059,9 +36710,9 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-positions@6.0.0(postcss@8.4.32): + postcss-normalize-positions@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-normalize-repeat-style@5.1.1(postcss@8.4.38): @@ -37069,9 +36720,9 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-repeat-style@6.0.0(postcss@8.4.32): + postcss-normalize-repeat-style@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-normalize-string@5.1.0(postcss@8.4.38): @@ -37079,9 +36730,9 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-string@6.0.0(postcss@8.4.32): + postcss-normalize-string@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-normalize-timing-functions@5.1.0(postcss@8.4.38): @@ -37089,9 +36740,9 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-timing-functions@6.0.0(postcss@8.4.32): + postcss-normalize-timing-functions@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-normalize-unicode@5.1.1(postcss@8.4.38): @@ -37100,10 +36751,10 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-unicode@6.0.0(postcss@8.4.32): + postcss-normalize-unicode@6.0.0(postcss@8.4.38): dependencies: - browserslist: 4.22.2 - postcss: 8.4.32 + browserslist: 4.23.0 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-normalize-url@5.1.0(postcss@8.4.38): @@ -37112,9 +36763,9 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-url@6.0.0(postcss@8.4.32): + postcss-normalize-url@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-normalize-whitespace@5.1.1(postcss@8.4.38): @@ -37122,9 +36773,9 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-normalize-whitespace@6.0.0(postcss@8.4.32): + postcss-normalize-whitespace@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-ordered-values@5.1.3(postcss@8.4.38): @@ -37133,10 +36784,10 @@ snapshots: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-ordered-values@6.0.0(postcss@8.4.32): + postcss-ordered-values@6.0.0(postcss@8.4.38): dependencies: - cssnano-utils: 4.0.0(postcss@8.4.32) - postcss: 8.4.32 + cssnano-utils: 4.0.0(postcss@8.4.38) + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-reduce-idents@5.2.0(postcss@8.4.38): @@ -37150,20 +36801,20 @@ snapshots: caniuse-api: 3.0.0 postcss: 8.4.38 - postcss-reduce-initial@6.0.0(postcss@8.4.32): + postcss-reduce-initial@6.0.0(postcss@8.4.38): dependencies: - browserslist: 4.22.2 + browserslist: 4.23.0 caniuse-api: 3.0.0 - postcss: 8.4.32 + postcss: 8.4.38 postcss-reduce-transforms@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - postcss-reduce-transforms@6.0.0(postcss@8.4.32): + postcss-reduce-transforms@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 postcss-resolve-nested-selector@0.1.1: {} @@ -37202,9 +36853,9 @@ snapshots: postcss-value-parser: 4.2.0 svgo: 2.8.0 - postcss-svgo@6.0.0(postcss@8.4.32): + postcss-svgo@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 + postcss: 8.4.38 postcss-value-parser: 4.2.0 svgo: 3.0.2 @@ -37213,10 +36864,10 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.0.16 - postcss-unique-selectors@6.0.0(postcss@8.4.32): + postcss-unique-selectors@6.0.0(postcss@8.4.38): dependencies: - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 postcss-value-parser@4.2.0: {} @@ -37235,12 +36886,6 @@ snapshots: picocolors: 1.0.0 source-map-js: 1.0.2 - postcss@8.4.32: - dependencies: - nanoid: 3.3.7 - picocolors: 1.0.0 - source-map-js: 1.0.2 - postcss@8.4.38: dependencies: nanoid: 3.3.7 @@ -37346,7 +36991,7 @@ snapshots: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 18.18.14 + '@types/node': 18.19.32 long: 5.2.3 proxy-addr@2.0.7: @@ -37416,10 +37061,6 @@ snapshots: dependencies: side-channel: 1.0.6 - qs@6.11.2: - dependencies: - side-channel: 1.0.6 - qs@6.12.1: dependencies: side-channel: 1.0.6 @@ -37486,17 +37127,17 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-click-away-listener@2.2.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-click-away-listener@2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - react-colorful@5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-colorful@5.6.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - react-dev-utils@12.0.1(eslint@8.54.0)(typescript@5.2.2)(webpack@5.91.0(esbuild@0.19.8)): + react-dev-utils@12.0.1(eslint@9.2.0)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)): dependencies: '@babel/code-frame': 7.24.2 address: 1.2.2 @@ -37507,7 +37148,7 @@ snapshots: escape-string-regexp: 4.0.0 filesize: 8.0.7 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.54.0)(typescript@5.2.2)(webpack@5.91.0(esbuild@0.19.8)) + fork-ts-checker-webpack-plugin: 6.5.3(eslint@9.2.0)(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)) global-modules: 2.0.0 globby: 11.1.0 gzip-size: 6.0.0 @@ -37524,15 +37165,15 @@ snapshots: text-table: 0.2.0 webpack: 5.91.0(esbuild@0.19.8) optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 transitivePeerDependencies: - eslint - supports-color - vue-template-compiler - react-docgen-typescript@2.2.2(typescript@5.2.2): + react-docgen-typescript@2.2.2(typescript@5.4.5): dependencies: - typescript: 5.2.2 + typescript: 5.4.5 react-docgen@7.0.3: dependencies: @@ -37563,25 +37204,31 @@ snapshots: react: 18.2.0 scheduler: 0.23.0 - react-dropzone@14.2.3(react@18.2.0): + react-dom@18.3.1(react@18.3.1): + dependencies: + loose-envify: 1.4.0 + react: 18.3.1 + scheduler: 0.23.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: 18.2.0 + react: 18.3.1 - react-element-to-jsx-string@15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + 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: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + 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@18.2.0): + react-error-boundary@3.1.4(react@18.3.1): dependencies: - '@babel/runtime': 7.22.15 - react: 18.2.0 + '@babel/runtime': 7.24.5 + react: 18.3.1 react-error-overlay@6.0.11: {} @@ -37589,7 +37236,7 @@ snapshots: react-helmet-async@1.3.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.22.15 + '@babel/runtime': 7.24.5 invariant: 2.2.4 prop-types: 15.8.1 react: 18.2.0 @@ -37597,6 +37244,16 @@ snapshots: react-fast-compare: 3.2.2 shallowequal: 1.1.0 + react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + dependencies: + '@babel/runtime': 7.22.15 + invariant: 2.2.4 + prop-types: 15.8.1 + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-fast-compare: 3.2.2 + shallowequal: 1.1.0 + react-helmet-async@2.0.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: invariant: 2.2.4 @@ -37605,34 +37262,34 @@ snapshots: react-fast-compare: 3.2.2 shallowequal: 1.1.0 - react-hook-form@7.48.2(react@18.2.0): + react-hook-form@7.48.2(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 - react-infinite-scroll-hook@4.1.1(react@18.2.0): + react-infinite-scroll-hook@4.1.1(react@18.3.1): dependencies: - react: 18.2.0 - react-intersection-observer-hook: 2.1.1(react@18.2.0) + react: 18.3.1 + react-intersection-observer-hook: 2.1.1(react@18.3.1) - react-intersection-observer-hook@2.1.1(react@18.2.0): + react-intersection-observer-hook@2.1.1(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 - react-intl@6.5.5(react@18.2.0)(typescript@5.2.2): + react-intl@6.5.5(react@18.3.1)(typescript@5.4.5): dependencies: '@formatjs/ecma402-abstract': 1.18.0 '@formatjs/icu-messageformat-parser': 2.7.3 - '@formatjs/intl': 2.9.9(typescript@5.2.2) + '@formatjs/intl': 2.9.9(typescript@5.4.5) '@formatjs/intl-displaynames': 6.6.4 '@formatjs/intl-listformat': 7.5.3 '@types/hoist-non-react-statics': 3.3.2 - '@types/react': 18.2.79 + '@types/react': 18.3.1 hoist-non-react-statics: 3.3.2 intl-messageformat: 10.5.8 - react: 18.2.0 + react: 18.3.1 tslib: 2.6.2 optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 react-is@16.13.1: {} @@ -37648,25 +37305,25 @@ snapshots: react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@5.5.2(react@18.2.0))(webpack@5.91.0(esbuild@0.19.8)): dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 react-loadable: '@docusaurus/react-loadable@5.5.2(react@18.2.0)' webpack: 5.91.0(esbuild@0.19.8) - react-loading-skeleton@3.3.1(react@18.2.0): + react-loading-skeleton@3.3.1(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 - react-markdown@8.0.7(@types/react@18.2.79)(react@18.2.0): + react-markdown@8.0.7(@types/react@18.3.1)(react@18.3.1): dependencies: '@types/hast': 2.3.6 '@types/prop-types': 15.7.6 - '@types/react': 18.2.79 + '@types/react': 18.3.1 '@types/unist': 2.0.8 comma-separated-tokens: 2.0.3 hast-util-whitespace: 2.0.1 prop-types: 15.8.1 property-information: 6.3.0 - react: 18.2.0 + react: 18.3.1 react-is: 18.2.0 remark-parse: 10.0.2 remark-rehype: 10.1.0 @@ -37680,24 +37337,26 @@ snapshots: react-refresh@0.14.0: {} - react-remove-scroll-bar@2.3.4(@types/react@18.2.79)(react@18.2.0): + react-refresh@0.14.2: {} + + react-remove-scroll-bar@2.3.4(@types/react@18.3.1)(react@18.3.1): dependencies: - react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-style-singleton: 2.2.1(@types/react@18.3.1)(react@18.3.1) tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - react-remove-scroll@2.5.5(@types/react@18.2.79)(react@18.2.0): + react-remove-scroll@2.5.5(@types/react@18.3.1)(react@18.3.1): dependencies: - react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.79)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.79)(react@18.2.0) + react: 18.3.1 + react-remove-scroll-bar: 2.3.4(@types/react@18.3.1)(react@18.3.1) + react-style-singleton: 2.2.1(@types/react@18.3.1)(react@18.3.1) tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@18.2.79)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.79)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.3.1)(react@18.3.1) + use-sidecar: 1.1.2(@types/react@18.3.1)(react@18.3.1) optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 react-router-config@5.1.1(react-router@5.3.4(react@18.2.0))(react@18.2.0): dependencies: @@ -37707,7 +37366,7 @@ snapshots: react-router-dom@5.3.4(react@18.2.0): dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 history: 4.10.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -37716,16 +37375,16 @@ snapshots: tiny-invariant: 1.3.3 tiny-warning: 1.0.3 - react-router-dom@6.16.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + react-router-dom@6.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@remix-run/router': 1.9.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-router: 6.16.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router: 6.16.0(react@18.3.1) react-router@5.3.4(react@18.2.0): dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 history: 4.10.1 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -37736,24 +37395,24 @@ snapshots: tiny-invariant: 1.3.3 tiny-warning: 1.0.3 - react-router@6.16.0(react@18.2.0): + react-router@6.16.0(react@18.3.1): dependencies: '@remix-run/router': 1.9.0 - react: 18.2.0 + react: 18.3.1 - react-router@6.23.0(react@18.2.0): + react-router@6.23.0(react@18.3.1): dependencies: '@remix-run/router': 1.16.0 - react: 18.2.0 + react: 18.3.1 - react-style-singleton@2.2.1(@types/react@18.2.79)(react@18.2.0): + react-style-singleton@2.2.1(@types/react@18.3.1)(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': 18.2.79 + '@types/react': 18.3.1 react@16.14.0: dependencies: @@ -37765,6 +37424,10 @@ snapshots: dependencies: loose-envify: 1.4.0 + react@18.3.1: + dependencies: + loose-envify: 1.4.0 + read-cache@1.0.0: dependencies: pify: 2.3.0 @@ -37826,6 +37489,8 @@ snapshots: reading-time@1.5.0: {} + readline-sync@1.4.10: {} + recast@0.23.4: dependencies: assert: 2.1.0 @@ -37865,10 +37530,10 @@ snapshots: reflect.getprototypeof@1.0.4: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.22.3 - get-intrinsic: 1.2.2 + get-intrinsic: 1.2.4 globalthis: 1.0.3 which-builtin-type: 1.1.3 @@ -37886,7 +37551,7 @@ snapshots: regenerator-transform@0.15.2: dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 regex-escape@3.4.10: {} @@ -37927,10 +37592,10 @@ snapshots: dependencies: jsesc: 0.5.0 - rehackt@0.0.6(@types/react@18.2.79)(react@18.2.0): + rehackt@0.1.0(@types/react@18.3.1)(react@18.3.1): optionalDependencies: - '@types/react': 18.2.79 - react: 18.2.0 + '@types/react': 18.3.1 + react: 18.3.1 rehype-external-links@3.0.0: dependencies: @@ -37959,7 +37624,7 @@ snapshots: relay-runtime@12.0.0(encoding@0.1.13): dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 fbjs: 3.0.5(encoding@0.1.13) invariant: 2.2.4 transitivePeerDependencies: @@ -38047,6 +37712,8 @@ snapshots: mdast-util-to-markdown: 2.1.0 unified: 11.0.4 + remeda@1.61.0: {} + remedial@1.0.8: {} remove-trailing-separator@1.1.0: {} @@ -38196,14 +37863,14 @@ snapshots: dependencies: rollup-plugin-inject: 3.0.2 - rollup-plugin-peer-deps-external@2.2.4(rollup@3.29.2): + rollup-plugin-peer-deps-external@2.2.4(rollup@4.17.2): dependencies: - rollup: 3.29.2 + rollup: 4.17.2 - rollup-plugin-polyfill-node@0.12.0(rollup@3.29.2): + rollup-plugin-polyfill-node@0.12.0(rollup@4.17.2): dependencies: - '@rollup/plugin-inject': 5.0.3(rollup@3.29.2) - rollup: 3.29.2 + '@rollup/plugin-inject': 5.0.3(rollup@4.17.2) + rollup: 4.17.2 rollup-pluginutils@2.8.2: dependencies: @@ -38212,7 +37879,7 @@ snapshots: rollup@0.63.5: dependencies: '@types/estree': 0.0.39 - '@types/node': 18.18.14 + '@types/node': 18.19.32 rollup@2.79.1: optionalDependencies: @@ -38222,6 +37889,28 @@ snapshots: optionalDependencies: fsevents: 2.3.3 + rollup@4.17.2: + dependencies: + '@types/estree': 1.0.5 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.17.2 + '@rollup/rollup-android-arm64': 4.17.2 + '@rollup/rollup-darwin-arm64': 4.17.2 + '@rollup/rollup-darwin-x64': 4.17.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.17.2 + '@rollup/rollup-linux-arm-musleabihf': 4.17.2 + '@rollup/rollup-linux-arm64-gnu': 4.17.2 + '@rollup/rollup-linux-arm64-musl': 4.17.2 + '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2 + '@rollup/rollup-linux-riscv64-gnu': 4.17.2 + '@rollup/rollup-linux-s390x-gnu': 4.17.2 + '@rollup/rollup-linux-x64-gnu': 4.17.2 + '@rollup/rollup-linux-x64-musl': 4.17.2 + '@rollup/rollup-win32-arm64-msvc': 4.17.2 + '@rollup/rollup-win32-ia32-msvc': 4.17.2 + '@rollup/rollup-win32-x64-msvc': 4.17.2 + fsevents: 2.3.3 + rtl-detect@1.1.2: {} rtlcss@4.1.1: @@ -38272,32 +37961,39 @@ snapshots: safe-regex-test@1.0.0: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 is-regex: 1.1.4 safer-buffer@2.1.2: {} - sass-loader@12.6.0(sass@1.67.0)(webpack@5.89.0(esbuild@0.19.8)): + sass-loader@12.6.0(sass@1.67.0)(webpack@5.91.0(esbuild@0.19.8)): dependencies: klona: 2.0.6 neo-async: 2.6.2 - webpack: 5.89.0(esbuild@0.19.8) + webpack: 5.91.0(esbuild@0.19.8) optionalDependencies: sass: 1.67.0 - sass-loader@13.3.3(sass@1.67.0)(webpack@5.91.0(esbuild@0.20.2)): + sass-loader@13.3.3(sass@1.77.0)(webpack@5.91.0(esbuild@0.20.2)): dependencies: neo-async: 2.6.2 webpack: 5.91.0(esbuild@0.20.2) optionalDependencies: - sass: 1.67.0 + sass: 1.77.0 sass@1.67.0: dependencies: - chokidar: 3.5.3 + chokidar: 3.6.0 immutable: 4.3.4 - source-map-js: 1.0.2 + source-map-js: 1.2.0 + + sass@1.77.0: + dependencies: + chokidar: 3.6.0 + immutable: 4.3.5 + source-map-js: 1.2.0 + optional: true sax@1.2.1: {} @@ -38318,6 +38014,10 @@ snapshots: dependencies: loose-envify: 1.4.0 + scheduler@0.23.2: + dependencies: + loose-envify: 1.4.0 + schema-utils@2.7.0: dependencies: '@types/json-schema': 7.0.15 @@ -38354,10 +38054,6 @@ snapshots: select-hose@2.0.0: {} - selfsigned@2.1.1: - dependencies: - node-forge: 1.3.1 - selfsigned@2.4.1: dependencies: '@types/node-forge': 1.3.11 @@ -38365,7 +38061,7 @@ snapshots: semver-diff@4.0.0: dependencies: - semver: 7.6.0 + semver: 7.6.2 semver@2.3.2: {} @@ -38373,10 +38069,6 @@ snapshots: semver@6.3.1: {} - semver@7.5.3: - dependencies: - lru-cache: 6.0.0 - semver@7.5.4: dependencies: lru-cache: 6.0.0 @@ -38385,6 +38077,8 @@ snapshots: dependencies: lru-cache: 6.0.0 + semver@7.6.2: {} + send@0.18.0: dependencies: debug: 2.6.9 @@ -38409,10 +38103,6 @@ snapshots: tslib: 2.6.2 upper-case-first: 2.0.2 - serialize-javascript@6.0.1: - dependencies: - randombytes: 2.1.0 - serialize-javascript@6.0.2: dependencies: randombytes: 2.1.0 @@ -38449,7 +38139,7 @@ snapshots: transitivePeerDependencies: - supports-color - serverless-esbuild@1.48.0(esbuild@0.20.2): + serverless-esbuild@1.48.0(esbuild@0.21.1): dependencies: acorn: 8.10.0 acorn-walk: 8.2.0 @@ -38457,7 +38147,7 @@ snapshots: archiver: 5.3.2 bestzip: 2.2.1 chokidar: 3.5.3 - esbuild: 0.20.2 + esbuild: 0.21.1 execa: 5.1.1 fp-ts: 2.16.1 fs-extra: 11.2.0 @@ -38736,12 +38426,12 @@ snapshots: source-map-js@1.2.0: {} - source-map-loader@3.0.2(webpack@5.89.0(esbuild@0.19.8)): + source-map-loader@3.0.2(webpack@5.91.0(esbuild@0.19.8)): dependencies: abab: 2.0.6 iconv-lite: 0.6.3 - source-map-js: 1.0.2 - webpack: 5.89.0(esbuild@0.19.8) + source-map-js: 1.2.0 + webpack: 5.91.0(esbuild@0.19.8) source-map-support@0.5.13: dependencies: @@ -38818,7 +38508,7 @@ snapshots: sponge-case@1.0.1: dependencies: - tslib: 2.5.3 + tslib: 2.6.2 sprintf-js@1.0.3: {} @@ -38856,14 +38546,14 @@ snapshots: store2@2.14.3: {} - storybook-dark-mode@4.0.1(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + storybook-dark-mode@4.0.1(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@storybook/components': 8.0.9(@types/react@18.2.79)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/components': 8.0.9(@types/react@18.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@storybook/core-events': 8.0.9 '@storybook/global': 5.0.0 - '@storybook/icons': 1.2.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/manager-api': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 8.0.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/icons': 1.2.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/manager-api': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@storybook/theming': 8.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1) fast-deep-equal: 3.1.3 memoizerific: 1.11.3 transitivePeerDependencies: @@ -38871,17 +38561,17 @@ snapshots: - react - react-dom - storybook-react-router@1.0.8(@storybook/addon-actions@8.0.9)(react-dom@18.2.0(react@18.2.0))(react-router@6.23.0(react@18.2.0))(react@18.2.0): + storybook-react-router@1.0.8(@storybook/addon-actions@8.0.10)(react-dom@18.3.1(react@18.3.1))(react-router@6.23.0(react@18.3.1))(react@18.3.1): dependencies: - '@storybook/addon-actions': 8.0.9 + '@storybook/addon-actions': 8.0.10 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-router: 6.23.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) + react-router: 6.23.0(react@18.3.1) - storybook@8.0.9(@babel/preset-env@7.24.4(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + storybook@8.0.9(@babel/preset-env@7.24.4(@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.0.9(@babel/preset-env@7.24.4(@babel/core@7.24.4))(encoding@0.1.13)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/cli': 8.0.9(@babel/preset-env@7.24.4(@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 @@ -38925,6 +38615,10 @@ snapshots: char-regex: 2.0.1 strip-ansi: 7.1.0 + string-length@6.0.0: + dependencies: + strip-ansi: 7.1.0 + string-range@1.2.2: {} string-template@0.2.1: {} @@ -38978,19 +38672,19 @@ snapshots: string.prototype.trim@1.2.8: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.22.3 string.prototype.trimend@1.0.7: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.22.3 string.prototype.trimstart@1.0.7: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 define-properties: 1.2.1 es-abstract: 1.22.3 @@ -39078,9 +38772,9 @@ snapshots: '@tokenizer/token': 0.3.0 peek-readable: 4.1.0 - style-loader@3.3.3(webpack@5.89.0(esbuild@0.19.8)): + style-loader@3.3.4(webpack@5.91.0(esbuild@0.19.8)): dependencies: - webpack: 5.89.0(esbuild@0.19.8) + webpack: 5.91.0(esbuild@0.19.8) style-loader@3.3.4(webpack@5.91.0(esbuild@0.20.2)): dependencies: @@ -39100,21 +38794,21 @@ snapshots: dependencies: inline-style-parser: 0.2.3 - styled-components@6.1.8(react-dom@16.14.0(react@16.14.0))(react@16.14.0): + styled-components@6.1.11(react-dom@16.14.0(react@16.14.0))(react@16.14.0): dependencies: - '@emotion/is-prop-valid': 1.2.1 - '@emotion/unitless': 0.8.0 - '@types/stylis': 4.2.0 + '@emotion/is-prop-valid': 1.2.2 + '@emotion/unitless': 0.8.1 + '@types/stylis': 4.2.5 css-to-react-native: 3.2.0 - csstype: 3.1.2 - postcss: 8.4.31 + csstype: 3.1.3 + postcss: 8.4.38 react: 16.14.0 react-dom: 16.14.0(react@16.14.0) shallowequal: 1.1.0 - stylis: 4.3.1 - tslib: 2.5.0 + stylis: 4.3.2 + tslib: 2.6.2 - styled-components@6.1.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + styled-components@6.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@emotion/is-prop-valid': 1.2.1 '@emotion/unitless': 0.8.0 @@ -39122,8 +38816,8 @@ snapshots: css-to-react-native: 3.2.0 csstype: 3.1.2 postcss: 8.4.31 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) shallowequal: 1.1.0 stylis: 4.3.1 tslib: 2.5.0 @@ -39134,11 +38828,11 @@ snapshots: postcss: 8.4.38 postcss-selector-parser: 6.0.16 - stylehacks@6.0.0(postcss@8.4.32): + stylehacks@6.0.0(postcss@8.4.38): dependencies: - browserslist: 4.22.2 - postcss: 8.4.32 - postcss-selector-parser: 6.0.13 + browserslist: 4.23.0 + postcss: 8.4.38 + postcss-selector-parser: 6.0.16 stylelint-config-recommended-scss@7.0.0(postcss@8.4.31)(stylelint@14.16.1): dependencies: @@ -39217,16 +38911,18 @@ snapshots: stylis@4.3.1: {} - stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.89.0(esbuild@0.19.8)): + stylis@4.3.2: {} + + stylus-loader@7.1.3(stylus@0.59.0)(webpack@5.91.0(esbuild@0.19.8)): dependencies: fast-glob: 3.3.2 normalize-path: 3.0.0 stylus: 0.59.0 - webpack: 5.89.0(esbuild@0.19.8) + webpack: 5.91.0(esbuild@0.19.8) stylus@0.59.0: dependencies: - '@adobe/css-tools': 4.3.1 + '@adobe/css-tools': 4.3.3 debug: 4.3.4(supports-color@8.1.1) glob: 7.2.3 sax: 1.2.4 @@ -39234,6 +38930,17 @@ snapshots: transitivePeerDependencies: - supports-color + stylus@0.63.0: + dependencies: + '@adobe/css-tools': 4.3.3 + debug: 4.3.4(supports-color@8.1.1) + glob: 7.2.3 + sax: 1.3.0 + source-map: 0.7.4 + transitivePeerDependencies: + - supports-color + optional: true + subscriptions-transport-ws@0.11.0(graphql@16.8.1): dependencies: backo2: 1.0.2 @@ -39268,7 +38975,7 @@ snapshots: mime: 2.6.0 qs: 6.12.1 readable-stream: 3.6.2 - semver: 7.6.0 + semver: 7.6.2 transitivePeerDependencies: - supports-color @@ -39322,7 +39029,7 @@ snapshots: swap-case@2.0.2: dependencies: - tslib: 2.5.3 + tslib: 2.6.2 symbol-observable@1.2.0: {} @@ -39344,11 +39051,11 @@ snapshots: tailwind-merge@1.14.0: {} - tailwindcss-animate@1.0.7(tailwindcss@3.3.5(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2))): + tailwindcss-animate@1.0.7(tailwindcss@3.3.5(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5))): dependencies: - tailwindcss: 3.3.5(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + tailwindcss: 3.3.5(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) - tailwindcss@3.3.5(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)): + tailwindcss@3.3.5(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -39367,7 +39074,7 @@ snapshots: postcss: 8.4.31 postcss-import: 15.1.0(postcss@8.4.31) postcss-js: 4.0.1(postcss@8.4.31) - postcss-load-config: 4.0.1(postcss@8.4.31)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + postcss-load-config: 4.0.1(postcss@8.4.31)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) postcss-nested: 6.0.1(postcss@8.4.31) postcss-selector-parser: 6.0.13 resolve: 1.22.6 @@ -39404,15 +39111,6 @@ snapshots: inherits: 2.0.4 readable-stream: 3.6.2 - tar@6.1.11: - dependencies: - chownr: 2.0.0 - fs-minipass: 2.1.0 - minipass: 3.3.6 - minizlib: 2.1.2 - mkdirp: 1.0.4 - yallist: 4.0.0 - tar@6.2.0: dependencies: chownr: 2.0.0 @@ -39455,7 +39153,7 @@ snapshots: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 - terser: 5.30.3 + terser: 5.30.4 webpack: 5.91.0(esbuild@0.19.8) optionalDependencies: esbuild: 0.19.8 @@ -39466,37 +39164,26 @@ snapshots: jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 - terser: 5.30.3 + terser: 5.30.4 webpack: 5.91.0(esbuild@0.20.2) optionalDependencies: esbuild: 0.20.2 - terser-webpack-plugin@5.3.9(esbuild@0.19.8)(webpack@5.89.0(esbuild@0.19.8)): - dependencies: - '@jridgewell/trace-mapping': 0.3.20 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.25.0 - webpack: 5.89.0(esbuild@0.19.8) - optionalDependencies: - esbuild: 0.19.8 - - terser@5.25.0: + terser@5.30.3: dependencies: - '@jridgewell/source-map': 0.3.5 - acorn: 8.11.2 + '@jridgewell/source-map': 0.3.6 + acorn: 8.11.3 commander: 2.20.3 source-map-support: 0.5.21 - terser@5.30.3: + terser@5.30.4: dependencies: '@jridgewell/source-map': 0.3.6 acorn: 8.11.3 commander: 2.20.3 source-map-support: 0.5.21 - terser@5.30.4: + terser@5.31.0: dependencies: '@jridgewell/source-map': 0.3.6 acorn: 8.11.3 @@ -39618,9 +39305,13 @@ snapshots: tryer@1.0.1: {} - ts-api-utils@1.0.3(typescript@5.2.2): + ts-api-utils@1.0.3(typescript@5.4.5): dependencies: - typescript: 5.2.2 + typescript: 5.4.5 + + ts-api-utils@1.3.0(typescript@5.4.5): + dependencies: + typescript: 5.4.5 ts-dedent@2.2.0: {} @@ -39630,63 +39321,65 @@ snapshots: dependencies: tslib: 2.6.2 - ts-jest@29.1.1(@babel/core@7.23.5)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.23.5))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)))(typescript@5.2.2): + ts-jest@29.1.1(@babel/core@7.24.4)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.4))(esbuild@0.19.8)(jest@29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)))(typescript@5.4.5): dependencies: bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@18.18.14)(ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2)) + jest: 29.7.0(@types/node@18.19.32)(ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5)) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.5.4 - typescript: 5.2.2 + typescript: 5.4.5 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.23.5 + '@babel/core': 7.24.4 '@jest/types': 29.6.3 - babel-jest: 29.7.0(@babel/core@7.23.5) + babel-jest: 29.7.0(@babel/core@7.24.4) esbuild: 0.19.8 - ts-loader@9.4.4(typescript@5.2.2)(webpack@5.89.0(esbuild@0.19.8)): + ts-loader@9.4.4(typescript@5.4.5)(webpack@5.91.0(esbuild@0.19.8)): dependencies: chalk: 4.1.2 - enhanced-resolve: 5.15.0 + enhanced-resolve: 5.16.0 micromatch: 4.0.5 - semver: 7.5.4 - typescript: 5.2.2 - webpack: 5.89.0(esbuild@0.19.8) + semver: 7.6.0 + typescript: 5.4.5 + webpack: 5.91.0(esbuild@0.19.8) ts-log@2.2.5: {} - ts-node@10.9.1(@types/node@18.18.14)(typescript@5.2.2): + ts-node@10.9.1(@types/node@18.19.32)(typescript@5.4.5): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 18.18.14 + '@types/node': 18.19.32 acorn: 8.10.0 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.2.2 + typescript: 5.4.5 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 ts-toolbelt@6.15.5: {} - tsconfck@2.1.2(typescript@5.2.2): + ts-toolbelt@9.6.0: {} + + tsconfck@2.1.2(typescript@5.4.5): optionalDependencies: - typescript: 5.2.2 + typescript: 5.4.5 tsconfig-paths-webpack-plugin@4.0.0: dependencies: chalk: 4.1.2 - enhanced-resolve: 5.15.0 + enhanced-resolve: 5.16.0 tsconfig-paths: 4.2.0 tsconfig-paths@3.14.2: @@ -39721,10 +39414,10 @@ snapshots: tslib@2.6.2: {} - tsutils@3.21.0(typescript@5.2.2): + tsutils@3.21.0(typescript@5.4.5): dependencies: tslib: 1.14.1 - typescript: 5.2.2 + typescript: 5.4.5 tunnel-agent@0.6.0: dependencies: @@ -39760,6 +39453,8 @@ snapshots: type-fest@3.13.1: {} + type-fest@4.18.2: {} + type-fest@4.8.2: {} type-is@1.6.18: @@ -39773,13 +39468,13 @@ snapshots: typed-array-buffer@1.0.0: dependencies: - call-bind: 1.0.5 - get-intrinsic: 1.2.2 + call-bind: 1.0.7 + get-intrinsic: 1.2.4 is-typed-array: 1.1.12 typed-array-byte-length@1.0.0: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 has-proto: 1.0.3 is-typed-array: 1.1.12 @@ -39787,14 +39482,14 @@ snapshots: typed-array-byte-offset@1.0.0: dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 has-proto: 1.0.3 is-typed-array: 1.1.12 typed-array-length@1.0.4: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 for-each: 0.3.3 is-typed-array: 1.1.12 @@ -39808,27 +39503,27 @@ snapshots: typedarray@0.0.6: {} - typedoc-plugin-markdown@3.17.1(typedoc@0.25.13(typescript@5.2.2)): + typedoc-plugin-markdown@3.17.1(typedoc@0.25.13(typescript@5.4.5)): dependencies: handlebars: 4.7.8 - typedoc: 0.25.13(typescript@5.2.2) + typedoc: 0.25.13(typescript@5.4.5) - typedoc@0.25.13(typescript@5.2.2): + typedoc@0.25.13(typescript@5.4.5): dependencies: lunr: 2.3.9 marked: 4.3.0 minimatch: 9.0.4 shiki: 0.14.7 - typescript: 5.2.2 + typescript: 5.4.5 - typescript@5.2.2: {} + typescript@5.4.5: {} - typewriter-effect@2.21.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + typewriter-effect@2.21.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: prop-types: 15.8.1 raf: 3.4.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) ua-parser-js@1.0.36: {} @@ -39845,7 +39540,7 @@ snapshots: unbox-primitive@1.0.2: dependencies: - call-bind: 1.0.5 + call-bind: 1.0.7 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 @@ -39904,7 +39599,7 @@ snapshots: union@0.5.0: dependencies: - qs: 6.11.2 + qs: 6.12.1 unique-string@2.0.0: dependencies: @@ -40000,12 +39695,6 @@ snapshots: escalade: 3.1.1 picocolors: 1.0.0 - update-browserslist-db@1.0.13(browserslist@4.22.2): - dependencies: - browserslist: 4.22.2 - escalade: 3.1.1 - picocolors: 1.0.0 - update-browserslist-db@1.0.13(browserslist@4.23.0): dependencies: browserslist: 4.23.0 @@ -40031,7 +39720,7 @@ snapshots: upper-case-first@2.0.2: dependencies: - tslib: 2.5.3 + tslib: 2.6.2 upper-case@2.0.2: dependencies: @@ -40066,26 +39755,26 @@ snapshots: urlpattern-polyfill@9.0.0: {} - use-callback-ref@1.3.0(@types/react@18.2.79)(react@18.2.0): + use-callback-ref@1.3.0(@types/react@18.3.1)(react@18.3.1): dependencies: - react: 18.2.0 + react: 18.3.1 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.79 + '@types/react': 18.3.1 - use-resize-observer@9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + 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: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.3.1(react@18.3.1) - use-sidecar@1.1.2(@types/react@18.2.79)(react@18.2.0): + use-sidecar@1.1.2(@types/react@18.3.1)(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': 18.2.79 + '@types/react': 18.3.1 util-deprecate@1.0.2: {} @@ -40122,13 +39811,11 @@ snapshots: v8-compile-cache-lib@3.0.1: {} - v8-compile-cache@2.3.0: {} - v8-compile-cache@2.4.0: {} v8-to-istanbul@9.1.0: dependencies: - '@jridgewell/trace-mapping': 0.3.20 + '@jridgewell/trace-mapping': 0.3.25 '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 1.9.0 @@ -40183,61 +39870,61 @@ snapshots: unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 - vite-plugin-eslint@1.8.1(eslint@8.54.0)(vite@4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)): + vite-plugin-eslint@1.8.1(eslint@8.57.0)(vite@4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0)): dependencies: '@rollup/pluginutils': 4.2.1 '@types/eslint': 8.44.2 - eslint: 8.54.0 + eslint: 8.57.0 rollup: 2.79.1 - vite: 4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4) + vite: 4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0) - vite-plugin-svgr@3.3.0(rollup@3.29.2)(typescript@5.2.2)(vite@4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)): + vite-plugin-svgr@3.3.0(rollup@3.29.2)(typescript@5.4.5)(vite@4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0)): dependencies: '@rollup/pluginutils': 5.0.4(rollup@3.29.2) - '@svgr/core': 8.1.0(typescript@5.2.2) - '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.2.2)) - vite: 4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4) + '@svgr/core': 8.1.0(typescript@5.4.5) + '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.4.5)) + vite: 4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0) transitivePeerDependencies: - rollup - supports-color - typescript - vite-tsconfig-paths@4.2.1(typescript@5.2.2)(vite@4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4)): + vite-tsconfig-paths@4.2.1(typescript@5.4.5)(vite@4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0)): dependencies: debug: 4.3.4(supports-color@8.1.1) globrex: 0.1.2 - tsconfck: 2.1.2(typescript@5.2.2) + tsconfck: 2.1.2(typescript@5.4.5) optionalDependencies: - vite: 4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4) + vite: 4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0) transitivePeerDependencies: - supports-color - typescript - vite@4.5.0(@types/node@18.18.14)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4): + vite@4.5.0(@types/node@18.19.32)(less@4.1.3)(sass@1.67.0)(stylus@0.59.0)(terser@5.31.0): dependencies: esbuild: 0.18.20 postcss: 8.4.31 rollup: 3.29.2 optionalDependencies: - '@types/node': 18.18.14 + '@types/node': 18.19.32 fsevents: 2.3.3 less: 4.1.3 sass: 1.67.0 stylus: 0.59.0 - terser: 5.30.4 + terser: 5.31.0 - vite@4.5.0(@types/node@20.12.7)(less@4.2.0)(sass@1.67.0)(stylus@0.59.0)(terser@5.30.4): + vite@5.2.11(@types/node@20.12.11)(less@4.2.0)(sass@1.77.0)(stylus@0.63.0)(terser@5.31.0): dependencies: - esbuild: 0.18.20 - postcss: 8.4.31 - rollup: 3.29.2 + esbuild: 0.20.2 + postcss: 8.4.38 + rollup: 4.17.2 optionalDependencies: - '@types/node': 20.12.7 + '@types/node': 20.12.11 fsevents: 2.3.3 less: 4.2.0 - sass: 1.67.0 - stylus: 0.59.0 - terser: 5.30.4 + sass: 1.77.0 + stylus: 0.63.0 + terser: 5.31.0 vscode-oniguruma@1.7.0: {} @@ -40251,11 +39938,6 @@ snapshots: dependencies: makeerror: 1.0.12 - watchpack@2.4.0: - dependencies: - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - watchpack@2.4.1: dependencies: glob-to-regexp: 0.4.1 @@ -40322,15 +40004,6 @@ snapshots: - bufferutil - utf-8-validate - webpack-dev-middleware@5.3.3(webpack@5.89.0(esbuild@0.19.8)): - dependencies: - colorette: 2.0.20 - memfs: 3.5.3 - mime-types: 2.1.35 - range-parser: 1.2.1 - schema-utils: 4.2.0 - webpack: 5.89.0(esbuild@0.19.8) - webpack-dev-middleware@5.3.4(webpack@5.91.0(esbuild@0.19.8)): dependencies: colorette: 2.0.20 @@ -40340,46 +40013,6 @@ snapshots: schema-utils: 4.2.0 webpack: 5.91.0(esbuild@0.19.8) - webpack-dev-server@4.15.1(webpack@5.89.0(esbuild@0.19.8)): - dependencies: - '@types/bonjour': 3.5.11 - '@types/connect-history-api-fallback': 1.5.1 - '@types/express': 4.17.21 - '@types/serve-index': 1.9.1 - '@types/serve-static': 1.15.5 - '@types/sockjs': 0.3.33 - '@types/ws': 8.5.5 - ansi-html-community: 0.0.8 - bonjour-service: 1.1.1 - chokidar: 3.5.3 - colorette: 2.0.20 - compression: 1.7.4 - connect-history-api-fallback: 2.0.0 - default-gateway: 6.0.3 - express: 4.19.2 - graceful-fs: 4.2.11 - html-entities: 2.4.0 - http-proxy-middleware: 2.0.6(@types/express@4.17.21) - ipaddr.js: 2.1.0 - launch-editor: 2.6.0 - open: 8.4.2 - p-retry: 4.6.2 - rimraf: 3.0.2 - schema-utils: 4.2.0 - selfsigned: 2.1.1 - serve-index: 1.9.1 - sockjs: 0.3.24 - spdy: 4.0.2 - webpack-dev-middleware: 5.3.3(webpack@5.89.0(esbuild@0.19.8)) - ws: 8.14.2 - optionalDependencies: - webpack: 5.89.0(esbuild@0.19.8) - transitivePeerDependencies: - - bufferutil - - debug - - supports-color - - utf-8-validate - webpack-dev-server@4.15.2(webpack@5.91.0(esbuild@0.19.8)): dependencies: '@types/bonjour': 3.5.13 @@ -40430,46 +40063,15 @@ snapshots: webpack-sources@3.2.3: {} - webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.89.0(esbuild@0.19.8)))(webpack@5.89.0(esbuild@0.19.8)): + webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.0(webpack@5.91.0(esbuild@0.19.8)))(webpack@5.91.0(esbuild@0.19.8)): dependencies: typed-assert: 1.0.9 - webpack: 5.89.0(esbuild@0.19.8) + webpack: 5.91.0(esbuild@0.19.8) optionalDependencies: - html-webpack-plugin: 5.6.0(webpack@5.89.0(esbuild@0.19.8)) + html-webpack-plugin: 5.6.0(webpack@5.91.0(esbuild@0.19.8)) webpack-virtual-modules@0.6.1: {} - webpack@5.89.0(esbuild@0.19.8): - dependencies: - '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.11.6 - '@webassemblyjs/wasm-edit': 1.11.6 - '@webassemblyjs/wasm-parser': 1.11.6 - acorn: 8.11.2 - acorn-import-assertions: 1.9.0(acorn@8.11.2) - browserslist: 4.22.2 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.4.1 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(esbuild@0.19.8)(webpack@5.89.0(esbuild@0.19.8)) - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - '@swc/core' - - esbuild - - uglify-js - webpack@5.91.0(esbuild@0.19.8): dependencies: '@types/eslint-scope': 3.7.7 @@ -40834,4 +40436,6 @@ snapshots: compress-commons: 4.1.2 readable-stream: 3.6.2 + zod@3.23.8: {} + zwitch@2.0.4: {}